ETH Price: $3,418.73 (+7.10%)
Gas: 33 Gwei

Token

CyberPantherzV1 (CPZV1)
 

Overview

Max Total Supply

8,888 CPZV1

Holders

1,452

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
plurio.eth
Balance
2 CPZV1
0x549ae637381f77c13bb0e9308a0d8f56769f4dc4
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:
CyberPantherzV1

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : CyberPantherzV1.sol
pragma solidity >=0.8.0 <0.9.0;
//SPDX-License-Identifier: MIT
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
//     ______      __              ____              __  __                            ___
//    / ____/_  __/ /_  ___  _____/ __ \____ _____  / /_/ /_  ___  _________     _   _<  /
//   / /   / / / / __ \/ _ \/ ___/ /_/ / __ `/ __ \/ __/ __ \/ _ \/ ___/_  /    | | / / /
//  / /___/ /_/ / /_/ /  __/ /  / ____/ /_/ / / / / /_/ / / /  __/ /    / /_    | |/ / /
//  \____/\__, /_.___/\___/_/  /_/    \__,_/_/ /_/\__/_/ /_/\___/_/    /___/    |___/_/
//       /____/
contract CyberPantherzV1 is ERC721, Ownable {
    using Strings for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private supply;
    Counters.Counter private newtonSupply;
    Counters.Counter private davisSupply;
    Counters.Counter private hamptonSupply;

    bool public paused;
    bool public revealed;
    bool public presale;

    uint256 public constant maxSupply = 8888;
    uint256 public constant newtonMaxSupply = 3333;
    uint256 public constant davisMaxSupply = 3333;
    uint256 public constant hamptonMaxSupply = 2222;

    uint256 public cost = 0.03 ether;

    uint256 public maxMintAmountPerTx = 30; 
    uint256 public maxPerPresaleAddress = 9; 
    uint256 public maxPerFreesaleAddress = 1; 
    uint256 public reserveCount;
    uint256 public reserveLimit = 888;
    
    address public constant artistAddress = 0xF81e259107b9C2D383C8753e395E30AE48666941;
    address public constant devAddress = 0x9C0aC9D88DE0c9AF72Cb7d5Cc4929289110E5BE9;
    address public constant dev2Address = 0x9D9Df0C57F5D4C54492F1486e0c4af5d006A6967;
    address public constant eventsAddress = 0x4a4Fda747E0DFD438fE77b198028838076A48118;
    address public constant investorAddress = 0xBAE0f07DE520Ebdf520C35364De4C15EBE72d662;
    address public constant contributersAddress = 0x0B2b5A6B723524BBD8e463246ea45FD401c0E079;
    address public constant communityAddress = 0xb686c06a9667e48e1ACc4c88a7d9727B6EE2c47a;

    bytes32 public presaleMerkle;
    bytes32 public freesaleMerkle;

    string public uriPrefix;
    string public uriSuffix;
    string public uriHidden;

    mapping(address => uint256) public presaleClaimed;
    mapping(address => uint256) public freesaleClaimed;

    mapping(uint256 => uint256) public tokenIdsToBase;

    constructor(string memory _uriHidden, bytes32 _presaleMerkle, bytes32 _freesaleMerkle)
        ERC721("CyberPantherzV1", "CPZV1")
    {
        uriHidden = _uriHidden;
        presaleMerkle = _presaleMerkle;
        freesaleMerkle = _freesaleMerkle;
        uriPrefix = "UNREVEALED";
        uriSuffix = ".json";
        reserveCount = 0;
        paused = true;
        revealed = false;
        presale = true;
    }

    modifier mintCompliance(uint256[3] memory mintAmounts) {
        uint256 mintCount = (mintAmounts[0] + mintAmounts[1] + mintAmounts[2]);
        require(!paused, "The sale is paused.");
        require(mintCount > 0, "Mint count must be greater than 0.");
        require(
            mintCount <= maxMintAmountPerTx,
            "Invalid mint amount. Too high."
        );
        require(
            supply.current() + mintCount <= maxSupply,
            "Max supply exceeded."
        );
        require(
            supply.current() + mintCount <= maxSupply - (reserveLimit - reserveCount),
            "Max supply + reserve exceeded."
        );
        require(
            newtonMaxSupply >= newtonSupply.current() + mintAmounts[0],
            "Not enough Newtons left."
        );
        require(
            davisMaxSupply >= davisSupply.current() + mintAmounts[1],
            "Not enough Davis left."
        );
        require(
            hamptonMaxSupply >= hamptonSupply.current() + mintAmounts[2],
            "Not enough Hamptons left."
        );
        _;
    }

    function mintPresale(
        address account,
        uint256[3] memory mintAmounts,
        bytes32[] calldata merkleProof
    ) public payable mintCompliance(mintAmounts) {
        bytes32 node = keccak256(
            abi.encodePacked(account, maxPerPresaleAddress)
        );
        uint256 mintCount = (mintAmounts[0] + mintAmounts[1] + mintAmounts[2]);
        require(presale, "No presale minting currently.");
        require(msg.value >= cost * mintCount, "Insufficient funds.");
        require(
            presaleClaimed[account] + mintCount <= maxPerPresaleAddress,
            "Exceeds max mints for presale."
        );
        require(
            MerkleProof.verify(merkleProof, presaleMerkle, node),
            "Invalid proof."
        );
        _mintLoop(account, mintAmounts);
        presaleClaimed[account] += mintCount;
    }

    function mintFreesale(
        address account,
        uint256[3] memory mintAmounts,
        bytes32[] calldata merkleProof
    ) public mintCompliance(mintAmounts) {
        bytes32 node = keccak256(
            abi.encodePacked(account, maxPerFreesaleAddress)
        );
        uint256 mintCount = (mintAmounts[0] + mintAmounts[1] + mintAmounts[2]);
        require(presale, "No presale minting currently.");
        require(mintCount == 1, "Only 1 free.");
        require(
            freesaleClaimed[account] + mintCount <= maxPerFreesaleAddress,
            "Exceeds max mints for presale."
        );
        require(
            MerkleProof.verify(merkleProof, freesaleMerkle, node),
            "Invalid proof."
        );
        _mintLoop(account, mintAmounts);
        freesaleClaimed[account] += mintCount;
    }

    function mint(uint256[3] memory mintAmounts)
        public
        payable
        mintCompliance(mintAmounts)
    {
        uint256 mintCount = (mintAmounts[0] + mintAmounts[1] + mintAmounts[2]);
        require(!presale, "Only presale minting currently.");
        require(msg.value >= cost * mintCount, "Insufficient funds.");
        _mintLoop(msg.sender, mintAmounts);
    }

    function mintForAddress(uint256[3] memory mintAmounts, address _receiver)
        public
        mintCompliance(mintAmounts)
        onlyOwner
    {
        uint256 mintCount = (mintAmounts[0] + mintAmounts[1] + mintAmounts[2]);
        require(
            reserveCount + mintCount <= reserveLimit,
            "Exceeds max of 888 reserved."
        );
        _mintLoop(_receiver, mintAmounts);
        reserveCount += mintCount;
    }

    function _mintLoop(address _receiver, uint256[3] memory mintAmounts)
        internal
    {
        for (uint256 i = 0; i < mintAmounts[0]; i++) {
            supply.increment();
            newtonSupply.increment();
            tokenIdsToBase[supply.current()] = 0;
            _safeMint(_receiver, supply.current());
        }
        for (uint256 i = 0; i < mintAmounts[1]; i++) {
            supply.increment();
            davisSupply.increment();
            tokenIdsToBase[supply.current()] = 1;
            _safeMint(_receiver, supply.current());
        }
        for (uint256 i = 0; i < mintAmounts[2]; i++) {
            supply.increment();
            hamptonSupply.increment();
            tokenIdsToBase[supply.current()] = 2;
            _safeMint(_receiver, supply.current());
        }
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI query for nonexistent token."
        );
        if (revealed == false) {
            string memory baseId;
            string memory currentHiddenURI = uriHidden;
            if (tokenIdsToBase[_tokenId] == 0) {
                baseId = "newton";
            } else if (tokenIdsToBase[_tokenId] == 1) {
                baseId = "davis";
            } else {
                baseId = "hampton";
            }
            return
                bytes(currentHiddenURI).length > 0
                    ? string(
                        abi.encodePacked(currentHiddenURI, baseId, uriSuffix)
                    )
                    : "INVALID";
        }
        string memory currentBaseURI = uriPrefix;
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        _tokenId.toString(),
                        uriSuffix
                    )
                )
                : "INVALID";
    }

    function totalSupply() public view returns (uint256) {
        return supply.current();
    }

    function newtonTotalSupply() public view returns (uint256) {
        return newtonSupply.current();
    }

    function davisTotalSupply() public view returns (uint256) {
        return davisSupply.current();
    }

    function hamptonTotalSupply() public view returns (uint256) {
        return hamptonSupply.current();
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (
            ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply
        ) {
            address currentTokenOwner = ownerOf(currentTokenId);
            if (currentTokenOwner == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;
                ownedTokenIndex++;
            }
            currentTokenId++;
        }
        return ownedTokenIds;
    }

    function setPresaleMerkle(bytes32 newRoot) public onlyOwner {
        presaleMerkle = newRoot;
    }
    function setFreesaleMerkle(bytes32 newRoot) public onlyOwner {
        freesaleMerkle = newRoot;
    }

    function setUriPrefix(string memory newUriPrefix) public onlyOwner {
        uriPrefix = newUriPrefix;
    }

    function setUriSuffix(string memory newUriSuffix) public onlyOwner {
        uriSuffix = newUriSuffix;
    }

    function setUriHidden(string memory newUriHidden) public onlyOwner {
        uriHidden = newUriHidden;
    }

    function setCost(uint256 _cost) public onlyOwner {
        cost = _cost;
    }

    function setMaxPerPresaleAddress(uint256 _maxPerPresaleAddress)
        public
        onlyOwner
    {
        maxPerPresaleAddress = _maxPerPresaleAddress;
    }

    function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx)
        public
        onlyOwner
    {
        maxMintAmountPerTx = _maxMintAmountPerTx;
    }

    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

    function setPresale(bool _state) public onlyOwner {
        presale = _state;
    }

    function setRevealed(bool _state) public onlyOwner {
        revealed = _state;
    }

    function withdrawAll() public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "Insufficent balance");
        _widthdraw(devAddress, ((balance * 15) / 100));
        _widthdraw(dev2Address, ((balance * 5) / 100));
        _widthdraw(artistAddress, ((balance * 5) / 100));
        _widthdraw(eventsAddress, ((balance * 5) / 100));
        _widthdraw(investorAddress, ((balance * 5) / 100));
        _widthdraw(contributersAddress, ((balance * 15) / 100));
        _widthdraw(communityAddress, address(this).balance);
    }

    function _widthdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Failed to widthdraw Ether");
    }
}

