ETH Price: $2,972.09 (+1.39%)
Gas: 1 Gwei

Token

Happy Astronauts (HATS)
 

Overview

Max Total Supply

2,934 HATS

Holders

410

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0xb946fa4c8ca6bf8a59b2f0f0ee805df943537ea0
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
HappyAstronauts

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 1500 runs

Other Settings:
default evmVersion
File 1 of 18 : HappyAstronauts.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;


import './ERC1155Astronauts.sol';

contract HappyAstronauts is  ERC1155Astronauts {

constructor(string memory _name,
    string memory _symbol,
    string memory _uri) public ERC1155Astronauts(_name, _symbol, _uri){

}

    function withdraw() public onlyOwnerOrOperator {
        uint256 balance = address(this).balance;
        require(balance > 0);
        _widthdraw(owner(), address(this).balance);
    }

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

}

File 2 of 18 : ERC1155Astronauts.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol";
import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Pausable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "./ContextMixin.sol";



contract ERC1155Astronauts is ContextMixin, ERC1155Burnable, ERC1155Pausable, Ownable, ReentrancyGuard {
    using Strings for uint256;
    using SafeMath for uint256;

    uint256 internal _tokenIdTracker = 0;
    mapping (uint256 => string) customUri;
    mapping (address => bool) operators;

    bool public public_mint_open = true;
    uint256 public mint_price = 80000000000000000;
    uint256 public max_mint_allowed = 100;

    string public name;
    string public symbol;

    modifier onlyOwnerOrOperator() {
        require(owner() == _msgSender() || isContractOperator(_msgSender()), "Ownable: caller is not the owner");
        _;
    }

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _uri
    ) ERC1155(_uri) {
        name = _name;
        symbol = _symbol;
    }


    function mintToken(address _to, uint256 _quantity) public payable nonReentrant {
        require(_quantity > 0);
        if(owner() != _msgSender() || !isContractOperator(_msgSender())){
        require(public_mint_open);
        require(_quantity <= max_mint_allowed);
        require(mint_price.mul(_quantity) <= msg.value);
        }

        if(_quantity == 1){
        _mint(_to, _tokenIdTracker, 1, "");
        _tokenIdTracker += 1;
        }
        else
        {
            uint256[] memory _ids = new uint256[](_quantity);
            uint256[] memory _qty = new uint256[](_quantity);

            for(uint256 i = 0; i < _quantity; i++){
                _ids[i] = _tokenIdTracker + i;
                _qty[i] = 1;
            }

            _mintBatch(_to, _ids, _qty, "");
            _tokenIdTracker += _quantity;
        }

    }

    function mint(address _to, uint256 _id, uint256 _quantity, uint256 inc_counter) public onlyOwnerOrOperator {
        _mint(_to, _id, _quantity, "");

        if(inc_counter > 0){
        _tokenIdTracker += inc_counter;
        }
        

    }

    function mintBatchToken(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        uint256 inc_counter
    ) public virtual onlyOwnerOrOperator {

        _mintBatch(to, ids, amounts, "");
        if(inc_counter > 0){
        _tokenIdTracker += inc_counter;
        }
    }

    function setSettings(bool _public_mint_open,uint256 _mint_price, uint256 _max_mint_allowed) public onlyOwnerOrOperator {
                        
        public_mint_open = _public_mint_open;
        mint_price = _mint_price;
        max_mint_allowed = _max_mint_allowed;
    }

    /**
     * @dev Pauses all token transfers.
     *
     * See {ERC1155Pausable} and {Pausable-_pause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function pause() public virtual onlyOwnerOrOperator {
        _pause();
    }

    function totalSupply() public view returns (uint256) {
        return _tokenIdTracker;
    }

    /**
     * @dev Unpauses all token transfers.
     *
     * See {ERC1155Pausable} and {Pausable-_unpause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function unpause() public virtual onlyOwnerOrOperator {
        _unpause();
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC1155)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override(ERC1155, ERC1155Pausable) {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
    }


    function setURI(string memory _newURI) public onlyOwnerOrOperator {
        _setURI(_newURI);
    }

    function setCustomURI(
        uint256 _tokenId,
        string memory _newURI) public onlyOwnerOrOperator {
        customUri[_tokenId] = _newURI;
    }

    function resetCounter(
        uint256 _count) public onlyOwnerOrOperator {
        _tokenIdTracker = _count;
    }

    function setContractOperator(
        address _to, bool is_operator) public onlyOwnerOrOperator {
        operators[_to] = is_operator;
    }

    function isContractOperator(
        address _acc) public view returns(bool) {
        return operators[_acc];
    }




    function uri(uint256 token_) public view virtual override returns (string memory) {

        if (bytes(customUri[token_]).length > 0) {
            return customUri[token_];
        } else {
            if(token_ > (_tokenIdTracker - 1)){
                return "";
            }
            else
            {
            return bytes(ERC1155.uri(token_)).length > 0 ? string(abi.encodePacked(ERC1155.uri(token_), token_.toString())): "";
            }
        }
        
    }

    function _msgSender()
        internal
        override
        view
        returns (address sender)
    {
        return ContextMixin.msgSender();
    }
}

File 3 of 18 : ContextMixin.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

abstract contract ContextMixin {
    function msgSender()
        internal
        view
        returns (address payable sender)
    {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = payable(msg.sender);
        }
        return sender;
    }
}

File 4 of 18 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 18 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 6 of 18 : ERC165.sol
// SPDX-License-Identifier: MIT

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 7 of 18 : Strings.sol
// SPDX-License-Identifier: MIT

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 8 of 18 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 9 of 18 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 18 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT

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 11 of 18 : ERC1155Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC1155.sol";
import "../../../security/Pausable.sol";

/**
 * @dev ERC1155 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Pausable is ERC1155, Pausable {
    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        require(!paused(), "ERC1155Pausable: token transfer while paused");
    }
}

File 12 of 18 : ERC1155Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC1155.sol";

/**
 * @dev Extension of {ERC1155} that allows token holders to destroy both their
 * own tokens and those that they have been approved to use.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Burnable is ERC1155 {
    function burn(
        address account,
        uint256 id,
        uint256 value
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burn(account, id, value);
    }

    function burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory values
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burnBatch(account, ids, values);
    }
}

File 13 of 18 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT

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.
        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. 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 14 of 18 : IERC1155.sol
// SPDX-License-Identifier: MIT

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 15 of 18 : ERC1155.sol
// SPDX-License-Identifier: MIT

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 {
        require(_msgSender() != operator, "ERC1155: setting approval status for self");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 `account`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(account != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

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

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

        _doSafeTransferAcceptanceCheck(operator, address(0), account, 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 `account`
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address account,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

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

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

        emit TransferSingle(operator, account, 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 account,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

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

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

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

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

    /**
     * @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 16 of 18 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 17 of 18 : Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 18 of 18 : Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_msgSender());
    }

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_uri","type":"string"}],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"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":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","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":[{"internalType":"address","name":"_acc","type":"address"}],"name":"isContractOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_mint_allowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"uint256","name":"inc_counter","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"uint256","name":"inc_counter","type":"uint256"}],"name":"mintBatchToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mint_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"public_mint_open","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"resetCounter","outputs":[],"stateMutability":"nonpayable","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":"_to","type":"address"},{"internalType":"bool","name":"is_operator","type":"bool"}],"name":"setContractOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_newURI","type":"string"}],"name":"setCustomURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_public_mint_open","type":"bool"},{"internalType":"uint256","name":"_mint_price","type":"uint256"},{"internalType":"uint256","name":"_max_mint_allowed","type":"uint256"}],"name":"setSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"token_","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260006005556008805460ff1916600117905567011c37937e0800006009556064600a553480156200003457600080fd5b506040516200376638038062003766833981016040819052620000579162000301565b828282806200006681620000c2565b506003805460ff19169055620000856200007f620000db565b620000f8565b600160045582516200009f90600b906020860190620001b0565b508151620000b590600c906020850190620001b0565b50505050505050620003e1565b8051620000d7906002906020840190620001b0565b5050565b6000620000f26200015260201b620012f91760201c565b90505b90565b600380546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600033301415620001ab57600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150620000f59050565b503390565b828054620001be906200038e565b90600052602060002090601f016020900481019282620001e257600085556200022d565b82601f10620001fd57805160ff19168380011785556200022d565b828001600101855582156200022d579182015b828111156200022d57825182559160200191906001019062000210565b506200023b9291506200023f565b5090565b5b808211156200023b576000815560010162000240565b600082601f83011262000267578081fd5b81516001600160401b0380821115620002845762000284620003cb565b6040516020601f8401601f1916820181018381118382101715620002ac57620002ac620003cb565b6040528382528584018101871015620002c3578485fd5b8492505b83831015620002e65785830181015182840182015291820191620002c7565b83831115620002f757848185840101525b5095945050505050565b60008060006060848603121562000316578283fd5b83516001600160401b03808211156200032d578485fd5b6200033b8783880162000256565b9450602086015191508082111562000351578384fd5b6200035f8783880162000256565b9350604086015191508082111562000375578283fd5b50620003848682870162000256565b9150509250925092565b600281046001821680620003a357607f821691505b60208210811415620003c557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61337580620003f16000396000f3fe6080604052600436106101e25760003560e01c80636b20c45411610102578063b67797d611610095578063e985e9c511610064578063e985e9c514610522578063f242432a14610542578063f2fde38b14610562578063f5298aca14610582576101e2565b8063b67797d6146104ad578063ba0c60c9146104cd578063cb61165c146104e2578063dd59154414610502576101e2565b80638da5cb5b116100d15780638da5cb5b1461043657806395d89b4114610458578063a22cb4651461046d578063a647e8ec1461048d576101e2565b80636b20c454146103d9578063715018a6146103f957806379c650681461040e5780638456cb5914610421576101e2565b80633adf80b41161017a5780634e1273f4116101495780634e1273f4146103625780635b3845a81461038f5780635c975abb146103a4578063693e35ed146103b9576101e2565b80633adf80b4146102f85780633ccfd60b146103185780633f4ba83a1461032d5780634826cda514610342576101e2565b80630e89341c116101b65780630e89341c1461028e57806318160ddd146102ae5780631a4231a4146102c35780632eb2c2d6146102d8576101e2565b8062fdd58e146101e757806301ffc9a71461021d57806302fe53051461024a57806306fdde031461026c575b600080fd5b3480156101f357600080fd5b50610207610202366004612686565b6105a2565b60405161021491906130df565b60405180910390f35b34801561022957600080fd5b5061023d6102383660046127f4565b6105f9565b6040516102149190612a3d565b34801561025657600080fd5b5061026a61026536600461282c565b61060c565b005b34801561027857600080fd5b50610281610668565b6040516102149190612a48565b34801561029a57600080fd5b506102816102a936600461285f565b6106f6565b3480156102ba57600080fd5b50610207610845565b3480156102cf57600080fd5b5061020761084c565b3480156102e457600080fd5b5061026a6102f336600461246a565b610852565b34801561030457600080fd5b5061026a610313366004612877565b6108b0565b34801561032457600080fd5b5061026a610924565b34801561033957600080fd5b5061026a610990565b34801561034e57600080fd5b5061026a61035d3660046127d7565b6109ea565b34801561036e57600080fd5b5061038261037d366004612719565b610a54565b60405161021491906129fc565b34801561039b57600080fd5b5061023d610b74565b3480156103b057600080fd5b5061023d610b7d565b3480156103c557600080fd5b5061026a6103d43660046125e4565b610b86565b3480156103e557600080fd5b5061026a6103f4366004612573565b610c15565b34801561040557600080fd5b5061026a610c6a565b61026a61041c366004612686565b610cb3565b34801561042d57600080fd5b5061026a610f0b565b34801561044257600080fd5b5061044b610f63565b6040516102149190612947565b34801561046457600080fd5b50610281610f77565b34801561047957600080fd5b5061026a61048836600461265d565b610f84565b34801561049957600080fd5b5061026a6104a83660046126e1565b611052565b3480156104b957600080fd5b5061026a6104c836600461285f565b6110bd565b3480156104d957600080fd5b50610207611112565b3480156104ee57600080fd5b5061023d6104fd36600461241e565b611118565b34801561050e57600080fd5b5061026a61051d36600461265d565b611136565b34801561052e57600080fd5b5061023d61053d366004612438565b6111b1565b34801561054e57600080fd5b5061026a61055d366004612510565b6111df565b34801561056e57600080fd5b5061026a61057d36600461241e565b611236565b34801561058e57600080fd5b5061026a61059d3660046126af565b6112a4565b60006001600160a01b0383166105d35760405162461bcd60e51b81526004016105ca90612b4c565b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b600061060482611355565b90505b919050565b6106146113c7565b6001600160a01b0316610625610f63565b6001600160a01b0316148061064057506106406104fd6113c7565b61065c5760405162461bcd60e51b81526004016105ca90612ec8565b610665816113d6565b50565b600b8054610675906131d2565b80601f01602080910402602001604051908101604052809291908181526020018280546106a1906131d2565b80156106ee5780601f106106c3576101008083540402835291602001916106ee565b820191906000526020600020905b8154815290600101906020018083116106d157829003601f168201915b505050505081565b600081815260066020526040812080546060929190610714906131d2565b905011156107ba5760008281526006602052604090208054610735906131d2565b80601f0160208091040260200160405190810160405280929190818152602001828054610761906131d2565b80156107ae5780601f10610783576101008083540402835291602001916107ae565b820191906000526020600020905b81548152906001019060200180831161079157829003601f168201915b50505050509050610607565b60016005546107c9919061318f565b8211156107e55750604080516020810190915260008152610607565b60006107f0836113ed565b511161080b576040518060200160405280600081525061083e565b610814826113ed565b61081d83611481565b60405160200161082e929190612918565b6040516020818303038152906040525b9050610607565b6005545b90565b60095481565b61085a6113c7565b6001600160a01b0316856001600160a01b0316148061088057506108808561053d6113c7565b61089c5760405162461bcd60e51b81526004016105ca90612db1565b6108a985858585856115d8565b5050505050565b6108b86113c7565b6001600160a01b03166108c9610f63565b6001600160a01b031614806108e457506108e46104fd6113c7565b6109005760405162461bcd60e51b81526004016105ca90612ec8565b6000828152600660209081526040909120825161091f92840190612287565b505050565b61092c6113c7565b6001600160a01b031661093d610f63565b6001600160a01b0316148061095857506109586104fd6113c7565b6109745760405162461bcd60e51b81526004016105ca90612ec8565b478061097f57600080fd5b61066561098a610f63565b476117a9565b6109986113c7565b6001600160a01b03166109a9610f63565b6001600160a01b031614806109c457506109c46104fd6113c7565b6109e05760405162461bcd60e51b81526004016105ca90612ec8565b6109e8611825565b565b6109f26113c7565b6001600160a01b0316610a03610f63565b6001600160a01b03161480610a1e5750610a1e6104fd6113c7565b610a3a5760405162461bcd60e51b81526004016105ca90612ec8565b6008805460ff191693151593909317909255600955600a55565b60608151835114610a775760405162461bcd60e51b81526004016105ca90612f91565b6000835167ffffffffffffffff811115610aa157634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610aca578160200160208202803683370190505b50905060005b8451811015610b6c57610b31858281518110610afc57634e487b7160e01b600052603260045260246000fd5b6020026020010151858381518110610b2457634e487b7160e01b600052603260045260246000fd5b60200260200101516105a2565b828281518110610b5157634e487b7160e01b600052603260045260246000fd5b6020908102919091010152610b658161320d565b9050610ad0565b509392505050565b60085460ff1681565b60035460ff1690565b610b8e6113c7565b6001600160a01b0316610b9f610f63565b6001600160a01b03161480610bba5750610bba6104fd6113c7565b610bd65760405162461bcd60e51b81526004016105ca90612ec8565b610bf184848460405180602001604052806000815250611893565b8015610c0f578060056000828254610c099190613144565b90915550505b50505050565b610c1d6113c7565b6001600160a01b0316836001600160a01b03161480610c435750610c438361053d6113c7565b610c5f5760405162461bcd60e51b81526004016105ca90612cc0565b61091f838383611a14565b610c726113c7565b6001600160a01b0316610c83610f63565b6001600160a01b031614610ca95760405162461bcd60e51b81526004016105ca90612ec8565b6109e86000611bc5565b60026004541415610cd65760405162461bcd60e51b81526004016105ca906130a8565b600260045580610ce557600080fd5b610ced6113c7565b6001600160a01b0316610cfe610f63565b6001600160a01b0316141580610d1c5750610d1a6104fd6113c7565b155b15610d595760085460ff16610d3057600080fd5b600a54811115610d3f57600080fd5b6009543490610d4e9083611c36565b1115610d5957600080fd5b8060011415610d9e57610d8082600554600160405180602001604052806000815250611c49565b600160056000828254610d939190613144565b90915550610f029050565b60008167ffffffffffffffff811115610dc757634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610df0578160200160208202803683370190505b50905060008267ffffffffffffffff811115610e1c57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610e45578160200160208202803683370190505b50905060005b83811015610ecc5780600554610e619190613144565b838281518110610e8157634e487b7160e01b600052603260045260246000fd5b6020026020010181815250506001828281518110610eaf57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610ec48161320d565b915050610e4b565b50610ee884838360405180602001604052806000815250611893565b8260056000828254610efa9190613144565b909155505050505b50506001600455565b610f136113c7565b6001600160a01b0316610f24610f63565b6001600160a01b03161480610f3f5750610f3f6104fd6113c7565b610f5b5760405162461bcd60e51b81526004016105ca90612ec8565b6109e8611d38565b60035461010090046001600160a01b031690565b600c8054610675906131d2565b816001600160a01b0316610f966113c7565b6001600160a01b03161415610fbd5760405162461bcd60e51b81526004016105ca90612f34565b8060016000610fca6113c7565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561100e6113c7565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110469190612a3d565b60405180910390a35050565b61105a6113c7565b6001600160a01b031661106b610f63565b6001600160a01b0316148061108657506110866104fd6113c7565b6110a25760405162461bcd60e51b81526004016105ca90612ec8565b610bf184848460405180602001604052806000815250611c49565b6110c56113c7565b6001600160a01b03166110d6610f63565b6001600160a01b031614806110f157506110f16104fd6113c7565b61110d5760405162461bcd60e51b81526004016105ca90612ec8565b600555565b600a5481565b6001600160a01b031660009081526007602052604090205460ff1690565b61113e6113c7565b6001600160a01b031661114f610f63565b6001600160a01b0316148061116a575061116a6104fd6113c7565b6111865760405162461bcd60e51b81526004016105ca90612ec8565b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6111e76113c7565b6001600160a01b0316856001600160a01b0316148061120d575061120d8561053d6113c7565b6112295760405162461bcd60e51b81526004016105ca90612cc0565b6108a98585858585611d93565b61123e6113c7565b6001600160a01b031661124f610f63565b6001600160a01b0316146112755760405162461bcd60e51b81526004016105ca90612ec8565b6001600160a01b03811661129b5760405162461bcd60e51b81526004016105ca90612ba9565b61066581611bc5565b6112ac6113c7565b6001600160a01b0316836001600160a01b031614806112d257506112d28361053d6113c7565b6112ee5760405162461bcd60e51b81526004016105ca90612cc0565b61091f838383611ec7565b60003330141561135057600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506108499050565b503390565b60006001600160e01b031982167fd9b67a260000000000000000000000000000000000000000000000000000000014806113b857506001600160e01b031982167f0e89341c00000000000000000000000000000000000000000000000000000000145b80610604575061060482611fd6565b60006113d16112f9565b905090565b80516113e9906002906020840190612287565b5050565b6060600280546113fc906131d2565b80601f0160208091040260200160405190810160405280929190818152602001828054611428906131d2565b80156114755780601f1061144a57610100808354040283529160200191611475565b820191906000526020600020905b81548152906001019060200180831161145857829003601f168201915b50505050509050919050565b6060816114c2575060408051808201909152600181527f30000000000000000000000000000000000000000000000000000000000000006020820152610607565b8160005b81156114ec57806114d68161320d565b91506114e59050600a8361315c565b91506114c6565b60008167ffffffffffffffff81111561151557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561153f576020820181803683370190505b5090505b84156115d05761155460018361318f565b9150611561600a86613228565b61156c906030613144565b60f81b81838151811061158f57634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506115c9600a8661315c565b9450611543565b949350505050565b81518351146115f95760405162461bcd60e51b81526004016105ca90612fee565b6001600160a01b03841661161f5760405162461bcd60e51b81526004016105ca90612d54565b60006116296113c7565b9050611639818787878787612008565b60005b845181101561173b57600085828151811061166757634e487b7160e01b600052603260045260246000fd5b60200260200101519050600085838151811061169357634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156116e35760405162461bcd60e51b81526004016105ca90612e6b565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611720908490613144565b92505081905550505050806117349061320d565b905061163c565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161178b929190612a0f565b60405180910390a46117a1818787878787612016565b505050505050565b6000826001600160a01b0316826040516117c290610849565b60006040518083038185875af1925050503d80600081146117ff576040519150601f19603f3d011682016040523d82523d6000602084013e611804565b606091505b505090508061091f5760405162461bcd60e51b81526004016105ca90612efd565b61182d610b7d565b6118495760405162461bcd60e51b81526004016105ca90612b15565b6003805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61187c6113c7565b6040516118899190612947565b60405180910390a1565b6001600160a01b0384166118b95760405162461bcd60e51b81526004016105ca9061304b565b81518351146118da5760405162461bcd60e51b81526004016105ca90612fee565b60006118e46113c7565b90506118f581600087878787612008565b60005b84518110156119ac5783818151811061192157634e487b7160e01b600052603260045260246000fd5b602002602001015160008087848151811061194c57634e487b7160e01b600052603260045260246000fd5b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b0316815260200190815260200160002060008282546119949190613144565b909155508190506119a48161320d565b9150506118f8565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516119fd929190612a0f565b60405180910390a46108a981600087878787612016565b6001600160a01b038316611a3a5760405162461bcd60e51b81526004016105ca90612e0e565b8051825114611a5b5760405162461bcd60e51b81526004016105ca90612fee565b6000611a656113c7565b9050611a8581856000868660405180602001604052806000815250612008565b60005b8351811015611b66576000848281518110611ab357634e487b7160e01b600052603260045260246000fd5b602002602001015190506000848381518110611adf57634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038c168352909352919091205490915081811015611b2f5760405162461bcd60e51b81526004016105ca90612c06565b6000928352602083815260408085206001600160a01b038b1686529091529092209103905580611b5e8161320d565b915050611a88565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611bb7929190612a0f565b60405180910390a450505050565b600380546001600160a01b038381166101008181027fffffffffffffffffffffff0000000000000000000000000000000000000000ff85161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611c428284613170565b9392505050565b6001600160a01b038416611c6f5760405162461bcd60e51b81526004016105ca9061304b565b6000611c796113c7565b9050611c9a81600087611c8b88612124565b611c9488612124565b87612008565b6000848152602081815260408083206001600160a01b038916845290915281208054859290611cca908490613144565b92505081905550846001600160a01b031660006001600160a01b0316826001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611d219291906130e8565b60405180910390a46108a98160008787878761217d565b611d40610b7d565b15611d5d5760405162461bcd60e51b81526004016105ca90612d1d565b6003805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861187c6113c7565b6001600160a01b038416611db95760405162461bcd60e51b81526004016105ca90612d54565b6000611dc36113c7565b9050611dd4818787611c8b88612124565b6000848152602081815260408083206001600160a01b038a16845290915290205483811015611e155760405162461bcd60e51b81526004016105ca90612e6b565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611e52908490613144565b92505081905550856001600160a01b0316876001600160a01b0316836001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611ea89291906130e8565b60405180910390a4611ebe82888888888861217d565b50505050505050565b6001600160a01b038316611eed5760405162461bcd60e51b81526004016105ca90612e0e565b6000611ef76113c7565b9050611f2781856000611f0987612124565b611f1287612124565b60405180602001604052806000815250612008565b6000838152602081815260408083206001600160a01b038816845290915290205482811015611f685760405162461bcd60e51b81526004016105ca90612c06565b6000848152602081815260408083206001600160a01b03808a16808652919093528184208786039055905190918516907fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6290611fc790899089906130e8565b60405180910390a45050505050565b6001600160e01b031981167f01ffc9a70000000000000000000000000000000000000000000000000000000014919050565b6117a186868686868661224e565b612028846001600160a01b0316612281565b156117a15760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190612061908990899088908890889060040161295b565b602060405180830381600087803b15801561207b57600080fd5b505af19250505080156120ab575060408051601f3d908101601f191682019092526120a891810190612810565b60015b6120f4576120b7613284565b806120c257506120dc565b8060405162461bcd60e51b81526004016105ca9190612a48565b60405162461bcd60e51b81526004016105ca90612a5b565b6001600160e01b0319811663bc197c8160e01b14611ebe5760405162461bcd60e51b81526004016105ca90612ab8565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061216c57634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b61218f846001600160a01b0316612281565b156117a15760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906121c890899089908890889088906004016129b9565b602060405180830381600087803b1580156121e257600080fd5b505af1925050508015612212575060408051601f3d908101601f1916820190925261220f91810190612810565b60015b61221e576120b7613284565b6001600160e01b0319811663f23a6e6160e01b14611ebe5760405162461bcd60e51b81526004016105ca90612ab8565b61225c8686868686866117a1565b612264610b7d565b156117a15760405162461bcd60e51b81526004016105ca90612c63565b3b151590565b828054612293906131d2565b90600052602060002090601f0160209004810192826122b557600085556122fb565b82601f106122ce57805160ff19168380011785556122fb565b828001600101855582156122fb579182015b828111156122fb5782518255916020019190600101906122e0565b5061230792915061230b565b5090565b5b80821115612307576000815560010161230c565b80356001600160a01b038116811461060757600080fd5b600082601f830112612347578081fd5b8135602061235c61235783613120565b6130f6565b8281528181019085830183850287018401881015612378578586fd5b855b858110156123965781358452928401929084019060010161237a565b5090979650505050505050565b8035801515811461060757600080fd5b600082601f8301126123c3578081fd5b813567ffffffffffffffff8111156123dd576123dd613268565b6123f0601f8201601f19166020016130f6565b818152846020838601011115612404578283fd5b816020850160208301379081016020019190915292915050565b60006020828403121561242f578081fd5b611c4282612320565b6000806040838503121561244a578081fd5b61245383612320565b915061246160208401612320565b90509250929050565b600080600080600060a08688031215612481578081fd5b61248a86612320565b945061249860208701612320565b9350604086013567ffffffffffffffff808211156124b4578283fd5b6124c089838a01612337565b945060608801359150808211156124d5578283fd5b6124e189838a01612337565b935060808801359150808211156124f6578283fd5b50612503888289016123b3565b9150509295509295909350565b600080600080600060a08688031215612527578081fd5b61253086612320565b945061253e60208701612320565b93506040860135925060608601359150608086013567ffffffffffffffff811115612567578182fd5b612503888289016123b3565b600080600060608486031215612587578283fd5b61259084612320565b9250602084013567ffffffffffffffff808211156125ac578384fd5b6125b887838801612337565b935060408601359150808211156125cd578283fd5b506125da86828701612337565b9150509250925092565b600080600080608085870312156125f9578384fd5b61260285612320565b9350602085013567ffffffffffffffff8082111561261e578485fd5b61262a88838901612337565b9450604087013591508082111561263f578384fd5b5061264c87828801612337565b949793965093946060013593505050565b6000806040838503121561266f578182fd5b61267883612320565b9150612461602084016123a3565b60008060408385031215612698578182fd5b6126a183612320565b946020939093013593505050565b6000806000606084860312156126c3578081fd5b6126cc84612320565b95602085013595506040909401359392505050565b600080600080608085870312156126f6578182fd5b6126ff85612320565b966020860135965060408601359560600135945092505050565b6000806040838503121561272b578182fd5b823567ffffffffffffffff80821115612742578384fd5b818501915085601f830112612755578384fd5b8135602061276561235783613120565b82815281810190858301838502870184018b1015612781578889fd5b8896505b848710156127aa5761279681612320565b835260019690960195918301918301612785565b50965050860135925050808211156127c0578283fd5b506127cd85828601612337565b9150509250929050565b6000806000606084860312156127eb578081fd5b6126cc846123a3565b600060208284031215612805578081fd5b8135611c4281613329565b600060208284031215612821578081fd5b8151611c4281613329565b60006020828403121561283d578081fd5b813567ffffffffffffffff811115612853578182fd5b6115d0848285016123b3565b600060208284031215612870578081fd5b5035919050565b60008060408385031215612889578182fd5b82359150602083013567ffffffffffffffff8111156128a6578182fd5b6127cd858286016123b3565b6000815180845260208085019450808401835b838110156128e1578151875295820195908201906001016128c5565b509495945050505050565b600081518084526129048160208601602086016131a6565b601f01601f19169290920160200192915050565b6000835161292a8184602088016131a6565b83519083019061293e8183602088016131a6565b01949350505050565b6001600160a01b0391909116815260200190565b60006001600160a01b03808816835280871660208401525060a0604083015261298760a08301866128b2565b828103606084015261299981866128b2565b905082810360808401526129ad81856128ec565b98975050505050505050565b60006001600160a01b03808816835280871660208401525084604083015283606083015260a060808301526129f160a08301846128ec565b979650505050505050565b600060208252611c4260208301846128b2565b600060408252612a2260408301856128b2565b8281036020840152612a3481856128b2565b95945050505050565b901515815260200190565b600060208252611c4260208301846128ec565b60208082526034908201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560408201527f526563656976657220696d706c656d656e746572000000000000000000000000606082015260800190565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a6563746560408201527f6420746f6b656e73000000000000000000000000000000000000000000000000606082015260800190565b60208082526014908201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604082015260600190565b6020808252602b908201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60408201527f65726f2061646472657373000000000000000000000000000000000000000000606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c60408201527f616e636500000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252602c908201527f455243313135355061757361626c653a20746f6b656e207472616e736665722060408201527f7768696c65207061757365640000000000000000000000000000000000000000606082015260800190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201527f20617070726f7665640000000000000000000000000000000000000000000000606082015260800190565b60208082526010908201527f5061757361626c653a2070617573656400000000000000000000000000000000604082015260600190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460408201527f6472657373000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526032908201527f455243313135353a207472616e736665722063616c6c6572206973206e6f742060408201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000606082015260800190565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201527f6573730000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201527f72207472616e7366657200000000000000000000000000000000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526010908201527f5472616e73666572206661696c65642e00000000000000000000000000000000604082015260600190565b60208082526029908201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360408201527f20666f722073656c660000000000000000000000000000000000000000000000606082015260800190565b60208082526029908201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860408201527f206d69736d617463680000000000000000000000000000000000000000000000606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060408201527f6d69736d61746368000000000000000000000000000000000000000000000000606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360408201527f7300000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b90815260200190565b918252602082015260400190565b60405181810167ffffffffffffffff8111828210171561311857613118613268565b604052919050565b600067ffffffffffffffff82111561313a5761313a613268565b5060209081020190565b600082198211156131575761315761323c565b500190565b60008261316b5761316b613252565b500490565b600081600019048311821515161561318a5761318a61323c565b500290565b6000828210156131a1576131a161323c565b500390565b60005b838110156131c15781810151838201526020016131a9565b83811115610c0f5750506000910152565b6002810460018216806131e657607f821691505b6020821081141561320757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156132215761322161323c565b5060010190565b60008261323757613237613252565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b60e01c90565b600060443d101561329457610849565b600481823e6308c379a06132a8825161327e565b146132b257610849565b6040513d600319016004823e80513d67ffffffffffffffff81602484011181841117156132e25750505050610849565b828401925082519150808211156132fc5750505050610849565b503d8301602082840101111561331457505050610849565b601f01601f1916810160200160405291505090565b6001600160e01b03198116811461066557600080fdfea26469706673582212202c7a066070fac905dc889f1ca8193099c476e36ce5b7aadca801fceb1dcae0e764736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000010486170707920417374726f6e617574730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044841545300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004968747470733a2f2f697066732e696f2f697066732f516d50336e5a317777446471327a4c577472314b73723234616f6479736d66315162684d663842375367594c35642f696e666f2f0000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101e25760003560e01c80636b20c45411610102578063b67797d611610095578063e985e9c511610064578063e985e9c514610522578063f242432a14610542578063f2fde38b14610562578063f5298aca14610582576101e2565b8063b67797d6146104ad578063ba0c60c9146104cd578063cb61165c146104e2578063dd59154414610502576101e2565b80638da5cb5b116100d15780638da5cb5b1461043657806395d89b4114610458578063a22cb4651461046d578063a647e8ec1461048d576101e2565b80636b20c454146103d9578063715018a6146103f957806379c650681461040e5780638456cb5914610421576101e2565b80633adf80b41161017a5780634e1273f4116101495780634e1273f4146103625780635b3845a81461038f5780635c975abb146103a4578063693e35ed146103b9576101e2565b80633adf80b4146102f85780633ccfd60b146103185780633f4ba83a1461032d5780634826cda514610342576101e2565b80630e89341c116101b65780630e89341c1461028e57806318160ddd146102ae5780631a4231a4146102c35780632eb2c2d6146102d8576101e2565b8062fdd58e146101e757806301ffc9a71461021d57806302fe53051461024a57806306fdde031461026c575b600080fd5b3480156101f357600080fd5b50610207610202366004612686565b6105a2565b60405161021491906130df565b60405180910390f35b34801561022957600080fd5b5061023d6102383660046127f4565b6105f9565b6040516102149190612a3d565b34801561025657600080fd5b5061026a61026536600461282c565b61060c565b005b34801561027857600080fd5b50610281610668565b6040516102149190612a48565b34801561029a57600080fd5b506102816102a936600461285f565b6106f6565b3480156102ba57600080fd5b50610207610845565b3480156102cf57600080fd5b5061020761084c565b3480156102e457600080fd5b5061026a6102f336600461246a565b610852565b34801561030457600080fd5b5061026a610313366004612877565b6108b0565b34801561032457600080fd5b5061026a610924565b34801561033957600080fd5b5061026a610990565b34801561034e57600080fd5b5061026a61035d3660046127d7565b6109ea565b34801561036e57600080fd5b5061038261037d366004612719565b610a54565b60405161021491906129fc565b34801561039b57600080fd5b5061023d610b74565b3480156103b057600080fd5b5061023d610b7d565b3480156103c557600080fd5b5061026a6103d43660046125e4565b610b86565b3480156103e557600080fd5b5061026a6103f4366004612573565b610c15565b34801561040557600080fd5b5061026a610c6a565b61026a61041c366004612686565b610cb3565b34801561042d57600080fd5b5061026a610f0b565b34801561044257600080fd5b5061044b610f63565b6040516102149190612947565b34801561046457600080fd5b50610281610f77565b34801561047957600080fd5b5061026a61048836600461265d565b610f84565b34801561049957600080fd5b5061026a6104a83660046126e1565b611052565b3480156104b957600080fd5b5061026a6104c836600461285f565b6110bd565b3480156104d957600080fd5b50610207611112565b3480156104ee57600080fd5b5061023d6104fd36600461241e565b611118565b34801561050e57600080fd5b5061026a61051d36600461265d565b611136565b34801561052e57600080fd5b5061023d61053d366004612438565b6111b1565b34801561054e57600080fd5b5061026a61055d366004612510565b6111df565b34801561056e57600080fd5b5061026a61057d36600461241e565b611236565b34801561058e57600080fd5b5061026a61059d3660046126af565b6112a4565b60006001600160a01b0383166105d35760405162461bcd60e51b81526004016105ca90612b4c565b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b600061060482611355565b90505b919050565b6106146113c7565b6001600160a01b0316610625610f63565b6001600160a01b0316148061064057506106406104fd6113c7565b61065c5760405162461bcd60e51b81526004016105ca90612ec8565b610665816113d6565b50565b600b8054610675906131d2565b80601f01602080910402602001604051908101604052809291908181526020018280546106a1906131d2565b80156106ee5780601f106106c3576101008083540402835291602001916106ee565b820191906000526020600020905b8154815290600101906020018083116106d157829003601f168201915b505050505081565b600081815260066020526040812080546060929190610714906131d2565b905011156107ba5760008281526006602052604090208054610735906131d2565b80601f0160208091040260200160405190810160405280929190818152602001828054610761906131d2565b80156107ae5780601f10610783576101008083540402835291602001916107ae565b820191906000526020600020905b81548152906001019060200180831161079157829003601f168201915b50505050509050610607565b60016005546107c9919061318f565b8211156107e55750604080516020810190915260008152610607565b60006107f0836113ed565b511161080b576040518060200160405280600081525061083e565b610814826113ed565b61081d83611481565b60405160200161082e929190612918565b6040516020818303038152906040525b9050610607565b6005545b90565b60095481565b61085a6113c7565b6001600160a01b0316856001600160a01b0316148061088057506108808561053d6113c7565b61089c5760405162461bcd60e51b81526004016105ca90612db1565b6108a985858585856115d8565b5050505050565b6108b86113c7565b6001600160a01b03166108c9610f63565b6001600160a01b031614806108e457506108e46104fd6113c7565b6109005760405162461bcd60e51b81526004016105ca90612ec8565b6000828152600660209081526040909120825161091f92840190612287565b505050565b61092c6113c7565b6001600160a01b031661093d610f63565b6001600160a01b0316148061095857506109586104fd6113c7565b6109745760405162461bcd60e51b81526004016105ca90612ec8565b478061097f57600080fd5b61066561098a610f63565b476117a9565b6109986113c7565b6001600160a01b03166109a9610f63565b6001600160a01b031614806109c457506109c46104fd6113c7565b6109e05760405162461bcd60e51b81526004016105ca90612ec8565b6109e8611825565b565b6109f26113c7565b6001600160a01b0316610a03610f63565b6001600160a01b03161480610a1e5750610a1e6104fd6113c7565b610a3a5760405162461bcd60e51b81526004016105ca90612ec8565b6008805460ff191693151593909317909255600955600a55565b60608151835114610a775760405162461bcd60e51b81526004016105ca90612f91565b6000835167ffffffffffffffff811115610aa157634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610aca578160200160208202803683370190505b50905060005b8451811015610b6c57610b31858281518110610afc57634e487b7160e01b600052603260045260246000fd5b6020026020010151858381518110610b2457634e487b7160e01b600052603260045260246000fd5b60200260200101516105a2565b828281518110610b5157634e487b7160e01b600052603260045260246000fd5b6020908102919091010152610b658161320d565b9050610ad0565b509392505050565b60085460ff1681565b60035460ff1690565b610b8e6113c7565b6001600160a01b0316610b9f610f63565b6001600160a01b03161480610bba5750610bba6104fd6113c7565b610bd65760405162461bcd60e51b81526004016105ca90612ec8565b610bf184848460405180602001604052806000815250611893565b8015610c0f578060056000828254610c099190613144565b90915550505b50505050565b610c1d6113c7565b6001600160a01b0316836001600160a01b03161480610c435750610c438361053d6113c7565b610c5f5760405162461bcd60e51b81526004016105ca90612cc0565b61091f838383611a14565b610c726113c7565b6001600160a01b0316610c83610f63565b6001600160a01b031614610ca95760405162461bcd60e51b81526004016105ca90612ec8565b6109e86000611bc5565b60026004541415610cd65760405162461bcd60e51b81526004016105ca906130a8565b600260045580610ce557600080fd5b610ced6113c7565b6001600160a01b0316610cfe610f63565b6001600160a01b0316141580610d1c5750610d1a6104fd6113c7565b155b15610d595760085460ff16610d3057600080fd5b600a54811115610d3f57600080fd5b6009543490610d4e9083611c36565b1115610d5957600080fd5b8060011415610d9e57610d8082600554600160405180602001604052806000815250611c49565b600160056000828254610d939190613144565b90915550610f029050565b60008167ffffffffffffffff811115610dc757634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610df0578160200160208202803683370190505b50905060008267ffffffffffffffff811115610e1c57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610e45578160200160208202803683370190505b50905060005b83811015610ecc5780600554610e619190613144565b838281518110610e8157634e487b7160e01b600052603260045260246000fd5b6020026020010181815250506001828281518110610eaf57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610ec48161320d565b915050610e4b565b50610ee884838360405180602001604052806000815250611893565b8260056000828254610efa9190613144565b909155505050505b50506001600455565b610f136113c7565b6001600160a01b0316610f24610f63565b6001600160a01b03161480610f3f5750610f3f6104fd6113c7565b610f5b5760405162461bcd60e51b81526004016105ca90612ec8565b6109e8611d38565b60035461010090046001600160a01b031690565b600c8054610675906131d2565b816001600160a01b0316610f966113c7565b6001600160a01b03161415610fbd5760405162461bcd60e51b81526004016105ca90612f34565b8060016000610fca6113c7565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561100e6113c7565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110469190612a3d565b60405180910390a35050565b61105a6113c7565b6001600160a01b031661106b610f63565b6001600160a01b0316148061108657506110866104fd6113c7565b6110a25760405162461bcd60e51b81526004016105ca90612ec8565b610bf184848460405180602001604052806000815250611c49565b6110c56113c7565b6001600160a01b03166110d6610f63565b6001600160a01b031614806110f157506110f16104fd6113c7565b61110d5760405162461bcd60e51b81526004016105ca90612ec8565b600555565b600a5481565b6001600160a01b031660009081526007602052604090205460ff1690565b61113e6113c7565b6001600160a01b031661114f610f63565b6001600160a01b0316148061116a575061116a6104fd6113c7565b6111865760405162461bcd60e51b81526004016105ca90612ec8565b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6111e76113c7565b6001600160a01b0316856001600160a01b0316148061120d575061120d8561053d6113c7565b6112295760405162461bcd60e51b81526004016105ca90612cc0565b6108a98585858585611d93565b61123e6113c7565b6001600160a01b031661124f610f63565b6001600160a01b0316146112755760405162461bcd60e51b81526004016105ca90612ec8565b6001600160a01b03811661129b5760405162461bcd60e51b81526004016105ca90612ba9565b61066581611bc5565b6112ac6113c7565b6001600160a01b0316836001600160a01b031614806112d257506112d28361053d6113c7565b6112ee5760405162461bcd60e51b81526004016105ca90612cc0565b61091f838383611ec7565b60003330141561135057600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506108499050565b503390565b60006001600160e01b031982167fd9b67a260000000000000000000000000000000000000000000000000000000014806113b857506001600160e01b031982167f0e89341c00000000000000000000000000000000000000000000000000000000145b80610604575061060482611fd6565b60006113d16112f9565b905090565b80516113e9906002906020840190612287565b5050565b6060600280546113fc906131d2565b80601f0160208091040260200160405190810160405280929190818152602001828054611428906131d2565b80156114755780601f1061144a57610100808354040283529160200191611475565b820191906000526020600020905b81548152906001019060200180831161145857829003601f168201915b50505050509050919050565b6060816114c2575060408051808201909152600181527f30000000000000000000000000000000000000000000000000000000000000006020820152610607565b8160005b81156114ec57806114d68161320d565b91506114e59050600a8361315c565b91506114c6565b60008167ffffffffffffffff81111561151557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561153f576020820181803683370190505b5090505b84156115d05761155460018361318f565b9150611561600a86613228565b61156c906030613144565b60f81b81838151811061158f57634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506115c9600a8661315c565b9450611543565b949350505050565b81518351146115f95760405162461bcd60e51b81526004016105ca90612fee565b6001600160a01b03841661161f5760405162461bcd60e51b81526004016105ca90612d54565b60006116296113c7565b9050611639818787878787612008565b60005b845181101561173b57600085828151811061166757634e487b7160e01b600052603260045260246000fd5b60200260200101519050600085838151811061169357634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156116e35760405162461bcd60e51b81526004016105ca90612e6b565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611720908490613144565b92505081905550505050806117349061320d565b905061163c565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161178b929190612a0f565b60405180910390a46117a1818787878787612016565b505050505050565b6000826001600160a01b0316826040516117c290610849565b60006040518083038185875af1925050503d80600081146117ff576040519150601f19603f3d011682016040523d82523d6000602084013e611804565b606091505b505090508061091f5760405162461bcd60e51b81526004016105ca90612efd565b61182d610b7d565b6118495760405162461bcd60e51b81526004016105ca90612b15565b6003805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61187c6113c7565b6040516118899190612947565b60405180910390a1565b6001600160a01b0384166118b95760405162461bcd60e51b81526004016105ca9061304b565b81518351146118da5760405162461bcd60e51b81526004016105ca90612fee565b60006118e46113c7565b90506118f581600087878787612008565b60005b84518110156119ac5783818151811061192157634e487b7160e01b600052603260045260246000fd5b602002602001015160008087848151811061194c57634e487b7160e01b600052603260045260246000fd5b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b0316815260200190815260200160002060008282546119949190613144565b909155508190506119a48161320d565b9150506118f8565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516119fd929190612a0f565b60405180910390a46108a981600087878787612016565b6001600160a01b038316611a3a5760405162461bcd60e51b81526004016105ca90612e0e565b8051825114611a5b5760405162461bcd60e51b81526004016105ca90612fee565b6000611a656113c7565b9050611a8581856000868660405180602001604052806000815250612008565b60005b8351811015611b66576000848281518110611ab357634e487b7160e01b600052603260045260246000fd5b602002602001015190506000848381518110611adf57634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038c168352909352919091205490915081811015611b2f5760405162461bcd60e51b81526004016105ca90612c06565b6000928352602083815260408085206001600160a01b038b1686529091529092209103905580611b5e8161320d565b915050611a88565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611bb7929190612a0f565b60405180910390a450505050565b600380546001600160a01b038381166101008181027fffffffffffffffffffffff0000000000000000000000000000000000000000ff85161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611c428284613170565b9392505050565b6001600160a01b038416611c6f5760405162461bcd60e51b81526004016105ca9061304b565b6000611c796113c7565b9050611c9a81600087611c8b88612124565b611c9488612124565b87612008565b6000848152602081815260408083206001600160a01b038916845290915281208054859290611cca908490613144565b92505081905550846001600160a01b031660006001600160a01b0316826001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611d219291906130e8565b60405180910390a46108a98160008787878761217d565b611d40610b7d565b15611d5d5760405162461bcd60e51b81526004016105ca90612d1d565b6003805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861187c6113c7565b6001600160a01b038416611db95760405162461bcd60e51b81526004016105ca90612d54565b6000611dc36113c7565b9050611dd4818787611c8b88612124565b6000848152602081815260408083206001600160a01b038a16845290915290205483811015611e155760405162461bcd60e51b81526004016105ca90612e6b565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611e52908490613144565b92505081905550856001600160a01b0316876001600160a01b0316836001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611ea89291906130e8565b60405180910390a4611ebe82888888888861217d565b50505050505050565b6001600160a01b038316611eed5760405162461bcd60e51b81526004016105ca90612e0e565b6000611ef76113c7565b9050611f2781856000611f0987612124565b611f1287612124565b60405180602001604052806000815250612008565b6000838152602081815260408083206001600160a01b038816845290915290205482811015611f685760405162461bcd60e51b81526004016105ca90612c06565b6000848152602081815260408083206001600160a01b03808a16808652919093528184208786039055905190918516907fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6290611fc790899089906130e8565b60405180910390a45050505050565b6001600160e01b031981167f01ffc9a70000000000000000000000000000000000000000000000000000000014919050565b6117a186868686868661224e565b612028846001600160a01b0316612281565b156117a15760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190612061908990899088908890889060040161295b565b602060405180830381600087803b15801561207b57600080fd5b505af19250505080156120ab575060408051601f3d908101601f191682019092526120a891810190612810565b60015b6120f4576120b7613284565b806120c257506120dc565b8060405162461bcd60e51b81526004016105ca9190612a48565b60405162461bcd60e51b81526004016105ca90612a5b565b6001600160e01b0319811663bc197c8160e01b14611ebe5760405162461bcd60e51b81526004016105ca90612ab8565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061216c57634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b61218f846001600160a01b0316612281565b156117a15760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906121c890899089908890889088906004016129b9565b602060405180830381600087803b1580156121e257600080fd5b505af1925050508015612212575060408051601f3d908101601f1916820190925261220f91810190612810565b60015b61221e576120b7613284565b6001600160e01b0319811663f23a6e6160e01b14611ebe5760405162461bcd60e51b81526004016105ca90612ab8565b61225c8686868686866117a1565b612264610b7d565b156117a15760405162461bcd60e51b81526004016105ca90612c63565b3b151590565b828054612293906131d2565b90600052602060002090601f0160209004810192826122b557600085556122fb565b82601f106122ce57805160ff19168380011785556122fb565b828001600101855582156122fb579182015b828111156122fb5782518255916020019190600101906122e0565b5061230792915061230b565b5090565b5b80821115612307576000815560010161230c565b80356001600160a01b038116811461060757600080fd5b600082601f830112612347578081fd5b8135602061235c61235783613120565b6130f6565b8281528181019085830183850287018401881015612378578586fd5b855b858110156123965781358452928401929084019060010161237a565b5090979650505050505050565b8035801515811461060757600080fd5b600082601f8301126123c3578081fd5b813567ffffffffffffffff8111156123dd576123dd613268565b6123f0601f8201601f19166020016130f6565b818152846020838601011115612404578283fd5b816020850160208301379081016020019190915292915050565b60006020828403121561242f578081fd5b611c4282612320565b6000806040838503121561244a578081fd5b61245383612320565b915061246160208401612320565b90509250929050565b600080600080600060a08688031215612481578081fd5b61248a86612320565b945061249860208701612320565b9350604086013567ffffffffffffffff808211156124b4578283fd5b6124c089838a01612337565b945060608801359150808211156124d5578283fd5b6124e189838a01612337565b935060808801359150808211156124f6578283fd5b50612503888289016123b3565b9150509295509295909350565b600080600080600060a08688031215612527578081fd5b61253086612320565b945061253e60208701612320565b93506040860135925060608601359150608086013567ffffffffffffffff811115612567578182fd5b612503888289016123b3565b600080600060608486031215612587578283fd5b61259084612320565b9250602084013567ffffffffffffffff808211156125ac578384fd5b6125b887838801612337565b935060408601359150808211156125cd578283fd5b506125da86828701612337565b9150509250925092565b600080600080608085870312156125f9578384fd5b61260285612320565b9350602085013567ffffffffffffffff8082111561261e578485fd5b61262a88838901612337565b9450604087013591508082111561263f578384fd5b5061264c87828801612337565b949793965093946060013593505050565b6000806040838503121561266f578182fd5b61267883612320565b9150612461602084016123a3565b60008060408385031215612698578182fd5b6126a183612320565b946020939093013593505050565b6000806000606084860312156126c3578081fd5b6126cc84612320565b95602085013595506040909401359392505050565b600080600080608085870312156126f6578182fd5b6126ff85612320565b966020860135965060408601359560600135945092505050565b6000806040838503121561272b578182fd5b823567ffffffffffffffff80821115612742578384fd5b818501915085601f830112612755578384fd5b8135602061276561235783613120565b82815281810190858301838502870184018b1015612781578889fd5b8896505b848710156127aa5761279681612320565b835260019690960195918301918301612785565b50965050860135925050808211156127c0578283fd5b506127cd85828601612337565b9150509250929050565b6000806000606084860312156127eb578081fd5b6126cc846123a3565b600060208284031215612805578081fd5b8135611c4281613329565b600060208284031215612821578081fd5b8151611c4281613329565b60006020828403121561283d578081fd5b813567ffffffffffffffff811115612853578182fd5b6115d0848285016123b3565b600060208284031215612870578081fd5b5035919050565b60008060408385031215612889578182fd5b82359150602083013567ffffffffffffffff8111156128a6578182fd5b6127cd858286016123b3565b6000815180845260208085019450808401835b838110156128e1578151875295820195908201906001016128c5565b509495945050505050565b600081518084526129048160208601602086016131a6565b601f01601f19169290920160200192915050565b6000835161292a8184602088016131a6565b83519083019061293e8183602088016131a6565b01949350505050565b6001600160a01b0391909116815260200190565b60006001600160a01b03808816835280871660208401525060a0604083015261298760a08301866128b2565b828103606084015261299981866128b2565b905082810360808401526129ad81856128ec565b98975050505050505050565b60006001600160a01b03808816835280871660208401525084604083015283606083015260a060808301526129f160a08301846128ec565b979650505050505050565b600060208252611c4260208301846128b2565b600060408252612a2260408301856128b2565b8281036020840152612a3481856128b2565b95945050505050565b901515815260200190565b600060208252611c4260208301846128ec565b60208082526034908201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560408201527f526563656976657220696d706c656d656e746572000000000000000000000000606082015260800190565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a6563746560408201527f6420746f6b656e73000000000000000000000000000000000000000000000000606082015260800190565b60208082526014908201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604082015260600190565b6020808252602b908201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60408201527f65726f2061646472657373000000000000000000000000000000000000000000606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c60408201527f616e636500000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252602c908201527f455243313135355061757361626c653a20746f6b656e207472616e736665722060408201527f7768696c65207061757365640000000000000000000000000000000000000000606082015260800190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201527f20617070726f7665640000000000000000000000000000000000000000000000606082015260800190565b60208082526010908201527f5061757361626c653a2070617573656400000000000000000000000000000000604082015260600190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460408201527f6472657373000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526032908201527f455243313135353a207472616e736665722063616c6c6572206973206e6f742060408201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000606082015260800190565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201527f6573730000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201527f72207472616e7366657200000000000000000000000000000000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526010908201527f5472616e73666572206661696c65642e00000000000000000000000000000000604082015260600190565b60208082526029908201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360408201527f20666f722073656c660000000000000000000000000000000000000000000000606082015260800190565b60208082526029908201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860408201527f206d69736d617463680000000000000000000000000000000000000000000000606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060408201527f6d69736d61746368000000000000000000000000000000000000000000000000606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360408201527f7300000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b90815260200190565b918252602082015260400190565b60405181810167ffffffffffffffff8111828210171561311857613118613268565b604052919050565b600067ffffffffffffffff82111561313a5761313a613268565b5060209081020190565b600082198211156131575761315761323c565b500190565b60008261316b5761316b613252565b500490565b600081600019048311821515161561318a5761318a61323c565b500290565b6000828210156131a1576131a161323c565b500390565b60005b838110156131c15781810151838201526020016131a9565b83811115610c0f5750506000910152565b6002810460018216806131e657607f821691505b6020821081141561320757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156132215761322161323c565b5060010190565b60008261323757613237613252565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b60e01c90565b600060443d101561329457610849565b600481823e6308c379a06132a8825161327e565b146132b257610849565b6040513d600319016004823e80513d67ffffffffffffffff81602484011181841117156132e25750505050610849565b828401925082519150808211156132fc5750505050610849565b503d8301602082840101111561331457505050610849565b601f01601f1916810160200160405291505090565b6001600160e01b03198116811461066557600080fdfea26469706673582212202c7a066070fac905dc889f1ca8193099c476e36ce5b7aadca801fceb1dcae0e764736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000010486170707920417374726f6e617574730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044841545300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004968747470733a2f2f697066732e696f2f697066732f516d50336e5a317777446471327a4c577472314b73723234616f6479736d66315162684d663842375367594c35642f696e666f2f0000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Happy Astronauts
Arg [1] : _symbol (string): HATS
Arg [2] : _uri (string): https://ipfs.io/ipfs/QmP3nZ1wwDdq2zLWtr1Ksr24aodysmf1QbhMf8B7SgYL5d/info/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [4] : 486170707920417374726f6e6175747300000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4841545300000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000049
Arg [8] : 68747470733a2f2f697066732e696f2f697066732f516d50336e5a3177774464
Arg [9] : 71327a4c577472314b73723234616f6479736d66315162684d66384237536759
Arg [10] : 4c35642f696e666f2f0000000000000000000000000000000000000000000000


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.