ETH Price: $3,170.63 (-7.89%)
Gas: 3 Gwei

Token

Surf Dreamz (SurfDreamz)
 

Overview

Max Total Supply

400 SurfDreamz

Holders

218

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
goatwith3horns.eth
Balance
2 SurfDreamz
0xdb0df63435a64132ddf7c626011cb3bb370150cb
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:
SurfDreamz

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : SurfDreamz.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.4;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";

contract SurfDreamz is ERC721Enumerable, Ownable {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;

    mapping(address => bool) surfSpotAddresses;
    mapping(address => bool) freeTokenRedeemed;

    uint public reserve = 400;
    uint public presale_reserve = 100;
    uint public price = 0.08 ether;
    uint public presale_price = 0.06 ether;
    uint public max_per_mint = 5;
    uint public constant presale_max_per_mint = 3;

    string public baseTokenURI;

    bool public _paused = false;
    bool public _isPresale = false;

    event tokensMinted(address _from, uint[] _tokens);

    constructor(string memory baseURI) ERC721("Surf Dreamz", "SurfDreamz") {
        setBaseURI(baseURI);
    }

    // ** - MINTING - ** //
    function claim(uint quantity) public payable {
        uint totalMinted = _tokenIds.current();
        uint[] memory tokenIds = new uint[](quantity);
        uint presaleQuantityAtCost = quantity - 1;

        require(!_paused, "Sale paused");
        require(totalMinted + quantity <= reserve, "Not enough NFTs!");

        if (_isPresale) {
            require(
                msg.value == presale_price * presaleQuantityAtCost,
                "Insufficient funds to redeem"
            );
            require(verifyUser(msg.sender), "You do not own a Surf Spot");
            require(
                !freeTokenRedeemed[msg.sender],
                "You have already redeemed your presale dreamz"
            );

            require(
                quantity > 0 && quantity <= presale_max_per_mint,
                "Cannot mint specified number of dreamz"
            );
        } else {
            require(
                msg.value == price * quantity,
                "Insufficient funds to redeem"
            );
            require(
                balanceOf(msg.sender) + quantity <= max_per_mint,
                "You have already redeemed max number of dreamz"
            );
            require(
                quantity > 0 && quantity <= max_per_mint,
                "Cannot mint specified number of dreamz"
            );
        }

        for (uint i = 0; i < quantity; i++) {
            uint id = _mintNFT();
            tokenIds[i] = id;
        }

        if (_isPresale) {
            freeTokenRedeemed[msg.sender] = true;
        }
        emit tokensMinted(msg.sender, tokenIds);
    }

    function _mintNFT() private returns (uint id) {
        uint newTokenID = _tokenIds.current();
        _safeMint(msg.sender, newTokenID);

        id = newTokenID;
        _tokenIds.increment();

        return id;
    }

    function presaleMint() public isSurfSpotOwner(msg.sender) hasNotRedeemed(msg.sender) {
        uint newTokenID = _tokenIds.current();
        uint[] memory tokenIds = new uint[](1);

        require(!_paused, "Sale paused");
        require(_isPresale, "Presale over");
        require(newTokenID <= presale_reserve, "Not enough NFTs!");
        require(verifyUser(msg.sender), "You do not own a Surf Spot");
        require(
                !freeTokenRedeemed[msg.sender],
                "You have already redeemed your presale dreamz"
        );

        uint id = _mintNFT();
        tokenIds[0] = id;

        freeTokenRedeemed[msg.sender] = true;
        emit tokensMinted(msg.sender, tokenIds);
    }

    // ** - ADMIN - ** //
    function addUsers(address[] memory _addressesToSurfSpotlist) public onlyOwner {
        for (uint i = 0; i < _addressesToSurfSpotlist.length; i++) {
            surfSpotAddresses[_addressesToSurfSpotlist[i]] = true;
        }
    }

    function verifyUser(address _surfSpotAddress) public view returns (bool) {
        bool userIsSurfSpotOwner = surfSpotAddresses[_surfSpotAddress];
        return userIsSurfSpotOwner;
    }

    function hasToken() private view returns (uint balance) {
        balance = balanceOf(msg.sender);
    }

    function getTokens() public view returns (uint[] memory) {
        uint balance = hasToken();
        uint[] memory tokens = new uint[](balance);

        for (uint i = 0; i < balance; i++) {
            tokens[i] = tokenOfOwnerByIndex(msg.sender, i);
        }

        return tokens;
    }

    function withdraw() public onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

    function reserveNFTs() public onlyOwner {
        uint totalMinted = _tokenIds.current();
        require((totalMinted + 20) < reserve, "Not enough NFTs!");

        for (uint i = 0; i < 20; i++) {
            _mintNFT();
        }
    }

    function getPresaleState() public view returns (bool isPresale) {
        isPresale = _isPresale;
        return isPresale;
    }

    function getPausedState() public view returns (bool isPaused) {
        isPaused = _paused;
        return isPaused;
    }

    function pauseSale() public onlyOwner {
        _paused = true;
    }

    function unpauseSale() public onlyOwner {
        _paused = false;
    }

    function preSaleStart() public onlyOwner {
        _isPresale = true;
    }

    function preSaleStop() public onlyOwner {
        _isPresale = false;
    }

    function getPrice(uint quantity)
        public
        view
        returns (uint totalPrice)
    {
        totalPrice = price * quantity;

        return totalPrice;
    }

    function getPresalePrice(uint quantity)
        public
        view
        returns (uint totalPrice)
    {
        uint presaleQuantityAtCost = quantity - 1;
        totalPrice = presale_price * presaleQuantityAtCost;

        return totalPrice;
    }

    function setPrice(uint _price) public onlyOwner {
        price = _price;
    }

    function setMaxLimit(uint _max_per_mint) public onlyOwner {
        max_per_mint = _max_per_mint;
    }

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

    function setBaseURI(string memory _baseTokenURI) public onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

        // ** - MODIFIERS - ** //
    modifier isSurfSpotOwner(address _address) {
        require(surfSpotAddresses[_address], "You do not own a Surf Spot");
        _;
    }

    modifier hasNotRedeemed(address _address) {
        require(
            !freeTokenRedeemed[_address],
            "You have already redeemed your presale dreamz"
        );
        _;
    }
}

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

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 14 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 5 of 14 : 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 6 of 14 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 7 of 14 : 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 8 of 14 : 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 9 of 14 : 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 10 of 14 : 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 11 of 14 : 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 12 of 14 : 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 13 of 14 : 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 14 of 14 : 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":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"_tokens","type":"uint256[]"}],"name":"tokensMinted","type":"event"},{"inputs":[],"name":"_isPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addressesToSurfSpotlist","type":"address[]"}],"name":"addUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPausedState","outputs":[{"internalType":"bool","name":"isPaused","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"getPresalePrice","outputs":[{"internalType":"uint256","name":"totalPrice","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPresaleState","outputs":[{"internalType":"bool","name":"isPresale","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"totalPrice","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokens","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"max_per_mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"preSaleStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"preSaleStop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"presaleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"presale_max_per_mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale_reserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reserveNFTs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max_per_mint","type":"uint256"}],"name":"setMaxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_surfSpotAddress","type":"address"}],"name":"verifyUser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052610190600e556064600f5567011c37937e08000060105566d529ae9e86000060115560056012556000601460006101000a81548160ff0219169083151502179055506000601460016101000a81548160ff0219169083151502179055503480156200006e57600080fd5b5060405162005af638038062005af6833981810160405281019062000094919062000431565b6040518060400160405280600b81526020017f5375726620447265616d7a0000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f53757266447265616d7a000000000000000000000000000000000000000000008152508160009080519060200190620001189291906200030f565b508060019080519060200190620001319291906200030f565b50505062000154620001486200016c60201b60201c565b6200017460201b60201c565b62000165816200023a60201b60201c565b5062000669565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200024a6200016c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000270620002e560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002c9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c0906200049d565b60405180910390fd5b8060139080519060200190620002e19291906200030f565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200031d9062000565565b90600052602060002090601f0160209004810192826200034157600085556200038d565b82601f106200035c57805160ff19168380011785556200038d565b828001600101855582156200038d579182015b828111156200038c5782518255916020019190600101906200036f565b5b5090506200039c9190620003a0565b5090565b5b80821115620003bb576000816000905550600101620003a1565b5090565b6000620003d6620003d084620004e8565b620004bf565b905082815260208101848484011115620003ef57600080fd5b620003fc8482856200052f565b509392505050565b600082601f8301126200041657600080fd5b815162000428848260208601620003bf565b91505092915050565b6000602082840312156200044457600080fd5b600082015167ffffffffffffffff8111156200045f57600080fd5b6200046d8482850162000404565b91505092915050565b6000620004856020836200051e565b9150620004928262000640565b602082019050919050565b60006020820190508181036000830152620004b88162000476565b9050919050565b6000620004cb620004de565b9050620004d982826200059b565b919050565b6000604051905090565b600067ffffffffffffffff82111562000506576200050562000600565b5b62000511826200062f565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200054f57808201518184015260208101905062000532565b838111156200055f576000848401525b50505050565b600060028204905060018216806200057e57607f821691505b60208210811415620005955762000594620005d1565b5b50919050565b620005a6826200062f565b810181811067ffffffffffffffff82111715620005c857620005c762000600565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61547d80620006796000396000f3fe60806040526004361061027d5760003560e01c80636352211e1161014f578063aa6ca808116100c1578063d547cfb71161007a578063d547cfb71461092f578063e75722301461095a578063e985e9c514610997578063ef305cec146109d4578063f2fde38b146109eb578063fe5d0d6014610a145761027d565b8063aa6ca80814610833578063b88d4fde1461085e578063bb33d72914610887578063bf8bcee41461089e578063c87b56dd146108c7578063cd3293de146109045761027d565b80638da5cb5b116101135780638da5cb5b1461073557806391b7f5ed1461076057806395d89b4114610789578063969745e8146107b4578063a035b1fe146107df578063a22cb4651461080a5761027d565b80636352211e14610650578063700c94741461068d57806370a08231146106b6578063715018a6146106f357806383b215361461070a5761027d565b80631e8d153a116101f35780634c8403a1116101ac5780634c8403a1146105545780634d8131201461057f5780634f6ccce7146105bc57806355367ba9146105f957806355f804b31461061057806359533d6c146106395761027d565b80631e8d153a1461045557806323b872dd146104925780632f745c59146104bb578063379607f5146104f85780633ccfd60b1461051457806342842e0e1461052b5761027d565b80630d5624b3116102455780630d5624b31461037b578063144100c71461039257806316c61ccc146103a957806318160ddd146103d45780631c0de051146103ff5780631c9700fb1461042a5761027d565b806301ea07f01461028257806301ffc9a7146102ad57806306fdde03146102ea578063081812fc14610315578063095ea7b314610352575b600080fd5b34801561028e57600080fd5b50610297610a3f565b6040516102a4919061487c565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf9190613e83565b610a45565b6040516102e191906144ff565b60405180910390f35b3480156102f657600080fd5b506102ff610abf565b60405161030c919061451a565b60405180910390f35b34801561032157600080fd5b5061033c60048036038101906103379190613f16565b610b51565b6040516103499190614446565b60405180910390f35b34801561035e57600080fd5b5061037960048036038101906103749190613e06565b610bd6565b005b34801561038757600080fd5b50610390610cee565b005b34801561039e57600080fd5b506103a7610d87565b005b3480156103b557600080fd5b506103be610e8d565b6040516103cb91906144ff565b60405180910390f35b3480156103e057600080fd5b506103e9610ea0565b6040516103f6919061487c565b60405180910390f35b34801561040b57600080fd5b50610414610ead565b60405161042191906144ff565b60405180910390f35b34801561043657600080fd5b5061043f610ec4565b60405161044c919061487c565b60405180910390f35b34801561046157600080fd5b5061047c60048036038101906104779190613f16565b610ec9565b604051610489919061487c565b60405180910390f35b34801561049e57600080fd5b506104b960048036038101906104b49190613d00565b610ef1565b005b3480156104c757600080fd5b506104e260048036038101906104dd9190613e06565b610f51565b6040516104ef919061487c565b60405180910390f35b610512600480360381019061050d9190613f16565b610ff6565b005b34801561052057600080fd5b506105296114ce565b005b34801561053757600080fd5b50610552600480360381019061054d9190613d00565b61159a565b005b34801561056057600080fd5b506105696115ba565b604051610576919061487c565b60405180910390f35b34801561058b57600080fd5b506105a660048036038101906105a19190613c9b565b6115c0565b6040516105b391906144ff565b60405180910390f35b3480156105c857600080fd5b506105e360048036038101906105de9190613f16565b61161b565b6040516105f0919061487c565b60405180910390f35b34801561060557600080fd5b5061060e6116b2565b005b34801561061c57600080fd5b5061063760048036038101906106329190613ed5565b61174b565b005b34801561064557600080fd5b5061064e6117e1565b005b34801561065c57600080fd5b5061067760048036038101906106729190613f16565b611c22565b6040516106849190614446565b60405180910390f35b34801561069957600080fd5b506106b460048036038101906106af9190613e42565b611cd4565b005b3480156106c257600080fd5b506106dd60048036038101906106d89190613c9b565b611e0b565b6040516106ea919061487c565b60405180910390f35b3480156106ff57600080fd5b50610708611ec3565b005b34801561071657600080fd5b5061071f611f4b565b60405161072c91906144ff565b60405180910390f35b34801561074157600080fd5b5061074a611f62565b6040516107579190614446565b60405180910390f35b34801561076c57600080fd5b5061078760048036038101906107829190613f16565b611f8c565b005b34801561079557600080fd5b5061079e612012565b6040516107ab919061451a565b60405180910390f35b3480156107c057600080fd5b506107c96120a4565b6040516107d6919061487c565b60405180910390f35b3480156107eb57600080fd5b506107f46120aa565b604051610801919061487c565b60405180910390f35b34801561081657600080fd5b50610831600480360381019061082c9190613dca565b6120b0565b005b34801561083f57600080fd5b506108486120c6565b60405161085591906144dd565b60405180910390f35b34801561086a57600080fd5b5061088560048036038101906108809190613d4f565b6121bd565b005b34801561089357600080fd5b5061089c61221f565b005b3480156108aa57600080fd5b506108c560048036038101906108c09190613f16565b6122b8565b005b3480156108d357600080fd5b506108ee60048036038101906108e99190613f16565b61233e565b6040516108fb919061451a565b60405180910390f35b34801561091057600080fd5b506109196123e5565b604051610926919061487c565b60405180910390f35b34801561093b57600080fd5b506109446123eb565b604051610951919061451a565b60405180910390f35b34801561096657600080fd5b50610981600480360381019061097c9190613f16565b612479565b60405161098e919061487c565b60405180910390f35b3480156109a357600080fd5b506109be60048036038101906109b99190613cc4565b612490565b6040516109cb91906144ff565b60405180910390f35b3480156109e057600080fd5b506109e9612524565b005b3480156109f757600080fd5b50610a126004803603810190610a0d9190613c9b565b6125bd565b005b348015610a2057600080fd5b50610a296126b5565b604051610a3691906144ff565b60405180910390f35b600f5481565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ab85750610ab7826126c8565b5b9050919050565b606060008054610ace90614b91565b80601f0160208091040260200160405190810160405280929190818152602001828054610afa90614b91565b8015610b475780601f10610b1c57610100808354040283529160200191610b47565b820191906000526020600020905b815481529060010190602001808311610b2a57829003601f168201915b5050505050905090565b6000610b5c826127aa565b610b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b929061479c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610be182611c22565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c499061481c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c71612816565b73ffffffffffffffffffffffffffffffffffffffff161480610ca05750610c9f81610c9a612816565b612490565b5b610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd6906146fc565b60405180910390fd5b610ce9838361281e565b505050565b610cf6612816565b73ffffffffffffffffffffffffffffffffffffffff16610d14611f62565b73ffffffffffffffffffffffffffffffffffffffff1614610d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d61906147bc565b60405180910390fd5b6001601460016101000a81548160ff021916908315150217905550565b610d8f612816565b73ffffffffffffffffffffffffffffffffffffffff16610dad611f62565b73ffffffffffffffffffffffffffffffffffffffff1614610e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa906147bc565b60405180910390fd5b6000610e0f600b6128d7565b9050600e54601482610e2191906149c6565b10610e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e589061457c565b60405180910390fd5b60005b6014811015610e8957610e756128e5565b508080610e8190614bf4565b915050610e64565b5050565b601460009054906101000a900460ff1681565b6000600880549050905090565b6000601460009054906101000a900460ff16905090565b600381565b600080600183610ed99190614aa7565b905080601154610ee99190614a4d565b915050919050565b610f02610efc612816565b8261290f565b610f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f389061483c565b60405180910390fd5b610f4c8383836129ed565b505050565b6000610f5c83611e0b565b8210610f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f94906145bc565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000611002600b6128d7565b905060008267ffffffffffffffff811115611046577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156110745781602001602082028036833780820191505090505b50905060006001846110869190614aa7565b9050601460009054906101000a900460ff16156110d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cf9061455c565b60405180910390fd5b600e5484846110e791906149c6565b1115611128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111f9061457c565b60405180910390fd5b601460019054906101000a900460ff16156112b6578060115461114b9190614a4d565b341461118c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111839061475c565b60405180910390fd5b611195336115c0565b6111d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cb9061463c565b60405180910390fd5b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611261576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112589061465c565b60405180910390fd5b600084118015611272575060038411155b6112b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a89061453c565b60405180910390fd5b6113af565b836010546112c49190614a4d565b3414611305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fc9061475c565b60405180910390fd5b6012548461131233611e0b565b61131c91906149c6565b111561135d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113549061459c565b60405180910390fd5b60008411801561136f57506012548411155b6113ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a59061453c565b60405180910390fd5b5b60005b848110156114205760006113c46128e5565b905080848381518110611400577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505050808061141890614bf4565b9150506113b2565b50601460019054906101000a900460ff161561148f576001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b7f8a8fdb8c7325b6877bc7db26cfe1929adf19b7f6e81926eb6fb4ed625ff698f333836040516114c09291906144ad565b60405180910390a150505050565b6114d6612816565b73ffffffffffffffffffffffffffffffffffffffff166114f4611f62565b73ffffffffffffffffffffffffffffffffffffffff161461154a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611541906147bc565b60405180910390fd5b611552611f62565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611597573d6000803e3d6000fd5b50565b6115b5838383604051806020016040528060008152506121bd565b505050565b60125481565b600080600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905080915050919050565b6000611625610ea0565b8210611666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165d9061485c565b60405180910390fd5b600882815481106116a0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6116ba612816565b73ffffffffffffffffffffffffffffffffffffffff166116d8611f62565b73ffffffffffffffffffffffffffffffffffffffff161461172e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611725906147bc565b60405180910390fd5b6001601460006101000a81548160ff021916908315150217905550565b611753612816565b73ffffffffffffffffffffffffffffffffffffffff16611771611f62565b73ffffffffffffffffffffffffffffffffffffffff16146117c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117be906147bc565b60405180910390fd5b80601390805190602001906117dd929190613a29565b5050565b33600c60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661186e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118659061463c565b60405180910390fd5b33600d60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156118fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f39061465c565b60405180910390fd5b6000611908600b6128d7565b90506000600167ffffffffffffffff81111561194d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561197b5781602001602082028036833780820191505090505b509050601460009054906101000a900460ff16156119ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c59061455c565b60405180910390fd5b601460019054906101000a900460ff16611a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a149061467c565b60405180910390fd5b600f54821115611a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a599061457c565b60405180910390fd5b611a6b336115c0565b611aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa19061463c565b60405180910390fd5b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2e9061465c565b60405180910390fd5b6000611b416128e5565b90508082600081518110611b7e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250506001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f8a8fdb8c7325b6877bc7db26cfe1929adf19b7f6e81926eb6fb4ed625ff698f33383604051611c139291906144ad565b60405180910390a15050505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc29061473c565b60405180910390fd5b80915050919050565b611cdc612816565b73ffffffffffffffffffffffffffffffffffffffff16611cfa611f62565b73ffffffffffffffffffffffffffffffffffffffff1614611d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d47906147bc565b60405180910390fd5b60005b8151811015611e07576001600c6000848481518110611d9b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611dff90614bf4565b915050611d53565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e739061471c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611ecb612816565b73ffffffffffffffffffffffffffffffffffffffff16611ee9611f62565b73ffffffffffffffffffffffffffffffffffffffff1614611f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f36906147bc565b60405180910390fd5b611f496000612c49565b565b6000601460019054906101000a900460ff16905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611f94612816565b73ffffffffffffffffffffffffffffffffffffffff16611fb2611f62565b73ffffffffffffffffffffffffffffffffffffffff1614612008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fff906147bc565b60405180910390fd5b8060108190555050565b60606001805461202190614b91565b80601f016020809104026020016040519081016040528092919081815260200182805461204d90614b91565b801561209a5780601f1061206f5761010080835404028352916020019161209a565b820191906000526020600020905b81548152906001019060200180831161207d57829003601f168201915b5050505050905090565b60115481565b60105481565b6120c26120bb612816565b8383612d0f565b5050565b606060006120d2612e7c565b905060008167ffffffffffffffff811115612116577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156121445781602001602082028036833780820191505090505b50905060005b828110156121b45761215c3382610f51565b828281518110612195577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806121ac90614bf4565b91505061214a565b50809250505090565b6121ce6121c8612816565b8361290f565b61220d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122049061483c565b60405180910390fd5b61221984848484612e8c565b50505050565b612227612816565b73ffffffffffffffffffffffffffffffffffffffff16612245611f62565b73ffffffffffffffffffffffffffffffffffffffff161461229b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612292906147bc565b60405180910390fd5b6000601460006101000a81548160ff021916908315150217905550565b6122c0612816565b73ffffffffffffffffffffffffffffffffffffffff166122de611f62565b73ffffffffffffffffffffffffffffffffffffffff1614612334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232b906147bc565b60405180910390fd5b8060128190555050565b6060612349826127aa565b612388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237f906147fc565b60405180910390fd5b6000612392612ee8565b905060008151116123b257604051806020016040528060008152506123dd565b806123bc84612f7a565b6040516020016123cd929190614422565b6040516020818303038152906040525b915050919050565b600e5481565b601380546123f890614b91565b80601f016020809104026020016040519081016040528092919081815260200182805461242490614b91565b80156124715780601f1061244657610100808354040283529160200191612471565b820191906000526020600020905b81548152906001019060200180831161245457829003601f168201915b505050505081565b6000816010546124899190614a4d565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61252c612816565b73ffffffffffffffffffffffffffffffffffffffff1661254a611f62565b73ffffffffffffffffffffffffffffffffffffffff16146125a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612597906147bc565b60405180910390fd5b6000601460016101000a81548160ff021916908315150217905550565b6125c5612816565b73ffffffffffffffffffffffffffffffffffffffff166125e3611f62565b73ffffffffffffffffffffffffffffffffffffffff1614612639576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612630906147bc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a0906145fc565b60405180910390fd5b6126b281612c49565b50565b601460019054906101000a900460ff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061279357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806127a357506127a282613127565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661289183611c22565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000806128f2600b6128d7565b90506128fe3382613191565b80915061290b600b6131af565b5090565b600061291a826127aa565b612959576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612950906146dc565b60405180910390fd5b600061296483611c22565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806129d357508373ffffffffffffffffffffffffffffffffffffffff166129bb84610b51565b73ffffffffffffffffffffffffffffffffffffffff16145b806129e457506129e38185612490565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a0d82611c22565b73ffffffffffffffffffffffffffffffffffffffff1614612a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5a906147dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aca9061469c565b60405180910390fd5b612ade8383836131c5565b612ae960008261281e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b399190614aa7565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b9091906149c6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d75906146bc565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612e6f91906144ff565b60405180910390a3505050565b6000612e8733611e0b565b905090565b612e978484846129ed565b612ea3848484846132d9565b612ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed9906145dc565b60405180910390fd5b50505050565b606060138054612ef790614b91565b80601f0160208091040260200160405190810160405280929190818152602001828054612f2390614b91565b8015612f705780601f10612f4557610100808354040283529160200191612f70565b820191906000526020600020905b815481529060010190602001808311612f5357829003601f168201915b5050505050905090565b60606000821415612fc2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613122565b600082905060005b60008214612ff4578080612fdd90614bf4565b915050600a82612fed9190614a1c565b9150612fca565b60008167ffffffffffffffff811115613036577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130685781602001600182028036833780820191505090505b5090505b6000851461311b576001826130819190614aa7565b9150600a856130909190614c3d565b603061309c91906149c6565b60f81b8183815181106130d8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131149190614a1c565b945061306c565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6131ab828260405180602001604052806000815250613470565b5050565b6001816000016000828254019250508190555050565b6131d08383836134cb565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156132135761320e816134d0565b613252565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613251576132508382613519565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132955761329081613686565b6132d4565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146132d3576132d282826137c9565b5b5b505050565b60006132fa8473ffffffffffffffffffffffffffffffffffffffff16613848565b15613463578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613323612816565b8786866040518563ffffffff1660e01b81526004016133459493929190614461565b602060405180830381600087803b15801561335f57600080fd5b505af192505050801561339057506040513d601f19601f8201168201806040525081019061338d9190613eac565b60015b613413573d80600081146133c0576040519150601f19603f3d011682016040523d82523d6000602084013e6133c5565b606091505b5060008151141561340b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613402906145dc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613468565b600190505b949350505050565b61347a838361385b565b61348760008484846132d9565b6134c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134bd906145dc565b60405180910390fd5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161352684611e0b565b6135309190614aa7565b9050600060076000848152602001908152602001600020549050818114613615576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061369a9190614aa7565b90506000600960008481526020019081526020016000205490506000600883815481106136f0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613738577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806137ad577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006137d483611e0b565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138c29061477c565b60405180910390fd5b6138d4816127aa565b15613914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161390b9061461c565b60405180910390fd5b613920600083836131c5565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461397091906149c6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613a3590614b91565b90600052602060002090601f016020900481019282613a575760008555613a9e565b82601f10613a7057805160ff1916838001178555613a9e565b82800160010185558215613a9e579182015b82811115613a9d578251825591602001919060010190613a82565b5b509050613aab9190613aaf565b5090565b5b80821115613ac8576000816000905550600101613ab0565b5090565b6000613adf613ada846148bc565b614897565b90508083825260208201905082856020860282011115613afe57600080fd5b60005b85811015613b2e5781613b148882613bb4565b845260208401935060208301925050600181019050613b01565b5050509392505050565b6000613b4b613b46846148e8565b614897565b905082815260208101848484011115613b6357600080fd5b613b6e848285614b4f565b509392505050565b6000613b89613b8484614919565b614897565b905082815260208101848484011115613ba157600080fd5b613bac848285614b4f565b509392505050565b600081359050613bc3816153eb565b92915050565b600082601f830112613bda57600080fd5b8135613bea848260208601613acc565b91505092915050565b600081359050613c0281615402565b92915050565b600081359050613c1781615419565b92915050565b600081519050613c2c81615419565b92915050565b600082601f830112613c4357600080fd5b8135613c53848260208601613b38565b91505092915050565b600082601f830112613c6d57600080fd5b8135613c7d848260208601613b76565b91505092915050565b600081359050613c9581615430565b92915050565b600060208284031215613cad57600080fd5b6000613cbb84828501613bb4565b91505092915050565b60008060408385031215613cd757600080fd5b6000613ce585828601613bb4565b9250506020613cf685828601613bb4565b9150509250929050565b600080600060608486031215613d1557600080fd5b6000613d2386828701613bb4565b9350506020613d3486828701613bb4565b9250506040613d4586828701613c86565b9150509250925092565b60008060008060808587031215613d6557600080fd5b6000613d7387828801613bb4565b9450506020613d8487828801613bb4565b9350506040613d9587828801613c86565b925050606085013567ffffffffffffffff811115613db257600080fd5b613dbe87828801613c32565b91505092959194509250565b60008060408385031215613ddd57600080fd5b6000613deb85828601613bb4565b9250506020613dfc85828601613bf3565b9150509250929050565b60008060408385031215613e1957600080fd5b6000613e2785828601613bb4565b9250506020613e3885828601613c86565b9150509250929050565b600060208284031215613e5457600080fd5b600082013567ffffffffffffffff811115613e6e57600080fd5b613e7a84828501613bc9565b91505092915050565b600060208284031215613e9557600080fd5b6000613ea384828501613c08565b91505092915050565b600060208284031215613ebe57600080fd5b6000613ecc84828501613c1d565b91505092915050565b600060208284031215613ee757600080fd5b600082013567ffffffffffffffff811115613f0157600080fd5b613f0d84828501613c5c565b91505092915050565b600060208284031215613f2857600080fd5b6000613f3684828501613c86565b91505092915050565b6000613f4b8383614404565b60208301905092915050565b613f6081614adb565b82525050565b6000613f718261495a565b613f7b8185614988565b9350613f868361494a565b8060005b83811015613fb7578151613f9e8882613f3f565b9750613fa98361497b565b925050600181019050613f8a565b5085935050505092915050565b613fcd81614aed565b82525050565b6000613fde82614965565b613fe88185614999565b9350613ff8818560208601614b5e565b61400181614d2a565b840191505092915050565b600061401782614970565b61402181856149aa565b9350614031818560208601614b5e565b61403a81614d2a565b840191505092915050565b600061405082614970565b61405a81856149bb565b935061406a818560208601614b5e565b80840191505092915050565b60006140836026836149aa565b915061408e82614d3b565b604082019050919050565b60006140a6600b836149aa565b91506140b182614d8a565b602082019050919050565b60006140c96010836149aa565b91506140d482614db3565b602082019050919050565b60006140ec602e836149aa565b91506140f782614ddc565b604082019050919050565b600061410f602b836149aa565b915061411a82614e2b565b604082019050919050565b60006141326032836149aa565b915061413d82614e7a565b604082019050919050565b60006141556026836149aa565b915061416082614ec9565b604082019050919050565b6000614178601c836149aa565b915061418382614f18565b602082019050919050565b600061419b601a836149aa565b91506141a682614f41565b602082019050919050565b60006141be602d836149aa565b91506141c982614f6a565b604082019050919050565b60006141e1600c836149aa565b91506141ec82614fb9565b602082019050919050565b60006142046024836149aa565b915061420f82614fe2565b604082019050919050565b60006142276019836149aa565b915061423282615031565b602082019050919050565b600061424a602c836149aa565b91506142558261505a565b604082019050919050565b600061426d6038836149aa565b9150614278826150a9565b604082019050919050565b6000614290602a836149aa565b915061429b826150f8565b604082019050919050565b60006142b36029836149aa565b91506142be82615147565b604082019050919050565b60006142d6601c836149aa565b91506142e182615196565b602082019050919050565b60006142f96020836149aa565b9150614304826151bf565b602082019050919050565b600061431c602c836149aa565b9150614327826151e8565b604082019050919050565b600061433f6020836149aa565b915061434a82615237565b602082019050919050565b60006143626029836149aa565b915061436d82615260565b604082019050919050565b6000614385602f836149aa565b9150614390826152af565b604082019050919050565b60006143a86021836149aa565b91506143b3826152fe565b604082019050919050565b60006143cb6031836149aa565b91506143d68261534d565b604082019050919050565b60006143ee602c836149aa565b91506143f98261539c565b604082019050919050565b61440d81614b45565b82525050565b61441c81614b45565b82525050565b600061442e8285614045565b915061443a8284614045565b91508190509392505050565b600060208201905061445b6000830184613f57565b92915050565b60006080820190506144766000830187613f57565b6144836020830186613f57565b6144906040830185614413565b81810360608301526144a28184613fd3565b905095945050505050565b60006040820190506144c26000830185613f57565b81810360208301526144d48184613f66565b90509392505050565b600060208201905081810360008301526144f78184613f66565b905092915050565b60006020820190506145146000830184613fc4565b92915050565b60006020820190508181036000830152614534818461400c565b905092915050565b6000602082019050818103600083015261455581614076565b9050919050565b6000602082019050818103600083015261457581614099565b9050919050565b60006020820190508181036000830152614595816140bc565b9050919050565b600060208201905081810360008301526145b5816140df565b9050919050565b600060208201905081810360008301526145d581614102565b9050919050565b600060208201905081810360008301526145f581614125565b9050919050565b6000602082019050818103600083015261461581614148565b9050919050565b600060208201905081810360008301526146358161416b565b9050919050565b600060208201905081810360008301526146558161418e565b9050919050565b60006020820190508181036000830152614675816141b1565b9050919050565b60006020820190508181036000830152614695816141d4565b9050919050565b600060208201905081810360008301526146b5816141f7565b9050919050565b600060208201905081810360008301526146d58161421a565b9050919050565b600060208201905081810360008301526146f58161423d565b9050919050565b6000602082019050818103600083015261471581614260565b9050919050565b6000602082019050818103600083015261473581614283565b9050919050565b60006020820190508181036000830152614755816142a6565b9050919050565b60006020820190508181036000830152614775816142c9565b9050919050565b60006020820190508181036000830152614795816142ec565b9050919050565b600060208201905081810360008301526147b58161430f565b9050919050565b600060208201905081810360008301526147d581614332565b9050919050565b600060208201905081810360008301526147f581614355565b9050919050565b6000602082019050818103600083015261481581614378565b9050919050565b600060208201905081810360008301526148358161439b565b9050919050565b60006020820190508181036000830152614855816143be565b9050919050565b60006020820190508181036000830152614875816143e1565b9050919050565b60006020820190506148916000830184614413565b92915050565b60006148a16148b2565b90506148ad8282614bc3565b919050565b6000604051905090565b600067ffffffffffffffff8211156148d7576148d6614cfb565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561490357614902614cfb565b5b61490c82614d2a565b9050602081019050919050565b600067ffffffffffffffff82111561493457614933614cfb565b5b61493d82614d2a565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006149d182614b45565b91506149dc83614b45565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a1157614a10614c6e565b5b828201905092915050565b6000614a2782614b45565b9150614a3283614b45565b925082614a4257614a41614c9d565b5b828204905092915050565b6000614a5882614b45565b9150614a6383614b45565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a9c57614a9b614c6e565b5b828202905092915050565b6000614ab282614b45565b9150614abd83614b45565b925082821015614ad057614acf614c6e565b5b828203905092915050565b6000614ae682614b25565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614b7c578082015181840152602081019050614b61565b83811115614b8b576000848401525b50505050565b60006002820490506001821680614ba957607f821691505b60208210811415614bbd57614bbc614ccc565b5b50919050565b614bcc82614d2a565b810181811067ffffffffffffffff82111715614beb57614bea614cfb565b5b80604052505050565b6000614bff82614b45565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c3257614c31614c6e565b5b600182019050919050565b6000614c4882614b45565b9150614c5383614b45565b925082614c6357614c62614c9d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f43616e6e6f74206d696e7420737065636966696564206e756d626572206f662060008201527f647265616d7a0000000000000000000000000000000000000000000000000000602082015250565b7f53616c6520706175736564000000000000000000000000000000000000000000600082015250565b7f4e6f7420656e6f756768204e4654732100000000000000000000000000000000600082015250565b7f596f75206861766520616c72656164792072656465656d6564206d6178206e7560008201527f6d626572206f6620647265616d7a000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f596f7520646f206e6f74206f776e206120537572662053706f74000000000000600082015250565b7f596f75206861766520616c72656164792072656465656d656420796f7572207060008201527f726573616c6520647265616d7a00000000000000000000000000000000000000602082015250565b7f50726573616c65206f7665720000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e647320746f2072656465656d00000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6153f481614adb565b81146153ff57600080fd5b50565b61540b81614aed565b811461541657600080fd5b50565b61542281614af9565b811461542d57600080fd5b50565b61543981614b45565b811461544457600080fd5b5056fea26469706673582212206b9358a12e0c6c94e1a5529d270774ffd4bc96b13fa06b91bd8405f08cd7619b64736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6366396d52764b7a323531566b617362523850615753367841424471636e56354638464673574b6a774b67742f00000000000000000000