File 2 of 13 : 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 3 of 13 : 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 4 of 13 : 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 13 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

File 6 of 13 : 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 7 of 13 : 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 13 : 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 13 : 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 13 : 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 13 : 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 12 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 13 of 13 : 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": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_uriHidden","type":"string"},{"internalType":"bytes32","name":"_presaleMerkle","type":"bytes32"},{"internalType":"bytes32","name":"_freesaleMerkle","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"artistAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"communityAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contributersAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"davisMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"davisTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dev2Address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eventsAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freesaleClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freesaleMerkle","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hamptonMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hamptonTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"investorAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerFreesaleAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerPresaleAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[3]","name":"mintAmounts","type":"uint256[3]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[3]","name":"mintAmounts","type":"uint256[3]"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[3]","name":"mintAmounts","type":"uint256[3]"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintFreesale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[3]","name":"mintAmounts","type":"uint256[3]"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"newtonMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"newtonTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleMerkle","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reserveLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newRoot","type":"bytes32"}],"name":"setFreesaleMerkle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerPresaleAddress","type":"uint256"}],"name":"setMaxPerPresaleAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newRoot","type":"bytes32"}],"name":"setPresaleMerkle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newUriHidden","type":"string"}],"name":"setUriHidden","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newUriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newUriSuffix","type":"string"}],"name":"setUriSuffix","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":"","type":"uint256"}],"name":"tokenIdsToBase","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":"uriHidden","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052666a94d74f430000600c55601e600d556009600e556001600f556103786011553480156200003157600080fd5b5060405162003ec838038062003ec8833981016040819052620000549162000279565b604080518082018252600f81526e437962657250616e746865727a563160881b60208083019182528351808501909452600584526443505a563160d81b908401528151919291620000a891600091620001d3565b508051620000be906001906020840190620001d3565b505050620000db620000d56200017d60201b60201c565b62000181565b8251620000f0906016906020860190620001d3565b506012829055601381905560408051808201909152600a808252691553949155915053115160b21b60209092019182526200012e91601491620001d3565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200015d91601591620001d3565b505060006010555050600b805462ffffff191662010001179055620003b6565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001e19062000363565b90600052602060002090601f01602090048101928262000205576000855562000250565b82601f106200022057805160ff191683800117855562000250565b8280016001018555821562000250579182015b828111156200025057825182559160200191906001019062000233565b506200025e92915062000262565b5090565b5b808211156200025e576000815560010162000263565b6000806000606084860312156200028e578283fd5b83516001600160401b0380821115620002a5578485fd5b818601915086601f830112620002b9578485fd5b815181811115620002ce57620002ce620003a0565b604051601f8201601f19908116603f01168101908382118183101715620002f957620002f9620003a0565b8160405282815260209350898484870101111562000315578788fd5b8791505b8282101562000338578482018401518183018501529083019062000319565b828211156200034957878484830101525b928801516040909801519299979850919695505050505050565b600181811c908216806200037857607f821691505b602082108114156200039a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b613b0280620003c66000396000f3fe6080604052600436106103ce5760003560e01c80637ec4a659116101fd578063c54e73e311610118578063e17e1f26116100ab578063f9765bc11161007a578063f9765bc114610b05578063faf5234d14610b32578063fbf2e42314610b48578063fd2e908d14610b68578063fdea8e0b14610b8857600080fd5b8063e17e1f2614610a67578063e985e9c514610a87578063f2fde38b14610ad0578063f7726fdd14610af057600080fd5b8063d5abeb01116100e7578063d5abeb01146109f3578063d79fa1d314610a09578063d7eb3f3a14610a1f578063e0a8085314610a4757600080fd5b8063c54e73e31461099d578063c87b56dd146109bd578063ce135b0a1461091f578063d53b0abb146109dd57600080fd5b8063a22cb46511610190578063b383ba581161015f578063b383ba581461091f578063b88d4fde14610935578063bc25949e14610955578063c2b733981461097d57600080fd5b8063a22cb465146108a4578063ac0841b9146108c4578063b071401b146108d7578063b27f4487146108f757600080fd5b806386e476dd116101cc57806386e476dd146108335780638da5cb5b1461085b57806394354fd01461087957806395d89b411461088f57600080fd5b80637ec4a659146107d457806380773f0c146107f457806382a55e1014610809578063853828b61461081e57600080fd5b80632fdafd86116102ed5780635c975abb1161028057806368e00d771161024f57806368e00d771461075f5780636ce7ad121461077f57806370a082311461079f578063715018a6146107bf57600080fd5b80635c975abb146106fa57806360c77d7a1461071457806362b99ad41461072a5780636352211e1461073f57600080fd5b8063438b6300116102bc578063438b63001461067957806344a0d68a146106a657806351830227146106c65780635503a0e8146106e557600080fd5b80632fdafd861461060657806338050f551461061c5780633ad10ef61461063157806342842e0e1461065957600080fd5b806316317c211161036557806320c09e241161033457806320c09e241461057b57806321e7345e146105a357806323b872dd146105b9578063299ab02a146105d957600080fd5b806316317c211461051057806316ba10e01461052657806316c38b3c1461054657806318160ddd1461056657600080fd5b8063095ea7b3116103a1578063095ea7b31461047757806309f885881461049757806312e228fd146104d257806313faede6146104fa57600080fd5b806301ffc9a7146103d357806302cce9221461040857806306fdde031461041d578063081812fc1461043f575b600080fd5b3480156103df57600080fd5b506103f36103ee3660046134fb565b610ba8565b60405190151581526020015b60405180910390f35b61041b6104163660046133a5565b610bfa565b005b34801561042957600080fd5b50610432610ff7565b6040516103ff91906136e8565b34801561044b57600080fd5b5061045f61045a3660046134e3565b611089565b6040516001600160a01b0390911681526020016103ff565b34801561048357600080fd5b5061041b61049236600461345b565b61111e565b3480156104a357600080fd5b506104c46104b23660046132a5565b60186020526000908152604090205481565b6040519081526020016103ff565b3480156104de57600080fd5b5061045f73bae0f07de520ebdf520c35364de4c15ebe72d66281565b34801561050657600080fd5b506104c4600c5481565b34801561051c57600080fd5b506104c460105481565b34801561053257600080fd5b5061041b610541366004613533565b611234565b34801561055257600080fd5b5061041b6105613660046134c9565b611275565b34801561057257600080fd5b506104c46112b2565b34801561058757600080fd5b5061045f739d9df0c57f5d4c54492f1486e0c4af5d006a696781565b3480156105af57600080fd5b506104c460115481565b3480156105c557600080fd5b5061041b6105d43660046132f1565b6112c2565b3480156105e557600080fd5b506104c46105f43660046134e3565b60196020526000908152604090205481565b34801561061257600080fd5b506104c460125481565b34801561062857600080fd5b506104c46112f3565b34801561063d57600080fd5b5061045f739c0ac9d88de0c9af72cb7d5cc4929289110e5be981565b34801561066557600080fd5b5061041b6106743660046132f1565b6112fe565b34801561068557600080fd5b506106996106943660046132a5565b611319565b6040516103ff91906136a4565b3480156106b257600080fd5b5061041b6106c13660046134e3565b611416565b3480156106d257600080fd5b50600b546103f390610100900460ff1681565b3480156106f157600080fd5b50610432611445565b34801561070657600080fd5b50600b546103f39060ff1681565b34801561072057600080fd5b506104c460135481565b34801561073657600080fd5b506104326114d3565b34801561074b57600080fd5b5061045f61075a3660046134e3565b6114e0565b34801561076b57600080fd5b5061041b61077a366004613533565b611557565b34801561078b57600080fd5b5061041b61079a3660046133a5565b611594565b3480156107ab57600080fd5b506104c46107ba3660046132a5565b611965565b3480156107cb57600080fd5b5061041b6119ec565b3480156107e057600080fd5b5061041b6107ef366004613533565b611a22565b34801561080057600080fd5b506104c4611a5f565b34801561081557600080fd5b50610432611a6a565b34801561082a57600080fd5b5061041b611a77565b34801561083f57600080fd5b5061045f73b686c06a9667e48e1acc4c88a7d9727b6ee2c47a81565b34801561086757600080fd5b506006546001600160a01b031661045f565b34801561088557600080fd5b506104c4600d5481565b34801561089b57600080fd5b50610432611bf3565b3480156108b057600080fd5b5061041b6108bf366004613432565b611c02565b61041b6108d2366004613484565b611c0d565b3480156108e357600080fd5b5061041b6108f23660046134e3565b611e97565b34801561090357600080fd5b5061045f730b2b5a6b723524bbd8e463246ea45fd401c0e07981565b34801561092b57600080fd5b506104c4610d0581565b34801561094157600080fd5b5061041b61095036600461332c565b611ec6565b34801561096157600080fd5b5061045f734a4fda747e0dfd438fe77b198028838076a4811881565b34801561098957600080fd5b5061041b6109983660046134e3565b611ef8565b3480156109a957600080fd5b5061041b6109b83660046134c9565b611f27565b3480156109c957600080fd5b506104326109d83660046134e3565b611f6d565b3480156109e957600080fd5b506104c4600f5481565b3480156109ff57600080fd5b506104c46122b881565b348015610a1557600080fd5b506104c4600e5481565b348015610a2b57600080fd5b5061045f73f81e259107b9c2d383c8753e395e30ae4866694181565b348015610a5357600080fd5b5061041b610a623660046134c9565b612274565b348015610a7357600080fd5b5061041b610a8236600461349f565b6122b8565b348015610a9357600080fd5b506103f3610aa23660046132bf565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610adc57600080fd5b5061041b610aeb3660046132a5565b612536565b348015610afc57600080fd5b506104c46125ce565b348015610b1157600080fd5b506104c4610b203660046132a5565b60176020526000908152604090205481565b348015610b3e57600080fd5b506104c46108ae81565b348015610b5457600080fd5b5061041b610b633660046134e3565b6125d9565b348015610b7457600080fd5b5061041b610b833660046134e3565b612608565b348015610b9457600080fd5b50600b546103f39062010000900460ff1681565b60006001600160e01b031982166380ac58cd60e01b1480610bd957506001600160e01b03198216635b5e139f60e01b145b80610bf457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60408301516020840151845185926000929091610c17919061397c565b610c21919061397c565b600b5490915060ff1615610c505760405162461bcd60e51b8152600401610c4790613869565b60405180910390fd5b60008111610c705760405162461bcd60e51b8152600401610c479061374d565b600d54811115610c925760405162461bcd60e51b8152600401610c479061378f565b6122b881610c9f60075490565b610ca9919061397c565b1115610cc75760405162461bcd60e51b8152600401610c479061391e565b601054601154610cd791906139c7565b610ce3906122b86139c7565b81610ced60075490565b610cf7919061397c565b1115610d155760405162461bcd60e51b8152600401610c47906138e7565b8151600854610d24919061397c565b610d051015610d455760405162461bcd60e51b8152600401610c4790613832565b6020820151600954610d57919061397c565b610d051015610d785760405162461bcd60e51b8152600401610c479061394c565b6040820151600a54610d8a919061397c565b6108ae1015610dab5760405162461bcd60e51b8152600401610c47906137c6565b600e546040516bffffffffffffffffffffffff19606089901b166020820152603481019190915260009060540160408051808303601f1901815291815281516020928301209088015191880151885191935060009291610e0b919061397c565b610e15919061397c565b600b5490915062010000900460ff16610e705760405162461bcd60e51b815260206004820152601d60248201527f4e6f2070726573616c65206d696e74696e672063757272656e746c792e0000006044820152606401610c47565b80600c54610e7e91906139a8565b341015610ec35760405162461bcd60e51b815260206004820152601360248201527224b739bab33334b1b4b2b73a10333ab732399760691b6044820152606401610c47565b600e546001600160a01b038916600090815260176020526040902054610eea90839061397c565b1115610f385760405162461bcd60e51b815260206004820152601e60248201527f45786365656473206d6178206d696e747320666f722070726573616c652e00006044820152606401610c47565b610f79868680806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506012549150859050612637565b610fb65760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b210383937b7b31760911b6044820152606401610c47565b610fc0888861264d565b6001600160a01b03881660009081526017602052604081208054839290610fe890849061397c565b90915550505050505050505050565b60606000805461100690613a0a565b80601f016020809104026020016040519081016040528092919081815260200182805461103290613a0a565b801561107f5780601f106110545761010080835404028352916020019161107f565b820191906000526020600020905b81548152906001019060200180831161106257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166111025760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c47565b506000908152600460205260409020546001600160a01b031690565b6000611129826114e0565b9050806001600160a01b0316836001600160a01b031614156111975760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610c47565b336001600160a01b03821614806111b357506111b38133610aa2565b6112255760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610c47565b61122f838361278f565b505050565b6006546001600160a01b0316331461125e5760405162461bcd60e51b8152600401610c47906137fd565b80516112719060159060208401906130f7565b5050565b6006546001600160a01b0316331461129f5760405162461bcd60e51b8152600401610c47906137fd565b600b805460ff1916911515919091179055565b60006112bd60075490565b905090565b6112cc33826127fd565b6112e85760405162461bcd60e51b8152600401610c4790613896565b61122f8383836128f0565b60006112bd60085490565b61122f83838360405180602001604052806000815250611ec6565b6060600061132683611965565b905060008167ffffffffffffffff81111561135157634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561137a578160200160208202803683370190505b509050600160005b838110801561139357506122b88211155b1561140c5760006113a3836114e0565b9050866001600160a01b0316816001600160a01b031614156113f957828483815181106113e057634e487b7160e01b600052603260045260246000fd5b6020908102919091010152816113f581613a45565b9250505b8261140381613a45565b93505050611382565b5090949350505050565b6006546001600160a01b031633146114405760405162461bcd60e51b8152600401610c47906137fd565b600c55565b6015805461145290613a0a565b80601f016020809104026020016040519081016040528092919081815260200182805461147e90613a0a565b80156114cb5780601f106114a0576101008083540402835291602001916114cb565b820191906000526020600020905b8154815290600101906020018083116114ae57829003601f168201915b505050505081565b6014805461145290613a0a565b6000818152600260205260408120546001600160a01b031680610bf45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610c47565b6006546001600160a01b031633146115815760405162461bcd60e51b8152600401610c47906137fd565b80516112719060169060208401906130f7565b604083015160208401518451859260009290916115b1919061397c565b6115bb919061397c565b600b5490915060ff16156115e15760405162461bcd60e51b8152600401610c4790613869565b600081116116015760405162461bcd60e51b8152600401610c479061374d565b600d548111156116235760405162461bcd60e51b8152600401610c479061378f565b6122b88161163060075490565b61163a919061397c565b11156116585760405162461bcd60e51b8152600401610c479061391e565b60105460115461166891906139c7565b611674906122b86139c7565b8161167e60075490565b611688919061397c565b11156116a65760405162461bcd60e51b8152600401610c47906138e7565b81516008546116b5919061397c565b610d0510156116d65760405162461bcd60e51b8152600401610c4790613832565b60208201516009546116e8919061397c565b610d0510156117095760405162461bcd60e51b8152600401610c479061394c565b6040820151600a5461171b919061397c565b6108ae101561173c5760405162461bcd60e51b8152600401610c47906137c6565b600f546040516bffffffffffffffffffffffff19606089901b166020820152603481019190915260009060540160408051808303601f190181529181528151602092830120908801519188015188519193506000929161179c919061397c565b6117a6919061397c565b600b5490915062010000900460ff166118015760405162461bcd60e51b815260206004820152601d60248201527f4e6f2070726573616c65206d696e74696e672063757272656e746c792e0000006044820152606401610c47565b806001146118405760405162461bcd60e51b815260206004820152600c60248201526b27b7363c901890333932b29760a11b6044820152606401610c47565b600f546001600160a01b03891660009081526018602052604090205461186790839061397c565b11156118b55760405162461bcd60e51b815260206004820152601e60248201527f45786365656473206d6178206d696e747320666f722070726573616c652e00006044820152606401610c47565b6118f6868680806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506013549150859050612637565b6119335760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b210383937b7b31760911b6044820152606401610c47565b61193d888861264d565b6001600160a01b03881660009081526018602052604081208054839290610fe890849061397c565b60006001600160a01b0382166119d05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610c47565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314611a165760405162461bcd60e51b8152600401610c47906137fd565b611a206000612a90565b565b6006546001600160a01b03163314611a4c5760405162461bcd60e51b8152600401610c47906137fd565b80516112719060149060208401906130f7565b60006112bd60095490565b6016805461145290613a0a565b6006546001600160a01b03163314611aa15760405162461bcd60e51b8152600401610c47906137fd565b4780611ae55760405162461bcd60e51b8152602060048201526013602482015272496e737566666963656e742062616c616e636560681b6044820152606401610c47565b611b19739c0ac9d88de0c9af72cb7d5cc4929289110e5be96064611b0a84600f6139a8565b611b149190613994565b612ae2565b611b3e739d9df0c57f5d4c54492f1486e0c4af5d006a69676064611b0a8460056139a8565b611b6373f81e259107b9c2d383c8753e395e30ae486669416064611b0a8460056139a8565b611b88734a4fda747e0dfd438fe77b198028838076a481186064611b0a8460056139a8565b611bad73bae0f07de520ebdf520c35364de4c15ebe72d6626064611b0a8460056139a8565b611bd2730b2b5a6b723524bbd8e463246ea45fd401c0e0796064611b0a84600f6139a8565b611bf073b686c06a9667e48e1acc4c88a7d9727b6ee2c47a47612ae2565b50565b60606001805461100690613a0a565b611271338383612b85565b60408101516020820151825183926000929091611c2a919061397c565b611c34919061397c565b600b5490915060ff1615611c5a5760405162461bcd60e51b8152600401610c4790613869565b60008111611c7a5760405162461bcd60e51b8152600401610c479061374d565b600d54811115611c9c5760405162461bcd60e51b8152600401610c479061378f565b6122b881611ca960075490565b611cb3919061397c565b1115611cd15760405162461bcd60e51b8152600401610c479061391e565b601054601154611ce191906139c7565b611ced906122b86139c7565b81611cf760075490565b611d01919061397c565b1115611d1f5760405162461bcd60e51b8152600401610c47906138e7565b8151600854611d2e919061397c565b610d051015611d4f5760405162461bcd60e51b8152600401610c4790613832565b6020820151600954611d61919061397c565b610d051015611d825760405162461bcd60e51b8152600401610c479061394c565b6040820151600a54611d94919061397c565b6108ae1015611db55760405162461bcd60e51b8152600401610c47906137c6565b60408301516020840151845160009291611dce9161397c565b611dd8919061397c565b600b5490915062010000900460ff1615611e345760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c792070726573616c65206d696e74696e672063757272656e746c792e006044820152606401610c47565b80600c54611e4291906139a8565b341015611e875760405162461bcd60e51b815260206004820152601360248201527224b739bab33334b1b4b2b73a10333ab732399760691b6044820152606401610c47565b611e91338561264d565b50505050565b6006546001600160a01b03163314611ec15760405162461bcd60e51b8152600401610c47906137fd565b600d55565b611ed033836127fd565b611eec5760405162461bcd60e51b8152600401610c4790613896565b611e9184848484612c54565b6006546001600160a01b03163314611f225760405162461bcd60e51b8152600401610c47906137fd565b601355565b6006546001600160a01b03163314611f515760405162461bcd60e51b8152600401610c47906137fd565b600b8054911515620100000262ff000019909216919091179055565b6000818152600260205260409020546060906001600160a01b0316611fed5760405162461bcd60e51b815260206004820152603060248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526f3732bc34b9ba32b73a103a37b5b2b71760811b6064820152608401610c47565b600b54610100900460ff1661218257606060006016805461200d90613a0a565b80601f016020809104026020016040519081016040528092919081815260200182805461203990613a0a565b80156120865780601f1061205b57610100808354040283529160200191612086565b820191906000526020600020905b81548152906001019060200180831161206957829003601f168201915b50505060008781526019602052604090205492935050506120c757604051806040016040528060068152602001653732bbba37b760d11b8152509150612126565b600084815260196020526040902054600114156121035760405180604001604052806005815260200164646176697360d81b8152509150612126565b604051806040016040528060078152602001663430b6b83a37b760c91b81525091505b600081511161215457604051806040016040528060078152602001661253959053125160ca1b81525061217a565b8082601560405160200161216a939291906135a5565b6040516020818303038152906040525b949350505050565b60006014805461219190613a0a565b80601f01602080910402602001604051908101604052809291908181526020018280546121bd90613a0a565b801561220a5780601f106121df5761010080835404028352916020019161220a565b820191906000526020600020905b8154815290600101906020018083116121ed57829003601f168201915b50505050509050600081511161223f57604051806040016040528060078152602001661253959053125160ca1b81525061226d565b8061224984612c87565b601560405160200161225d939291906135a5565b6040516020818303038152906040525b9392505050565b6006546001600160a01b0316331461229e5760405162461bcd60e51b8152600401610c47906137fd565b600b80549115156101000261ff0019909216919091179055565b604082015160208301518351849260009290916122d5919061397c565b6122df919061397c565b600b5490915060ff16156123055760405162461bcd60e51b8152600401610c4790613869565b600081116123255760405162461bcd60e51b8152600401610c479061374d565b600d548111156123475760405162461bcd60e51b8152600401610c479061378f565b6122b88161235460075490565b61235e919061397c565b111561237c5760405162461bcd60e51b8152600401610c479061391e565b60105460115461238c91906139c7565b612398906122b86139c7565b816123a260075490565b6123ac919061397c565b11156123ca5760405162461bcd60e51b8152600401610c47906138e7565b81516008546123d9919061397c565b610d0510156123fa5760405162461bcd60e51b8152600401610c4790613832565b602082015160095461240c919061397c565b610d05101561242d5760405162461bcd60e51b8152600401610c479061394c565b6040820151600a5461243f919061397c565b6108ae10156124605760405162461bcd60e51b8152600401610c47906137c6565b6006546001600160a01b0316331461248a5760405162461bcd60e51b8152600401610c47906137fd565b604084015160208501518551600092916124a39161397c565b6124ad919061397c565b9050601154816010546124c0919061397c565b111561250e5760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d6178206f66203838382072657365727665642e000000006044820152606401610c47565b612518848661264d565b806010600082825461252a919061397c565b90915550505050505050565b6006546001600160a01b031633146125605760405162461bcd60e51b8152600401610c47906137fd565b6001600160a01b0381166125c55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c47565b611bf081612a90565b60006112bd600a5490565b6006546001600160a01b031633146126035760405162461bcd60e51b8152600401610c47906137fd565b601255565b6006546001600160a01b031633146126325760405162461bcd60e51b8152600401610c47906137fd565b600e55565b6000826126448584612da1565b14949350505050565b60005b81518110156126b957612667600780546001019055565b612675600880546001019055565b60006019600061268460075490565b81526020810191909152604001600020556126a7836126a260075490565b612e5b565b806126b181613a45565b915050612650565b5060005b6020820151811015612724576126d7600780546001019055565b6126e5600980546001019055565b6001601960006126f460075490565b8152602081019190915260400160002055612712836126a260075490565b8061271c81613a45565b9150506126bd565b5060005b604082015181101561122f57612742600780546001019055565b612750600a80546001019055565b60026019600061275f60075490565b815260208101919091526040016000205561277d836126a260075490565b8061278781613a45565b915050612728565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906127c4826114e0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166128765760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c47565b6000612881836114e0565b9050806001600160a01b0316846001600160a01b031614806128bc5750836001600160a01b03166128b184611089565b6001600160a01b0316145b8061217a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff1661217a565b826001600160a01b0316612903826114e0565b6001600160a01b03161461296b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610c47565b6001600160a01b0382166129cd5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610c47565b6129d860008261278f565b6001600160a01b0383166000908152600360205260408120805460019290612a019084906139c7565b90915550506001600160a01b0382166000908152600360205260408120805460019290612a2f90849061397c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612b2f576040519150601f19603f3d011682016040523d82523d6000602084013e612b34565b606091505b505090508061122f5760405162461bcd60e51b815260206004820152601960248201527f4661696c656420746f20776964746864726177204574686572000000000000006044820152606401610c47565b816001600160a01b0316836001600160a01b03161415612be75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c47565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612c5f8484846128f0565b612c6b84848484612e75565b611e915760405162461bcd60e51b8152600401610c47906136fb565b606081612cab5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612cd55780612cbf81613a45565b9150612cce9050600a83613994565b9150612caf565b60008167ffffffffffffffff811115612cfe57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612d28576020820181803683370190505b5090505b841561217a57612d3d6001836139c7565b9150612d4a600a86613a60565b612d5590603061397c565b60f81b818381518110612d7857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612d9a600a86613994565b9450612d2c565b600081815b8451811015612e53576000858281518110612dd157634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311612e13576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612e40565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080612e4b81613a45565b915050612da6565b509392505050565b611271828260405180602001604052806000815250612f82565b60006001600160a01b0384163b15612f7757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612eb9903390899088908890600401613667565b602060405180830381600087803b158015612ed357600080fd5b505af1925050508015612f03575060408051601f3d908101601f19168201909252612f0091810190613517565b60015b612f5d573d808015612f31576040519150601f19603f3d011682016040523d82523d6000602084013e612f36565b606091505b508051612f555760405162461bcd60e51b8152600401610c47906136fb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061217a565b506001949350505050565b612f8c8383612fb5565b612f996000848484612e75565b61122f5760405162461bcd60e51b8152600401610c47906136fb565b6001600160a01b03821661300b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c47565b6000818152600260205260409020546001600160a01b0316156130705760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c47565b6001600160a01b038216600090815260036020526040812080546001929061309990849061397c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461310390613a0a565b90600052602060002090601f016020900481019282613125576000855561316b565b82601f1061313e57805160ff191683800117855561316b565b8280016001018555821561316b579182015b8281111561316b578251825591602001919060010190613150565b5061317792915061317b565b5090565b5b80821115613177576000815560010161317c565b600067ffffffffffffffff808411156131ab576131ab613aa0565b604051601f8501601f19908116603f011681019082821181831017156131d3576131d3613aa0565b816040528093508581528686860111156131ec57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461321d57600080fd5b919050565b600082601f830112613232578081fd5b6040516060810181811067ffffffffffffffff8211171561325557613255613aa0565b604052808360608101861015613269578384fd5b835b600381101561328a57813583526020928301929091019060010161326b565b509195945050505050565b8035801515811461321d57600080fd5b6000602082840312156132b6578081fd5b61226d82613206565b600080604083850312156132d1578081fd5b6132da83613206565b91506132e860208401613206565b90509250929050565b600080600060608486031215613305578081fd5b61330e84613206565b925061331c60208501613206565b9150604084013590509250925092565b60008060008060808587031215613341578081fd5b61334a85613206565b935061335860208601613206565b925060408501359150606085013567ffffffffffffffff81111561337a578182fd5b8501601f8101871361338a578182fd5b61339987823560208401613190565b91505092959194509250565b60008060008060a085870312156133ba578384fd5b6133c385613206565b93506133d28660208701613222565b9250608085013567ffffffffffffffff808211156133ee578384fd5b818701915087601f830112613401578384fd5b81358181111561340f578485fd5b8860208260051b8501011115613423578485fd5b95989497505060200194505050565b60008060408385031215613444578182fd5b61344d83613206565b91506132e860208401613295565b6000806040838503121561346d578182fd5b61347683613206565b946020939093013593505050565b600060608284031215613495578081fd5b61226d8383613222565b600080608083850312156134b1578182fd5b6134bb8484613222565b91506132e860608401613206565b6000602082840312156134da578081fd5b61226d82613295565b6000602082840312156134f4578081fd5b5035919050565b60006020828403121561350c578081fd5b813561226d81613ab6565b600060208284031215613528578081fd5b815161226d81613ab6565b600060208284031215613544578081fd5b813567ffffffffffffffff81111561355a578182fd5b8201601f8101841361356a578182fd5b61217a84823560208401613190565b600081518084526135918160208601602086016139de565b601f01601f19169290920160200192915050565b6000845160206135b88285838a016139de565b8551918401916135cb8184848a016139de565b85549201918390600181811c90808316806135e757607f831692505b85831081141561360557634e487b7160e01b88526022600452602488fd5b808015613619576001811461362a57613656565b60ff19851688528388019550613656565b60008b815260209020895b8581101561364e5781548a820152908401908801613635565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061369a90830184613579565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156136dc578351835292840192918401916001016136c0565b50909695505050505050565b60208152600061226d6020830184613579565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526022908201527f4d696e7420636f756e74206d7573742062652067726561746572207468616e20604082015261181760f11b606082015260800190565b6020808252601e908201527f496e76616c6964206d696e7420616d6f756e742e20546f6f20686967682e0000604082015260600190565b60208082526019908201527f4e6f7420656e6f7567682048616d70746f6e73206c6566742e00000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526018908201527f4e6f7420656e6f756768204e6577746f6e73206c6566742e0000000000000000604082015260600190565b6020808252601390820152722a34329039b0b6329034b9903830bab9b2b21760691b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601e908201527f4d617820737570706c79202b20726573657276652065786365656465642e0000604082015260600190565b60208082526014908201527326b0bc1039bab838363c9032bc31b2b2b232b21760611b604082015260600190565b6020808252601690820152752737ba1032b737bab3b4102230bb34b9903632b33a1760511b604082015260600190565b6000821982111561398f5761398f613a74565b500190565b6000826139a3576139a3613a8a565b500490565b60008160001904831182151516156139c2576139c2613a74565b500290565b6000828210156139d9576139d9613a74565b500390565b60005b838110156139f95781810151838201526020016139e1565b83811115611e915750506000910152565b600181811c90821680613a1e57607f821691505b60208210811415613a3f57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613a5957613a59613a74565b5060010190565b600082613a6f57613a6f613a8a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611bf057600080fdfea2646970667358221220539bd1b4ad53e654cadb84d070f5478cabf9f2c0d9fe74489fa4da91e5571c9a64736f6c63430008040033000000000000000000000000000000000000000000000000000000000000006002b6fba50521a07f58a5756c529142445457eb0754bc763474ba37a1643f2a398c7dd9a7c64d3ee20375e00304fc82bb03ca4bc534c98199093b20356abc97530000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d61765336323674566a534e6775344b6b6571645578324d6b35776765767767775471567a4b5578345a4262722f00000000000000000000

