ETH Price: $3,268.73 (+0.60%)
Gas: 1 Gwei

Token

f1_DAO (f1)
 

Overview

Max Total Supply

0 f1

Holders

43

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
luckybrick.eth
Balance
2 f1
0xA7A3a06E9A649939f60bE309831B5e0EA6cC2513
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:
F1_NFT

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

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

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

/// @author The MoonProof Team - Ken Miyachi, Darian Chan 
/// @title A Contract for F1 DAO NFT
contract F1_NFT is ERC721 {
    address public owner;
    string public baseURI; 
    string public baseExtension = ".json";
    uint256 public  maxMintAmount;
    mapping(address => bool) public whiteListAddresses;
    mapping(address => uint256) public addressTokenCount;
    mapping(uint256 => string) public uriMap;
    uint256 public tokenID = 1; // starting at 1 because of IPFS data
    uint256 private constant COLLECTION_MAX = 9000; // set 9k max to avoid over minting
    uint public amountMintedForGiveaways;

    bool public active; // default value is false

    constructor(
        string memory _newBaseURI,
        uint _maxMintAmount
    ) ERC721("f1_DAO", "f1") {
        owner = msg.sender;
        maxMintAmount = _maxMintAmount;
        setBaseURI(_newBaseURI);
    }

    modifier onlyOwner() {
        require(msg.sender == owner, "only owner can perform this action");
        _;
    }

    /// @dev toggle mint on
    function toggleOn() public onlyOwner {
        active = true;
    }

    /// @dev toggle mint off
    function toggleOff() public onlyOwner {
        active = false;
    }

    // ------------------------ //
    //  WHITELIST FUNCTIONALITY //
    // -----------------------  //

    /// @param addresses - List of address to add to the whiteList
    /// @dev adds lists of addresses which can mint tokens in whitelist phase. 
    function addToWhiteList(address[] calldata addresses) public onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            whiteListAddresses[addresses[i]] = true;
        }
    }

    /// @param nftAmountToMint - # of NFTs specified to mint
    /// @dev mints tokens to wallet addresses 
    function mint(uint256 nftAmountToMint) public payable {
      require(tokenID <= COLLECTION_MAX, "No more nfts available to mint");
      checkWhiteListRequirements(nftAmountToMint, msg.sender);
      
      for (uint256 i = 0; i < nftAmountToMint; i++) {
          _mint(msg.sender, tokenID);
          uriMap[tokenID] = tokenURI(tokenID);
          addressTokenCount[msg.sender]++;
          tokenID++;
      }
    }

    /// @param amount - # of NFTs specified to mint
    /// @dev mints tokens to address for team giveaways
    function mintForGiveAway(uint amount) public onlyOwner {
        require(amountMintedForGiveaways <= 1000, "can only mint 1000 max for giveaways");
        for (uint256 i = 0; i < amount; i++) {
          _mint(msg.sender, tokenID);
          uriMap[tokenID] = tokenURI(tokenID);
          addressTokenCount[msg.sender]++;
          tokenID++;
      }
      amountMintedForGiveaways++;
    }

    // -----------  //
    //   HELPERS   //
    // ---------- //


    /// @param nftAmountToMint - # of NFTs specified to mint
    /// @param user - address of the user minting tokens
    /// @dev checks requirements for whitelist phase mint
    function checkWhiteListRequirements(
        uint256 nftAmountToMint,
        address user
    ) private view {
        require(active == true, "Mint is not on");
        require(
            whiteListAddresses[user] == true,
            "user address is not on whitelist"
        );
        require(addressTokenCount[user] + nftAmountToMint <= maxMintAmount, "Account Address reached limit on Tokens");
        require(
            IERC721(address(this)).balanceOf(user) <= maxMintAmount,
            "max amount you can have is 2 nfts"
        );
    }

    function changeMintAmount(uint amount) public onlyOwner {
        maxMintAmount = amount;
    }

    /// @dev sends all funds to owner of the contract
    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        (bool success, ) = payable(owner).call{value: balance}("");
        require(success);
    }

    function transferOwner(address _owner) public onlyOwner {
        owner = _owner;
    }

    // ----------------------------- //
    //  IPFS/OPEANSEA FUNCTIONALITY //
    // --------------------------  //

    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        Strings.toString(tokenId),
                        baseExtension
                    )
                )
                : "";
    }
}

