ETH Price: $3,176.14 (-8.21%)
Gas: 3 Gwei

Token

DystoAzuki (DYSZUKI)
 

Overview

Max Total Supply

435 DYSZUKI

Holders

92

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
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:
DystoAzuki

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : DystoAzuki.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./MerkleProof.sol";

/*
  ____            _             _               _    _ 
 |  _ \ _   _ ___| |_ ___      / \    _____   _| | _(_)
 | | | | | | / __| __/ _ \    / _ \  |_  / | | | |/ / |
 | |_| | |_| \__ \ || (_) |  / ___ \  / /| |_| |   <| |
 |____/ \__, |___/\__\___/  /_/   \_\/___|\__,_|_|\_\_|
        |___/
*/

error NotEnoughFunds();
error ExceedsSupply();
error ExceedsTransactionLimit();
error InvalidClaim();
error MintNotStarted();
error WhitelistFinished();
error EmptyBalance();
error WithdrawFailed();

contract DystoAzuki is ERC721A, Ownable {
	using Strings for uint256;

	bytes32 public WHITELIST_MERKLE_ROOT;

	address[5] private contributorAddresses;
	mapping(address => uint256) private contributorShares;

	uint256 public freeMints;
	uint256 public constant TOTAL_MAX_SUPPLY = 3300;
	uint256 public constant FREE_MINTS = 300;
	uint256 public constant MAX_PER_TX_WL = 5;
	uint256 public constant MAX_PER_TX_PUBLIC = 15;
	uint256 public constant PRICE_PER_MINT = 0.019 ether;

	bool public mintStarted;
	uint256 public publicMintStartTime;

	bool public revealed;
	string public baseURI="ipfs://QmTCAWhQaKau4d8NuLhN4aaSfRbr7kGhbJhdhbmRb9EYLr";

	constructor(address[5] memory _contributorAddresses) ERC721A("DystoAzuki", "DYSZUKI") {

		contributorAddresses[0] = _contributorAddresses[0];
		contributorAddresses[1] = _contributorAddresses[1];
		contributorAddresses[2] = _contributorAddresses[2];
		contributorAddresses[3] = _contributorAddresses[3];
		contributorAddresses[4] = _contributorAddresses[4];
		
		contributorShares[contributorAddresses[0]] = 3000;
		contributorShares[contributorAddresses[1]] = 2500;
		contributorShares[contributorAddresses[2]] = 2500;
		contributorShares[contributorAddresses[3]] = 1250;
		contributorShares[contributorAddresses[4]] = 750;
	}

	function startMint() external onlyOwner {
		mintStarted = true;
		publicMintStartTime = block.timestamp + 900;
	}

	function stopMint() external onlyOwner {
		mintStarted = false;
	}

	function startPublicMint() external onlyOwner {
		publicMintStartTime = block.timestamp;
	}

	function withdraw() external {
		if (address(this).balance == 0) revert EmptyBalance();
		uint256 balance = address(this).balance;
		for (uint256 i=0; i< contributorAddresses.length; i++) {
			(bool sent, ) = contributorAddresses[i].call{value: balance * contributorShares[contributorAddresses[i]] /10000}("");
			if(!sent) revert WithdrawFailed();
		}
	}

	function setWhitelistRoot(bytes32 _root) external onlyOwner {
		WHITELIST_MERKLE_ROOT = _root;
	}

	function setBaseURI(string calldata _newBaseURI) external onlyOwner {
		baseURI = _newBaseURI;
		revealed = true;
	}

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

	function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
		  if(!revealed) {
			return baseURI;
		  }
        return string(abi.encodePacked(baseURI, tokenId.toString()));
    }

	function _startTokenId() internal view override returns (uint256) {
		return 1;
	}

	function airdrop(address _to, uint256 _quantity) external onlyOwner {
		if(totalSupply() + _quantity > TOTAL_MAX_SUPPLY) revert ExceedsSupply();
		_safeMint(_to, _quantity);
	}

	function whitelistMint(uint256 _quantity, bytes32[] calldata _proof) external payable {
		if(!mintStarted) revert MintNotStarted();
		if(block.timestamp > publicMintStartTime) revert WhitelistFinished();
		bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
		(bool success, ) = MerkleProof.verify(_proof, WHITELIST_MERKLE_ROOT, leaf);
		if(!success) revert InvalidClaim();
		
		if(totalSupply() + _quantity > TOTAL_MAX_SUPPLY) revert ExceedsSupply();
		if(_quantity > MAX_PER_TX_WL) revert ExceedsTransactionLimit();

		if (freeMints < FREE_MINTS) {
			_safeMint(msg.sender, _quantity);
			unchecked {
				freeMints += _quantity;
			}
		} else {
			if (msg.value < PRICE_PER_MINT * _quantity) revert NotEnoughFunds();
			_safeMint(msg.sender, _quantity);
		}

	}

	function mint(uint256 _quantity) external payable {
		if(!mintStarted) revert MintNotStarted();
		if(block.timestamp < publicMintStartTime) revert MintNotStarted();
		if(totalSupply() + _quantity > TOTAL_MAX_SUPPLY) revert ExceedsSupply();
		if(_quantity > MAX_PER_TX_PUBLIC) revert ExceedsTransactionLimit();

		if (freeMints < FREE_MINTS) {
			_safeMint(msg.sender, _quantity);
			unchecked {
				freeMints += _quantity;
			}
		} else {
			if (msg.value < PRICE_PER_MINT * _quantity) revert NotEnoughFunds();
			_safeMint(msg.sender, _quantity);
		}
	}

	receive() payable external {}
}

File 2 of 12 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 12 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// Modified from https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.0/contracts/utils/cryptography/MerkleProof.sol

pragma solidity ^0.8.4;