Deployed Bytecode

0x6080604052600436106103ce5760003560e01c80637ec4a659116101fd578063c54e73e311610118578063e17e1f26116100ab578063f9765bc11161007a578063f9765bc114610b05578063faf5234d14610b32578063fbf2e42314610b48578063fd2e908d14610b68578063fdea8e0b14610b8857600080fd5b8063e17e1f2614610a67578063e985e9c514610a87578063f2fde38b14610ad0578063f7726fdd14610af057600080fd5b8063d5abeb01116100e7578063d5abeb01146109f3578063d79fa1d314610a09578063d7eb3f3a14610a1f578063e0a8085314610a4757600080fd5b8063c54e73e31461099d578063c87b56dd146109bd578063ce135b0a1461091f578063d53b0abb146109dd57600080fd5b8063a22cb46511610190578063b383ba581161015f578063b383ba581461091f578063b88d4fde14610935578063bc25949e14610955578063c2b733981461097d57600080fd5b8063a22cb465146108a4578063ac0841b9146108c4578063b071401b146108d7578063b27f4487146108f757600080fd5b806386e476dd116101cc57806386e476dd146108335780638da5cb5b1461085b57806394354fd01461087957806395d89b411461088f57600080fd5b80637ec4a659146107d457806380773f0c146107f457806382a55e1014610809578063853828b61461081e57600080fd5b80632fdafd86116102ed5780635c975abb1161028057806368e00d771161024f57806368e00d771461075f5780636ce7ad121461077f57806370a082311461079f578063715018a6146107bf57600080fd5b80635c975abb146106fa57806360c77d7a1461071457806362b99ad41461072a5780636352211e1461073f57600080fd5b8063438b6300116102bc578063438b63001461067957806344a0d68a146106a657806351830227146106c65780635503a0e8146106e557600080fd5b80632fdafd861461060657806338050f551461061c5780633ad10ef61461063157806342842e0e1461065957600080fd5b806316317c211161036557806320c09e241161033457806320c09e241461057b57806321e7345e146105a357806323b872dd146105b9578063299ab02a146105d957600080fd5b806316317c211461051057806316ba10e01461052657806316c38b3c1461054657806318160ddd1461056657600080fd5b8063095ea7b3116103a1578063095ea7b31461047757806309f885881461049757806312e228fd146104d257806313faede6146104fa57600080fd5b806301ffc9a7146103d357806302cce9221461040857806306fdde031461041d578063081812fc1461043f575b600080fd5b3480156103df57600080fd5b506103f36103ee3660046134fb565b610ba8565b60405190151581526020015b60405180910390f35b61041b6104163660046133a5565b610bfa565b005b34801561042957600080fd5b50610432610ff7565b6040516103ff91906136e8565b34801561044b57600080fd5b5061045f61045a3660046134e3565b611089565b6040516001600160a01b0390911681526020016103ff565b34801561048357600080fd5b5061041b61049236600461345b565b61111e565b3480156104a357600080fd5b506104c46104b23660046132a5565b60186020526000908152604090205481565b6040519081526020016103ff565b3480156104de57600080fd5b5061045f73bae0f07de520ebdf520c35364de4c15ebe72d66281565b34801561050657600080fd5b506104c4600c5481565b34801561051c57600080fd5b506104c460105481565b34801561053257600080fd5b5061041b610541366004613533565b611234565b34801561055257600080fd5b5061041b6105613660046134c9565b611275565b34801561057257600080fd5b506104c46112b2565b34801561058757600080fd5b5061045f739d9df0c57f5d4c54492f1486e0c4af5d006a696781565b3480156105af57600080fd5b506104c460115481565b3480156105c557600080fd5b5061041b6105d43660046132f1565b6112c2565b3480156105e557600080fd5b506104c46105f43660046134e3565b60196020526000908152604090205481565b34801561061257600080fd5b506104c460125481565b34801561062857600080fd5b506104c46112f3565b34801561063d57600080fd5b5061045f739c0ac9d88de0c9af72cb7d5cc4929289110e5be981565b34801561066557600080fd5b5061041b6106743660046132f1565b6112fe565b34801561068557600080fd5b506106996106943660046132a5565b611319565b6040516103ff91906136a4565b3480156106b257600080fd5b5061041b6106c13660046134e3565b611416565b3480156106d257600080fd5b50600b546103f390610100900460ff1681565b3480156106f157600080fd5b50610432611445565b34801561070657600080fd5b50600b546103f39060ff1681565b34801561072057600080fd5b506104c460135481565b34801561073657600080fd5b506104326114d3565b34801561074b57600080fd5b5061045f61075a3660046134e3565b6114e0565b34801561076b57600080fd5b5061041b61077a366004613533565b611557565b34801561078b57600080fd5b5061041b61079a3660046133a5565b611594565b3480156107ab57600080fd5b506104c46107ba3660046132a5565b611965565b3480156107cb57600080fd5b5061041b6119ec565b3480156107e057600080fd5b5061041b6107ef366004613533565b611a22565b34801561080057600080fd5b506104c4611a5f565b34801561081557600080fd5b50610432611a6a565b34801561082a57600080fd5b5061041b611a77565b34801561083f57600080fd5b5061045f73b686c06a9667e48e1acc4c88a7d9727b6ee2c47a81565b34801561086757600080fd5b506006546001600160a01b031661045f565b34801561088557600080fd5b506104c4600d5481565b34801561089b57600080fd5b50610432611bf3565b3480156108b057600080fd5b5061041b6108bf366004613432565b611c02565b61041b6108d2366004613484565b611c0d565b3480156108e357600080fd5b5061041b6108f23660046134e3565b611e97565b34801561090357600080fd5b5061045f730b2b5a6b723524bbd8e463246ea45fd401c0e07981565b34801561092b57600080fd5b506104c4610d0581565b34801561094157600080fd5b5061041b61095036600461332c565b611ec6565b34801561096157600080fd5b5061045f734a4fda747e0dfd438fe77b198028838076a4811881565b34801561098957600080fd5b5061041b6109983660046134e3565b611ef8565b3480156109a957600080fd5b5061041b6109b83660046134c9565b611f27565b3480156109c957600080fd5b506104326109d83660046134e3565b611f6d565b3480156109e957600080fd5b506104c4600f5481565b3480156109ff57600080fd5b506104c46122b881565b348015610a1557600080fd5b506104c4600e5481565b348015610a2b57600080fd5b5061045f73f81e259107b9c2d383c8753e395e30ae4866694181565b348015610a5357600080fd5b5061041b610a623660046134c9565b612274565b348015610a7357600080fd5b5061041b610a8236600461349f565b6122b8565b348015610a9357600080fd5b506103f3610aa23660046132bf565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610adc57600080fd5b5061041b610aeb3660046132a5565b612536565b348015610afc57600080fd5b506104c46125ce565b348015610b1157600080fd5b506104c4610b203660046132a5565b60176020526000908152604090205481565b348015610b3e57600080fd5b506104c46108ae81565b348015610b5457600080fd5b5061041b610b633660046134e3565b6125d9565b348015610b7457600080fd5b5061041b610b833660046134e3565b612608565b348015610b9457600080fd5b50600b546103f39062010000900460ff1681565b60006001600160e01b031982166380ac58cd60e01b1480610bd957506001600160e01b03198216635b5e139f60e01b145b80610bf457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60408301516020840151845185926000929091610c17919061397c565b610c21919061397c565b600b5490915060ff1615610c505760405162461bcd60e51b8152600401610c4790613869565b60405180910390fd5b60008111610c705760405162461bcd60e51b8152600401610c479061374d565b600d54811115610c925760405162461bcd60e51b8152600401610c479061378f565b6122b881610c9f60075490565b610ca9919061397c565b1115610cc75760405162461bcd60e51b8152600401610c479061391e565b601054601154610cd791906139c7565b610ce3906122b86139c7565b81610ced60075490565b610cf7919061397c565b1115610d155760405162461bcd60e51b8152600401610c47906138e7565b8151600854610d24919061397c565b610d051015610d455760405162461bcd60e51b8152600401610c4790613832565b6020820151600954610d57919061397c565b610d051015610d785760405162461bcd60e51b8152600401610c479061394c565b6040820151600a54610d8a919061397c565b6108ae1015610dab5760405162461bcd60e51b8152600401610c47906137c6565b600e546040516bffffffffffffffffffffffff19606089901b166020820152603481019190915260009060540160408051808303601f1901815291815281516020928301209088015191880151885191935060009291610e0b919061397c565b610e15919061397c565b600b5490915062010000900460ff16610e705760405162461bcd60e51b815260206004820152601d60248201527f4e6f2070726573616c65206d696e74696e672063757272656e746c792e0000006044820152606401610c47565b80600c54610e7e91906139a8565b341015610ec35760405162461bcd60e51b815260206004820152601360248201527224b739bab33334b1b4b2b73a10333ab732399760691b6044820152606401610c47565b600e546001600160a01b038916600090815260176020526040902054610eea90839061397c565b1115610f385760405162461bcd60e51b815260206004820152601e60248201527f45786365656473206d6178206d696e747320666f722070726573616c652e00006044820152606401610c47565b610f79868680806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506012549150859050612637565b610fb65760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b210383937b7b31760911b6044820152606401610c47565b610fc0888861264d565b6001600160a01b03881660009081526017602052604081208054839290610fe890849061397c565b90915550505050505050505050565b60606000805461100690613a0a565b80601f016020809104026020016040519081016040528092919081815260200182805461103290613a0a565b801561107f5780601f106110545761010080835404028352916020019161107f565b820191906000526020600020905b81548152906001019060200180831161106257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166111025760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c47565b506000908152600460205260409020546001600160a01b031690565b6000611129826114e0565b9050806001600160a01b0316836001600160a01b031614156111975760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610c47565b336001600160a01b03821614806111b357506111b38133610aa2565b6112255760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610c47565b61122f838361278f565b505050565b6006546001600160a01b0316331461125e5760405162461bcd60e51b8152600401610c47906137fd565b80516112719060159060208401906130f7565b5050565b6006546001600160a01b0316331461129f5760405162461bcd60e51b8152600401610c47906137fd565b600b805460ff1916911515919091179055565b60006112bd60075490565b905090565b6112cc33826127fd565b6112e85760405162461bcd60e51b8152600401610c4790613896565b61122f8383836128f0565b60006112bd60085490565b61122f83838360405180602001604052806000815250611ec6565b6060600061132683611965565b905060008167ffffffffffffffff81111561135157634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561137a578160200160208202803683370190505b509050600160005b838110801561139357506122b88211155b1561140c5760006113a3836114e0565b9050866001600160a01b0316816001600160a01b031614156113f957828483815181106113e057634e487b7160e01b600052603260045260246000fd5b6020908102919091010152816113f581613a45565b9250505b8261140381613a45565b93505050611382565b5090949350505050565b6006546001600160a01b031633146114405760405162461bcd60e51b8152600401610c47906137fd565b600c55565b6015805461145290613a0a565b80601f016020809104026020016040519081016040528092919081815260200182805461147e90613a0a565b80156114cb5780601f106114a0576101008083540402835291602001916114cb565b820191906000526020600020905b8154815290600101906020018083116114ae57829003601f168201915b505050505081565b6014805461145290613a0a565b6000818152600260205260408120546001600160a01b031680610bf45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610c47565b6006546001600160a01b031633146115815760405162461bcd60e51b8152600401610c47906137fd565b80516112719060169060208401906130f7565b604083015160208401518451859260009290916115b1919061397c565b6115bb919061397c565b600b5490915060ff16156115e15760405162461bcd60e51b8152600401610c4790613869565b600081116116015760405162461bcd60e51b8152600401610c479061374d565b600d548111156116235760405162461bcd60e51b8152600401610c479061378f565b6122b88161163060075490565b61163a919061397c565b11156116585760405162461bcd60e51b8152600401610c479061391e565b60105460115461166891906139c7565b611674906122b86139c7565b8161167e60075490565b611688919061397c565b11156116a65760405162461bcd60e51b8152600401610c47906138e7565b81516008546116b5919061397c565b610d0510156116d65760405162461bcd60e51b8152600401610c4790613832565b60208201516009546116e8919061397c565b610d0510156117095760405162461bcd60e51b8152600401610c479061394c565b6040820151600a5461171b919061397c565b6108ae101561173c5760405162461bcd60e51b8152600401610c47906137c6565b600f546040516bffffffffffffffffffffffff19606089901b166020820152603481019190915260009060540160408051808303601f190181529181528151602092830120908801519188015188519193506000929161179c919061397c565b6117a6919061397c565b600b5490915062010000900460ff166118015760405162461bcd60e51b815260206004820152601d60248201527f4e6f2070726573616c65206d696e74696e672063757272656e746c792e0000006044820152606401610c47565b806001146118405760405162461bcd60e51b815260206004820152600c60248201526b27b7363c901890333932b29760a11b6044820152606401610c47565b600f546001600160a01b03891660009081526018602052604090205461186790839061397c565b11156118b55760405162461bcd60e51b815260206004820152601e60248201527f45786365656473206d6178206d696e747320666f722070726573616c652e00006044820152606401610c47565b6118f6868680806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506013549150859050612637565b6119335760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b210383937b7b31760911b6044820152606401610c47565b61193d888861264d565b6001600160a01b03881660009081526018602052604081208054839290610fe890849061397c565b60006001600160a01b0382166119d05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610c47565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314611a165760405162461bcd60e51b8152600401610c47906137fd565b611a206000612a90565b565b6006546001600160a01b03163314611a4c5760405162461bcd60e51b8152600401610c47906137fd565b80516112719060149060208401906130f7565b60006112bd60095490565b6016805461145290613a0a565b6006546001600160a01b03163314611aa15760405162461bcd60e51b8152600401610c47906137fd565b4780611ae55760405162461bcd60e51b8152602060048201526013602482015272496e737566666963656e742062616c616e636560681b6044820152606401610c47565b611b19739c0ac9d88de0c9af72cb7d5cc4929289110e5be96064611b0a84600f6139a8565b611b149190613994565b612ae2565b611b3e739d9df0c57f5d4c54492f1486e0c4af5d006a69676064611b0a8460056139a8565b611b6373f81e259107b9c2d383c8753e395e30ae486669416064611b0a8460056139a8565b611b88734a4fda747e0dfd438fe77b198028838076a481186064611b0a8460056139a8565b611bad73bae0f07de520ebdf520c35364de4c15ebe72d6626064611b0a8460056139a8565b611bd2730b2b5a6b723524bbd8e463246ea45fd401c0e0796064611b0a84600f6139a8565b611bf073b686c06a9667e48e1acc4c88a7d9727b6ee2c47a47612ae2565b50565b60606001805461100690613a0a565b611271338383612b85565b60408101516020820151825183926000929091611c2a919061397c565b611c34919061397c565b600b5490915060ff1615611c5a5760405162461bcd60e51b8152600401610c4790613869565b60008111611c7a5760405162461bcd60e51b8152600401610c479061374d565b600d54811115611c9c5760405162461bcd60e51b8152600401610c479061378f565b6122b881611ca960075490565b611cb3919061397c565b1115611cd15760405162461bcd60e51b8152600401610c479061391e565b601054601154611ce191906139c7565b611ced906122b86139c7565b81611cf760075490565b611d01919061397c565b1115611d1f5760405162461bcd60e51b8152600401610c47906138e7565b8151600854611d2e919061397c565b610d051015611d4f5760405162461bcd60e51b8152600401610c4790613832565b6020820151600954611d61919061397c565b610d051015611d825760405162461bcd60e51b8152600401610c479061394c565b6040820151600a54611d94919061397c565b6108ae1015611db55760405162461bcd60e51b8152600401610c47906137c6565b60408301516020840151845160009291611dce9161397c565b611dd8919061397c565b600b5490915062010000900460ff1615611e345760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c792070726573616c65206d696e74696e672063757272656e746c792e006044820152606401610c47565b80600c54611e4291906139a8565b341015611e875760405162461bcd60e51b815260206004820152601360248201527224b739bab33334b1b4b2b73a10333ab732399760691b6044820152606401610c47565b611e91338561264d565b50505050565b6006546001600160a01b03163314611ec15760405162461bcd60e51b8152600401610c47906137fd565b600d55565b611ed033836127fd565b611eec5760405162461bcd60e51b8152600401610c4790613896565b611e9184848484612c54565b6006546001600160a01b03163314611f225760405162461bcd60e51b8152600401610c47906137fd565b601355565b6006546001600160a01b03163314611f515760405162461bcd60e51b8152600401610c47906137fd565b600b8054911515620100000262ff000019909216919091179055565b6000818152600260205260409020546060906001600160a01b0316611fed5760405162461bcd60e51b815260206004820152603060248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526f3732bc34b9ba32b73a103a37b5b2b71760811b6064820152608401610c47565b600b54610100900460ff1661218257606060006016805461200d90613a0a565b80601f016020809104026020016040519081016040528092919081815260200182805461203990613a0a565b80156120865780601f1061205b57610100808354040283529160200191612086565b820191906000526020600020905b81548152906001019060200180831161206957829003601f168201915b50505060008781526019602052604090205492935050506120c757604051806040016040528060068152602001653732bbba37b760d11b8152509150612126565b600084815260196020526040902054600114156121035760405180604001604052806005815260200164646176697360d81b8152509150612126565b604051806040016040528060078152602001663430b6b83a37b760c91b81525091505b600081511161215457604051806040016040528060078152602001661253959053125160ca1b81525061217a565b8082601560405160200161216a939291906135a5565b6040516020818303038152906040525b949350505050565b60006014805461219190613a0a565b80601f01602080910402602001604051908101604052809291908181526020018280546121bd90613a0a565b801561220a5780601f106121df5761010080835404028352916020019161220a565b820191906000526020600020905b8154815290600101906020018083116121ed57829003601f168201915b50505050509050600081511161223f57604051806040016040528060078152602001661253959053125160ca1b81525061226d565b8061224984612c87565b601560405160200161225d939291906135a5565b6040516020818303038152906040525b9392505050565b6006546001600160a01b0316331461229e5760405162461bcd60e51b8152600401610c47906137fd565b600b80549115156101000261ff0019909216919091179055565b604082015160208301518351849260009290916122d5919061397c565b6122df919061397c565b600b5490915060ff16156123055760405162461bcd60e51b8152600401610c4790613869565b600081116123255760405162461bcd60e51b8152600401610c479061374d565b600d548111156123475760405162461bcd60e51b8152600401610c479061378f565b6122b88161235460075490565b61235e919061397c565b111561237c5760405162461bcd60e51b8152600401610c479061391e565b60105460115461238c91906139c7565b612398906122b86139c7565b816123a260075490565b6123ac919061397c565b11156123ca5760405162461bcd60e51b8152600401610c47906138e7565b81516008546123d9919061397c565b610d0510156123fa5760405162461bcd60e51b8152600401610c4790613832565b602082015160095461240c919061397c565b610d05101561242d5760405162461bcd60e51b8152600401610c479061394c565b6040820151600a5461243f919061397c565b6108ae10156124605760405162461bcd60e51b8152600401610c47906137c6565b6006546001600160a01b0316331461248a5760405162461bcd60e51b8152600401610c47906137fd565b604084015160208501518551600092916124a39161397c565b6124ad919061397c565b9050601154816010546124c0919061397c565b111561250e5760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d6178206f66203838382072657365727665642e000000006044820152606401610c47565b612518848661264d565b806010600082825461252a919061397c565b90915550505050505050565b6006546001600160a01b031633146125605760405162461bcd60e51b8152600401610c47906137fd565b6001600160a01b0381166125c55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c47565b611bf081612a90565b60006112bd600a5490565b6006546001600160a01b031633146126035760405162461bcd60e51b8152600401610c47906137fd565b601255565b6006546001600160a01b031633146126325760405162461bcd60e51b8152600401610c47906137fd565b600e55565b6000826126448584612da1565b14949350505050565b60005b81518110156126b957612667600780546001019055565b612675600880546001019055565b60006019600061268460075490565b81526020810191909152604001600020556126a7836126a260075490565b612e5b565b806126b181613a45565b915050612650565b5060005b6020820151811015612724576126d7600780546001019055565b6126e5600980546001019055565b6001601960006126f460075490565b8152602081019190915260400160002055612712836126a260075490565b8061271c81613a45565b9150506126bd565b5060005b604082015181101561122f57612742600780546001019055565b612750600a80546001019055565b60026019600061275f60075490565b815260208101919091526040016000205561277d836126a260075490565b8061278781613a45565b915050612728565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906127c4826114e0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166128765760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c47565b6000612881836114e0565b9050806001600160a01b0316846001600160a01b031614806128bc5750836001600160a01b03166128b184611089565b6001600160a01b0316145b8061217a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff1661217a565b826001600160a01b0316612903826114e0565b6001600160a01b03161461296b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610c47565b6001600160a01b0382166129cd5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610c47565b6129d860008261278f565b6001600160a01b0383166000908152600360205260408120805460019290612a019084906139c7565b90915550506001600160a01b0382166000908152600360205260408120805460019290612a2f90849061397c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612b2f576040519150601f19603f3d011682016040523d82523d6000602084013e612b34565b606091505b505090508061122f5760405162461bcd60e51b815260206004820152601960248201527f4661696c656420746f20776964746864726177204574686572000000000000006044820152606401610c47565b816001600160a01b0316836001600160a01b03161415612be75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c47565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612c5f8484846128f0565b612c6b84848484612e75565b611e915760405162461bcd60e51b8152600401610c47906136fb565b606081612cab5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612cd55780612cbf81613a45565b9150612cce9050600a83613994565b9150612caf565b60008167ffffffffffffffff811115612cfe57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612d28576020820181803683370190505b5090505b841561217a57612d3d6001836139c7565b9150612d4a600a86613a60565b612d5590603061397c565b60f81b818381518110612d7857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612d9a600a86613994565b9450612d2c565b600081815b8451811015612e53576000858281518110612dd157634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311612e13576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612e40565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080612e4b81613a45565b915050612da6565b509392505050565b611271828260405180602001604052806000815250612f82565b60006001600160a01b0384163b15612f7757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612eb9903390899088908890600401613667565b602060405180830381600087803b158015612ed357600080fd5b505af1925050508015612f03575060408051601f3d908101601f19168201909252612f0091810190613517565b60015b612f5d573d808015612f31576040519150601f19603f3d011682016040523d82523d6000602084013e612f36565b606091505b508051612f555760405162461bcd60e51b8152600401610c47906136fb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061217a565b506001949350505050565b612f8c8383612fb5565b612f996000848484612e75565b61122f5760405162461bcd60e51b8152600401610c47906136fb565b6001600160a01b03821661300b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c47565b6000818152600260205260409020546001600160a01b0316156130705760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c47565b6001600160a01b038216600090815260036020526040812080546001929061309990849061397c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461310390613a0a565b90600052602060002090601f016020900481019282613125576000855561316b565b82601f1061313e57805160ff191683800117855561316b565b8280016001018555821561316b579182015b8281111561316b578251825591602001919060010190613150565b5061317792915061317b565b5090565b5b80821115613177576000815560010161317c565b600067ffffffffffffffff808411156131ab576131ab613aa0565b604051601f8501601f19908116603f011681019082821181831017156131d3576131d3613aa0565b816040528093508581528686860111156131ec57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461321d57600080fd5b919050565b600082601f830112613232578081fd5b6040516060810181811067ffffffffffffffff8211171561325557613255613aa0565b604052808360608101861015613269578384fd5b835b600381101561328a57813583526020928301929091019060010161326b565b509195945050505050565b8035801515811461321d57600080fd5b6000602082840312156132b6578081fd5b61226d82613206565b600080604083850312156132d1578081fd5b6132da83613206565b91506132e860208401613206565b90509250929050565b600080600060608486031215613305578081fd5b61330e84613206565b925061331c60208501613206565b9150604084013590509250925092565b60008060008060808587031215613341578081fd5b61334a85613206565b935061335860208601613206565b925060408501359150606085013567ffffffffffffffff81111561337a578182fd5b8501601f8101871361338a578182fd5b61339987823560208401613190565b91505092959194509250565b60008060008060a085870312156133ba578384fd5b6133c385613206565b93506133d28660208701613222565b9250608085013567ffffffffffffffff808211156133ee578384fd5b818701915087601f830112613401578384fd5b81358181111561340f578485fd5b8860208260051b8501011115613423578485fd5b95989497505060200194505050565b60008060408385031215613444578182fd5b61344d83613206565b91506132e860208401613295565b6000806040838503121561346d578182fd5b61347683613206565b946020939093013593505050565b600060608284031215613495578081fd5b61226d8383613222565b600080608083850312156134b1578182fd5b6134bb8484613222565b91506132e860608401613206565b6000602082840312156134da578081fd5b61226d82613295565b6000602082840312156134f4578081fd5b5035919050565b60006020828403121561350c578081fd5b813561226d81613ab6565b600060208284031215613528578081fd5b815161226d81613ab6565b600060208284031215613544578081fd5b813567ffffffffffffffff81111561355a578182fd5b8201601f8101841361356a578182fd5b61217a84823560208401613190565b600081518084526135918160208601602086016139de565b601f01601f19169290920160200192915050565b6000845160206135b88285838a016139de565b8551918401916135cb8184848a016139de565b85549201918390600181811c90808316806135e757607f831692505b85831081141561360557634e487b7160e01b88526022600452602488fd5b808015613619576001811461362a57613656565b60ff19851688528388019550613656565b60008b815260209020895b8581101561364e5781548a820152908401908801613635565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061369a90830184613579565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156136dc578351835292840192918401916001016136c0565b50909695505050505050565b60208152600061226d6020830184613579565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526022908201527f4d696e7420636f756e74206d7573742062652067726561746572207468616e20604082015261181760f11b606082015260800190565b6020808252601e908201527f496e76616c6964206d696e7420616d6f756e742e20546f6f20686967682e0000604082015260600190565b60208082526019908201527f4e6f7420656e6f7567682048616d70746f6e73206c6566742e00000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526018908201527f4e6f7420656e6f756768204e6577746f6e73206c6566742e0000000000000000604082015260600190565b6020808252601390820152722a34329039b0b6329034b9903830bab9b2b21760691b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601e908201527f4d617820737570706c79202b20726573657276652065786365656465642e0000604082015260600190565b60208082526014908201527326b0bc1039bab838363c9032bc31b2b2b232b21760611b604082015260600190565b6020808252601690820152752737ba1032b737bab3b4102230bb34b9903632b33a1760511b604082015260600190565b6000821982111561398f5761398f613a74565b500190565b6000826139a3576139a3613a8a565b500490565b60008160001904831182151516156139c2576139c2613a74565b500290565b6000828210156139d9576139d9613a74565b500390565b60005b838110156139f95781810151838201526020016139e1565b83811115611e915750506000910152565b600181811c90821680613a1e57607f821691505b60208210811415613a3f57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613a5957613a59613a74565b5060010190565b600082613a6f57613a6f613a8a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611bf057600080fdfea2646970667358221220539bd1b4ad53e654cadb84d070f5478cabf9f2c0d9fe74489fa4da91e5571c9a64736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000006002b6fba50521a07f58a5756c529142445457eb0754bc763474ba37a1643f2a398c7dd9a7c64d3ee20375e00304fc82bb03ca4bc534c98199093b20356abc97530000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d61765336323674566a534e6775344b6b6571645578324d6b35776765767767775471567a4b5578345a4262722f00000000000000000000

-----Decoded View---------------
Arg [0] : _uriHidden (string): ipfs://QmavS626tVjSNgu4KkeqdUx2Mk5wgevwgwTqVzKUx4ZBbr/
Arg [1] : _presaleMerkle (bytes32): 0x02b6fba50521a07f58a5756c529142445457eb0754bc763474ba37a1643f2a39
Arg [2] : _freesaleMerkle (bytes32): 0x8c7dd9a7c64d3ee20375e00304fc82bb03ca4bc534c98199093b20356abc9753

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 02b6fba50521a07f58a5756c529142445457eb0754bc763474ba37a1643f2a39
Arg [2] : 8c7dd9a7c64d3ee20375e00304fc82bb03ca4bc534c98199093b20356abc9753
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [4] : 697066733a2f2f516d61765336323674566a534e6775344b6b6571645578324d
Arg [5] : 6b35776765767767775471567a4b5578345a4262722f00000000000000000000


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.