ETH Price: $1,592.18 (-3.49%)
 

Overview

Max Total Supply

459 EG

Holders

85

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 EG
0x6e16d42f951c3500b7f21209eb04be3f205762f3
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:
EtherGoddess

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 5000 runs

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

import "./deps/ERC721A.sol";
import "./IFaithToken.sol";

import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

contract EtherGoddess is ERC721A, Ownable, ReentrancyGuard {
    string public baseURI =
        "https://ethergoddessnft.s3.amazonaws.com/metadata/";

    uint256 public supply = 5000;
    uint256 public publicMintPrice = 0.08 ether;
    uint256 public wlMintPrice = 0.065 ether; 

    // used to validate lists
    bytes32 public druidMerkleRoot;
    bytes32 public acolyteMerkleRoot;
    bytes32 public adeptMerkleRoot;

    // free minting allowance
    mapping(address => uint256) public freeAllocated;

    // keep track of those on lists who have claimed their NFT
    mapping(address => uint256) public druidClaimed;
    mapping(address => uint256) public acolyteClaimed;
    mapping(address => uint256) public adeptClaimed;

    bool public isWLMintingOpen = false;
    bool public isAdeptMintingOpen = false;
    bool public isPublicMintingOpen = false;

    constructor() ERC721A("Ether Goddess", "EG") {}

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

    // ============ Modifiers ============
    modifier isValidMerkleProof(bytes32[] calldata merkleProof, bytes32 root) {
        require(
            MerkleProof.verify(
                merkleProof,
                root,
                keccak256(abi.encodePacked(msg.sender))
            ),
            "Address does not exist in list"
        );
        _;
    }

    modifier isCorrectPayment(uint256 price, uint256 numberOfTokens) {
        require(
            price * numberOfTokens <= msg.value,
            "Insufficient ETH value sent"
        );
        _;
    }

    modifier withinSupplyLimit(uint256 numberOfTokens) {
        require(
            totalSupply() + numberOfTokens <= supply,
            "Not enough supply left"
        );
        _;
    }

    modifier whitelistMintingOpen() {
        require(isWLMintingOpen, "WL Minting is not open");
        _;
    }

    // ============ PUBLIC FUNCTIONS FOR MINTING ============
    function mintFree(uint256 mintAmount)
        external
        nonReentrant
        withinSupplyLimit(mintAmount)
        whitelistMintingOpen
    {
        require(
            (freeAllocated[msg.sender] - mintAmount) >= 0,
            "Maxed out allocation"
        );
        _safeMint(msg.sender, mintAmount);
        freeAllocated[msg.sender] -= mintAmount;
    }

    function mintDruid(bytes32[] calldata merkleProof, uint256 mintAmount)
        external
        payable
        isValidMerkleProof(merkleProof, druidMerkleRoot)
        isCorrectPayment(wlMintPrice, mintAmount)
        withinSupplyLimit(mintAmount)
        whitelistMintingOpen
        nonReentrant
    {
        require(
            druidClaimed[msg.sender] + mintAmount <= 4,
            "Maxed out allocation"
        );
        _safeMint(msg.sender, mintAmount);
        druidClaimed[msg.sender] += mintAmount;
    }

    function mintAcolyte(bytes32[] calldata merkleProof, uint256 mintAmount)
        external
        payable
        isValidMerkleProof(merkleProof, acolyteMerkleRoot)
        isCorrectPayment(wlMintPrice, mintAmount)
        withinSupplyLimit(mintAmount)
        whitelistMintingOpen
        nonReentrant
    {
        require(
            acolyteClaimed[msg.sender] + mintAmount <= 2,
            "Maxed out allocation"
        );
        _safeMint(msg.sender, mintAmount);
        acolyteClaimed[msg.sender] += mintAmount;
    }

    function mintAdept(bytes32[] calldata merkleProof, uint256 mintAmount)
        external
        payable
        isValidMerkleProof(merkleProof, adeptMerkleRoot)
        isCorrectPayment(wlMintPrice, mintAmount)
        withinSupplyLimit(mintAmount)
        nonReentrant
    {
        require(isAdeptMintingOpen, "Adept Minting is not open");
        require(
            adeptClaimed[msg.sender] + mintAmount <= 2,
            "Maxed out allocation"
        );
        _safeMint(msg.sender, mintAmount);
        adeptClaimed[msg.sender] += mintAmount;
    }

    // Public mint with Crossmint compatibility
    function mintTo(address to, uint256 _count)
        external
        payable
        isCorrectPayment(publicMintPrice, _count)
        withinSupplyLimit(_count)
        nonReentrant
    {
        require(isPublicMintingOpen, "Public Minting is not open");
        require(_count <= 10, "Max 10 per transaction");
        _safeMint(to, _count);
    }

    // ============ PUBLIC VIEW FUNCTION ============
    function tokensOfOwner(address owner)
        external
        view
        returns (uint256[] memory)
    {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (
                uint256 i = _startTokenId();
                tokenIdsIdx != tokenIdsLength;
                ++i
            ) {
                ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }

    // ============ OWNER-ONLY ADMIN FUNCTIONS ============
    function setFreeAllocation(
        address[] calldata addresses,
        uint256[] calldata allocation
    ) public onlyOwner {
        require(
            (addresses.length == allocation.length),
            "addresses and allocation must be the same length"
        );
        for (uint256 i = 0; i < addresses.length; i++) {
            freeAllocated[addresses[i]] = allocation[i];
        }
    }

    function setDruidMerkleRoot(bytes32 merkleRoot) external onlyOwner {
        druidMerkleRoot = merkleRoot;
    }

    function setAcolyteMerkleRoot(bytes32 merkleRoot) external onlyOwner {
        acolyteMerkleRoot = merkleRoot;
    }

    function setAdeptMerkleRoot(bytes32 merkleRoot) external onlyOwner {
        adeptMerkleRoot = merkleRoot;
    }

    function toggleWhiteListMinting() external onlyOwner {
        isWLMintingOpen = !isWLMintingOpen;
    }

    function toggleAdeptMinting() external onlyOwner {
        isAdeptMintingOpen = !isAdeptMintingOpen;
    }

    function togglePublicMinting() external onlyOwner {
        isPublicMintingOpen = !isPublicMintingOpen;
    }

    function setSupply(uint256 _supply) external onlyOwner {
        supply = _supply;
    }

    function setPublicMintPrice(uint256 _publicMintPrice) external onlyOwner {
        publicMintPrice = _publicMintPrice;
    }

    function setWLMintPrice(uint256 _wlMintPrice) external onlyOwner {
        wlMintPrice = _wlMintPrice;
    }

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

    // ============ WITHDRAWAL FUNCTIONS ============
    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    // ============ STAKING FUNCTIONS ============

    IFaithToken public faithTokenContract;
    // Token reward rate per day per staked NFT
    uint256 public baseRewardRate = 10;

    mapping(uint256 => bool) public tokenStakedStatus;
    mapping(address => uint256) public tokenStakedBalance;

    mapping(address => uint256) private rewards;
    mapping(address => uint256) private lastUpdateTimestamp;

    // ============ PUBLIC FUNCTIONS ============
    function stake(uint256[] calldata tokenIds) public {
        updateRewards(msg.sender);
        for (uint256 i = 0; i < tokenIds.length; i++) {
            _stake(tokenIds[i]);
        }
    }

    function unstake(uint256[] calldata tokenIds) public {
        updateRewards(msg.sender);
        for (uint256 i = 0; i < tokenIds.length; i++) {
            _unstake(tokenIds[i]);
        }
    }

    function claimRewards() public {
        updateRewards(msg.sender);
        faithTokenContract.mint(msg.sender, rewards[msg.sender]);
        rewards[msg.sender] = 0;
    }

    function getRewardBalance(address holder) external view returns (uint256) {
        if (lastUpdateTimestamp[holder] > 0)
            return (rewards[holder] + calculateAccumulatedReward(holder));
        else return 0;
    }

    function getTotalStakedNFTCount() external view returns (uint256) {
        uint256 stakedCount = 0;

        for (uint256 i = 0; i < 5000; i++) {
            if (tokenStakedStatus[i]) stakedCount++;
        }
        return stakedCount;
    }

    // ============ STAKING INTERNAL FUNCTIONS ============

    function _stake(uint256 _tokenId) internal {
        require(ownerOf(_tokenId) == msg.sender, "Token not owned by sender");
        require(tokenStakedStatus[_tokenId] == false, "Token already staked");
        tokenStakedStatus[_tokenId] = true;
        tokenStakedBalance[msg.sender]++;
    }

    function _unstake(uint256 _tokenId) internal {
        require(ownerOf(_tokenId) == msg.sender, "Token not owned by sender");
        require(tokenStakedStatus[_tokenId] == true, "Token not staked");
        tokenStakedStatus[_tokenId] = false;
        tokenStakedBalance[msg.sender]--;
    }

    function updateRewards(address _user) internal {
        if (lastUpdateTimestamp[_user] > 0) {
            rewards[_user] += calculateAccumulatedReward(_user);
        }
        lastUpdateTimestamp[_user] = block.timestamp;
    }

    function calculateAccumulatedReward(address _user)
        internal
        view
        returns (uint256)
    {
        uint256 stakedBalance = tokenStakedBalance[_user];
        uint256 rewardRate = baseRewardRate + (stakedBalance / 5); // stake 5, bonus 10%. stake 10, bonus 20%, etc
        uint256 timeDelta = (block.timestamp - lastUpdateTimestamp[_user]) /
            86400; // seconds in a day

        return stakedBalance * rewardRate * timeDelta;
    }

    // ============ STAKING ADMIN FUNCTIONS ============
    function setRewardRate(uint256 _baseRewardRate) public onlyOwner {
        baseRewardRate = _baseRewardRate;
    }

    function setFaithTokenContract(IFaithToken _faithTokenContract)
        public
        onlyOwner
    {
        faithTokenContract = _faithTokenContract;
    }

    // ============ STAKING OVERIDE FUNCTIONS ============
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override {
        require(
            tokenStakedStatus[tokenId] == false,
            "You can not transfer a staked token"
        );

        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override {
        require(
            tokenStakedStatus[tokenId] == false,
            "You can not transfer a staked token"
        );
        super.safeTransferFrom(from, to, tokenId, "");
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        require(
            tokenStakedStatus[tokenId] == false,
            "You can not transfer a staked token"
        );

        super.safeTransferFrom(from, to, tokenId, _data);
    }

    function burn(uint256 tokenId) public virtual {
        require(
            tokenStakedStatus[tokenId] == false,
            "You can not burn a staked token"
        );
        _burn(tokenId, true);
    }
}

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

pragma solidity ^0.8.4;

import './IERC721A.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.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';

/**
 * @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, IERC721A {
    using Address for address;
    using Strings for uint256;

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 {
        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 (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 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) 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;

            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 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 15 : IFaithToken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

interface IFaithToken {
    function mint(address to, uint256 amount) external;
}

File 4 of 15 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 6 of 15 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 7 of 15 : MerkleProof.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }

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

File 8 of 15 : IERC721A.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/extensions/IERC721Metadata.sol';

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

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

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}

File 9 of 15 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 15 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 12 of 15 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 13 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

API
[{"inputs":[],"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":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"acolyteClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acolyteMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"adeptClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"adeptMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseRewardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"druidClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"druidMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"faithTokenContract","outputs":[{"internalType":"contract IFaithToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeAllocated","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":"holder","type":"address"}],"name":"getRewardBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalStakedNFTCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAdeptMintingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicMintingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWLMintingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"mintAcolyte","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"mintAdept","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"mintDruid","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"mintFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintTo","outputs":[],"stateMutability":"payable","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":"publicMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setAcolyteMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setAdeptMerkleRoot","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":"merkleRoot","type":"bytes32"}],"name":"setDruidMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IFaithToken","name":"_faithTokenContract","type":"address"}],"name":"setFaithTokenContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"allocation","type":"uint256[]"}],"name":"setFreeAllocation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicMintPrice","type":"uint256"}],"name":"setPublicMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_baseRewardRate","type":"uint256"}],"name":"setRewardRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wlMintPrice","type":"uint256"}],"name":"setWLMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleAdeptMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhiteListMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"tokenStakedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenStakedStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"tokenIds","type":"uint256[]"}],"name":"unstake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60e06040526032608081815290620044f460a03980516200002991600a9160209091019062000144565b50611388600b5567011c37937e080000600c5566e6ed27d6668000600d556015805462ffffff19169055600a6016553480156200006557600080fd5b506040518060400160405280600d81526020016c457468657220476f646465737360981b81525060405180604001604052806002815260200161454760f01b8152508160029080519060200190620000bf92919062000144565b508051620000d590600390602084019062000144565b50506000805550620000e733620000f2565b600160095562000227565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015290620001ea565b90600052602060002090601f016020900481019282620001765760008555620001c1565b82601f106200019157805160ff1916838001178555620001c1565b82800160010185558215620001c1579182015b82811115620001c1578251825591602001919060010190620001a4565b50620001cf929150620001d3565b5090565b5b80821115620001cf5760008155600101620001d4565b600181811c90821680620001ff57607f821691505b602082108114156200022157634e487b7160e01b600052602260045260246000fd5b50919050565b6142bd80620002376000396000f3fe6080604052600436106103a25760003560e01c806376525a70116101e7578063b5d91a6a1161010d578063e1e62b02116100a0578063f2fde38b1161006f578063f2fde38b14610aa4578063f5eae39014610ac4578063f97b059e14610ada578063ffa8021a14610afa57600080fd5b8063e1e62b02146109fc578063e449f34114610a1c578063e72c977814610a3c578063e985e9c514610a5b57600080fd5b8063c87b56dd116100dc578063c87b56dd14610991578063cad3269d146109b1578063d5a849e9146109c6578063dc53fd92146109e657600080fd5b8063b5d91a6a1461091c578063b88d4fde14610949578063c51dde9914610969578063c6d6d7111461097e57600080fd5b806393ed8f6d11610185578063a22cb46511610154578063a22cb465146108a6578063a4146733146108c6578063a93e5a8f146108e6578063afbf34401461090657600080fd5b806393ed8f6d1461081a57806395d89b41146108415780639e447fc614610856578063a1a48df81461087657600080fd5b8063881b0a61116101c1578063881b0a61146107a25780638a467f78146107b55780638da5cb5b146107e257806390e2efbb1461080057600080fd5b806376525a70146107325780638462151c146107485780638753f77b1461077557600080fd5b8063372500ab116102cc57806355f804b31161026a5780636b8a21fc116102395780636b8a21fc146106d35780636c0360eb146106e857806370a08231146106fd578063715018a61461071d57600080fd5b806355f804b31461065e5780635d82cf6e1461067e5780636352211e1461069e578063640f5c52146106be57600080fd5b80633f909734116102a65780633f909734146105eb57806342842e0e1461060b57806342966c681461062b578063449a52f81461064b57600080fd5b8063372500ab146105a15780633b4c4b25146105b65780633ccfd60b146105d657600080fd5b806314419b92116103445780632b7e996e116103135780632b7e996e1461051e5780632c4e9fc61461053e5780633129d589146105545780633173315d1461057457600080fd5b806314419b92146104af57806318160ddd146104c55780631bea0e4b146104de57806323b872dd146104fe57600080fd5b80630780f9d8116103805780630780f9d814610422578063081812fc14610437578063095ea7b31461046f5780630fbf0a931461048f57600080fd5b806301ffc9a7146103a7578063047fc9aa146103dc57806306fdde0314610400575b600080fd5b3480156103b357600080fd5b506103c76103c2366004613bd1565b610b27565b60405190151581526020015b60405180910390f35b3480156103e857600080fd5b506103f2600b5481565b6040519081526020016103d3565b34801561040c57600080fd5b50610415610c0c565b6040516103d39190613c46565b610435610430366004613ca5565b610c9e565b005b34801561044357600080fd5b50610457610452366004613cf1565b610f95565b6040516001600160a01b0390911681526020016103d3565b34801561047b57600080fd5b5061043561048a366004613d1f565b610ff2565b34801561049b57600080fd5b506104356104aa366004613d4b565b6110b2565b3480156104bb57600080fd5b506103f2600e5481565b3480156104d157600080fd5b50600154600054036103f2565b3480156104ea57600080fd5b506104356104f9366004613d8d565b6110f9565b34801561050a57600080fd5b50610435610519366004613df9565b61124a565b34801561052a57600080fd5b50610435610539366004613cf1565b6112da565b34801561054a57600080fd5b506103f2600d5481565b34801561056057600080fd5b506015546103c79062010000900460ff1681565b34801561058057600080fd5b506103f261058f366004613e3a565b60126020526000908152604090205481565b3480156105ad57600080fd5b50610435611339565b3480156105c257600080fd5b506104356105d1366004613cf1565b6113e8565b3480156105e257600080fd5b50610435611447565b3480156105f757600080fd5b50610435610606366004613e3a565b6114d4565b34801561061757600080fd5b50610435610626366004613df9565b61156f565b34801561063757600080fd5b50610435610646366004613cf1565b61160f565b610435610659366004613d1f565b61167c565b34801561066a57600080fd5b50610435610679366004613e57565b61185a565b34801561068a57600080fd5b50610435610699366004613cf1565b6118c0565b3480156106aa57600080fd5b506104576106b9366004613cf1565b61191f565b3480156106ca57600080fd5b50610435611931565b3480156106df57600080fd5b506104356119c5565b3480156106f457600080fd5b50610415611a5a565b34801561070957600080fd5b506103f2610718366004613e3a565b611ae8565b34801561072957600080fd5b50610435611b50565b34801561073e57600080fd5b506103f260105481565b34801561075457600080fd5b50610768610763366004613e3a565b611bb6565b6040516103d39190613ec9565b34801561078157600080fd5b506103f2610790366004613e3a565b60186020526000908152604090205481565b6104356107b0366004613ca5565b611d27565b3480156107c157600080fd5b506103f26107d0366004613e3a565b60146020526000908152604090205481565b3480156107ee57600080fd5b506008546001600160a01b0316610457565b34801561080c57600080fd5b506015546103c79060ff1681565b34801561082657600080fd5b5060155461045790630100000090046001600160a01b031681565b34801561084d57600080fd5b50610415611fec565b34801561086257600080fd5b50610435610871366004613cf1565b611ffb565b34801561088257600080fd5b506103c7610891366004613cf1565b60176020526000908152604090205460ff1681565b3480156108b257600080fd5b506104356108c1366004613f01565b61205a565b3480156108d257600080fd5b506104356108e1366004613cf1565b612109565b3480156108f257600080fd5b50610435610901366004613cf1565b6122be565b34801561091257600080fd5b506103f260165481565b34801561092857600080fd5b506103f2610937366004613e3a565b60136020526000908152604090205481565b34801561095557600080fd5b50610435610964366004613f6e565b61231d565b34801561097557600080fd5b506104356123b4565b61043561098c366004613ca5565b612422565b34801561099d57600080fd5b506104156109ac366004613cf1565b6126ed565b3480156109bd57600080fd5b506103f261278b565b3480156109d257600080fd5b506103f26109e1366004613e3a565b6127d7565b3480156109f257600080fd5b506103f2600c5481565b348015610a0857600080fd5b50610435610a17366004613cf1565b612829565b348015610a2857600080fd5b50610435610a37366004613d4b565b612888565b348015610a4857600080fd5b506015546103c790610100900460ff1681565b348015610a6757600080fd5b506103c7610a7636600461404e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610ab057600080fd5b50610435610abf366004613e3a565b6128cf565b348015610ad057600080fd5b506103f2600f5481565b348015610ae657600080fd5b50610435610af5366004613cf1565b6129ae565b348015610b0657600080fd5b506103f2610b15366004613e3a565b60116020526000908152604090205481565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480610bba57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610c0657507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b606060028054610c1b9061407c565b80601f0160208091040260200160405190810160405280929190818152602001828054610c479061407c565b8015610c945780601f10610c6957610100808354040283529160200191610c94565b820191906000526020600020905b815481529060010190602001808311610c7757829003601f168201915b5050505050905090565b8282600e54610d29838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b16602082015285925060340190505b60405160208183030381529060405280519060200120612a0d565b610d7a5760405162461bcd60e51b815260206004820152601e60248201527f4164647265737320646f6573206e6f7420657869737420696e206c697374000060448201526064015b60405180910390fd5b600d548434610d8982846140f9565b1115610dd75760405162461bcd60e51b815260206004820152601b60248201527f496e73756666696369656e74204554482076616c75652073656e7400000000006044820152606401610d71565b85600b5481610de96001546000540390565b610df39190614118565b1115610e415760405162461bcd60e51b815260206004820152601660248201527f4e6f7420656e6f75676820737570706c79206c656674000000000000000000006044820152606401610d71565b60155460ff16610e935760405162461bcd60e51b815260206004820152601660248201527f574c204d696e74696e67206973206e6f74206f70656e000000000000000000006044820152606401610d71565b60026009541415610ee65760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610d71565b600260095533600090815260126020526040902054600490610f09908990614118565b1115610f575760405162461bcd60e51b815260206004820152601460248201527f4d61786564206f757420616c6c6f636174696f6e0000000000000000000000006044820152606401610d71565b610f613388612abc565b3360009081526012602052604081208054899290610f80908490614118565b90915550506001600955505050505050505050565b6000610fa082612ad6565b610fd6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610ffd8261191f565b9050806001600160a01b0316836001600160a01b0316141561104b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b0382161480159061106b57506110698133610a76565b155b156110a2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110ad838383612b1a565b505050565b6110bb33612b8e565b60005b818110156110ad576110e78383838181106110db576110db614130565b90506020020135612bff565b806110f18161415f565b9150506110be565b6008546001600160a01b031633146111535760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d71565b8281146111c85760405162461bcd60e51b815260206004820152603060248201527f61646472657373657320616e6420616c6c6f636174696f6e206d75737420626560448201527f207468652073616d65206c656e677468000000000000000000000000000000006064820152608401610d71565b60005b83811015611243578282828181106111e5576111e5614130565b905060200201356011600087878581811061120257611202614130565b90506020020160208101906112179190613e3a565b6001600160a01b031681526020810191909152604001600020558061123b8161415f565b9150506111cb565b5050505050565b60008181526017602052604090205460ff16156112cf5760405162461bcd60e51b815260206004820152602360248201527f596f752063616e206e6f74207472616e736665722061207374616b656420746f60448201527f6b656e00000000000000000000000000000000000000000000000000000000006064820152608401610d71565b6110ad838383612cf8565b6008546001600160a01b031633146113345760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d71565b600f55565b61134233612b8e565b60155433600081815260196020526040908190205490517f40c10f190000000000000000000000000000000000000000000000000000000081526004810192909252602482015263010000009091046001600160a01b0316906340c10f1990604401600060405180830381600087803b1580156113be57600080fd5b505af11580156113d2573d6000803e3d6000fd5b5050336000908152601960205260408120555050565b6008546001600160a01b031633146114425760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d71565b600b55565b6008546001600160a01b031633146114a15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d71565b6040514790339082156108fc029083906000818181858888f193505050501580156114d0573d6000803e3d6000fd5b5050565b6008546001600160a01b0316331461152e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d71565b601580546001600160a01b039092166301000000027fffffffffffffffffff0000000000000000000000000000000000000000ffffff909216919091179055565b60008181526017602052604090205460ff16156115f45760405162461bcd60e51b815260206004820152602360248201527f596f752063616e206e6f74207472616e736665722061207374616b656420746f60448201527f6b656e00000000000000000000000000000000000000000000000000000000006064820152608401610d71565b6110ad83838360405180602001604052806000815250612d03565b60008181526017602052604090205460ff161561166e5760405162461bcd60e51b815260206004820152601f60248201527f596f752063616e206e6f74206275726e2061207374616b656420746f6b656e006044820152606401610d71565b611679816001612d67565b50565b600c54813461168b82846140f9565b11156116d95760405162461bcd60e51b815260206004820152601b60248201527f496e73756666696369656e74204554482076616c75652073656e7400000000006044820152606401610d71565b82600b54816116eb6001546000540390565b6116f59190614118565b11156117435760405162461bcd60e51b815260206004820152601660248201527f4e6f7420656e6f75676820737570706c79206c656674000000000000000000006044820152606401610d71565b600260095414156117965760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610d71565b600260095560155462010000900460ff166117f35760405162461bcd60e51b815260206004820152601a60248201527f5075626c6963204d696e74696e67206973206e6f74206f70656e0000000000006044820152606401610d71565b600a8411156118445760405162461bcd60e51b815260206004820152601660248201527f4d617820313020706572207472616e73616374696f6e000000000000000000006044820152606401610d71565b61184e8585612abc565b50506001600955505050565b6008546001600160a01b031633146118b45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d71565b6110ad600a8383613b0a565b6008546001600160a01b0316331461191a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d71565b600c55565b600061192a82612ff8565b5192915050565b6008546001600160a01b0316331461198b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d71565b601580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff81166101009182900460ff1615909102179055565b6008546001600160a01b03163314611a1f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d71565b601580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff8116620100009182900460ff1615909102179055565b600a8054611a679061407c565b80601f0160208091040260200160405190810160405280929190818152602001828054611a939061407c565b8015611ae05780601f10611ab557610100808354040283529160200191611ae0565b820191906000526020600020905b815481529060010190602001808311611ac357829003601f168201915b505050505081565b60006001600160a01b038216611b2a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314611baa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d71565b611bb46000613181565b565b60606000806000611bc685611ae8565b905060008167ffffffffffffffff811115611be357611be3613f3f565b604051908082528060200260200182016040528015611c0c578160200160208202803683370190505b50604080516060810182526000808252602082018190529181018290529192505b838614611d1b57600081815260046020908152604091829020825160608101845290546001600160a01b038116825274010000000000000000000000000000000000000000810467ffffffffffffffff16928201929092527c010000000000000000000000000000000000000000000000000000000090910460ff16158015928201929092529250611cbe57611d13565b81516001600160a01b031615611cd357815194505b876001600160a01b0316856001600160a01b03161415611d135780838780600101985081518110611d0657611d06614130565b6020026020010181815250505b600101611c2d565b50909695505050505050565b8282600f54611d9b838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b1660208201528592506034019050610d0e565b611de75760405162461bcd60e51b815260206004820152601e60248201527f4164647265737320646f6573206e6f7420657869737420696e206c69737400006044820152606401610d71565b600d548434611df682846140f9565b1115611e445760405162461bcd60e51b815260206004820152601b60248201527f496e73756666696369656e74204554482076616c75652073656e7400000000006044820152606401610d71565b85600b5481611e566001546000540390565b611e609190614118565b1115611eae5760405162461bcd60e51b815260206004820152601660248201527f4e6f7420656e6f75676820737570706c79206c656674000000000000000000006044820152606401610d71565b60155460ff16611f005760405162461bcd60e51b815260206004820152601660248201527f574c204d696e74696e67206973206e6f74206f70656e000000000000000000006044820152606401610d71565b60026009541415611f535760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610d71565b6002600981905533600090815260136020526040902054611f75908990614118565b1115611fc35760405162461bcd60e51b815260206004820152601460248201527f4d61786564206f757420616c6c6f636174696f6e0000000000000000000000006044820152606401610d71565b611fcd3388612abc565b3360009081526013602052604081208054899290610f80908490614118565b606060038054610c1b9061407c565b6008546001600160a01b031633146120555760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d71565b601655565b6001600160a01b03821633141561209d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6002600954141561215c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610d71565b6002600955600b548190816121746001546000540390565b61217e9190614118565b11156121cc5760405162461bcd60e51b815260206004820152601660248201527f4e6f7420656e6f75676820737570706c79206c656674000000000000000000006044820152606401610d71565b60155460ff1661221e5760405162461bcd60e51b815260206004820152601660248201527f574c204d696e74696e67206973206e6f74206f70656e000000000000000000006044820152606401610d71565b3360009081526011602052604081205461223990849061417a565b10156122875760405162461bcd60e51b815260206004820152601460248201527f4d61786564206f757420616c6c6f636174696f6e0000000000000000000000006044820152606401610d71565b6122913383612abc565b33600090815260116020526040812080548492906122b090849061417a565b909155505060016009555050565b6008546001600160a01b031633146123185760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d71565b601055565b60008281526017602052604090205460ff16156123a25760405162461bcd60e51b815260206004820152602360248201527f596f752063616e206e6f74207472616e736665722061207374616b656420746f60448201527f6b656e00000000000000000000000000000000000000000000000000000000006064820152608401610d71565b6123ae84848484612d03565b50505050565b6008546001600160a01b0316331461240e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d71565b6015805460ff19811660ff90911615179055565b8282601054612496838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b1660208201528592506034019050610d0e565b6124e25760405162461bcd60e51b815260206004820152601e60248201527f4164647265737320646f6573206e6f7420657869737420696e206c69737400006044820152606401610d71565b600d5484346124f182846140f9565b111561253f5760405162461bcd60e51b815260206004820152601b60248201527f496e73756666696369656e74204554482076616c75652073656e7400000000006044820152606401610d71565b85600b54816125516001546000540390565b61255b9190614118565b11156125a95760405162461bcd60e51b815260206004820152601660248201527f4e6f7420656e6f75676820737570706c79206c656674000000000000000000006044820152606401610d71565b600260095414156125fc5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610d71565b6002600955601554610100900460ff166126585760405162461bcd60e51b815260206004820152601960248201527f4164657074204d696e74696e67206973206e6f74206f70656e000000000000006044820152606401610d71565b33600090815260146020526040902054600290612676908990614118565b11156126c45760405162461bcd60e51b815260206004820152601460248201527f4d61786564206f757420616c6c6f636174696f6e0000000000000000000000006044820152606401610d71565b6126ce3388612abc565b3360009081526014602052604081208054899290610f80908490614118565b60606126f882612ad6565b61272e576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006127386131eb565b90508051600014156127595760405180602001604052806000815250612784565b80612763846131fa565b604051602001612774929190614191565b6040516020818303038152906040525b9392505050565b600080805b6113888110156127d15760008181526017602052604090205460ff16156127bf57816127bb8161415f565b9250505b806127c98161415f565b915050612790565b50919050565b6001600160a01b0381166000908152601a602052604081205415612821576127fe82613334565b6001600160a01b038316600090815260196020526040902054610c069190614118565b506000919050565b6008546001600160a01b031633146128835760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d71565b600d55565b61289133612b8e565b60005b818110156110ad576128bd8383838181106128b1576128b1614130565b905060200201356133bc565b806128c78161415f565b915050612894565b6008546001600160a01b031633146129295760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d71565b6001600160a01b0381166129a55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610d71565b61167981613181565b6008546001600160a01b03163314612a085760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d71565b600e55565b600081815b8551811015612ab1576000868281518110612a2f57612a2f614130565b60200260200101519050808311612a71576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612a9e565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080612aa98161415f565b915050612a12565b509092149392505050565b6114d08282604051806020016040528060008152506134ae565b6000805482108015610c065750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000900460ff161590565b60008281526006602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6001600160a01b0381166000908152601a602052604090205415612be357612bb581613334565b6001600160a01b03821660009081526019602052604081208054909190612bdd908490614118565b90915550505b6001600160a01b03166000908152601a60205260409020429055565b33612c098261191f565b6001600160a01b031614612c5f5760405162461bcd60e51b815260206004820152601960248201527f546f6b656e206e6f74206f776e65642062792073656e646572000000000000006044820152606401610d71565b60008181526017602052604090205460ff1615612cbe5760405162461bcd60e51b815260206004820152601460248201527f546f6b656e20616c7265616479207374616b65640000000000000000000000006044820152606401610d71565b6000818152601760209081526040808320805460ff1916600117905533835260189091528120805491612cf08361415f565b919050555050565b6110ad83838361370e565b612d0e84848461370e565b6001600160a01b0383163b15158015612d305750612d2e848484846139b0565b155b156123ae576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000612d7283612ff8565b80519091508215612df1576000336001600160a01b0383161480612d9b5750612d9b8233610a76565b80612db6575033612dab86610f95565b6001600160a01b0316145b905080612def576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b612dfd60008583612b1a565b6001600160a01b038082166000818152600560209081526040808320805470010000000000000000000000000000000060001967ffffffffffffffff8084169190910181167fffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000841681178390048216600190810183169093027fffffffffffffffff0000000000000000ffffffffffffffff0000000000000000909416179290921783558b8652600490945282852080547fffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffff4290931674010000000000000000000000000000000000000000027fffffffff0000000000000000000000000000000000000000000000000000000090911690971796909617167c0100000000000000000000000000000000000000000000000000000000178555918901808452922080549194909116612fae576000548214612fae578054602087015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009091166001600160a01b038716171781555b5050604051869250600091506001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a4505060018054810190555050565b60408051606081018252600080825260208201819052918101919091528160005481101561314f57600081815260046020908152604091829020825160608101845290546001600160a01b038116825274010000000000000000000000000000000000000000810467ffffffffffffffff16928201929092527c010000000000000000000000000000000000000000000000000000000090910460ff1615159181018290529061314d5780516001600160a01b0316156130b9579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b03811680835274010000000000000000000000000000000000000000820467ffffffffffffffff16938301939093527c0100000000000000000000000000000000000000000000000000000000900460ff1615159281019290925215613148579392505050565b6130b9565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600880546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6060600a8054610c1b9061407c565b60608161323a57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115613264578061324e8161415f565b915061325d9050600a836141ef565b915061323e565b60008167ffffffffffffffff81111561327f5761327f613f3f565b6040519080825280601f01601f1916602001820160405280156132a9576020820181803683370190505b5090505b841561332c576132be60018361417a565b91506132cb600a86614203565b6132d6906030614118565b60f81b8183815181106132eb576132eb614130565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350613325600a866141ef565b94506132ad565b949350505050565b6001600160a01b038116600090815260186020526040812054816133596005836141ef565b6016546133669190614118565b6001600160a01b0385166000908152601a6020526040812054919250906201518090613392904261417a565b61339c91906141ef565b9050806133a983856140f9565b6133b391906140f9565b95945050505050565b336133c68261191f565b6001600160a01b03161461341c5760405162461bcd60e51b815260206004820152601960248201527f546f6b656e206e6f74206f776e65642062792073656e646572000000000000006044820152606401610d71565b60008181526017602052604090205460ff16151560011461347f5760405162461bcd60e51b815260206004820152601060248201527f546f6b656e206e6f74207374616b6564000000000000000000000000000000006044820152606401610d71565b6000818152601760209081526040808320805460ff1916905533835260189091528120805491612cf083614217565b6000546001600160a01b0384166134f1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82613528576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168b018116918217680100000000000000007fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000090941690921783900481168b01811690920217909155858452600490925290912080547fffffffff000000000000000000000000000000000000000000000000000000001683177401000000000000000000000000000000000000000042909316929092029190911790558190818501903b156136b9575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461366960008784806001019550876139b0565b61369f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061361e5782600054146136b457600080fd5b6136fe565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106136ba575b5060009081556123ae9085838684565b600061371982612ff8565b9050836001600160a01b031681600001516001600160a01b03161461376a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b038616148061378857506137888533610a76565b806137a357503361379884610f95565b6001600160a01b0316145b9050806137dc576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03841661381c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61382860008487612b1a565b6001600160a01b03858116600090815260056020908152604080832080547fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000080821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080547fffffffff00000000000000000000000000000000000000000000000000000000169094177401000000000000000000000000000000000000000042909216919091021783558701808452922080549193909116613967576000548214613967578054602086015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611243565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a02906139fe90339089908890889060040161422e565b602060405180830381600087803b158015613a1857600080fd5b505af1925050508015613a48575060408051601f3d908101601f19168201909252613a459181019061426a565b60015b613abc573d808015613a76576040519150601f19603f3d011682016040523d82523d6000602084013e613a7b565b606091505b508051613ab4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050949350505050565b828054613b169061407c565b90600052602060002090601f016020900481019282613b385760008555613b7e565b82601f10613b515782800160ff19823516178555613b7e565b82800160010185558215613b7e579182015b82811115613b7e578235825591602001919060010190613b63565b50613b8a929150613b8e565b5090565b5b80821115613b8a5760008155600101613b8f565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461167957600080fd5b600060208284031215613be357600080fd5b813561278481613ba3565b60005b83811015613c09578181015183820152602001613bf1565b838111156123ae5750506000910152565b60008151808452613c32816020860160208601613bee565b601f01601f19169290920160200192915050565b6020815260006127846020830184613c1a565b60008083601f840112613c6b57600080fd5b50813567ffffffffffffffff811115613c8357600080fd5b6020830191508360208260051b8501011115613c9e57600080fd5b9250929050565b600080600060408486031215613cba57600080fd5b833567ffffffffffffffff811115613cd157600080fd5b613cdd86828701613c59565b909790965060209590950135949350505050565b600060208284031215613d0357600080fd5b5035919050565b6001600160a01b038116811461167957600080fd5b60008060408385031215613d3257600080fd5b8235613d3d81613d0a565b946020939093013593505050565b60008060208385031215613d5e57600080fd5b823567ffffffffffffffff811115613d7557600080fd5b613d8185828601613c59565b90969095509350505050565b60008060008060408587031215613da357600080fd5b843567ffffffffffffffff80821115613dbb57600080fd5b613dc788838901613c59565b90965094506020870135915080821115613de057600080fd5b50613ded87828801613c59565b95989497509550505050565b600080600060608486031215613e0e57600080fd5b8335613e1981613d0a565b92506020840135613e2981613d0a565b929592945050506040919091013590565b600060208284031215613e4c57600080fd5b813561278481613d0a565b60008060208385031215613e6a57600080fd5b823567ffffffffffffffff80821115613e8257600080fd5b818501915085601f830112613e9657600080fd5b813581811115613ea557600080fd5b866020828501011115613eb757600080fd5b60209290920196919550909350505050565b6020808252825182820181905260009190848201906040850190845b81811015611d1b57835183529284019291840191600101613ee5565b60008060408385031215613f1457600080fd5b8235613f1f81613d0a565b915060208301358015158114613f3457600080fd5b809150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008060008060808587031215613f8457600080fd5b8435613f8f81613d0a565b93506020850135613f9f81613d0a565b925060408501359150606085013567ffffffffffffffff80821115613fc357600080fd5b818701915087601f830112613fd757600080fd5b813581811115613fe957613fe9613f3f565b604051601f8201601f19908116603f0116810190838211818310171561401157614011613f3f565b816040528281528a602084870101111561402a57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561406157600080fd5b823561406c81613d0a565b91506020830135613f3481613d0a565b600181811c9082168061409057607f821691505b602082108114156127d1577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000816000190483118215151615614113576141136140ca565b500290565b6000821982111561412b5761412b6140ca565b500190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000600019821415614173576141736140ca565b5060010190565b60008282101561418c5761418c6140ca565b500390565b600083516141a3818460208801613bee565b8351908301906141b7818360208801613bee565b01949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826141fe576141fe6141c0565b500490565b600082614212576142126141c0565b500690565b600081614226576142266140ca565b506000190190565b60006001600160a01b038087168352808616602084015250836040830152608060608301526142606080830184613c1a565b9695505050505050565b60006020828403121561427c57600080fd5b815161278481613ba356fea2646970667358221220fbcfa45d5ee5295d3d27d6fa82a9d6b3696b3679704fb40895727c47531d748564736f6c6343000809003368747470733a2f2f6574686572676f64646573736e66742e73332e616d617a6f6e6177732e636f6d2f6d657461646174612f

Deployed Bytecode

0x6080604052600436106103a25760003560e01c806376525a70116101e7578063b5d91a6a1161010d578063e1e62b02116100a0578063f2fde38b1161006f578063f2fde38b14610aa4578063f5eae39014610ac4578063f97b059e14610ada578063ffa8021a14610afa57600080fd5b8063e1e62b02146109fc578063e449f34114610a1c578063e72c977814610a3c578063e985e9c514610a5b57600080fd5b8063c87b56dd116100dc578063c87b56dd14610991578063cad3269d146109b1578063d5a849e9146109c6578063dc53fd92146109e657600080fd5b8063b5d91a6a1461091c578063b88d4fde14610949578063c51dde9914610969578063c6d6d7111461097e57600080fd5b806393ed8f6d11610185578063a22cb46511610154578063a22cb465146108a6578063a4146733146108c6578063a93e5a8f146108e6578063afbf34401461090657600080fd5b806393ed8f6d1461081a57806395d89b41146108415780639e447fc614610856578063a1a48df81461087657600080fd5b8063881b0a61116101c1578063881b0a61146107a25780638a467f78146107b55780638da5cb5b146107e257806390e2efbb1461080057600080fd5b806376525a70146107325780638462151c146107485780638753f77b1461077557600080fd5b8063372500ab116102cc57806355f804b31161026a5780636b8a21fc116102395780636b8a21fc146106d35780636c0360eb146106e857806370a08231146106fd578063715018a61461071d57600080fd5b806355f804b31461065e5780635d82cf6e1461067e5780636352211e1461069e578063640f5c52146106be57600080fd5b80633f909734116102a65780633f909734146105eb57806342842e0e1461060b57806342966c681461062b578063449a52f81461064b57600080fd5b8063372500ab146105a15780633b4c4b25146105b65780633ccfd60b146105d657600080fd5b806314419b92116103445780632b7e996e116103135780632b7e996e1461051e5780632c4e9fc61461053e5780633129d589146105545780633173315d1461057457600080fd5b806314419b92146104af57806318160ddd146104c55780631bea0e4b146104de57806323b872dd146104fe57600080fd5b80630780f9d8116103805780630780f9d814610422578063081812fc14610437578063095ea7b31461046f5780630fbf0a931461048f57600080fd5b806301ffc9a7146103a7578063047fc9aa146103dc57806306fdde0314610400575b600080fd5b3480156103b357600080fd5b506103c76103c2366004613bd1565b610b27565b60405190151581526020015b60405180910390f35b3480156103e857600080fd5b506103f2600b5481565b6040519081526020016103d3565b34801561040c57600080fd5b50610415610c0c565b6040516103d39190613c46565b610435610430366004613ca5565b610c9e565b005b34801561044357600080fd5b50610457610452366004613cf1565b610f95565b6040516001600160a01b0390911681526020016103d3565b34801561047b57600080fd5b5061043561048a366004613d1f565b610ff2565b34801561049b57600080fd5b506104356104aa366004613d4b565b6110b2565b3480156104bb57600080fd5b506103f2600e5481565b3480156104d157600080fd5b50600154600054036103f2565b3480156104ea57600080fd5b506104356104f9366004613d8d565b6110f9565b34801561050a57600080fd5b50610435610519366004613df9565b61124a565b34801561052a57600080fd5b50610435610539366004613cf1565b6112da565b34801561054a57600080fd5b506103f2600d5481565b34801561056057600080fd5b506015546103c79062010000900460ff1681565b34801561058057600080fd5b506103f261058f366004613e3a565b60126020526000908152604090205481565b3480156105ad57600080fd5b50610435611339565b3480156105c257600080fd5b506104356105d1366004613cf1565b6113e8565b3480156105e257600080fd5b50610435611447565b3480156105f757600080fd5b50610435610606366004613e3a565b6114d4565b34801561061757600080fd5b50610435610626366004613df9565b61156f565b34801561063757600080fd5b50610435610646366004613cf1565b61160f565b610435610659366004613d1f565b61167c565b34801561066a57600080fd5b50610435610679366004613e57565b61185a565b34801561068a57600080fd5b50610435610699366004613cf1565b6118c0565b3480156106aa57600080fd5b506104576106b9366004613cf1565b61191f565b3480156106ca57600080fd5b50610435611931565b3480156106df57600080fd5b506104356119c5565b3480156106f457600080fd5b50610415611a5a565b34801561070957600080fd5b506103f2610718366004613e3a565b611ae8565b34801561072957600080fd5b50610435611b50565b34801561073e57600080fd5b506103f260105481565b34801561075457600080fd5b50610768610763366004613e3a565b611bb6565b6040516103d39190613ec9565b34801561078157600080fd5b506103f2610790366004613e3a565b60186020526000908152604090205481565b6104356107b0366004613ca5565b611d27565b3480156107c157600080fd5b506103f26107d0366004613e3a565b60146020526000908152604090205481565b3480156107ee57600080fd5b506008546001600160a01b0316610457565b34801561080c57600080fd5b506015546103c79060ff1681565b34801561082657600080fd5b5060155461045790630100000090046001600160a01b031681565b34801561084d57600080fd5b50610415611fec565b34801561086257600080fd5b50610435610871366004613cf1565b611ffb565b34801561088257600080fd5b506103c7610891366004613cf1565b60176020526000908152604090205460ff1681565b3480156108b257600080fd5b506104356108c1366004613f01565b61205a565b3480156108d257600080fd5b506104356108e1366004613cf1565b612109565b3480156108f257600080fd5b50610435610901366004613cf1565b6122be565b34801561091257600080fd5b506103f260165481565b34801561092857600080fd5b506103f2610937366004613e3a565b60136020526000908152604090205481565b34801561095557600080fd5b50610435610964366004613f6e565b61231d565b34801561097557600080fd5b506104356123b4565b61043561098c366004613ca5565b612422565b34801561099d57600080fd5b506104156109ac366004613cf1565b6126ed565b3480156109bd57600080fd5b506103f261278b565b3480156109d257600080fd5b506103f26109e1366004613e3a565b6127d7565b3480156109f257600080fd5b506103f2600c5481565b348015610a0857600080fd5b50610435610a17366004613cf1565b612829565b348015610a2857600080fd5b50610435610a37366004613d4b565b612888565b348015610a4857600080fd5b506015546103c790610100900460ff1681565b348015610a6757600080fd5b506103c7610a7636600461404e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610ab057600080fd5b50610435610abf366004613e3a565b6128cf565b348015610ad057600080fd5b506103f2600f5481565b348015610ae657600080fd5b50610435610af5366004613cf1565b6129ae565b348015610b0657600080fd5b506103f2610b15366004613e3a565b60116020526000908152604090205481565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480610bba57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610c0657507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b606060028054610c1b9061407c565b80601f0160208091040260200160405190810160405280929190818152602001828054610c479061407c565b8015610c945780601f10610c6957610100808354040283529160200191610c94565b820191906000526020600020905b815481529060010190602001808311610c7757829003601f168201915b5050505050905090565b8282600e54610d29838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b16602082015285925060340190505b60405160208183030381529060405280519060200120612a0d565b610d7a5760405162461bcd60e51b815260206004820152601e60248201527f4164647265737320646f6573206e6f7420657869737420696e206c697374000060448201526064015b60405180910390fd5b600d548434610d8982846140f9565b1115610dd75760405162461bcd60e51b815260206004820152601b60248201527f496e73756666696369656e74204554482076616c75652073656e7400000000006044820152606401610d71565b85600b5481610de96001546000540390565b610df39190614118565b1115610e415760405162461bcd60e51b815260206004820152601660248201527f4e6f7420656e6f75676820737570706c79206c656674000000000000000000006044820152606401610d71565b60155460ff16610e935760405162461bcd60e51b815260206004820152601660248201527f574c204d696e74696e67206973206e6f74206f70656e000000000000000000006044820152606401610d71565b60026009541415610ee65760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610d71565b600260095533600090815260126020526040902054600490610f09908990614118565b1115610f575760405162461bcd60e51b815260206004820152601460248201527f4d61786564206f757420616c6c6f636174696f6e0000000000000000000000006044820152606401610d71565b610f613388612abc565b3360009081526012602052604081208054899290610f80908490614118565b90915550506001600955505050505050505050565b6000610fa082612ad6565b610fd6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610ffd8261191f565b9050806001600160a01b0316836001600160a01b0316141561104b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b0382161480159061106b57506110698133610a76565b155b156110a2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110ad838383612b1a565b505050565b6110bb33612b8e565b60005b818110156110ad576110e78383838181106110db576110db614130565b90506020020135612bff565b806110f18161415f565b9150506110be565b6008546001600160a01b031633146111535760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d71565b8281146111c85760405162461bcd60e51b815260206004820152603060248201527f61646472657373657320616e6420616c6c6f636174696f6e206d75737420626560448201527f207468652073616d65206c656e677468000000000000000000000000000000006064820152608401610d71565b60005b83811015611243578282828181106111e5576111e5614130565b905060200201356011600087878581811061120257611202614130565b90506020020160208101906112179190613e3a565b6001600160a01b031681526020810191909152604001600020558061123b8161415f565b9150506111cb565b5050505050565b60008181526017602052604090205460ff16156112cf5760405162461bcd60e51b815260206004820152602360248201527f596f752063616e206e6f74207472616e736665722061207374616b656420746f60448201527f6b656e00000000000000000000000000000000000000000000000000000000006064820152608401610d71565b6110ad838383612cf8565b6008546001600160a01b031633146113345760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d71565b600f55565b61134233612b8e565b60155433600081815260196020526040908190205490517f40c10f190000000000000000000000000000000000000000000000000000000081526004810192909252602482015263010000009091046001600160a01b0316906340c10f1990604401600060405180830381600087803b1580156113be57600080fd5b505af11580156113d2573d6000803e3d6000fd5b5050336000908152601960205260408120555050565b6008546001600160a01b031633146114425760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d71565b600b55565b6008546001600160a01b031633146114a15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d71565b6040514790339082156108fc029083906000818181858888f193505050501580156114d0573d6000803e3d6000fd5b5050565b6008546001600160a01b0316331461152e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d71565b601580546001600160a01b039092166301000000027fffffffffffffffffff0000000000000000000000000000000000000000ffffff909216919091179055565b60008181526017602052604090205460ff16156115f45760405162461bcd60e51b815260206004820152602360248201527f596f752063616e206e6f74207472616e736665722061207374616b656420746f60448201527f6b656e00000000000000000000000000000000000000000000000000000000006064820152608401610d71565b6110ad83838360405180602001604052806000815250612d03565b60008181526017602052604090205460ff161561166e5760405162461bcd60e51b815260206004820152601f60248201527f596f752063616e206e6f74206275726e2061207374616b656420746f6b656e006044820152606401610d71565b611679816001612d67565b50565b600c54813461168b82846140f9565b11156116d95760405162461bcd60e51b815260206004820152601b60248201527f496e73756666696369656e74204554482076616c75652073656e7400000000006044820152606401610d71565b82600b54816116eb6001546000540390565b6116f59190614118565b11156117435760405162461bcd60e51b815260206004820152601660248201527f4e6f7420656e6f75676820737570706c79206c656674000000000000000000006044820152606401610d71565b600260095414156117965760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610d71565b600260095560155462010000900460ff166117f35760405162461bcd60e51b815260206004820152601a60248201527f5075626c6963204d696e74696e67206973206e6f74206f70656e0000000000006044820152606401610d71565b600a8411156118445760405162461bcd60e51b815260206004820152601660248201527f4d617820313020706572207472616e73616374696f6e000000000000000000006044820152606401610d71565b61184e8585612abc565b50506001600955505050565b6008546001600160a01b031633146118b45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d71565b6110ad600a8383613b0a565b6008546001600160a01b0316331461191a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d71565b600c55565b600061192a82612ff8565b5192915050565b6008546001600160a01b0316331461198b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d71565b601580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff81166101009182900460ff1615909102179055565b6008546001600160a01b03163314611a1f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d71565b601580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff8116620100009182900460ff1615909102179055565b600a8054611a679061407c565b80601f0160208091040260200160405190810160405280929190818152602001828054611a939061407c565b8015611ae05780601f10611ab557610100808354040283529160200191611ae0565b820191906000526020600020905b815481529060010190602001808311611ac357829003601f168201915b505050505081565b60006001600160a01b038216611b2a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314611baa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d71565b611bb46000613181565b565b60606000806000611bc685611ae8565b905060008167ffffffffffffffff811115611be357611be3613f3f565b604051908082528060200260200182016040528015611c0c578160200160208202803683370190505b50604080516060810182526000808252602082018190529181018290529192505b838614611d1b57600081815260046020908152604091829020825160608101845290546001600160a01b038116825274010000000000000000000000000000000000000000810467ffffffffffffffff16928201929092527c010000000000000000000000000000000000000000000000000000000090910460ff16158015928201929092529250611cbe57611d13565b81516001600160a01b031615611cd357815194505b876001600160a01b0316856001600160a01b03161415611d135780838780600101985081518110611d0657611d06614130565b6020026020010181815250505b600101611c2d565b50909695505050505050565b8282600f54611d9b838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b1660208201528592506034019050610d0e565b611de75760405162461bcd60e51b815260206004820152601e60248201527f4164647265737320646f6573206e6f7420657869737420696e206c69737400006044820152606401610d71565b600d548434611df682846140f9565b1115611e445760405162461bcd60e51b815260206004820152601b60248201527f496e73756666696369656e74204554482076616c75652073656e7400000000006044820152606401610d71565b85600b5481611e566001546000540390565b611e609190614118565b1115611eae5760405162461bcd60e51b815260206004820152601660248201527f4e6f7420656e6f75676820737570706c79206c656674000000000000000000006044820152606401610d71565b60155460ff16611f005760405162461bcd60e51b815260206004820152601660248201527f574c204d696e74696e67206973206e6f74206f70656e000000000000000000006044820152606401610d71565b60026009541415611f535760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610d71565b6002600981905533600090815260136020526040902054611f75908990614118565b1115611fc35760405162461bcd60e51b815260206004820152601460248201527f4d61786564206f757420616c6c6f636174696f6e0000000000000000000000006044820152606401610d71565b611fcd3388612abc565b3360009081526013602052604081208054899290610f80908490614118565b606060038054610c1b9061407c565b6008546001600160a01b031633146120555760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d71565b601655565b6001600160a01b03821633141561209d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6002600954141561215c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610d71565b6002600955600b548190816121746001546000540390565b61217e9190614118565b11156121cc5760405162461bcd60e51b815260206004820152601660248201527f4e6f7420656e6f75676820737570706c79206c656674000000000000000000006044820152606401610d71565b60155460ff1661221e5760405162461bcd60e51b815260206004820152601660248201527f574c204d696e74696e67206973206e6f74206f70656e000000000000000000006044820152606401610d71565b3360009081526011602052604081205461223990849061417a565b10156122875760405162461bcd60e51b815260206004820152601460248201527f4d61786564206f757420616c6c6f636174696f6e0000000000000000000000006044820152606401610d71565b6122913383612abc565b33600090815260116020526040812080548492906122b090849061417a565b909155505060016009555050565b6008546001600160a01b031633146123185760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d71565b601055565b60008281526017602052604090205460ff16156123a25760405162461bcd60e51b815260206004820152602360248201527f596f752063616e206e6f74207472616e736665722061207374616b656420746f60448201527f6b656e00000000000000000000000000000000000000000000000000000000006064820152608401610d71565b6123ae84848484612d03565b50505050565b6008546001600160a01b0316331461240e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d71565b6015805460ff19811660ff90911615179055565b8282601054612496838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b1660208201528592506034019050610d0e565b6124e25760405162461bcd60e51b815260206004820152601e60248201527f4164647265737320646f6573206e6f7420657869737420696e206c69737400006044820152606401610d71565b600d5484346124f182846140f9565b111561253f5760405162461bcd60e51b815260206004820152601b60248201527f496e73756666696369656e74204554482076616c75652073656e7400000000006044820152606401610d71565b85600b54816125516001546000540390565b61255b9190614118565b11156125a95760405162461bcd60e51b815260206004820152601660248201527f4e6f7420656e6f75676820737570706c79206c656674000000000000000000006044820152606401610d71565b600260095414156125fc5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610d71565b6002600955601554610100900460ff166126585760405162461bcd60e51b815260206004820152601960248201527f4164657074204d696e74696e67206973206e6f74206f70656e000000000000006044820152606401610d71565b33600090815260146020526040902054600290612676908990614118565b11156126c45760405162461bcd60e51b815260206004820152601460248201527f4d61786564206f757420616c6c6f636174696f6e0000000000000000000000006044820152606401610d71565b6126ce3388612abc565b3360009081526014602052604081208054899290610f80908490614118565b60606126f882612ad6565b61272e576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006127386131eb565b90508051600014156127595760405180602001604052806000815250612784565b80612763846131fa565b604051602001612774929190614191565b6040516020818303038152906040525b9392505050565b600080805b6113888110156127d15760008181526017602052604090205460ff16156127bf57816127bb8161415f565b9250505b806127c98161415f565b915050612790565b50919050565b6001600160a01b0381166000908152601a602052604081205415612821576127fe82613334565b6001600160a01b038316600090815260196020526040902054610c069190614118565b506000919050565b6008546001600160a01b031633146128835760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d71565b600d55565b61289133612b8e565b60005b818110156110ad576128bd8383838181106128b1576128b1614130565b905060200201356133bc565b806128c78161415f565b915050612894565b6008546001600160a01b031633146129295760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d71565b6001600160a01b0381166129a55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610d71565b61167981613181565b6008546001600160a01b03163314612a085760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d71565b600e55565b600081815b8551811015612ab1576000868281518110612a2f57612a2f614130565b60200260200101519050808311612a71576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612a9e565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080612aa98161415f565b915050612a12565b509092149392505050565b6114d08282604051806020016040528060008152506134ae565b6000805482108015610c065750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000900460ff161590565b60008281526006602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6001600160a01b0381166000908152601a602052604090205415612be357612bb581613334565b6001600160a01b03821660009081526019602052604081208054909190612bdd908490614118565b90915550505b6001600160a01b03166000908152601a60205260409020429055565b33612c098261191f565b6001600160a01b031614612c5f5760405162461bcd60e51b815260206004820152601960248201527f546f6b656e206e6f74206f776e65642062792073656e646572000000000000006044820152606401610d71565b60008181526017602052604090205460ff1615612cbe5760405162461bcd60e51b815260206004820152601460248201527f546f6b656e20616c7265616479207374616b65640000000000000000000000006044820152606401610d71565b6000818152601760209081526040808320805460ff1916600117905533835260189091528120805491612cf08361415f565b919050555050565b6110ad83838361370e565b612d0e84848461370e565b6001600160a01b0383163b15158015612d305750612d2e848484846139b0565b155b156123ae576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000612d7283612ff8565b80519091508215612df1576000336001600160a01b0383161480612d9b5750612d9b8233610a76565b80612db6575033612dab86610f95565b6001600160a01b0316145b905080612def576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b612dfd60008583612b1a565b6001600160a01b038082166000818152600560209081526040808320805470010000000000000000000000000000000060001967ffffffffffffffff8084169190910181167fffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000841681178390048216600190810183169093027fffffffffffffffff0000000000000000ffffffffffffffff0000000000000000909416179290921783558b8652600490945282852080547fffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffff4290931674010000000000000000000000000000000000000000027fffffffff0000000000000000000000000000000000000000000000000000000090911690971796909617167c0100000000000000000000000000000000000000000000000000000000178555918901808452922080549194909116612fae576000548214612fae578054602087015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009091166001600160a01b038716171781555b5050604051869250600091506001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a4505060018054810190555050565b60408051606081018252600080825260208201819052918101919091528160005481101561314f57600081815260046020908152604091829020825160608101845290546001600160a01b038116825274010000000000000000000000000000000000000000810467ffffffffffffffff16928201929092527c010000000000000000000000000000000000000000000000000000000090910460ff1615159181018290529061314d5780516001600160a01b0316156130b9579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b03811680835274010000000000000000000000000000000000000000820467ffffffffffffffff16938301939093527c0100000000000000000000000000000000000000000000000000000000900460ff1615159281019290925215613148579392505050565b6130b9565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600880546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6060600a8054610c1b9061407c565b60608161323a57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115613264578061324e8161415f565b915061325d9050600a836141ef565b915061323e565b60008167ffffffffffffffff81111561327f5761327f613f3f565b6040519080825280601f01601f1916602001820160405280156132a9576020820181803683370190505b5090505b841561332c576132be60018361417a565b91506132cb600a86614203565b6132d6906030614118565b60f81b8183815181106132eb576132eb614130565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350613325600a866141ef565b94506132ad565b949350505050565b6001600160a01b038116600090815260186020526040812054816133596005836141ef565b6016546133669190614118565b6001600160a01b0385166000908152601a6020526040812054919250906201518090613392904261417a565b61339c91906141ef565b9050806133a983856140f9565b6133b391906140f9565b95945050505050565b336133c68261191f565b6001600160a01b03161461341c5760405162461bcd60e51b815260206004820152601960248201527f546f6b656e206e6f74206f776e65642062792073656e646572000000000000006044820152606401610d71565b60008181526017602052604090205460ff16151560011461347f5760405162461bcd60e51b815260206004820152601060248201527f546f6b656e206e6f74207374616b6564000000000000000000000000000000006044820152606401610d71565b6000818152601760209081526040808320805460ff1916905533835260189091528120805491612cf083614217565b6000546001600160a01b0384166134f1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82613528576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168b018116918217680100000000000000007fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000090941690921783900481168b01811690920217909155858452600490925290912080547fffffffff000000000000000000000000000000000000000000000000000000001683177401000000000000000000000000000000000000000042909316929092029190911790558190818501903b156136b9575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461366960008784806001019550876139b0565b61369f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061361e5782600054146136b457600080fd5b6136fe565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106136ba575b5060009081556123ae9085838684565b600061371982612ff8565b9050836001600160a01b031681600001516001600160a01b03161461376a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b038616148061378857506137888533610a76565b806137a357503361379884610f95565b6001600160a01b0316145b9050806137dc576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03841661381c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61382860008487612b1a565b6001600160a01b03858116600090815260056020908152604080832080547fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000080821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080547fffffffff00000000000000000000000000000000000000000000000000000000169094177401000000000000000000000000000000000000000042909216919091021783558701808452922080549193909116613967576000548214613967578054602086015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611243565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a02906139fe90339089908890889060040161422e565b602060405180830381600087803b158015613a1857600080fd5b505af1925050508015613a48575060408051601f3d908101601f19168201909252613a459181019061426a565b60015b613abc573d808015613a76576040519150601f19603f3d011682016040523d82523d6000602084013e613a7b565b606091505b508051613ab4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050949350505050565b828054613b169061407c565b90600052602060002090601f016020900481019282613b385760008555613b7e565b82601f10613b515782800160ff19823516178555613b7e565b82800160010185558215613b7e579182015b82811115613b7e578235825591602001919060010190613b63565b50613b8a929150613b8e565b5090565b5b80821115613b8a5760008155600101613b8f565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461167957600080fd5b600060208284031215613be357600080fd5b813561278481613ba3565b60005b83811015613c09578181015183820152602001613bf1565b838111156123ae5750506000910152565b60008151808452613c32816020860160208601613bee565b601f01601f19169290920160200192915050565b6020815260006127846020830184613c1a565b60008083601f840112613c6b57600080fd5b50813567ffffffffffffffff811115613c8357600080fd5b6020830191508360208260051b8501011115613c9e57600080fd5b9250929050565b600080600060408486031215613cba57600080fd5b833567ffffffffffffffff811115613cd157600080fd5b613cdd86828701613c59565b909790965060209590950135949350505050565b600060208284031215613d0357600080fd5b5035919050565b6001600160a01b038116811461167957600080fd5b60008060408385031215613d3257600080fd5b8235613d3d81613d0a565b946020939093013593505050565b60008060208385031215613d5e57600080fd5b823567ffffffffffffffff811115613d7557600080fd5b613d8185828601613c59565b90969095509350505050565b60008060008060408587031215613da357600080fd5b843567ffffffffffffffff80821115613dbb57600080fd5b613dc788838901613c59565b90965094506020870135915080821115613de057600080fd5b50613ded87828801613c59565b95989497509550505050565b600080600060608486031215613e0e57600080fd5b8335613e1981613d0a565b92506020840135613e2981613d0a565b929592945050506040919091013590565b600060208284031215613e4c57600080fd5b813561278481613d0a565b60008060208385031215613e6a57600080fd5b823567ffffffffffffffff80821115613e8257600080fd5b818501915085601f830112613e9657600080fd5b813581811115613ea557600080fd5b866020828501011115613eb757600080fd5b60209290920196919550909350505050565b6020808252825182820181905260009190848201906040850190845b81811015611d1b57835183529284019291840191600101613ee5565b60008060408385031215613f1457600080fd5b8235613f1f81613d0a565b915060208301358015158114613f3457600080fd5b809150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008060008060808587031215613f8457600080fd5b8435613f8f81613d0a565b93506020850135613f9f81613d0a565b925060408501359150606085013567ffffffffffffffff80821115613fc357600080fd5b818701915087601f830112613fd757600080fd5b813581811115613fe957613fe9613f3f565b604051601f8201601f19908116603f0116810190838211818310171561401157614011613f3f565b816040528281528a602084870101111561402a57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561406157600080fd5b823561406c81613d0a565b91506020830135613f3481613d0a565b600181811c9082168061409057607f821691505b602082108114156127d1577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000816000190483118215151615614113576141136140ca565b500290565b6000821982111561412b5761412b6140ca565b500190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000600019821415614173576141736140ca565b5060010190565b60008282101561418c5761418c6140ca565b500390565b600083516141a3818460208801613bee565b8351908301906141b7818360208801613bee565b01949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826141fe576141fe6141c0565b500490565b600082614212576142126141c0565b500690565b600081614226576142266140ca565b506000190190565b60006001600160a01b038087168352808616602084015250836040830152608060608301526142606080830184613c1a565b9695505050505050565b60006020828403121561427c57600080fd5b815161278481613ba356fea2646970667358221220fbcfa45d5ee5295d3d27d6fa82a9d6b3696b3679704fb40895727c47531d748564736f6c63430008090033

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.