Deployed Bytecode

0x60806040526004361061027d5760003560e01c80636352211e1161014f578063aa6ca808116100c1578063d547cfb71161007a578063d547cfb71461092f578063e75722301461095a578063e985e9c514610997578063ef305cec146109d4578063f2fde38b146109eb578063fe5d0d6014610a145761027d565b8063aa6ca80814610833578063b88d4fde1461085e578063bb33d72914610887578063bf8bcee41461089e578063c87b56dd146108c7578063cd3293de146109045761027d565b80638da5cb5b116101135780638da5cb5b1461073557806391b7f5ed1461076057806395d89b4114610789578063969745e8146107b4578063a035b1fe146107df578063a22cb4651461080a5761027d565b80636352211e14610650578063700c94741461068d57806370a08231146106b6578063715018a6146106f357806383b215361461070a5761027d565b80631e8d153a116101f35780634c8403a1116101ac5780634c8403a1146105545780634d8131201461057f5780634f6ccce7146105bc57806355367ba9146105f957806355f804b31461061057806359533d6c146106395761027d565b80631e8d153a1461045557806323b872dd146104925780632f745c59146104bb578063379607f5146104f85780633ccfd60b1461051457806342842e0e1461052b5761027d565b80630d5624b3116102455780630d5624b31461037b578063144100c71461039257806316c61ccc146103a957806318160ddd146103d45780631c0de051146103ff5780631c9700fb1461042a5761027d565b806301ea07f01461028257806301ffc9a7146102ad57806306fdde03146102ea578063081812fc14610315578063095ea7b314610352575b600080fd5b34801561028e57600080fd5b50610297610a3f565b6040516102a4919061487c565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf9190613e83565b610a45565b6040516102e191906144ff565b60405180910390f35b3480156102f657600080fd5b506102ff610abf565b60405161030c919061451a565b60405180910390f35b34801561032157600080fd5b5061033c60048036038101906103379190613f16565b610b51565b6040516103499190614446565b60405180910390f35b34801561035e57600080fd5b5061037960048036038101906103749190613e06565b610bd6565b005b34801561038757600080fd5b50610390610cee565b005b34801561039e57600080fd5b506103a7610d87565b005b3480156103b557600080fd5b506103be610e8d565b6040516103cb91906144ff565b60405180910390f35b3480156103e057600080fd5b506103e9610ea0565b6040516103f6919061487c565b60405180910390f35b34801561040b57600080fd5b50610414610ead565b60405161042191906144ff565b60405180910390f35b34801561043657600080fd5b5061043f610ec4565b60405161044c919061487c565b60405180910390f35b34801561046157600080fd5b5061047c60048036038101906104779190613f16565b610ec9565b604051610489919061487c565b60405180910390f35b34801561049e57600080fd5b506104b960048036038101906104b49190613d00565b610ef1565b005b3480156104c757600080fd5b506104e260048036038101906104dd9190613e06565b610f51565b6040516104ef919061487c565b60405180910390f35b610512600480360381019061050d9190613f16565b610ff6565b005b34801561052057600080fd5b506105296114ce565b005b34801561053757600080fd5b50610552600480360381019061054d9190613d00565b61159a565b005b34801561056057600080fd5b506105696115ba565b604051610576919061487c565b60405180910390f35b34801561058b57600080fd5b506105a660048036038101906105a19190613c9b565b6115c0565b6040516105b391906144ff565b60405180910390f35b3480156105c857600080fd5b506105e360048036038101906105de9190613f16565b61161b565b6040516105f0919061487c565b60405180910390f35b34801561060557600080fd5b5061060e6116b2565b005b34801561061c57600080fd5b5061063760048036038101906106329190613ed5565b61174b565b005b34801561064557600080fd5b5061064e6117e1565b005b34801561065c57600080fd5b5061067760048036038101906106729190613f16565b611c22565b6040516106849190614446565b60405180910390f35b34801561069957600080fd5b506106b460048036038101906106af9190613e42565b611cd4565b005b3480156106c257600080fd5b506106dd60048036038101906106d89190613c9b565b611e0b565b6040516106ea919061487c565b60405180910390f35b3480156106ff57600080fd5b50610708611ec3565b005b34801561071657600080fd5b5061071f611f4b565b60405161072c91906144ff565b60405180910390f35b34801561074157600080fd5b5061074a611f62565b6040516107579190614446565b60405180910390f35b34801561076c57600080fd5b5061078760048036038101906107829190613f16565b611f8c565b005b34801561079557600080fd5b5061079e612012565b6040516107ab919061451a565b60405180910390f35b3480156107c057600080fd5b506107c96120a4565b6040516107d6919061487c565b60405180910390f35b3480156107eb57600080fd5b506107f46120aa565b604051610801919061487c565b60405180910390f35b34801561081657600080fd5b50610831600480360381019061082c9190613dca565b6120b0565b005b34801561083f57600080fd5b506108486120c6565b60405161085591906144dd565b60405180910390f35b34801561086a57600080fd5b5061088560048036038101906108809190613d4f565b6121bd565b005b34801561089357600080fd5b5061089c61221f565b005b3480156108aa57600080fd5b506108c560048036038101906108c09190613f16565b6122b8565b005b3480156108d357600080fd5b506108ee60048036038101906108e99190613f16565b61233e565b6040516108fb919061451a565b60405180910390f35b34801561091057600080fd5b506109196123e5565b604051610926919061487c565b60405180910390f35b34801561093b57600080fd5b506109446123eb565b604051610951919061451a565b60405180910390f35b34801561096657600080fd5b50610981600480360381019061097c9190613f16565b612479565b60405161098e919061487c565b60405180910390f35b3480156109a357600080fd5b506109be60048036038101906109b99190613cc4565b612490565b6040516109cb91906144ff565b60405180910390f35b3480156109e057600080fd5b506109e9612524565b005b3480156109f757600080fd5b50610a126004803603810190610a0d9190613c9b565b6125bd565b005b348015610a2057600080fd5b50610a296126b5565b604051610a3691906144ff565b60405180910390f35b600f5481565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ab85750610ab7826126c8565b5b9050919050565b606060008054610ace90614b91565b80601f0160208091040260200160405190810160405280929190818152602001828054610afa90614b91565b8015610b475780601f10610b1c57610100808354040283529160200191610b47565b820191906000526020600020905b815481529060010190602001808311610b2a57829003601f168201915b5050505050905090565b6000610b5c826127aa565b610b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b929061479c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610be182611c22565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c499061481c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c71612816565b73ffffffffffffffffffffffffffffffffffffffff161480610ca05750610c9f81610c9a612816565b612490565b5b610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd6906146fc565b60405180910390fd5b610ce9838361281e565b505050565b610cf6612816565b73ffffffffffffffffffffffffffffffffffffffff16610d14611f62565b73ffffffffffffffffffffffffffffffffffffffff1614610d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d61906147bc565b60405180910390fd5b6001601460016101000a81548160ff021916908315150217905550565b610d8f612816565b73ffffffffffffffffffffffffffffffffffffffff16610dad611f62565b73ffffffffffffffffffffffffffffffffffffffff1614610e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa906147bc565b60405180910390fd5b6000610e0f600b6128d7565b9050600e54601482610e2191906149c6565b10610e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e589061457c565b60405180910390fd5b60005b6014811015610e8957610e756128e5565b508080610e8190614bf4565b915050610e64565b5050565b601460009054906101000a900460ff1681565b6000600880549050905090565b6000601460009054906101000a900460ff16905090565b600381565b600080600183610ed99190614aa7565b905080601154610ee99190614a4d565b915050919050565b610f02610efc612816565b8261290f565b610f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f389061483c565b60405180910390fd5b610f4c8383836129ed565b505050565b6000610f5c83611e0b565b8210610f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f94906145bc565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000611002600b6128d7565b905060008267ffffffffffffffff811115611046577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156110745781602001602082028036833780820191505090505b50905060006001846110869190614aa7565b9050601460009054906101000a900460ff16156110d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cf9061455c565b60405180910390fd5b600e5484846110e791906149c6565b1115611128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111f9061457c565b60405180910390fd5b601460019054906101000a900460ff16156112b6578060115461114b9190614a4d565b341461118c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111839061475c565b60405180910390fd5b611195336115c0565b6111d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cb9061463c565b60405180910390fd5b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611261576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112589061465c565b60405180910390fd5b600084118015611272575060038411155b6112b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a89061453c565b60405180910390fd5b6113af565b836010546112c49190614a4d565b3414611305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fc9061475c565b60405180910390fd5b6012548461131233611e0b565b61131c91906149c6565b111561135d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113549061459c565b60405180910390fd5b60008411801561136f57506012548411155b6113ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a59061453c565b60405180910390fd5b5b60005b848110156114205760006113c46128e5565b905080848381518110611400577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505050808061141890614bf4565b9150506113b2565b50601460019054906101000a900460ff161561148f576001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b7f8a8fdb8c7325b6877bc7db26cfe1929adf19b7f6e81926eb6fb4ed625ff698f333836040516114c09291906144ad565b60405180910390a150505050565b6114d6612816565b73ffffffffffffffffffffffffffffffffffffffff166114f4611f62565b73ffffffffffffffffffffffffffffffffffffffff161461154a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611541906147bc565b60405180910390fd5b611552611f62565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611597573d6000803e3d6000fd5b50565b6115b5838383604051806020016040528060008152506121bd565b505050565b60125481565b600080600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905080915050919050565b6000611625610ea0565b8210611666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165d9061485c565b60405180910390fd5b600882815481106116a0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6116ba612816565b73ffffffffffffffffffffffffffffffffffffffff166116d8611f62565b73ffffffffffffffffffffffffffffffffffffffff161461172e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611725906147bc565b60405180910390fd5b6001601460006101000a81548160ff021916908315150217905550565b611753612816565b73ffffffffffffffffffffffffffffffffffffffff16611771611f62565b73ffffffffffffffffffffffffffffffffffffffff16146117c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117be906147bc565b60405180910390fd5b80601390805190602001906117dd929190613a29565b5050565b33600c60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661186e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118659061463c565b60405180910390fd5b33600d60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156118fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f39061465c565b60405180910390fd5b6000611908600b6128d7565b90506000600167ffffffffffffffff81111561194d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561197b5781602001602082028036833780820191505090505b509050601460009054906101000a900460ff16156119ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c59061455c565b60405180910390fd5b601460019054906101000a900460ff16611a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a149061467c565b60405180910390fd5b600f54821115611a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a599061457c565b60405180910390fd5b611a6b336115c0565b611aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa19061463c565b60405180910390fd5b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2e9061465c565b60405180910390fd5b6000611b416128e5565b90508082600081518110611b7e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250506001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f8a8fdb8c7325b6877bc7db26cfe1929adf19b7f6e81926eb6fb4ed625ff698f33383604051611c139291906144ad565b60405180910390a15050505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc29061473c565b60405180910390fd5b80915050919050565b611cdc612816565b73ffffffffffffffffffffffffffffffffffffffff16611cfa611f62565b73ffffffffffffffffffffffffffffffffffffffff1614611d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d47906147bc565b60405180910390fd5b60005b8151811015611e07576001600c6000848481518110611d9b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611dff90614bf4565b915050611d53565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e739061471c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611ecb612816565b73ffffffffffffffffffffffffffffffffffffffff16611ee9611f62565b73ffffffffffffffffffffffffffffffffffffffff1614611f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f36906147bc565b60405180910390fd5b611f496000612c49565b565b6000601460019054906101000a900460ff16905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611f94612816565b73ffffffffffffffffffffffffffffffffffffffff16611fb2611f62565b73ffffffffffffffffffffffffffffffffffffffff1614612008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fff906147bc565b60405180910390fd5b8060108190555050565b60606001805461202190614b91565b80601f016020809104026020016040519081016040528092919081815260200182805461204d90614b91565b801561209a5780601f1061206f5761010080835404028352916020019161209a565b820191906000526020600020905b81548152906001019060200180831161207d57829003601f168201915b5050505050905090565b60115481565b60105481565b6120c26120bb612816565b8383612d0f565b5050565b606060006120d2612e7c565b905060008167ffffffffffffffff811115612116577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156121445781602001602082028036833780820191505090505b50905060005b828110156121b45761215c3382610f51565b828281518110612195577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806121ac90614bf4565b91505061214a565b50809250505090565b6121ce6121c8612816565b8361290f565b61220d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122049061483c565b60405180910390fd5b61221984848484612e8c565b50505050565b612227612816565b73ffffffffffffffffffffffffffffffffffffffff16612245611f62565b73ffffffffffffffffffffffffffffffffffffffff161461229b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612292906147bc565b60405180910390fd5b6000601460006101000a81548160ff021916908315150217905550565b6122c0612816565b73ffffffffffffffffffffffffffffffffffffffff166122de611f62565b73ffffffffffffffffffffffffffffffffffffffff1614612334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232b906147bc565b60405180910390fd5b8060128190555050565b6060612349826127aa565b612388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237f906147fc565b60405180910390fd5b6000612392612ee8565b905060008151116123b257604051806020016040528060008152506123dd565b806123bc84612f7a565b6040516020016123cd929190614422565b6040516020818303038152906040525b915050919050565b600e5481565b601380546123f890614b91565b80601f016020809104026020016040519081016040528092919081815260200182805461242490614b91565b80156124715780601f1061244657610100808354040283529160200191612471565b820191906000526020600020905b81548152906001019060200180831161245457829003601f168201915b505050505081565b6000816010546124899190614a4d565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61252c612816565b73ffffffffffffffffffffffffffffffffffffffff1661254a611f62565b73ffffffffffffffffffffffffffffffffffffffff16146125a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612597906147bc565b60405180910390fd5b6000601460016101000a81548160ff021916908315150217905550565b6125c5612816565b73ffffffffffffffffffffffffffffffffffffffff166125e3611f62565b73ffffffffffffffffffffffffffffffffffffffff1614612639576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612630906147bc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a0906145fc565b60405180910390fd5b6126b281612c49565b50565b601460019054906101000a900460ff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061279357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806127a357506127a282613127565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661289183611c22565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000806128f2600b6128d7565b90506128fe3382613191565b80915061290b600b6131af565b5090565b600061291a826127aa565b612959576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612950906146dc565b60405180910390fd5b600061296483611c22565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806129d357508373ffffffffffffffffffffffffffffffffffffffff166129bb84610b51565b73ffffffffffffffffffffffffffffffffffffffff16145b806129e457506129e38185612490565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a0d82611c22565b73ffffffffffffffffffffffffffffffffffffffff1614612a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5a906147dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aca9061469c565b60405180910390fd5b612ade8383836131c5565b612ae960008261281e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b399190614aa7565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b9091906149c6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d75906146bc565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612e6f91906144ff565b60405180910390a3505050565b6000612e8733611e0b565b905090565b612e978484846129ed565b612ea3848484846132d9565b612ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed9906145dc565b60405180910390fd5b50505050565b606060138054612ef790614b91565b80601f0160208091040260200160405190810160405280929190818152602001828054612f2390614b91565b8015612f705780601f10612f4557610100808354040283529160200191612f70565b820191906000526020600020905b815481529060010190602001808311612f5357829003601f168201915b5050505050905090565b60606000821415612fc2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613122565b600082905060005b60008214612ff4578080612fdd90614bf4565b915050600a82612fed9190614a1c565b9150612fca565b60008167ffffffffffffffff811115613036577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130685781602001600182028036833780820191505090505b5090505b6000851461311b576001826130819190614aa7565b9150600a856130909190614c3d565b603061309c91906149c6565b60f81b8183815181106130d8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131149190614a1c565b945061306c565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6131ab828260405180602001604052806000815250613470565b5050565b6001816000016000828254019250508190555050565b6131d08383836134cb565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156132135761320e816134d0565b613252565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613251576132508382613519565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132955761329081613686565b6132d4565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146132d3576132d282826137c9565b5b5b505050565b60006132fa8473ffffffffffffffffffffffffffffffffffffffff16613848565b15613463578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613323612816565b8786866040518563ffffffff1660e01b81526004016133459493929190614461565b602060405180830381600087803b15801561335f57600080fd5b505af192505050801561339057506040513d601f19601f8201168201806040525081019061338d9190613eac565b60015b613413573d80600081146133c0576040519150601f19603f3d011682016040523d82523d6000602084013e6133c5565b606091505b5060008151141561340b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613402906145dc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613468565b600190505b949350505050565b61347a838361385b565b61348760008484846132d9565b6134c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134bd906145dc565b60405180910390fd5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161352684611e0b565b6135309190614aa7565b9050600060076000848152602001908152602001600020549050818114613615576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061369a9190614aa7565b90506000600960008481526020019081526020016000205490506000600883815481106136f0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613738577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806137ad577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006137d483611e0b565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138c29061477c565b60405180910390fd5b6138d4816127aa565b15613914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161390b9061461c565b60405180910390fd5b613920600083836131c5565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461397091906149c6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613a3590614b91565b90600052602060002090601f016020900481019282613a575760008555613a9e565b82601f10613a7057805160ff1916838001178555613a9e565b82800160010185558215613a9e579182015b82811115613a9d578251825591602001919060010190613a82565b5b509050613aab9190613aaf565b5090565b5b80821115613ac8576000816000905550600101613ab0565b5090565b6000613adf613ada846148bc565b614897565b90508083825260208201905082856020860282011115613afe57600080fd5b60005b85811015613b2e5781613b148882613bb4565b845260208401935060208301925050600181019050613b01565b5050509392505050565b6000613b4b613b46846148e8565b614897565b905082815260208101848484011115613b6357600080fd5b613b6e848285614b4f565b509392505050565b6000613b89613b8484614919565b614897565b905082815260208101848484011115613ba157600080fd5b613bac848285614b4f565b509392505050565b600081359050613bc3816153eb565b92915050565b600082601f830112613bda57600080fd5b8135613bea848260208601613acc565b91505092915050565b600081359050613c0281615402565b92915050565b600081359050613c1781615419565b92915050565b600081519050613c2c81615419565b92915050565b600082601f830112613c4357600080fd5b8135613c53848260208601613b38565b91505092915050565b600082601f830112613c6d57600080fd5b8135613c7d848260208601613b76565b91505092915050565b600081359050613c9581615430565b92915050565b600060208284031215613cad57600080fd5b6000613cbb84828501613bb4565b91505092915050565b60008060408385031215613cd757600080fd5b6000613ce585828601613bb4565b9250506020613cf685828601613bb4565b9150509250929050565b600080600060608486031215613d1557600080fd5b6000613d2386828701613bb4565b9350506020613d3486828701613bb4565b9250506040613d4586828701613c86565b9150509250925092565b60008060008060808587031215613d6557600080fd5b6000613d7387828801613bb4565b9450506020613d8487828801613bb4565b9350506040613d9587828801613c86565b925050606085013567ffffffffffffffff811115613db257600080fd5b613dbe87828801613c32565b91505092959194509250565b60008060408385031215613ddd57600080fd5b6000613deb85828601613bb4565b9250506020613dfc85828601613bf3565b9150509250929050565b60008060408385031215613e1957600080fd5b6000613e2785828601613bb4565b9250506020613e3885828601613c86565b9150509250929050565b600060208284031215613e5457600080fd5b600082013567ffffffffffffffff811115613e6e57600080fd5b613e7a84828501613bc9565b91505092915050565b600060208284031215613e9557600080fd5b6000613ea384828501613c08565b91505092915050565b600060208284031215613ebe57600080fd5b6000613ecc84828501613c1d565b91505092915050565b600060208284031215613ee757600080fd5b600082013567ffffffffffffffff811115613f0157600080fd5b613f0d84828501613c5c565b91505092915050565b600060208284031215613f2857600080fd5b6000613f3684828501613c86565b91505092915050565b6000613f4b8383614404565b60208301905092915050565b613f6081614adb565b82525050565b6000613f718261495a565b613f7b8185614988565b9350613f868361494a565b8060005b83811015613fb7578151613f9e8882613f3f565b9750613fa98361497b565b925050600181019050613f8a565b5085935050505092915050565b613fcd81614aed565b82525050565b6000613fde82614965565b613fe88185614999565b9350613ff8818560208601614b5e565b61400181614d2a565b840191505092915050565b600061401782614970565b61402181856149aa565b9350614031818560208601614b5e565b61403a81614d2a565b840191505092915050565b600061405082614970565b61405a81856149bb565b935061406a818560208601614b5e565b80840191505092915050565b60006140836026836149aa565b915061408e82614d3b565b604082019050919050565b60006140a6600b836149aa565b91506140b182614d8a565b602082019050919050565b60006140c96010836149aa565b91506140d482614db3565b602082019050919050565b60006140ec602e836149aa565b91506140f782614ddc565b604082019050919050565b600061410f602b836149aa565b915061411a82614e2b565b604082019050919050565b60006141326032836149aa565b915061413d82614e7a565b604082019050919050565b60006141556026836149aa565b915061416082614ec9565b604082019050919050565b6000614178601c836149aa565b915061418382614f18565b602082019050919050565b600061419b601a836149aa565b91506141a682614f41565b602082019050919050565b60006141be602d836149aa565b91506141c982614f6a565b604082019050919050565b60006141e1600c836149aa565b91506141ec82614fb9565b602082019050919050565b60006142046024836149aa565b915061420f82614fe2565b604082019050919050565b60006142276019836149aa565b915061423282615031565b602082019050919050565b600061424a602c836149aa565b91506142558261505a565b604082019050919050565b600061426d6038836149aa565b9150614278826150a9565b604082019050919050565b6000614290602a836149aa565b915061429b826150f8565b604082019050919050565b60006142b36029836149aa565b91506142be82615147565b604082019050919050565b60006142d6601c836149aa565b91506142e182615196565b602082019050919050565b60006142f96020836149aa565b9150614304826151bf565b602082019050919050565b600061431c602c836149aa565b9150614327826151e8565b604082019050919050565b600061433f6020836149aa565b915061434a82615237565b602082019050919050565b60006143626029836149aa565b915061436d82615260565b604082019050919050565b6000614385602f836149aa565b9150614390826152af565b604082019050919050565b60006143a86021836149aa565b91506143b3826152fe565b604082019050919050565b60006143cb6031836149aa565b91506143d68261534d565b604082019050919050565b60006143ee602c836149aa565b91506143f98261539c565b604082019050919050565b61440d81614b45565b82525050565b61441c81614b45565b82525050565b600061442e8285614045565b915061443a8284614045565b91508190509392505050565b600060208201905061445b6000830184613f57565b92915050565b60006080820190506144766000830187613f57565b6144836020830186613f57565b6144906040830185614413565b81810360608301526144a28184613fd3565b905095945050505050565b60006040820190506144c26000830185613f57565b81810360208301526144d48184613f66565b90509392505050565b600060208201905081810360008301526144f78184613f66565b905092915050565b60006020820190506145146000830184613fc4565b92915050565b60006020820190508181036000830152614534818461400c565b905092915050565b6000602082019050818103600083015261455581614076565b9050919050565b6000602082019050818103600083015261457581614099565b9050919050565b60006020820190508181036000830152614595816140bc565b9050919050565b600060208201905081810360008301526145b5816140df565b9050919050565b600060208201905081810360008301526145d581614102565b9050919050565b600060208201905081810360008301526145f581614125565b9050919050565b6000602082019050818103600083015261461581614148565b9050919050565b600060208201905081810360008301526146358161416b565b9050919050565b600060208201905081810360008301526146558161418e565b9050919050565b60006020820190508181036000830152614675816141b1565b9050919050565b60006020820190508181036000830152614695816141d4565b9050919050565b600060208201905081810360008301526146b5816141f7565b9050919050565b600060208201905081810360008301526146d58161421a565b9050919050565b600060208201905081810360008301526146f58161423d565b9050919050565b6000602082019050818103600083015261471581614260565b9050919050565b6000602082019050818103600083015261473581614283565b9050919050565b60006020820190508181036000830152614755816142a6565b9050919050565b60006020820190508181036000830152614775816142c9565b9050919050565b60006020820190508181036000830152614795816142ec565b9050919050565b600060208201905081810360008301526147b58161430f565b9050919050565b600060208201905081810360008301526147d581614332565b9050919050565b600060208201905081810360008301526147f581614355565b9050919050565b6000602082019050818103600083015261481581614378565b9050919050565b600060208201905081810360008301526148358161439b565b9050919050565b60006020820190508181036000830152614855816143be565b9050919050565b60006020820190508181036000830152614875816143e1565b9050919050565b60006020820190506148916000830184614413565b92915050565b60006148a16148b2565b90506148ad8282614bc3565b919050565b6000604051905090565b600067ffffffffffffffff8211156148d7576148d6614cfb565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561490357614902614cfb565b5b61490c82614d2a565b9050602081019050919050565b600067ffffffffffffffff82111561493457614933614cfb565b5b61493d82614d2a565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006149d182614b45565b91506149dc83614b45565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a1157614a10614c6e565b5b828201905092915050565b6000614a2782614b45565b9150614a3283614b45565b925082614a4257614a41614c9d565b5b828204905092915050565b6000614a5882614b45565b9150614a6383614b45565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a9c57614a9b614c6e565b5b828202905092915050565b6000614ab282614b45565b9150614abd83614b45565b925082821015614ad057614acf614c6e565b5b828203905092915050565b6000614ae682614b25565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614b7c578082015181840152602081019050614b61565b83811115614b8b576000848401525b50505050565b60006002820490506001821680614ba957607f821691505b60208210811415614bbd57614bbc614ccc565b5b50919050565b614bcc82614d2a565b810181811067ffffffffffffffff82111715614beb57614bea614cfb565b5b80604052505050565b6000614bff82614b45565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c3257614c31614c6e565b5b600182019050919050565b6000614c4882614b45565b9150614c5383614b45565b925082614c6357614c62614c9d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f43616e6e6f74206d696e7420737065636966696564206e756d626572206f662060008201527f647265616d7a0000000000000000000000000000000000000000000000000000602082015250565b7f53616c6520706175736564000000000000000000000000000000000000000000600082015250565b7f4e6f7420656e6f756768204e4654732100000000000000000000000000000000600082015250565b7f596f75206861766520616c72656164792072656465656d6564206d6178206e7560008201527f6d626572206f6620647265616d7a000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f596f7520646f206e6f74206f776e206120537572662053706f74000000000000600082015250565b7f596f75206861766520616c72656164792072656465656d656420796f7572207060008201527f726573616c6520647265616d7a00000000000000000000000000000000000000602082015250565b7f50726573616c65206f7665720000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e647320746f2072656465656d00000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6153f481614adb565b81146153ff57600080fd5b50565b61540b81614aed565b811461541657600080fd5b50565b61542281614af9565b811461542d57600080fd5b50565b61543981614b45565b811461544457600080fd5b5056fea26469706673582212206b9358a12e0c6c94e1a5529d270774ffd4bc96b13fa06b91bd8405f08cd7619b64736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6366396d52764b7a323531566b617362523850615753367841424471636e56354638464673574b6a774b67742f00000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://Qmcf9mRvKz251VkasbR8PaWS6xABDqcnV5F8FFsWKjwKgt/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d6366396d52764b7a323531566b61736252385061575336
Arg [3] : 7841424471636e56354638464673574b6a774b67742f00000000000000000000


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.