File 2 of 10 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 4 of 10 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 10 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 6 of 10 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 7 of 10 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

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 8 of 10 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"},{"internalType":"uint256","name":"_maxMintAmount","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressTokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountMintedForGiveaways","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"changeMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nftAmountToMint","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintForGiveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","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":"toggleOff","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleOn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokenID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"transferOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uriMap","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteListAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060089080519060200190620000519291906200023a565b506001600d553480156200006457600080fd5b50604051620046343803806200463483398181016040528101906200008a9190620004c2565b6040518060400160405280600681526020017f66315f44414f00000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f663100000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200010e9291906200023a565b508060019080519060200190620001279291906200023a565b50505033600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060098190555062000183826200018b60201b60201c565b505062000636565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146200021e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200021590620005af565b60405180910390fd5b8060079080519060200190620002369291906200023a565b5050565b828054620002489062000600565b90600052602060002090601f0160209004810192826200026c5760008555620002b8565b82601f106200028757805160ff1916838001178555620002b8565b82800160010185558215620002b8579182015b82811115620002b75782518255916020019190600101906200029a565b5b509050620002c79190620002cb565b5090565b5b80821115620002e6576000816000905550600101620002cc565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003538262000308565b810181811067ffffffffffffffff8211171562000375576200037462000319565b5b80604052505050565b60006200038a620002ea565b905062000398828262000348565b919050565b600067ffffffffffffffff821115620003bb57620003ba62000319565b5b620003c68262000308565b9050602081019050919050565b60005b83811015620003f3578082015181840152602081019050620003d6565b8381111562000403576000848401525b50505050565b6000620004206200041a846200039d565b6200037e565b9050828152602081018484840111156200043f576200043e62000303565b5b6200044c848285620003d3565b509392505050565b600082601f8301126200046c576200046b620002fe565b5b81516200047e84826020860162000409565b91505092915050565b6000819050919050565b6200049c8162000487565b8114620004a857600080fd5b50565b600081519050620004bc8162000491565b92915050565b60008060408385031215620004dc57620004db620002f4565b5b600083015167ffffffffffffffff811115620004fd57620004fc620002f9565b5b6200050b8582860162000454565b92505060206200051e85828601620004ab565b9150509250929050565b600082825260208201905092915050565b7f6f6e6c79206f776e65722063616e20706572666f726d2074686973206163746960008201527f6f6e000000000000000000000000000000000000000000000000000000000000602082015250565b60006200059760228362000528565b9150620005a48262000539565b604082019050919050565b60006020820190508181036000830152620005ca8162000588565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200061957607f821691505b6020821081141562000630576200062f620005d1565b5b50919050565b613fee80620006466000396000f3fe6080604052600436106101e35760003560e01c8063740d73f311610102578063b2a08be711610095578063dd2eb9f311610064578063dd2eb9f3146106cf578063e784f4c21461070c578063e985e9c514610737578063f4c2366714610774576101e3565b8063b2a08be714610615578063b88d4fde1461063e578063c668286214610667578063c87b56dd14610692576101e3565b806395d89b41116100d157806395d89b411461057a578063a0712d68146105a5578063a22cb465146105c1578063a5c42ef1146105ea576101e3565b8063740d73f3146104c05780637d5092c9146104e95780638da5cb5b14610512578063920674dc1461053d576101e3565b80633ccfd60b1161017a57806355f804b31161014957806355f804b3146103f25780636352211e1461041b5780636c0360eb1461045857806370a0823114610483576101e3565b80633ccfd60b1461034c57806342842e0e14610363578063474dd97d1461038c5780634fb2e45d146103c9576101e3565b8063095ea7b3116101b6578063095ea7b3146102b8578063239c70ae146102e157806323b872dd1461030c578063267bcabd14610335576101e3565b806301ffc9a7146101e857806302fb0c5e1461022557806306fdde0314610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612925565b61078b565b60405161021c919061296d565b60405180910390f35b34801561023157600080fd5b5061023a61086d565b604051610247919061296d565b60405180910390f35b34801561025c57600080fd5b50610265610880565b6040516102729190612a21565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d9190612a79565b610912565b6040516102af9190612ae7565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da9190612b2e565b610997565b005b3480156102ed57600080fd5b506102f6610aaf565b6040516103039190612b7d565b60405180910390f35b34801561031857600080fd5b50610333600480360381019061032e9190612b98565b610ab5565b005b34801561034157600080fd5b5061034a610b15565b005b34801561035857600080fd5b50610361610bc2565b005b34801561036f57600080fd5b5061038a60048036038101906103859190612b98565b610cf3565b005b34801561039857600080fd5b506103b360048036038101906103ae9190612beb565b610d13565b6040516103c09190612b7d565b60405180910390f35b3480156103d557600080fd5b506103f060048036038101906103eb9190612beb565b610d2b565b005b3480156103fe57600080fd5b5061041960048036038101906104149190612d4d565b610dff565b005b34801561042757600080fd5b50610442600480360381019061043d9190612a79565b610ea9565b60405161044f9190612ae7565b60405180910390f35b34801561046457600080fd5b5061046d610f5b565b60405161047a9190612a21565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a59190612beb565b610fe9565b6040516104b79190612b7d565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e29190612df6565b6110a1565b005b3480156104f557600080fd5b50610510600480360381019061050b9190612a79565b6111d6565b005b34801561051e57600080fd5b50610527611270565b6040516105349190612ae7565b60405180910390f35b34801561054957600080fd5b50610564600480360381019061055f9190612beb565b611296565b604051610571919061296d565b60405180910390f35b34801561058657600080fd5b5061058f6112b6565b60405161059c9190612a21565b60405180910390f35b6105bf60048036038101906105ba9190612a79565b611348565b005b3480156105cd57600080fd5b506105e860048036038101906105e39190612e6f565b611468565b005b3480156105f657600080fd5b506105ff61147e565b60405161060c9190612b7d565b60405180910390f35b34801561062157600080fd5b5061063c60048036038101906106379190612a79565b611484565b005b34801561064a57600080fd5b5061066560048036038101906106609190612f50565b611642565b005b34801561067357600080fd5b5061067c6116a4565b6040516106899190612a21565b60405180910390f35b34801561069e57600080fd5b506106b960048036038101906106b49190612a79565b611732565b6040516106c69190612a21565b60405180910390f35b3480156106db57600080fd5b506106f660048036038101906106f19190612a79565b6117dc565b6040516107039190612a21565b60405180910390f35b34801561071857600080fd5b5061072161187c565b60405161072e9190612b7d565b60405180910390f35b34801561074357600080fd5b5061075e60048036038101906107599190612fd3565b611882565b60405161076b919061296d565b60405180910390f35b34801561078057600080fd5b50610789611916565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108665750610865826119c3565b5b9050919050565b600f60009054906101000a900460ff1681565b60606000805461088f90613042565b80601f01602080910402602001604051908101604052809291908181526020018280546108bb90613042565b80156109085780601f106108dd57610100808354040283529160200191610908565b820191906000526020600020905b8154815290600101906020018083116108eb57829003601f168201915b5050505050905090565b600061091d82611a2d565b61095c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610953906130e6565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109a282610ea9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0a90613178565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a32611a99565b73ffffffffffffffffffffffffffffffffffffffff161480610a615750610a6081610a5b611a99565b611882565b5b610aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a979061320a565b60405180910390fd5b610aaa8383611aa1565b505050565b60095481565b610ac6610ac0611a99565b82611b5a565b610b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afc9061329c565b60405180910390fd5b610b10838383611c38565b505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9c9061332e565b60405180910390fd5b6001600f60006101000a81548160ff021916908315150217905550565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c499061332e565b60405180910390fd5b60004790506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610c9f9061337f565b60006040518083038185875af1925050503d8060008114610cdc576040519150601f19603f3d011682016040523d82523d6000602084013e610ce1565b606091505b5050905080610cef57600080fd5b5050565b610d0e83838360405180602001604052806000815250611642565b505050565b600b6020528060005260406000206000915090505481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db29061332e565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e869061332e565b60405180910390fd5b8060079080519060200190610ea5929190612816565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4990613406565b60405180910390fd5b80915050919050565b60078054610f6890613042565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9490613042565b8015610fe15780601f10610fb657610100808354040283529160200191610fe1565b820191906000526020600020905b815481529060010190602001808311610fc457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561105a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105190613498565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611131576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111289061332e565b60405180910390fd5b60005b828290508110156111d1576001600a6000858585818110611158576111576134b8565b5b905060200201602081019061116d9190612beb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806111c990613516565b915050611134565b505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125d9061332e565b60405180910390fd5b8060098190555050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a6020528060005260406000206000915054906101000a900460ff1681565b6060600180546112c590613042565b80601f01602080910402602001604051908101604052809291908181526020018280546112f190613042565b801561133e5780601f106113135761010080835404028352916020019161133e565b820191906000526020600020905b81548152906001019060200180831161132157829003601f168201915b5050505050905090565b612328600d54111561138f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611386906135ab565b60405180910390fd5b6113998133611e94565b60005b81811015611464576113b033600d546120dd565b6113bb600d54611732565b600c6000600d54815260200190815260200160002090805190602001906113e3929190612816565b50600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061143490613516565b9190505550600d600081548092919061144c90613516565b9190505550808061145c90613516565b91505061139c565b5050565b61147a611473611a99565b83836122ab565b5050565b600d5481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150b9061332e565b60405180910390fd5b6103e8600e54111561155b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115529061363d565b60405180910390fd5b60005b818110156116265761157233600d546120dd565b61157d600d54611732565b600c6000600d54815260200190815260200160002090805190602001906115a5929190612816565b50600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906115f690613516565b9190505550600d600081548092919061160e90613516565b9190505550808061161e90613516565b91505061155e565b50600e600081548092919061163a90613516565b919050555050565b61165361164d611a99565b83611b5a565b611692576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116899061329c565b60405180910390fd5b61169e84848484612418565b50505050565b600880546116b190613042565b80601f01602080910402602001604051908101604052809291908181526020018280546116dd90613042565b801561172a5780601f106116ff5761010080835404028352916020019161172a565b820191906000526020600020905b81548152906001019060200180831161170d57829003601f168201915b505050505081565b606061173d82611a2d565b61177c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611773906136cf565b60405180910390fd5b6000611786612474565b905060008151116117a657604051806020016040528060008152506117d4565b806117b084612506565b60086040516020016117c4939291906137bf565b6040516020818303038152906040525b915050919050565b600c60205280600052604060002060009150905080546117fb90613042565b80601f016020809104026020016040519081016040528092919081815260200182805461182790613042565b80156118745780601f1061184957610100808354040283529160200191611874565b820191906000526020600020905b81548152906001019060200180831161185757829003601f168201915b505050505081565b600e5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146119a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199d9061332e565b60405180910390fd5b6000600f60006101000a81548160ff021916908315150217905550565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b1483610ea9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b6582611a2d565b611ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9b90613862565b60405180910390fd5b6000611baf83610ea9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c1e57508373ffffffffffffffffffffffffffffffffffffffff16611c0684610912565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c2f5750611c2e8185611882565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c5882610ea9565b73ffffffffffffffffffffffffffffffffffffffff1614611cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca5906138f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1590613986565b60405180910390fd5b611d29838383612667565b611d34600082611aa1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d8491906139a6565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ddb91906139da565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60011515600f60009054906101000a900460ff16151514611eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee190613a7c565b60405180910390fd5b60011515600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7490613ae8565b60405180910390fd5b60095482600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611fcb91906139da565b111561200c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200390613b7a565b60405180910390fd5b6009543073ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b81526004016120489190612ae7565b60206040518083038186803b15801561206057600080fd5b505afa158015612074573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120989190613baf565b11156120d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d090613c4e565b60405180910390fd5b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561214d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214490613cba565b60405180910390fd5b61215681611a2d565b15612196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218d90613d26565b60405180910390fd5b6121a260008383612667565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121f291906139da565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561231a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231190613d92565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161240b919061296d565b60405180910390a3505050565b612423848484611c38565b61242f8484848461266c565b61246e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246590613e24565b60405180910390fd5b50505050565b60606007805461248390613042565b80601f01602080910402602001604051908101604052809291908181526020018280546124af90613042565b80156124fc5780601f106124d1576101008083540402835291602001916124fc565b820191906000526020600020905b8154815290600101906020018083116124df57829003601f168201915b5050505050905090565b6060600082141561254e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612662565b600082905060005b6000821461258057808061256990613516565b915050600a826125799190613e73565b9150612556565b60008167ffffffffffffffff81111561259c5761259b612c22565b5b6040519080825280601f01601f1916602001820160405280156125ce5781602001600182028036833780820191505090505b5090505b6000851461265b576001826125e791906139a6565b9150600a856125f69190613ea4565b603061260291906139da565b60f81b818381518110612618576126176134b8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126549190613e73565b94506125d2565b8093505050505b919050565b505050565b600061268d8473ffffffffffffffffffffffffffffffffffffffff16612803565b156127f6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126b6611a99565b8786866040518563ffffffff1660e01b81526004016126d89493929190613f2a565b602060405180830381600087803b1580156126f257600080fd5b505af192505050801561272357506040513d601f19601f820116820180604052508101906127209190613f8b565b60015b6127a6573d8060008114612753576040519150601f19603f3d011682016040523d82523d6000602084013e612758565b606091505b5060008151141561279e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279590613e24565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127fb565b600190505b949350505050565b600080823b905060008111915050919050565b82805461282290613042565b90600052602060002090601f016020900481019282612844576000855561288b565b82601f1061285d57805160ff191683800117855561288b565b8280016001018555821561288b579182015b8281111561288a57825182559160200191906001019061286f565b5b509050612898919061289c565b5090565b5b808211156128b557600081600090555060010161289d565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612902816128cd565b811461290d57600080fd5b50565b60008135905061291f816128f9565b92915050565b60006020828403121561293b5761293a6128c3565b5b600061294984828501612910565b91505092915050565b60008115159050919050565b61296781612952565b82525050565b6000602082019050612982600083018461295e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156129c25780820151818401526020810190506129a7565b838111156129d1576000848401525b50505050565b6000601f19601f8301169050919050565b60006129f382612988565b6129fd8185612993565b9350612a0d8185602086016129a4565b612a16816129d7565b840191505092915050565b60006020820190508181036000830152612a3b81846129e8565b905092915050565b6000819050919050565b612a5681612a43565b8114612a6157600080fd5b50565b600081359050612a7381612a4d565b92915050565b600060208284031215612a8f57612a8e6128c3565b5b6000612a9d84828501612a64565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ad182612aa6565b9050919050565b612ae181612ac6565b82525050565b6000602082019050612afc6000830184612ad8565b92915050565b612b0b81612ac6565b8114612b1657600080fd5b50565b600081359050612b2881612b02565b92915050565b60008060408385031215612b4557612b446128c3565b5b6000612b5385828601612b19565b9250506020612b6485828601612a64565b9150509250929050565b612b7781612a43565b82525050565b6000602082019050612b926000830184612b6e565b92915050565b600080600060608486031215612bb157612bb06128c3565b5b6000612bbf86828701612b19565b9350506020612bd086828701612b19565b9250506040612be186828701612a64565b9150509250925092565b600060208284031215612c0157612c006128c3565b5b6000612c0f84828501612b19565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c5a826129d7565b810181811067ffffffffffffffff82111715612c7957612c78612c22565b5b80604052505050565b6000612c8c6128b9565b9050612c988282612c51565b919050565b600067ffffffffffffffff821115612cb857612cb7612c22565b5b612cc1826129d7565b9050602081019050919050565b82818337600083830152505050565b6000612cf0612ceb84612c9d565b612c82565b905082815260208101848484011115612d0c57612d0b612c1d565b5b612d17848285612cce565b509392505050565b600082601f830112612d3457612d33612c18565b5b8135612d44848260208601612cdd565b91505092915050565b600060208284031215612d6357612d626128c3565b5b600082013567ffffffffffffffff811115612d8157612d806128c8565b5b612d8d84828501612d1f565b91505092915050565b600080fd5b600080fd5b60008083601f840112612db657612db5612c18565b5b8235905067ffffffffffffffff811115612dd357612dd2612d96565b5b602083019150836020820283011115612def57612dee612d9b565b5b9250929050565b60008060208385031215612e0d57612e0c6128c3565b5b600083013567ffffffffffffffff811115612e2b57612e2a6128c8565b5b612e3785828601612da0565b92509250509250929050565b612e4c81612952565b8114612e5757600080fd5b50565b600081359050612e6981612e43565b92915050565b60008060408385031215612e8657612e856128c3565b5b6000612e9485828601612b19565b9250506020612ea585828601612e5a565b9150509250929050565b600067ffffffffffffffff821115612eca57612ec9612c22565b5b612ed3826129d7565b9050602081019050919050565b6000612ef3612eee84612eaf565b612c82565b905082815260208101848484011115612f0f57612f0e612c1d565b5b612f1a848285612cce565b509392505050565b600082601f830112612f3757612f36612c18565b5b8135612f47848260208601612ee0565b91505092915050565b60008060008060808587031215612f6a57612f696128c3565b5b6000612f7887828801612b19565b9450506020612f8987828801612b19565b9350506040612f9a87828801612a64565b925050606085013567ffffffffffffffff811115612fbb57612fba6128c8565b5b612fc787828801612f22565b91505092959194509250565b60008060408385031215612fea57612fe96128c3565b5b6000612ff885828601612b19565b925050602061300985828601612b19565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061305a57607f821691505b6020821081141561306e5761306d613013565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006130d0602c83612993565b91506130db82613074565b604082019050919050565b600060208201905081810360008301526130ff816130c3565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613162602183612993565b915061316d82613106565b604082019050919050565b6000602082019050818103600083015261319181613155565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006131f4603883612993565b91506131ff82613198565b604082019050919050565b60006020820190508181036000830152613223816131e7565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613286603183612993565b91506132918261322a565b604082019050919050565b600060208201905081810360008301526132b581613279565b9050919050565b7f6f6e6c79206f776e65722063616e20706572666f726d2074686973206163746960008201527f6f6e000000000000000000000000000000000000000000000000000000000000602082015250565b6000613318602283612993565b9150613323826132bc565b604082019050919050565b600060208201905081810360008301526133478161330b565b9050919050565b600081905092915050565b50565b600061336960008361334e565b915061337482613359565b600082019050919050565b600061338a8261335c565b9150819050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006133f0602983612993565b91506133fb82613394565b604082019050919050565b6000602082019050818103600083015261341f816133e3565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613482602a83612993565b915061348d82613426565b604082019050919050565b600060208201905081810360008301526134b181613475565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061352182612a43565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613554576135536134e7565b5b600182019050919050565b7f4e6f206d6f7265206e66747320617661696c61626c6520746f206d696e740000600082015250565b6000613595601e83612993565b91506135a08261355f565b602082019050919050565b600060208201905081810360008301526135c481613588565b9050919050565b7f63616e206f6e6c79206d696e742031303030206d617820666f7220676976656160008201527f7761797300000000000000000000000000000000000000000000000000000000602082015250565b6000613627602483612993565b9150613632826135cb565b604082019050919050565b600060208201905081810360008301526136568161361a565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006136b9602f83612993565b91506136c48261365d565b604082019050919050565b600060208201905081810360008301526136e8816136ac565b9050919050565b600081905092915050565b600061370582612988565b61370f81856136ef565b935061371f8185602086016129a4565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461374d81613042565b61375781866136ef565b945060018216600081146137725760018114613783576137b6565b60ff198316865281860193506137b6565b61378c8561372b565b60005b838110156137ae5781548189015260018201915060208101905061378f565b838801955050505b50505092915050565b60006137cb82866136fa565b91506137d782856136fa565b91506137e38284613740565b9150819050949350505050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061384c602c83612993565b9150613857826137f0565b604082019050919050565b6000602082019050818103600083015261387b8161383f565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006138de602983612993565b91506138e982613882565b604082019050919050565b6000602082019050818103600083015261390d816138d1565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613970602483612993565b915061397b82613914565b604082019050919050565b6000602082019050818103600083015261399f81613963565b9050919050565b60006139b182612a43565b91506139bc83612a43565b9250828210156139cf576139ce6134e7565b5b828203905092915050565b60006139e582612a43565b91506139f083612a43565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a2557613a246134e7565b5b828201905092915050565b7f4d696e74206973206e6f74206f6e000000000000000000000000000000000000600082015250565b6000613a66600e83612993565b9150613a7182613a30565b602082019050919050565b60006020820190508181036000830152613a9581613a59565b9050919050565b7f757365722061646472657373206973206e6f74206f6e2077686974656c697374600082015250565b6000613ad2602083612993565b9150613add82613a9c565b602082019050919050565b60006020820190508181036000830152613b0181613ac5565b9050919050565b7f4163636f756e7420416464726573732072656163686564206c696d6974206f6e60008201527f20546f6b656e7300000000000000000000000000000000000000000000000000602082015250565b6000613b64602783612993565b9150613b6f82613b08565b604082019050919050565b60006020820190508181036000830152613b9381613b57565b9050919050565b600081519050613ba981612a4d565b92915050565b600060208284031215613bc557613bc46128c3565b5b6000613bd384828501613b9a565b91505092915050565b7f6d617820616d6f756e7420796f752063616e20686176652069732032206e667460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c38602183612993565b9150613c4382613bdc565b604082019050919050565b60006020820190508181036000830152613c6781613c2b565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613ca4602083612993565b9150613caf82613c6e565b602082019050919050565b60006020820190508181036000830152613cd381613c97565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613d10601c83612993565b9150613d1b82613cda565b602082019050919050565b60006020820190508181036000830152613d3f81613d03565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613d7c601983612993565b9150613d8782613d46565b602082019050919050565b60006020820190508181036000830152613dab81613d6f565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613e0e603283612993565b9150613e1982613db2565b604082019050919050565b60006020820190508181036000830152613e3d81613e01565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613e7e82612a43565b9150613e8983612a43565b925082613e9957613e98613e44565b5b828204905092915050565b6000613eaf82612a43565b9150613eba83612a43565b925082613eca57613ec9613e44565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000613efc82613ed5565b613f068185613ee0565b9350613f168185602086016129a4565b613f1f816129d7565b840191505092915050565b6000608082019050613f3f6000830187612ad8565b613f4c6020830186612ad8565b613f596040830185612b6e565b8181036060830152613f6b8184613ef1565b905095945050505050565b600081519050613f85816128f9565b92915050565b600060208284031215613fa157613fa06128c3565b5b6000613faf84828501613f76565b9150509291505056fea2646970667358221220b8a13e93f97661f53244c32e371d767c51679172ec6de1440a49138318f57daf64736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d63383345466571396a6e46786b736e386b4734435a6f43793572386b77394d6e34664761704d776f575a77652f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101e35760003560e01c8063740d73f311610102578063b2a08be711610095578063dd2eb9f311610064578063dd2eb9f3146106cf578063e784f4c21461070c578063e985e9c514610737578063f4c2366714610774576101e3565b8063b2a08be714610615578063b88d4fde1461063e578063c668286214610667578063c87b56dd14610692576101e3565b806395d89b41116100d157806395d89b411461057a578063a0712d68146105a5578063a22cb465146105c1578063a5c42ef1146105ea576101e3565b8063740d73f3146104c05780637d5092c9146104e95780638da5cb5b14610512578063920674dc1461053d576101e3565b80633ccfd60b1161017a57806355f804b31161014957806355f804b3146103f25780636352211e1461041b5780636c0360eb1461045857806370a0823114610483576101e3565b80633ccfd60b1461034c57806342842e0e14610363578063474dd97d1461038c5780634fb2e45d146103c9576101e3565b8063095ea7b3116101b6578063095ea7b3146102b8578063239c70ae146102e157806323b872dd1461030c578063267bcabd14610335576101e3565b806301ffc9a7146101e857806302fb0c5e1461022557806306fdde0314610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612925565b61078b565b60405161021c919061296d565b60405180910390f35b34801561023157600080fd5b5061023a61086d565b604051610247919061296d565b60405180910390f35b34801561025c57600080fd5b50610265610880565b6040516102729190612a21565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d9190612a79565b610912565b6040516102af9190612ae7565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da9190612b2e565b610997565b005b3480156102ed57600080fd5b506102f6610aaf565b6040516103039190612b7d565b60405180910390f35b34801561031857600080fd5b50610333600480360381019061032e9190612b98565b610ab5565b005b34801561034157600080fd5b5061034a610b15565b005b34801561035857600080fd5b50610361610bc2565b005b34801561036f57600080fd5b5061038a60048036038101906103859190612b98565b610cf3565b005b34801561039857600080fd5b506103b360048036038101906103ae9190612beb565b610d13565b6040516103c09190612b7d565b60405180910390f35b3480156103d557600080fd5b506103f060048036038101906103eb9190612beb565b610d2b565b005b3480156103fe57600080fd5b5061041960048036038101906104149190612d4d565b610dff565b005b34801561042757600080fd5b50610442600480360381019061043d9190612a79565b610ea9565b60405161044f9190612ae7565b60405180910390f35b34801561046457600080fd5b5061046d610f5b565b60405161047a9190612a21565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a59190612beb565b610fe9565b6040516104b79190612b7d565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e29190612df6565b6110a1565b005b3480156104f557600080fd5b50610510600480360381019061050b9190612a79565b6111d6565b005b34801561051e57600080fd5b50610527611270565b6040516105349190612ae7565b60405180910390f35b34801561054957600080fd5b50610564600480360381019061055f9190612beb565b611296565b604051610571919061296d565b60405180910390f35b34801561058657600080fd5b5061058f6112b6565b60405161059c9190612a21565b60405180910390f35b6105bf60048036038101906105ba9190612a79565b611348565b005b3480156105cd57600080fd5b506105e860048036038101906105e39190612e6f565b611468565b005b3480156105f657600080fd5b506105ff61147e565b60405161060c9190612b7d565b60405180910390f35b34801561062157600080fd5b5061063c60048036038101906106379190612a79565b611484565b005b34801561064a57600080fd5b5061066560048036038101906106609190612f50565b611642565b005b34801561067357600080fd5b5061067c6116a4565b6040516106899190612a21565b60405180910390f35b34801561069e57600080fd5b506106b960048036038101906106b49190612a79565b611732565b6040516106c69190612a21565b60405180910390f35b3480156106db57600080fd5b506106f660048036038101906106f19190612a79565b6117dc565b6040516107039190612a21565b60405180910390f35b34801561071857600080fd5b5061072161187c565b60405161072e9190612b7d565b60405180910390f35b34801561074357600080fd5b5061075e60048036038101906107599190612fd3565b611882565b60405161076b919061296d565b60405180910390f35b34801561078057600080fd5b50610789611916565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108665750610865826119c3565b5b9050919050565b600f60009054906101000a900460ff1681565b60606000805461088f90613042565b80601f01602080910402602001604051908101604052809291908181526020018280546108bb90613042565b80156109085780601f106108dd57610100808354040283529160200191610908565b820191906000526020600020905b8154815290600101906020018083116108eb57829003601f168201915b5050505050905090565b600061091d82611a2d565b61095c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610953906130e6565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109a282610ea9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0a90613178565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a32611a99565b73ffffffffffffffffffffffffffffffffffffffff161480610a615750610a6081610a5b611a99565b611882565b5b610aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a979061320a565b60405180910390fd5b610aaa8383611aa1565b505050565b60095481565b610ac6610ac0611a99565b82611b5a565b610b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afc9061329c565b60405180910390fd5b610b10838383611c38565b505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9c9061332e565b60405180910390fd5b6001600f60006101000a81548160ff021916908315150217905550565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c499061332e565b60405180910390fd5b60004790506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610c9f9061337f565b60006040518083038185875af1925050503d8060008114610cdc576040519150601f19603f3d011682016040523d82523d6000602084013e610ce1565b606091505b5050905080610cef57600080fd5b5050565b610d0e83838360405180602001604052806000815250611642565b505050565b600b6020528060005260406000206000915090505481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db29061332e565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e869061332e565b60405180910390fd5b8060079080519060200190610ea5929190612816565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4990613406565b60405180910390fd5b80915050919050565b60078054610f6890613042565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9490613042565b8015610fe15780601f10610fb657610100808354040283529160200191610fe1565b820191906000526020600020905b815481529060010190602001808311610fc457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561105a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105190613498565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611131576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111289061332e565b60405180910390fd5b60005b828290508110156111d1576001600a6000858585818110611158576111576134b8565b5b905060200201602081019061116d9190612beb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806111c990613516565b915050611134565b505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125d9061332e565b60405180910390fd5b8060098190555050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a6020528060005260406000206000915054906101000a900460ff1681565b6060600180546112c590613042565b80601f01602080910402602001604051908101604052809291908181526020018280546112f190613042565b801561133e5780601f106113135761010080835404028352916020019161133e565b820191906000526020600020905b81548152906001019060200180831161132157829003601f168201915b5050505050905090565b612328600d54111561138f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611386906135ab565b60405180910390fd5b6113998133611e94565b60005b81811015611464576113b033600d546120dd565b6113bb600d54611732565b600c6000600d54815260200190815260200160002090805190602001906113e3929190612816565b50600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061143490613516565b9190505550600d600081548092919061144c90613516565b9190505550808061145c90613516565b91505061139c565b5050565b61147a611473611a99565b83836122ab565b5050565b600d5481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150b9061332e565b60405180910390fd5b6103e8600e54111561155b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115529061363d565b60405180910390fd5b60005b818110156116265761157233600d546120dd565b61157d600d54611732565b600c6000600d54815260200190815260200160002090805190602001906115a5929190612816565b50600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906115f690613516565b9190505550600d600081548092919061160e90613516565b9190505550808061161e90613516565b91505061155e565b50600e600081548092919061163a90613516565b919050555050565b61165361164d611a99565b83611b5a565b611692576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116899061329c565b60405180910390fd5b61169e84848484612418565b50505050565b600880546116b190613042565b80601f01602080910402602001604051908101604052809291908181526020018280546116dd90613042565b801561172a5780601f106116ff5761010080835404028352916020019161172a565b820191906000526020600020905b81548152906001019060200180831161170d57829003601f168201915b505050505081565b606061173d82611a2d565b61177c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611773906136cf565b60405180910390fd5b6000611786612474565b905060008151116117a657604051806020016040528060008152506117d4565b806117b084612506565b60086040516020016117c4939291906137bf565b6040516020818303038152906040525b915050919050565b600c60205280600052604060002060009150905080546117fb90613042565b80601f016020809104026020016040519081016040528092919081815260200182805461182790613042565b80156118745780601f1061184957610100808354040283529160200191611874565b820191906000526020600020905b81548152906001019060200180831161185757829003601f168201915b505050505081565b600e5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146119a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199d9061332e565b60405180910390fd5b6000600f60006101000a81548160ff021916908315150217905550565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b1483610ea9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b6582611a2d565b611ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9b90613862565b60405180910390fd5b6000611baf83610ea9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c1e57508373ffffffffffffffffffffffffffffffffffffffff16611c0684610912565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c2f5750611c2e8185611882565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c5882610ea9565b73ffffffffffffffffffffffffffffffffffffffff1614611cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca5906138f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1590613986565b60405180910390fd5b611d29838383612667565b611d34600082611aa1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d8491906139a6565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ddb91906139da565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60011515600f60009054906101000a900460ff16151514611eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee190613a7c565b60405180910390fd5b60011515600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7490613ae8565b60405180910390fd5b60095482600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611fcb91906139da565b111561200c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200390613b7a565b60405180910390fd5b6009543073ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b81526004016120489190612ae7565b60206040518083038186803b15801561206057600080fd5b505afa158015612074573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120989190613baf565b11156120d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d090613c4e565b60405180910390fd5b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561214d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214490613cba565b60405180910390fd5b61215681611a2d565b15612196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218d90613d26565b60405180910390fd5b6121a260008383612667565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121f291906139da565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561231a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231190613d92565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161240b919061296d565b60405180910390a3505050565b612423848484611c38565b61242f8484848461266c565b61246e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246590613e24565b60405180910390fd5b50505050565b60606007805461248390613042565b80601f01602080910402602001604051908101604052809291908181526020018280546124af90613042565b80156124fc5780601f106124d1576101008083540402835291602001916124fc565b820191906000526020600020905b8154815290600101906020018083116124df57829003601f168201915b5050505050905090565b6060600082141561254e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612662565b600082905060005b6000821461258057808061256990613516565b915050600a826125799190613e73565b9150612556565b60008167ffffffffffffffff81111561259c5761259b612c22565b5b6040519080825280601f01601f1916602001820160405280156125ce5781602001600182028036833780820191505090505b5090505b6000851461265b576001826125e791906139a6565b9150600a856125f69190613ea4565b603061260291906139da565b60f81b818381518110612618576126176134b8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126549190613e73565b94506125d2565b8093505050505b919050565b505050565b600061268d8473ffffffffffffffffffffffffffffffffffffffff16612803565b156127f6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126b6611a99565b8786866040518563ffffffff1660e01b81526004016126d89493929190613f2a565b602060405180830381600087803b1580156126f257600080fd5b505af192505050801561272357506040513d601f19601f820116820180604052508101906127209190613f8b565b60015b6127a6573d8060008114612753576040519150601f19603f3d011682016040523d82523d6000602084013e612758565b606091505b5060008151141561279e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279590613e24565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127fb565b600190505b949350505050565b600080823b905060008111915050919050565b82805461282290613042565b90600052602060002090601f016020900481019282612844576000855561288b565b82601f1061285d57805160ff191683800117855561288b565b8280016001018555821561288b579182015b8281111561288a57825182559160200191906001019061286f565b5b509050612898919061289c565b5090565b5b808211156128b557600081600090555060010161289d565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612902816128cd565b811461290d57600080fd5b50565b60008135905061291f816128f9565b92915050565b60006020828403121561293b5761293a6128c3565b5b600061294984828501612910565b91505092915050565b60008115159050919050565b61296781612952565b82525050565b6000602082019050612982600083018461295e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156129c25780820151818401526020810190506129a7565b838111156129d1576000848401525b50505050565b6000601f19601f8301169050919050565b60006129f382612988565b6129fd8185612993565b9350612a0d8185602086016129a4565b612a16816129d7565b840191505092915050565b60006020820190508181036000830152612a3b81846129e8565b905092915050565b6000819050919050565b612a5681612a43565b8114612a6157600080fd5b50565b600081359050612a7381612a4d565b92915050565b600060208284031215612a8f57612a8e6128c3565b5b6000612a9d84828501612a64565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ad182612aa6565b9050919050565b612ae181612ac6565b82525050565b6000602082019050612afc6000830184612ad8565b92915050565b612b0b81612ac6565b8114612b1657600080fd5b50565b600081359050612b2881612b02565b92915050565b60008060408385031215612b4557612b446128c3565b5b6000612b5385828601612b19565b9250506020612b6485828601612a64565b9150509250929050565b612b7781612a43565b82525050565b6000602082019050612b926000830184612b6e565b92915050565b600080600060608486031215612bb157612bb06128c3565b5b6000612bbf86828701612b19565b9350506020612bd086828701612b19565b9250506040612be186828701612a64565b9150509250925092565b600060208284031215612c0157612c006128c3565b5b6000612c0f84828501612b19565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c5a826129d7565b810181811067ffffffffffffffff82111715612c7957612c78612c22565b5b80604052505050565b6000612c8c6128b9565b9050612c988282612c51565b919050565b600067ffffffffffffffff821115612cb857612cb7612c22565b5b612cc1826129d7565b9050602081019050919050565b82818337600083830152505050565b6000612cf0612ceb84612c9d565b612c82565b905082815260208101848484011115612d0c57612d0b612c1d565b5b612d17848285612cce565b509392505050565b600082601f830112612d3457612d33612c18565b5b8135612d44848260208601612cdd565b91505092915050565b600060208284031215612d6357612d626128c3565b5b600082013567ffffffffffffffff811115612d8157612d806128c8565b5b612d8d84828501612d1f565b91505092915050565b600080fd5b600080fd5b60008083601f840112612db657612db5612c18565b5b8235905067ffffffffffffffff811115612dd357612dd2612d96565b5b602083019150836020820283011115612def57612dee612d9b565b5b9250929050565b60008060208385031215612e0d57612e0c6128c3565b5b600083013567ffffffffffffffff811115612e2b57612e2a6128c8565b5b612e3785828601612da0565b92509250509250929050565b612e4c81612952565b8114612e5757600080fd5b50565b600081359050612e6981612e43565b92915050565b60008060408385031215612e8657612e856128c3565b5b6000612e9485828601612b19565b9250506020612ea585828601612e5a565b9150509250929050565b600067ffffffffffffffff821115612eca57612ec9612c22565b5b612ed3826129d7565b9050602081019050919050565b6000612ef3612eee84612eaf565b612c82565b905082815260208101848484011115612f0f57612f0e612c1d565b5b612f1a848285612cce565b509392505050565b600082601f830112612f3757612f36612c18565b5b8135612f47848260208601612ee0565b91505092915050565b60008060008060808587031215612f6a57612f696128c3565b5b6000612f7887828801612b19565b9450506020612f8987828801612b19565b9350506040612f9a87828801612a64565b925050606085013567ffffffffffffffff811115612fbb57612fba6128c8565b5b612fc787828801612f22565b91505092959194509250565b60008060408385031215612fea57612fe96128c3565b5b6000612ff885828601612b19565b925050602061300985828601612b19565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061305a57607f821691505b6020821081141561306e5761306d613013565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006130d0602c83612993565b91506130db82613074565b604082019050919050565b600060208201905081810360008301526130ff816130c3565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613162602183612993565b915061316d82613106565b604082019050919050565b6000602082019050818103600083015261319181613155565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006131f4603883612993565b91506131ff82613198565b604082019050919050565b60006020820190508181036000830152613223816131e7565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613286603183612993565b91506132918261322a565b604082019050919050565b600060208201905081810360008301526132b581613279565b9050919050565b7f6f6e6c79206f776e65722063616e20706572666f726d2074686973206163746960008201527f6f6e000000000000000000000000000000000000000000000000000000000000602082015250565b6000613318602283612993565b9150613323826132bc565b604082019050919050565b600060208201905081810360008301526133478161330b565b9050919050565b600081905092915050565b50565b600061336960008361334e565b915061337482613359565b600082019050919050565b600061338a8261335c565b9150819050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006133f0602983612993565b91506133fb82613394565b604082019050919050565b6000602082019050818103600083015261341f816133e3565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613482602a83612993565b915061348d82613426565b604082019050919050565b600060208201905081810360008301526134b181613475565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061352182612a43565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613554576135536134e7565b5b600182019050919050565b7f4e6f206d6f7265206e66747320617661696c61626c6520746f206d696e740000600082015250565b6000613595601e83612993565b91506135a08261355f565b602082019050919050565b600060208201905081810360008301526135c481613588565b9050919050565b7f63616e206f6e6c79206d696e742031303030206d617820666f7220676976656160008201527f7761797300000000000000000000000000000000000000000000000000000000602082015250565b6000613627602483612993565b9150613632826135cb565b604082019050919050565b600060208201905081810360008301526136568161361a565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006136b9602f83612993565b91506136c48261365d565b604082019050919050565b600060208201905081810360008301526136e8816136ac565b9050919050565b600081905092915050565b600061370582612988565b61370f81856136ef565b935061371f8185602086016129a4565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461374d81613042565b61375781866136ef565b945060018216600081146137725760018114613783576137b6565b60ff198316865281860193506137b6565b61378c8561372b565b60005b838110156137ae5781548189015260018201915060208101905061378f565b838801955050505b50505092915050565b60006137cb82866136fa565b91506137d782856136fa565b91506137e38284613740565b9150819050949350505050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061384c602c83612993565b9150613857826137f0565b604082019050919050565b6000602082019050818103600083015261387b8161383f565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006138de602983612993565b91506138e982613882565b604082019050919050565b6000602082019050818103600083015261390d816138d1565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613970602483612993565b915061397b82613914565b604082019050919050565b6000602082019050818103600083015261399f81613963565b9050919050565b60006139b182612a43565b91506139bc83612a43565b9250828210156139cf576139ce6134e7565b5b828203905092915050565b60006139e582612a43565b91506139f083612a43565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a2557613a246134e7565b5b828201905092915050565b7f4d696e74206973206e6f74206f6e000000000000000000000000000000000000600082015250565b6000613a66600e83612993565b9150613a7182613a30565b602082019050919050565b60006020820190508181036000830152613a9581613a59565b9050919050565b7f757365722061646472657373206973206e6f74206f6e2077686974656c697374600082015250565b6000613ad2602083612993565b9150613add82613a9c565b602082019050919050565b60006020820190508181036000830152613b0181613ac5565b9050919050565b7f4163636f756e7420416464726573732072656163686564206c696d6974206f6e60008201527f20546f6b656e7300000000000000000000000000000000000000000000000000602082015250565b6000613b64602783612993565b9150613b6f82613b08565b604082019050919050565b60006020820190508181036000830152613b9381613b57565b9050919050565b600081519050613ba981612a4d565b92915050565b600060208284031215613bc557613bc46128c3565b5b6000613bd384828501613b9a565b91505092915050565b7f6d617820616d6f756e7420796f752063616e20686176652069732032206e667460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c38602183612993565b9150613c4382613bdc565b604082019050919050565b60006020820190508181036000830152613c6781613c2b565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613ca4602083612993565b9150613caf82613c6e565b602082019050919050565b60006020820190508181036000830152613cd381613c97565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613d10601c83612993565b9150613d1b82613cda565b602082019050919050565b60006020820190508181036000830152613d3f81613d03565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613d7c601983612993565b9150613d8782613d46565b602082019050919050565b60006020820190508181036000830152613dab81613d6f565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613e0e603283612993565b9150613e1982613db2565b604082019050919050565b60006020820190508181036000830152613e3d81613e01565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613e7e82612a43565b9150613e8983612a43565b925082613e9957613e98613e44565b5b828204905092915050565b6000613eaf82612a43565b9150613eba83612a43565b925082613eca57613ec9613e44565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000613efc82613ed5565b613f068185613ee0565b9350613f168185602086016129a4565b613f1f816129d7565b840191505092915050565b6000608082019050613f3f6000830187612ad8565b613f4c6020830186612ad8565b613f596040830185612b6e565b8181036060830152613f6b8184613ef1565b905095945050505050565b600081519050613f85816128f9565b92915050565b600060208284031215613fa157613fa06128c3565b5b6000613faf84828501613f76565b9150509291505056fea2646970667358221220b8a13e93f97661f53244c32e371d767c51679172ec6de1440a49138318f57daf64736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d63383345466571396a6e46786b736e386b4734435a6f43793572386b77394d6e34664761704d776f575a77652f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _newBaseURI (string): https://gateway.pinata.cloud/ipfs/Qmc83EFeq9jnFxksn8kG4CZoCy5r8kw9Mn4fGapMwoWZwe/
Arg [1] : _maxMintAmount (uint256): 2

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [3] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [4] : 732f516d63383345466571396a6e46786b736e386b4734435a6f43793572386b
Arg [5] : 77394d6e34664761704d776f575a77652f000000000000000000000000000000


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.