/**
 * @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, uint256) {
        bytes32 computedHash = leaf;
        uint256 index = 0;

        for (uint256 i = 0; i < proof.length; i++) {
            index *= 2;
            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));
                index += 1;
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return (computedHash == root, index);
    }
}

File 5 of 12 : 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 6 of 12 : 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 7 of 12 : 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 8 of 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 12 : 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 10 of 12 : 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 11 of 12 : 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 12 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address[5]","name":"_contributorAddresses","type":"address[5]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"EmptyBalance","type":"error"},{"inputs":[],"name":"ExceedsSupply","type":"error"},{"inputs":[],"name":"ExceedsTransactionLimit","type":"error"},{"inputs":[],"name":"InvalidClaim","type":"error"},{"inputs":[],"name":"MintNotStarted","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NotEnoughFunds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"WhitelistFinished","type":"error"},{"inputs":[],"name":"WithdrawFailed","type":"error"},{"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":[],"name":"FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX_WL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_MERKLE_ROOT","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setWhitelistRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopMint","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":"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":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405260405180606001604052806035815260200162004920603591396014908051906020019062000035929190620008f3565b503480156200004357600080fd5b506040516200495538038062004955833981810160405281019062000069919062000a50565b6040518060400160405280600a81526020017f447973746f417a756b69000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f4459535a554b49000000000000000000000000000000000000000000000000008152508160029080519060200190620000ed929190620008f3565b50806003908051906020019062000106929190620008f3565b50620001176200081c60201b60201c565b60008190555050506200013f620001336200082560201b60201c565b6200082d60201b60201c565b806000600581106200017a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151600a600060058110620001bb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060016005811062000235577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151600a60016005811062000276577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600260058110620002f0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151600a60026005811062000331577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600360058110620003ab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151600a600360058110620003ec577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060046005811062000466577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151600a600460058110620004a7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610bb8600f6000600a60006005811062000529577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506109c4600f6000600a600160058110620005cc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506109c4600f6000600a6002600581106200066f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506104e2600f6000600a60036005811062000712577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506102ee600f6000600a600460058110620007b5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505062000bf7565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620009019062000b02565b90600052602060002090601f01602090048101928262000925576000855562000971565b82601f106200094057805160ff191683800117855562000971565b8280016001018555821562000971579182015b828111156200097057825182559160200191906001019062000953565b5b50905062000980919062000984565b5090565b5b808211156200099f57600081600090555060010162000985565b5090565b6000620009ba620009b48462000aa5565b62000a7c565b90508082856020860282011115620009d157600080fd5b60005b8581101562000a055781620009ea888262000a0f565b845260208401935060208301925050600181019050620009d4565b5050509392505050565b60008151905062000a208162000bdd565b92915050565b600082601f83011262000a3857600080fd5b600562000a47848285620009a3565b91505092915050565b600060a0828403121562000a6357600080fd5b600062000a738482850162000a26565b91505092915050565b600062000a8862000a9b565b905062000a96828262000b38565b919050565b6000604051905090565b600067ffffffffffffffff82111562000ac35762000ac262000b9d565b5b602082029050919050565b600062000adb8262000ae2565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000600282049050600182168062000b1b57607f821691505b6020821081141562000b325762000b3162000b6e565b5b50919050565b62000b438262000bcc565b810181811067ffffffffffffffff8211171562000b655762000b6462000b9d565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b62000be88162000ace565b811462000bf457600080fd5b50565b613d198062000c076000396000f3fe60806040526004361061021e5760003560e01c8063764267b611610123578063a664eb90116100ab578063d3cf00a31161006f578063d3cf00a314610768578063d558296514610793578063e985e9c5146107aa578063f2fde38b146107e7578063f5aa406d1461081057610225565b8063a664eb9014610690578063a9722cf3146106bb578063b88d4fde146106e6578063c87b56dd1461070f578063d2cab0561461074c57610225565b80638ba4cc3c116100f25780638ba4cc3c146105cc5780638da5cb5b146105f557806395d89b4114610620578063a0712d681461064b578063a22cb4651461066757610225565b8063764267b61461053457806376c64c621461055f57806380b173351461057657806386b8703b146105a157610225565b80633ccfd60b116101a65780636352211e116101755780636352211e1461044d57806365b1de201461048a5780636c0360eb146104b557806370a08231146104e0578063715018a61461051d57610225565b80633ccfd60b146103b957806342842e0e146103d057806351830227146103f957806355f804b31461042457610225565b806310cf8e6a116101ed57806310cf8e6a146102f857806317ca13231461032357806318160ddd1461034e57806323b872dd146103795780632be09561146103a257610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf57610225565b3661022557005b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906132db565b610839565b60405161025e91906136cf565b60405180910390f35b34801561027357600080fd5b5061027c61091b565b6040516102899190613705565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613372565b6109ad565b6040516102c69190613668565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613276565b610a29565b005b34801561030457600080fd5b5061030d610b34565b60405161031a9190613767565b60405180910390f35b34801561032f57600080fd5b50610338610b39565b6040516103459190613767565b60405180910390f35b34801561035a57600080fd5b50610363610b3e565b6040516103709190613767565b60405180910390f35b34801561038557600080fd5b506103a0600480360381019061039b9190613170565b610b55565b005b3480156103ae57600080fd5b506103b7610b65565b005b3480156103c557600080fd5b506103ce610c12565b005b3480156103dc57600080fd5b506103f760048036038101906103f29190613170565b610e26565b005b34801561040557600080fd5b5061040e610e46565b60405161041b91906136cf565b60405180910390f35b34801561043057600080fd5b5061044b6004803603810190610446919061332d565b610e59565b005b34801561045957600080fd5b50610474600480360381019061046f9190613372565b610f06565b6040516104819190613668565b60405180910390f35b34801561049657600080fd5b5061049f610f1c565b6040516104ac9190613767565b60405180910390f35b3480156104c157600080fd5b506104ca610f22565b6040516104d79190613705565b60405180910390f35b3480156104ec57600080fd5b506105076004803603810190610502919061310b565b610fb0565b6040516105149190613767565b60405180910390f35b34801561052957600080fd5b50610532611080565b005b34801561054057600080fd5b50610549611108565b6040516105569190613767565b60405180910390f35b34801561056b57600080fd5b5061057461110e565b005b34801561058257600080fd5b5061058b611193565b6040516105989190613767565b60405180910390f35b3480156105ad57600080fd5b506105b6611199565b6040516105c39190613767565b60405180910390f35b3480156105d857600080fd5b506105f360048036038101906105ee9190613276565b6111a4565b005b34801561060157600080fd5b5061060a61127c565b6040516106179190613668565b60405180910390f35b34801561062c57600080fd5b506106356112a6565b6040516106429190613705565b60405180910390f35b61066560048036038101906106609190613372565b611338565b005b34801561067357600080fd5b5061068e6004803603810190610689919061323a565b6114c8565b005b34801561069c57600080fd5b506106a5611640565b6040516106b291906136ea565b60405180910390f35b3480156106c757600080fd5b506106d0611646565b6040516106dd91906136cf565b60405180910390f35b3480156106f257600080fd5b5061070d600480360381019061070891906131bf565b611659565b005b34801561071b57600080fd5b5061073660048036038101906107319190613372565b6116d5565b6040516107439190613705565b60405180910390f35b6107666004803603810190610761919061339b565b6117ef565b005b34801561077457600080fd5b5061077d611a38565b60405161078a9190613767565b60405180910390f35b34801561079f57600080fd5b506107a8611a3e565b005b3480156107b657600080fd5b506107d160048036038101906107cc9190613134565b611ad7565b6040516107de91906136cf565b60405180910390f35b3480156107f357600080fd5b5061080e6004803603810190610809919061310b565b611b6b565b005b34801561081c57600080fd5b50610837600480360381019061083291906132b2565b611c63565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610914575061091382611ce9565b5b9050919050565b60606002805461092a90613a10565b80601f016020809104026020016040519081016040528092919081815260200182805461095690613a10565b80156109a35780601f10610978576101008083540402835291602001916109a3565b820191906000526020600020905b81548152906001019060200180831161098657829003601f168201915b5050505050905090565b60006109b882611d53565b6109ee576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3482610f06565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a9c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610abb611da1565b73ffffffffffffffffffffffffffffffffffffffff1614158015610aed5750610aeb81610ae6611da1565b611ad7565b155b15610b24576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b2f838383611da9565b505050565b600581565b600f81565b6000610b48611e5b565b6001546000540303905090565b610b60838383611e64565b505050565b610b6d611da1565b73ffffffffffffffffffffffffffffffffffffffff16610b8b61127c565b73ffffffffffffffffffffffffffffffffffffffff1614610be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd890613747565b60405180910390fd5b6001601160006101000a81548160ff02191690831515021790555061038442610c0a919061383b565b601281905550565b6000471415610c4d576040517f2313b4b600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600047905060005b6005811015610e22576000600a8260058110610c9a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612710600f6000600a8660058110610d13577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205485610d7b91906138c2565b610d859190613891565b604051610d9190613653565b60006040518083038185875af1925050503d8060008114610dce576040519150601f19603f3d011682016040523d82523d6000602084013e610dd3565b606091505b5050905080610e0e576040517f750b219c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b508080610e1a90613a73565b915050610c55565b5050565b610e4183838360405180602001604052806000815250611659565b505050565b601360009054906101000a900460ff1681565b610e61611da1565b73ffffffffffffffffffffffffffffffffffffffff16610e7f61127c565b73ffffffffffffffffffffffffffffffffffffffff1614610ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecc90613747565b60405180910390fd5b818160149190610ee6929190612eab565b506001601360006101000a81548160ff0219169083151502179055505050565b6000610f118261231a565b600001519050919050565b610ce481565b60148054610f2f90613a10565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5b90613a10565b8015610fa85780601f10610f7d57610100808354040283529160200191610fa8565b820191906000526020600020905b815481529060010190602001808311610f8b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611018576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611088611da1565b73ffffffffffffffffffffffffffffffffffffffff166110a661127c565b73ffffffffffffffffffffffffffffffffffffffff16146110fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f390613747565b60405180910390fd5b61110660006125a9565b565b61012c81565b611116611da1565b73ffffffffffffffffffffffffffffffffffffffff1661113461127c565b73ffffffffffffffffffffffffffffffffffffffff161461118a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118190613747565b60405180910390fd5b42601281905550565b60105481565b664380663abb800081565b6111ac611da1565b73ffffffffffffffffffffffffffffffffffffffff166111ca61127c565b73ffffffffffffffffffffffffffffffffffffffff1614611220576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121790613747565b60405180910390fd5b610ce48161122c610b3e565b611236919061383b565b111561126e576040517f2d573a5500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611278828261266f565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546112b590613a10565b80601f01602080910402602001604051908101604052809291908181526020018280546112e190613a10565b801561132e5780601f106113035761010080835404028352916020019161132e565b820191906000526020600020905b81548152906001019060200180831161131157829003601f168201915b5050505050905090565b601160009054906101000a900460ff1661137e576040517f06290e4e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6012544210156113ba576040517f06290e4e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ce4816113c6610b3e565b6113d0919061383b565b1115611408576040517f2d573a5500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600f811115611443576040517fe0f1169300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61012c601054101561146e57611459338261266f565b806010600082825401925050819055506114c5565b80664380663abb800061148191906138c2565b3410156114ba576040517f81b5ad6800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114c4338261266f565b5b50565b6114d0611da1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611535576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611542611da1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115ef611da1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161163491906136cf565b60405180910390a35050565b60095481565b601160009054906101000a900460ff1681565b611664848484611e64565b6116838373ffffffffffffffffffffffffffffffffffffffff1661268d565b80156116985750611696848484846126b0565b155b156116cf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606116e082611d53565b611716576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601360009054906101000a900460ff166117bc576014805461173790613a10565b80601f016020809104026020016040519081016040528092919081815260200182805461176390613a10565b80156117b05780601f10611785576101008083540402835291602001916117b0565b820191906000526020600020905b81548152906001019060200180831161179357829003601f168201915b505050505090506117ea565b60146117c783612810565b6040516020016117d892919061362f565b60405160208183030381529060405290505b919050565b601160009054906101000a900460ff16611835576040517f06290e4e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601254421115611871576040517f23ed4a7400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60003360405160200161188491906135e8565b60405160208183030381529060405280519060200120905060006118ec848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600954846129bd565b50905080611926576040517fed3c247c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ce485611932610b3e565b61193c919061383b565b1115611974576040517f2d573a5500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60058511156119af576040517fe0f1169300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61012c60105410156119da576119c5338661266f565b84601060008282540192505081905550611a31565b84664380663abb80006119ed91906138c2565b341015611a26576040517f81b5ad6800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a30338661266f565b5b5050505050565b60125481565b611a46611da1565b73ffffffffffffffffffffffffffffffffffffffff16611a6461127c565b73ffffffffffffffffffffffffffffffffffffffff1614611aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab190613747565b60405180910390fd5b6000601160006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b73611da1565b73ffffffffffffffffffffffffffffffffffffffff16611b9161127c565b73ffffffffffffffffffffffffffffffffffffffff1614611be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bde90613747565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4e90613727565b60405180910390fd5b611c60816125a9565b50565b611c6b611da1565b73ffffffffffffffffffffffffffffffffffffffff16611c8961127c565b73ffffffffffffffffffffffffffffffffffffffff1614611cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd690613747565b60405180910390fd5b8060098190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611d5e611e5b565b11158015611d6d575060005482105b8015611d9a575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611e6f8261231a565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611eda576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611efb611da1565b73ffffffffffffffffffffffffffffffffffffffff161480611f2a5750611f2985611f24611da1565b611ad7565b5b80611f6f5750611f38611da1565b73ffffffffffffffffffffffffffffffffffffffff16611f57846109ad565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611fa8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561200f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61201c8585856001612abf565b61202860008487611da9565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156122a85760005482146122a757878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123138585856001612ac5565b5050505050565b612322612f31565b600082905080612330611e5b565b1115801561233f575060005481105b15612572576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161257057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124545780925050506125a4565b5b60011561256f57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461256a5780925050506125a4565b612455565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612689828260405180602001604052806000815250612acb565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126d6611da1565b8786866040518563ffffffff1660e01b81526004016126f89493929190613683565b602060405180830381600087803b15801561271257600080fd5b505af192505050801561274357506040513d601f19601f820116820180604052508101906127409190613304565b60015b6127bd573d8060008114612773576040519150601f19603f3d011682016040523d82523d6000602084013e612778565b606091505b506000815114156127b5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612858576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129b8565b600082905060005b6000821461288a57808061287390613a73565b915050600a826128839190613891565b9150612860565b60008167ffffffffffffffff8111156128cc577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156128fe5781602001600182028036833780820191505090505b5090505b600085146129b157600182612917919061391c565b9150600a856129269190613aea565b6030612932919061383b565b60f81b81838151811061296e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129aa9190613891565b9450612902565b8093505050505b919050565b60008060008390506000805b8751811015612aac576002826129df91906138c2565b91506000888281518110612a1c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808411612a5d578381604051602001612a40929190613603565b604051602081830303815290604052805190602001209350612a98565b8084604051602001612a70929190613603565b604051602081830303815290604052805190602001209350600183612a95919061383b565b92505b508080612aa490613a73565b9150506129c9565b5085821481935093505050935093915050565b50505050565b50505050565b612ad88383836001612add565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612b4a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612b85576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b926000868387612abf565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612d5c5750612d5b8773ffffffffffffffffffffffffffffffffffffffff1661268d565b5b15612e22575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612dd160008884806001019550886126b0565b612e07576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612d62578260005414612e1d57600080fd5b612e8e565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612e23575b816000819055505050612ea46000868387612ac5565b5050505050565b828054612eb790613a10565b90600052602060002090601f016020900481019282612ed95760008555612f20565b82601f10612ef257803560ff1916838001178555612f20565b82800160010185558215612f20579182015b82811115612f1f578235825591602001919060010190612f04565b5b509050612f2d9190612f74565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612f8d576000816000905550600101612f75565b5090565b6000612fa4612f9f846137a7565b613782565b905082815260208101848484011115612fbc57600080fd5b612fc78482856139ce565b509392505050565b600081359050612fde81613c70565b92915050565b60008083601f840112612ff657600080fd5b8235905067ffffffffffffffff81111561300f57600080fd5b60208301915083602082028301111561302757600080fd5b9250929050565b60008135905061303d81613c87565b92915050565b60008135905061305281613c9e565b92915050565b60008135905061306781613cb5565b92915050565b60008151905061307c81613cb5565b92915050565b600082601f83011261309357600080fd5b81356130a3848260208601612f91565b91505092915050565b60008083601f8401126130be57600080fd5b8235905067ffffffffffffffff8111156130d757600080fd5b6020830191508360018202830111156130ef57600080fd5b9250929050565b60008135905061310581613ccc565b92915050565b60006020828403121561311d57600080fd5b600061312b84828501612fcf565b91505092915050565b6000806040838503121561314757600080fd5b600061315585828601612fcf565b925050602061316685828601612fcf565b9150509250929050565b60008060006060848603121561318557600080fd5b600061319386828701612fcf565b93505060206131a486828701612fcf565b92505060406131b5868287016130f6565b9150509250925092565b600080600080608085870312156131d557600080fd5b60006131e387828801612fcf565b94505060206131f487828801612fcf565b9350506040613205878288016130f6565b925050606085013567ffffffffffffffff81111561322257600080fd5b61322e87828801613082565b91505092959194509250565b6000806040838503121561324d57600080fd5b600061325b85828601612fcf565b925050602061326c8582860161302e565b9150509250929050565b6000806040838503121561328957600080fd5b600061329785828601612fcf565b92505060206132a8858286016130f6565b9150509250929050565b6000602082840312156132c457600080fd5b60006132d284828501613043565b91505092915050565b6000602082840312156132ed57600080fd5b60006132fb84828501613058565b91505092915050565b60006020828403121561331657600080fd5b60006133248482850161306d565b91505092915050565b6000806020838503121561334057600080fd5b600083013567ffffffffffffffff81111561335a57600080fd5b613366858286016130ac565b92509250509250929050565b60006020828403121561338457600080fd5b6000613392848285016130f6565b91505092915050565b6000806000604084860312156133b057600080fd5b60006133be868287016130f6565b935050602084013567ffffffffffffffff8111156133db57600080fd5b6133e786828701612fe4565b92509250509250925092565b6133fc81613950565b82525050565b61341361340e82613950565b613abc565b82525050565b61342281613962565b82525050565b6134318161396e565b82525050565b6134486134438261396e565b613ace565b82525050565b6000613459826137ed565b6134638185613803565b93506134738185602086016139dd565b61347c81613bd7565b840191505092915050565b6000613492826137f8565b61349c818561381f565b93506134ac8185602086016139dd565b6134b581613bd7565b840191505092915050565b60006134cb826137f8565b6134d58185613830565b93506134e58185602086016139dd565b80840191505092915050565b600081546134fe81613a10565b6135088186613830565b94506001821660008114613523576001811461353457613567565b60ff19831686528186019350613567565b61353d856137d8565b60005b8381101561355f57815481890152600182019150602081019050613540565b838801955050505b50505092915050565b600061357d60268361381f565b915061358882613bf5565b604082019050919050565b60006135a060208361381f565b91506135ab82613c44565b602082019050919050565b60006135c3600083613814565b91506135ce82613c6d565b600082019050919050565b6135e2816139c4565b82525050565b60006135f48284613402565b60148201915081905092915050565b600061360f8285613437565b60208201915061361f8284613437565b6020820191508190509392505050565b600061363b82856134f1565b915061364782846134c0565b91508190509392505050565b600061365e826135b6565b9150819050919050565b600060208201905061367d60008301846133f3565b92915050565b600060808201905061369860008301876133f3565b6136a560208301866133f3565b6136b260408301856135d9565b81810360608301526136c4818461344e565b905095945050505050565b60006020820190506136e46000830184613419565b92915050565b60006020820190506136ff6000830184613428565b92915050565b6000602082019050818103600083015261371f8184613487565b905092915050565b6000602082019050818103600083015261374081613570565b9050919050565b6000602082019050818103600083015261376081613593565b9050919050565b600060208201905061377c60008301846135d9565b92915050565b600061378c61379d565b90506137988282613a42565b919050565b6000604051905090565b600067ffffffffffffffff8211156137c2576137c1613ba8565b5b6137cb82613bd7565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613846826139c4565b9150613851836139c4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561388657613885613b1b565b5b828201905092915050565b600061389c826139c4565b91506138a7836139c4565b9250826138b7576138b6613b4a565b5b828204905092915050565b60006138cd826139c4565b91506138d8836139c4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561391157613910613b1b565b5b828202905092915050565b6000613927826139c4565b9150613932836139c4565b92508282101561394557613944613b1b565b5b828203905092915050565b600061395b826139a4565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156139fb5780820151818401526020810190506139e0565b83811115613a0a576000848401525b50505050565b60006002820490506001821680613a2857607f821691505b60208210811415613a3c57613a3b613b79565b5b50919050565b613a4b82613bd7565b810181811067ffffffffffffffff82111715613a6a57613a69613ba8565b5b80604052505050565b6000613a7e826139c4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ab157613ab0613b1b565b5b600182019050919050565b6000613ac782613ad8565b9050919050565b6000819050919050565b6000613ae382613be8565b9050919050565b6000613af5826139c4565b9150613b00836139c4565b925082613b1057613b0f613b4a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b613c7981613950565b8114613c8457600080fd5b50565b613c9081613962565b8114613c9b57600080fd5b50565b613ca78161396e565b8114613cb257600080fd5b50565b613cbe81613978565b8114613cc957600080fd5b50565b613cd5816139c4565b8114613ce057600080fd5b5056fea264697066735822122051f68cf6b393517a1b22d8813dcac96be42c93e510cfe59e90f9aa789c80516d64736f6c63430008040033697066733a2f2f516d544341576851614b61753464384e754c684e3461615366526272376b4768624a686468626d52623945594c720000000000000000000000004b00f169adc64e24144c8f9e735d31f2d9ef0f730000000000000000000000007157c57c1920f51a10e751790ff36302e15cfd8f00000000000000000000000073fdc60cb1076dcdd9b97a167886c1380eeea5dc000000000000000000000000ffb847ce874a714448709d409a223ccd5015f95f000000000000000000000000f2378a5a214f2a7d52d66cde491f70459a06534d

Deployed Bytecode

0x60806040526004361061021e5760003560e01c8063764267b611610123578063a664eb90116100ab578063d3cf00a31161006f578063d3cf00a314610768578063d558296514610793578063e985e9c5146107aa578063f2fde38b146107e7578063f5aa406d1461081057610225565b8063a664eb9014610690578063a9722cf3146106bb578063b88d4fde146106e6578063c87b56dd1461070f578063d2cab0561461074c57610225565b80638ba4cc3c116100f25780638ba4cc3c146105cc5780638da5cb5b146105f557806395d89b4114610620578063a0712d681461064b578063a22cb4651461066757610225565b8063764267b61461053457806376c64c621461055f57806380b173351461057657806386b8703b146105a157610225565b80633ccfd60b116101a65780636352211e116101755780636352211e1461044d57806365b1de201461048a5780636c0360eb146104b557806370a08231146104e0578063715018a61461051d57610225565b80633ccfd60b146103b957806342842e0e146103d057806351830227146103f957806355f804b31461042457610225565b806310cf8e6a116101ed57806310cf8e6a146102f857806317ca13231461032357806318160ddd1461034e57806323b872dd146103795780632be09561146103a257610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf57610225565b3661022557005b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906132db565b610839565b60405161025e91906136cf565b60405180910390f35b34801561027357600080fd5b5061027c61091b565b6040516102899190613705565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613372565b6109ad565b6040516102c69190613668565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613276565b610a29565b005b34801561030457600080fd5b5061030d610b34565b60405161031a9190613767565b60405180910390f35b34801561032f57600080fd5b50610338610b39565b6040516103459190613767565b60405180910390f35b34801561035a57600080fd5b50610363610b3e565b6040516103709190613767565b60405180910390f35b34801561038557600080fd5b506103a0600480360381019061039b9190613170565b610b55565b005b3480156103ae57600080fd5b506103b7610b65565b005b3480156103c557600080fd5b506103ce610c12565b005b3480156103dc57600080fd5b506103f760048036038101906103f29190613170565b610e26565b005b34801561040557600080fd5b5061040e610e46565b60405161041b91906136cf565b60405180910390f35b34801561043057600080fd5b5061044b6004803603810190610446919061332d565b610e59565b005b34801561045957600080fd5b50610474600480360381019061046f9190613372565b610f06565b6040516104819190613668565b60405180910390f35b34801561049657600080fd5b5061049f610f1c565b6040516104ac9190613767565b60405180910390f35b3480156104c157600080fd5b506104ca610f22565b6040516104d79190613705565b60405180910390f35b3480156104ec57600080fd5b506105076004803603810190610502919061310b565b610fb0565b6040516105149190613767565b60405180910390f35b34801561052957600080fd5b50610532611080565b005b34801561054057600080fd5b50610549611108565b6040516105569190613767565b60405180910390f35b34801561056b57600080fd5b5061057461110e565b005b34801561058257600080fd5b5061058b611193565b6040516105989190613767565b60405180910390f35b3480156105ad57600080fd5b506105b6611199565b6040516105c39190613767565b60405180910390f35b3480156105d857600080fd5b506105f360048036038101906105ee9190613276565b6111a4565b005b34801561060157600080fd5b5061060a61127c565b6040516106179190613668565b60405180910390f35b34801561062c57600080fd5b506106356112a6565b6040516106429190613705565b60405180910390f35b61066560048036038101906106609190613372565b611338565b005b34801561067357600080fd5b5061068e6004803603810190610689919061323a565b6114c8565b005b34801561069c57600080fd5b506106a5611640565b6040516106b291906136ea565b60405180910390f35b3480156106c757600080fd5b506106d0611646565b6040516106dd91906136cf565b60405180910390f35b3480156106f257600080fd5b5061070d600480360381019061070891906131bf565b611659565b005b34801561071b57600080fd5b5061073660048036038101906107319190613372565b6116d5565b6040516107439190613705565b60405180910390f35b6107666004803603810190610761919061339b565b6117ef565b005b34801561077457600080fd5b5061077d611a38565b60405161078a9190613767565b60405180910390f35b34801561079f57600080fd5b506107a8611a3e565b005b3480156107b657600080fd5b506107d160048036038101906107cc9190613134565b611ad7565b6040516107de91906136cf565b60405180910390f35b3480156107f357600080fd5b5061080e6004803603810190610809919061310b565b611b6b565b005b34801561081c57600080fd5b50610837600480360381019061083291906132b2565b611c63565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610914575061091382611ce9565b5b9050919050565b60606002805461092a90613a10565b80601f016020809104026020016040519081016040528092919081815260200182805461095690613a10565b80156109a35780601f10610978576101008083540402835291602001916109a3565b820191906000526020600020905b81548152906001019060200180831161098657829003601f168201915b5050505050905090565b60006109b882611d53565b6109ee576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3482610f06565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a9c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610abb611da1565b73ffffffffffffffffffffffffffffffffffffffff1614158015610aed5750610aeb81610ae6611da1565b611ad7565b155b15610b24576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b2f838383611da9565b505050565b600581565b600f81565b6000610b48611e5b565b6001546000540303905090565b610b60838383611e64565b505050565b610b6d611da1565b73ffffffffffffffffffffffffffffffffffffffff16610b8b61127c565b73ffffffffffffffffffffffffffffffffffffffff1614610be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd890613747565b60405180910390fd5b6001601160006101000a81548160ff02191690831515021790555061038442610c0a919061383b565b601281905550565b6000471415610c4d576040517f2313b4b600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600047905060005b6005811015610e22576000600a8260058110610c9a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612710600f6000600a8660058110610d13577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205485610d7b91906138c2565b610d859190613891565b604051610d9190613653565b60006040518083038185875af1925050503d8060008114610dce576040519150601f19603f3d011682016040523d82523d6000602084013e610dd3565b606091505b5050905080610e0e576040517f750b219c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b508080610e1a90613a73565b915050610c55565b5050565b610e4183838360405180602001604052806000815250611659565b505050565b601360009054906101000a900460ff1681565b610e61611da1565b73ffffffffffffffffffffffffffffffffffffffff16610e7f61127c565b73ffffffffffffffffffffffffffffffffffffffff1614610ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecc90613747565b60405180910390fd5b818160149190610ee6929190612eab565b506001601360006101000a81548160ff0219169083151502179055505050565b6000610f118261231a565b600001519050919050565b610ce481565b60148054610f2f90613a10565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5b90613a10565b8015610fa85780601f10610f7d57610100808354040283529160200191610fa8565b820191906000526020600020905b815481529060010190602001808311610f8b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611018576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611088611da1565b73ffffffffffffffffffffffffffffffffffffffff166110a661127c565b73ffffffffffffffffffffffffffffffffffffffff16146110fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f390613747565b60405180910390fd5b61110660006125a9565b565b61012c81565b611116611da1565b73ffffffffffffffffffffffffffffffffffffffff1661113461127c565b73ffffffffffffffffffffffffffffffffffffffff161461118a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118190613747565b60405180910390fd5b42601281905550565b60105481565b664380663abb800081565b6111ac611da1565b73ffffffffffffffffffffffffffffffffffffffff166111ca61127c565b73ffffffffffffffffffffffffffffffffffffffff1614611220576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121790613747565b60405180910390fd5b610ce48161122c610b3e565b611236919061383b565b111561126e576040517f2d573a5500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611278828261266f565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546112b590613a10565b80601f01602080910402602001604051908101604052809291908181526020018280546112e190613a10565b801561132e5780601f106113035761010080835404028352916020019161132e565b820191906000526020600020905b81548152906001019060200180831161131157829003601f168201915b5050505050905090565b601160009054906101000a900460ff1661137e576040517f06290e4e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6012544210156113ba576040517f06290e4e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ce4816113c6610b3e565b6113d0919061383b565b1115611408576040517f2d573a5500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600f811115611443576040517fe0f1169300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61012c601054101561146e57611459338261266f565b806010600082825401925050819055506114c5565b80664380663abb800061148191906138c2565b3410156114ba576040517f81b5ad6800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114c4338261266f565b5b50565b6114d0611da1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611535576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611542611da1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115ef611da1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161163491906136cf565b60405180910390a35050565b60095481565b601160009054906101000a900460ff1681565b611664848484611e64565b6116838373ffffffffffffffffffffffffffffffffffffffff1661268d565b80156116985750611696848484846126b0565b155b156116cf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606116e082611d53565b611716576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601360009054906101000a900460ff166117bc576014805461173790613a10565b80601f016020809104026020016040519081016040528092919081815260200182805461176390613a10565b80156117b05780601f10611785576101008083540402835291602001916117b0565b820191906000526020600020905b81548152906001019060200180831161179357829003601f168201915b505050505090506117ea565b60146117c783612810565b6040516020016117d892919061362f565b60405160208183030381529060405290505b919050565b601160009054906101000a900460ff16611835576040517f06290e4e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601254421115611871576040517f23ed4a7400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60003360405160200161188491906135e8565b60405160208183030381529060405280519060200120905060006118ec848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600954846129bd565b50905080611926576040517fed3c247c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ce485611932610b3e565b61193c919061383b565b1115611974576040517f2d573a5500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60058511156119af576040517fe0f1169300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61012c60105410156119da576119c5338661266f565b84601060008282540192505081905550611a31565b84664380663abb80006119ed91906138c2565b341015611a26576040517f81b5ad6800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a30338661266f565b5b5050505050565b60125481565b611a46611da1565b73ffffffffffffffffffffffffffffffffffffffff16611a6461127c565b73ffffffffffffffffffffffffffffffffffffffff1614611aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab190613747565b60405180910390fd5b6000601160006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b73611da1565b73ffffffffffffffffffffffffffffffffffffffff16611b9161127c565b73ffffffffffffffffffffffffffffffffffffffff1614611be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bde90613747565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4e90613727565b60405180910390fd5b611c60816125a9565b50565b611c6b611da1565b73ffffffffffffffffffffffffffffffffffffffff16611c8961127c565b73ffffffffffffffffffffffffffffffffffffffff1614611cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd690613747565b60405180910390fd5b8060098190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611d5e611e5b565b11158015611d6d575060005482105b8015611d9a575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611e6f8261231a565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611eda576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611efb611da1565b73ffffffffffffffffffffffffffffffffffffffff161480611f2a5750611f2985611f24611da1565b611ad7565b5b80611f6f5750611f38611da1565b73ffffffffffffffffffffffffffffffffffffffff16611f57846109ad565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611fa8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561200f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61201c8585856001612abf565b61202860008487611da9565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156122a85760005482146122a757878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123138585856001612ac5565b5050505050565b612322612f31565b600082905080612330611e5b565b1115801561233f575060005481105b15612572576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161257057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124545780925050506125a4565b5b60011561256f57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461256a5780925050506125a4565b612455565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612689828260405180602001604052806000815250612acb565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126d6611da1565b8786866040518563ffffffff1660e01b81526004016126f89493929190613683565b602060405180830381600087803b15801561271257600080fd5b505af192505050801561274357506040513d601f19601f820116820180604052508101906127409190613304565b60015b6127bd573d8060008114612773576040519150601f19603f3d011682016040523d82523d6000602084013e612778565b606091505b506000815114156127b5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612858576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129b8565b600082905060005b6000821461288a57808061287390613a73565b915050600a826128839190613891565b9150612860565b60008167ffffffffffffffff8111156128cc577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156128fe5781602001600182028036833780820191505090505b5090505b600085146129b157600182612917919061391c565b9150600a856129269190613aea565b6030612932919061383b565b60f81b81838151811061296e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129aa9190613891565b9450612902565b8093505050505b919050565b60008060008390506000805b8751811015612aac576002826129df91906138c2565b91506000888281518110612a1c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808411612a5d578381604051602001612a40929190613603565b604051602081830303815290604052805190602001209350612a98565b8084604051602001612a70929190613603565b604051602081830303815290604052805190602001209350600183612a95919061383b565b92505b508080612aa490613a73565b9150506129c9565b5085821481935093505050935093915050565b50505050565b50505050565b612ad88383836001612add565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612b4a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612b85576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b926000868387612abf565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612d5c5750612d5b8773ffffffffffffffffffffffffffffffffffffffff1661268d565b5b15612e22575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612dd160008884806001019550886126b0565b612e07576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612d62578260005414612e1d57600080fd5b612e8e565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612e23575b816000819055505050612ea46000868387612ac5565b5050505050565b828054612eb790613a10565b90600052602060002090601f016020900481019282612ed95760008555612f20565b82601f10612ef257803560ff1916838001178555612f20565b82800160010185558215612f20579182015b82811115612f1f578235825591602001919060010190612f04565b5b509050612f2d9190612f74565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612f8d576000816000905550600101612f75565b5090565b6000612fa4612f9f846137a7565b613782565b905082815260208101848484011115612fbc57600080fd5b612fc78482856139ce565b509392505050565b600081359050612fde81613c70565b92915050565b60008083601f840112612ff657600080fd5b8235905067ffffffffffffffff81111561300f57600080fd5b60208301915083602082028301111561302757600080fd5b9250929050565b60008135905061303d81613c87565b92915050565b60008135905061305281613c9e565b92915050565b60008135905061306781613cb5565b92915050565b60008151905061307c81613cb5565b92915050565b600082601f83011261309357600080fd5b81356130a3848260208601612f91565b91505092915050565b60008083601f8401126130be57600080fd5b8235905067ffffffffffffffff8111156130d757600080fd5b6020830191508360018202830111156130ef57600080fd5b9250929050565b60008135905061310581613ccc565b92915050565b60006020828403121561311d57600080fd5b600061312b84828501612fcf565b91505092915050565b6000806040838503121561314757600080fd5b600061315585828601612fcf565b925050602061316685828601612fcf565b9150509250929050565b60008060006060848603121561318557600080fd5b600061319386828701612fcf565b93505060206131a486828701612fcf565b92505060406131b5868287016130f6565b9150509250925092565b600080600080608085870312156131d557600080fd5b60006131e387828801612fcf565b94505060206131f487828801612fcf565b9350506040613205878288016130f6565b925050606085013567ffffffffffffffff81111561322257600080fd5b61322e87828801613082565b91505092959194509250565b6000806040838503121561324d57600080fd5b600061325b85828601612fcf565b925050602061326c8582860161302e565b9150509250929050565b6000806040838503121561328957600080fd5b600061329785828601612fcf565b92505060206132a8858286016130f6565b9150509250929050565b6000602082840312156132c457600080fd5b60006132d284828501613043565b91505092915050565b6000602082840312156132ed57600080fd5b60006132fb84828501613058565b91505092915050565b60006020828403121561331657600080fd5b60006133248482850161306d565b91505092915050565b6000806020838503121561334057600080fd5b600083013567ffffffffffffffff81111561335a57600080fd5b613366858286016130ac565b92509250509250929050565b60006020828403121561338457600080fd5b6000613392848285016130f6565b91505092915050565b6000806000604084860312156133b057600080fd5b60006133be868287016130f6565b935050602084013567ffffffffffffffff8111156133db57600080fd5b6133e786828701612fe4565b92509250509250925092565b6133fc81613950565b82525050565b61341361340e82613950565b613abc565b82525050565b61342281613962565b82525050565b6134318161396e565b82525050565b6134486134438261396e565b613ace565b82525050565b6000613459826137ed565b6134638185613803565b93506134738185602086016139dd565b61347c81613bd7565b840191505092915050565b6000613492826137f8565b61349c818561381f565b93506134ac8185602086016139dd565b6134b581613bd7565b840191505092915050565b60006134cb826137f8565b6134d58185613830565b93506134e58185602086016139dd565b80840191505092915050565b600081546134fe81613a10565b6135088186613830565b94506001821660008114613523576001811461353457613567565b60ff19831686528186019350613567565b61353d856137d8565b60005b8381101561355f57815481890152600182019150602081019050613540565b838801955050505b50505092915050565b600061357d60268361381f565b915061358882613bf5565b604082019050919050565b60006135a060208361381f565b91506135ab82613c44565b602082019050919050565b60006135c3600083613814565b91506135ce82613c6d565b600082019050919050565b6135e2816139c4565b82525050565b60006135f48284613402565b60148201915081905092915050565b600061360f8285613437565b60208201915061361f8284613437565b6020820191508190509392505050565b600061363b82856134f1565b915061364782846134c0565b91508190509392505050565b600061365e826135b6565b9150819050919050565b600060208201905061367d60008301846133f3565b92915050565b600060808201905061369860008301876133f3565b6136a560208301866133f3565b6136b260408301856135d9565b81810360608301526136c4818461344e565b905095945050505050565b60006020820190506136e46000830184613419565b92915050565b60006020820190506136ff6000830184613428565b92915050565b6000602082019050818103600083015261371f8184613487565b905092915050565b6000602082019050818103600083015261374081613570565b9050919050565b6000602082019050818103600083015261376081613593565b9050919050565b600060208201905061377c60008301846135d9565b92915050565b600061378c61379d565b90506137988282613a42565b919050565b6000604051905090565b600067ffffffffffffffff8211156137c2576137c1613ba8565b5b6137cb82613bd7565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613846826139c4565b9150613851836139c4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561388657613885613b1b565b5b828201905092915050565b600061389c826139c4565b91506138a7836139c4565b9250826138b7576138b6613b4a565b5b828204905092915050565b60006138cd826139c4565b91506138d8836139c4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561391157613910613b1b565b5b828202905092915050565b6000613927826139c4565b9150613932836139c4565b92508282101561394557613944613b1b565b5b828203905092915050565b600061395b826139a4565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156139fb5780820151818401526020810190506139e0565b83811115613a0a576000848401525b50505050565b60006002820490506001821680613a2857607f821691505b60208210811415613a3c57613a3b613b79565b5b50919050565b613a4b82613bd7565b810181811067ffffffffffffffff82111715613a6a57613a69613ba8565b5b80604052505050565b6000613a7e826139c4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ab157613ab0613b1b565b5b600182019050919050565b6000613ac782613ad8565b9050919050565b6000819050919050565b6000613ae382613be8565b9050919050565b6000613af5826139c4565b9150613b00836139c4565b925082613b1057613b0f613b4a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b613c7981613950565b8114613c8457600080fd5b50565b613c9081613962565b8114613c9b57600080fd5b50565b613ca78161396e565b8114613cb257600080fd5b50565b613cbe81613978565b8114613cc957600080fd5b50565b613cd5816139c4565b8114613ce057600080fd5b5056fea264697066735822122051f68cf6b393517a1b22d8813dcac96be42c93e510cfe59e90f9aa789c80516d64736f6c63430008040033

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

0000000000000000000000004b00f169adc64e24144c8f9e735d31f2d9ef0f730000000000000000000000007157c57c1920f51a10e751790ff36302e15cfd8f00000000000000000000000073fdc60cb1076dcdd9b97a167886c1380eeea5dc000000000000000000000000ffb847ce874a714448709d409a223ccd5015f95f000000000000000000000000f2378a5a214f2a7d52d66cde491f70459a06534d

-----Decoded View---------------
Arg [0] : _contributorAddresses (address[5]): 0x4b00f169AdC64E24144C8F9E735d31f2D9ef0f73,0x7157c57C1920F51a10E751790FF36302e15Cfd8F,0x73FDc60cB1076DCdd9b97A167886C1380EeEa5DC,0xffb847CE874A714448709d409a223ccD5015F95f,0xf2378a5A214f2A7d52d66cdE491f70459a06534d

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000004b00f169adc64e24144c8f9e735d31f2d9ef0f73
Arg [1] : 0000000000000000000000007157c57c1920f51a10e751790ff36302e15cfd8f
Arg [2] : 00000000000000000000000073fdc60cb1076dcdd9b97a167886c1380eeea5dc
Arg [3] : 000000000000000000000000ffb847ce874a714448709d409a223ccd5015f95f
Arg [4] : 000000000000000000000000f2378a5a214f2a7d52d66cde491f70459a06534d


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.