ETH Price: $3,158.88 (+2.87%)
Gas: 1 Gwei

Token

400DRUMS (DRUMS)
 

Overview

Max Total Supply

368 DRUMS

Holders

161

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DRUMS
0x3dffcd2d95fae3f530cdb766c6b377600f67f62a
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Weaving digital spaces with physical places, tradition and culture. 400 Drums is a campaign dedicated to supporting Indigenous Elders, artists, language speakers and tour operators to harness new online platforms to monetize their skills while sharing their teachings and stories.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FourHundredDrums

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : 400drums.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;

import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

contract FourHundredDrums is ERC721A, Ownable {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;

    bytes32 public alMerkleRoot;
    bytes32 public devMerkleRoot;

    string public baseURI;
    string public revealURI;

    uint256 public mintPrice = 0.12 ether;
    uint256 public alMintPrice = 0.1 ether;
    uint256 public maxSupply;
    uint256 public reserveSupply;

    uint256 public maxPublicMint;
    uint256 public maxAlMint;

    bool public isPublicMint;
    bool public isAlMint;
    bool public isDevMint;
    bool public revealed = false;

    mapping(address => uint256) private _mintedWallets;
    mapping(address => uint256) private _alWallets;

    constructor() payable ERC721A("400DRUMS", "DRUMS") {
      maxSupply = 444;
      maxPublicMint = 5;
      maxAlMint = 3;
      reserveSupply = 5;
    }

    // Minting - public, allow list
    function publicMint(uint256 _quantity) external payable {
      require(isPublicMint, "Public minting is not live.");
      require(_mintedWallets[msg.sender] + _quantity <= maxPublicMint, "You reached max per wallet.");
      require(_quantity > 0, "You need to mint at least 1 NFT.");
      require(msg.value >= mintPrice * _quantity, "Insufficient ETH");
      require(maxSupply - reserveSupply >= _tokenIds.current() + _quantity, "Sold out or Exceeds max tokens");

      for (uint256 i = 0; i < _quantity; i++) {
        _mintedWallets[msg.sender]++;
        _tokenIds.current() + i;
      }
      _safeMint(msg.sender, _quantity);
    }

    function alMint(bytes32[] calldata _merkleProof, uint256 _quantity) external payable {
      require(isAlMint, "Allow list minting is not live.");
      require(MerkleProof.verify(_merkleProof, alMerkleRoot, keccak256(abi.encodePacked(msg.sender))), "Address is not on the allow list.");
      require(_alWallets[msg.sender] + _quantity <= maxAlMint, "You reached max per wallet.");
      require(_quantity > 0, "You need to mint at least 1 NFT.");
      require(msg.value >= alMintPrice * _quantity, "Insufficient ETH");
      require(maxSupply - reserveSupply >= _tokenIds.current() + _quantity, "Sold out or Exceeds max tokens");

      for (uint256 i = 0; i < _quantity; i++) {
        _alWallets[msg.sender]++;
        _tokenIds.increment();
      }
      _safeMint(msg.sender, _quantity);
    }

    function devMint(bytes32[] calldata _merkleProof, uint256 _quantity) external {
      require(isDevMint, "Dev mint is not live.");
      require(MerkleProof.verify(_merkleProof, devMerkleRoot, keccak256(abi.encodePacked(msg.sender))), "Address is not on the dev list.");
      require(maxSupply >= _tokenIds.current() + _quantity, "Sold out or Exceeds max tokens");

      for (uint256 i = 0; i < _quantity; i++) {
        _tokenIds.increment();
      }

      _safeMint(msg.sender, _quantity);
    }

    // onlyOwner -- set al merkle root
    function setAlMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
      alMerkleRoot = _merkleRoot;
    }

    // onlyOwner -- set dev merkle root
    function setDevMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
      devMerkleRoot = _merkleRoot;
    }

    // onlyOwner Token / Reveal URI
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
      require(_exists(tokenId), "ERC721A Metadata: URI query for nonexistent token");

      if (revealed == false) {
        return revealURI;
      }

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

    function setRevealURI(string memory _revealURI) external onlyOwner() {
      revealURI = _revealURI;
    }

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

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

    // onlyOwner Admin functions

    function reveal() external onlyOwner {
      revealed = !revealed;
    }

    function togglePublicMint() external onlyOwner {
      isPublicMint = !isPublicMint;
      isAlMint = false;
      isDevMint = false;
    }

    function toggleAlMint() external onlyOwner {
      isAlMint = !isAlMint;
      isPublicMint = false;
      isDevMint = false;
    }

    function toggleDevMint() external onlyOwner {
      isAlMint = false;
      isPublicMint = false;
      isDevMint = !isDevMint;
    }

    function disableMint() external onlyOwner {
      isPublicMint = false;
      isAlMint = false;
      isDevMint = false;
    }

    function setMaxSupply(uint256 _maxSupply) external onlyOwner {
      maxSupply = _maxSupply;
    }

    function setReserveSupply(uint256 _reserveSupply) external onlyOwner {
      reserveSupply = _reserveSupply;
    }

    function setMaxPublicMint(uint256 _maxPublicMint) external onlyOwner {
      maxPublicMint = _maxPublicMint;
    }

    function setMaxAlMint(uint256 _maxAlMint) external onlyOwner {
      maxAlMint = _maxAlMint;
    }

    function setMintPrice(uint256 _mintPrice) external onlyOwner {
      mintPrice = _mintPrice;
    }

    function setAlMintPrice(uint256 _alMintPrice) external onlyOwner {
      alMintPrice = _alMintPrice;
    }

    // onlyOwner - withdrawl

    function withdrawSplit() public onlyOwner {
      uint256 balance = address(this).balance;
      (bool wallet1, ) = payable(0x23A3f45bD7961B968970D6A69ebE1B5d6513b8Bf).call{value: balance * 20 / 100}("");
      (bool wallet2, ) = payable(0xe9D99C29B2872784b7d28f10ED37347374Fb084B).call{value: address(this).balance}("");
      require(wallet1, "Withdraw 1 failed");
      require(wallet2, "Withdraw 2 failed");
    }

    function withdraw() public onlyOwner {
      (bool wallet1, ) = payable(msg.sender).call{value: address(this).balance}("");
      require(wallet1, "Withdraw 1 failed");
    }
}

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

pragma solidity ^0.8.4;

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

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 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**128 - 1 (max value of uint128).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

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

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
    }

    // Compiler will pack the following 
    // _currentIndex and _burnCounter into a single 256bit word.
    
    // The tokenId of the next token to be minted.
    uint128 internal _currentIndex;

    // The number of tokens burned.
    uint128 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_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).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);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * 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 (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 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 (!_checkOnERC721Received(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 tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 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;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _currentIndex = uint128(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);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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**128.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // 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**128.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, 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 address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert TransferToNonERC721ReceiverImplementer();
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @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 14 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

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

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

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 10 of 14 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 11 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","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":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"alMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"alMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"alMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAlMint","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":"isDevMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAlMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setAlMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_alMintPrice","type":"uint256"}],"name":"setAlMintPrice","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":"setDevMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxAlMint","type":"uint256"}],"name":"setMaxAlMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPublicMint","type":"uint256"}],"name":"setMaxPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_reserveSupply","type":"uint256"}],"name":"setReserveSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_revealURI","type":"string"}],"name":"setRevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleAlMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleDevMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawSplit","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526701aa535d3d0c0000600d5567016345785d8a0000600e556000601360036101000a81548160ff0219169083151502179055506040518060400160405280600881526020017f3430304452554d530000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4452554d530000000000000000000000000000000000000000000000000000008152508160019080519060200190620000bb929190620001ec565b508060029080519060200190620000d4929190620001ec565b505050620000f7620000eb6200011e60201b60201c565b6200012660201b60201c565b6101bc600f8190555060056011819055506003601281905550600560108190555062000301565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001fa90620002cb565b90600052602060002090601f0160209004810192826200021e57600085556200026a565b82601f106200023957805160ff19168380011785556200026a565b828001600101855582156200026a579182015b82811115620002695782518255916020019190600101906200024c565b5b5090506200027991906200027d565b5090565b5b80821115620002985760008160009055506001016200027e565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002e457607f821691505b60208210811415620002fb57620002fa6200029c565b5b50919050565b6155c880620003116000396000f3fe60806040526004361061031a5760003560e01c80636352211e116101ab578063a22cb465116100f7578063c87b56dd11610095578063e985e9c51161006f578063e985e9c514610b10578063f2fde38b14610b4d578063f4a0a52814610b76578063fae9046c14610b9f5761031a565b8063c87b56dd14610a7d578063cabadaa014610aba578063d5abeb0114610ae55761031a565b8063a50e89ff116100d1578063a50e89ff146109e9578063a811a37b14610a00578063ac397f1214610a29578063b88d4fde14610a545761031a565b8063a22cb46514610980578063a475b5dd146109a9578063a491c48b146109c05761031a565b806370a08231116101645780638da5cb5b1161013e5780638da5cb5b146108d65780638de4fdfa1461090157806394985e941461092c57806395d89b41146109555761031a565b806370a0823114610859578063715018a61461089657806382f4828b146108ad5761031a565b80636352211e146107495780636817c76c146107865780636c0360eb146107b15780636d3ebe66146107dc5780636e041e99146108075780636f8b44b0146108305761031a565b80633057931f1161026a5780634047638d116102235780634f6ccce7116101fd5780634f6ccce71461068f578063505cee49146106cc57806351830227146106f557806355f804b3146107205761031a565b80634047638d1461062457806342842e0e1461063b578063449d0f10146106645761031a565b80633057931f1461056d578063318f15521461059857806334452f38146105af578063356cef7c146105c657806338e6025a146105e25780633ccfd60b1461060d5761031a565b80630dcd3b48116102d757806323b872dd116102b157806323b872dd146104c2578063270ab52c146104eb5780632db11544146105145780632f745c59146105305761031a565b80630dcd3b4814610443578063160fba561461046c57806318160ddd146104975761031a565b806301ffc9a71461031f57806303d41eb61461035c57806306ba4fae1461038757806306fdde03146103b2578063081812fc146103dd578063095ea7b31461041a575b600080fd5b34801561032b57600080fd5b50610346600480360381019061034191906142ea565b610bb6565b6040516103539190614332565b60405180910390f35b34801561036857600080fd5b50610371610d00565b60405161037e9190614366565b60405180910390f35b34801561039357600080fd5b5061039c610d06565b6040516103a9919061439a565b60405180910390f35b3480156103be57600080fd5b506103c7610d0c565b6040516103d4919061444e565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff919061449c565b610d9e565b604051610411919061450a565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c9190614551565b610e1a565b005b34801561044f57600080fd5b5061046a600480360381019061046591906145bd565b610f25565b005b34801561047857600080fd5b50610481610fab565b60405161048e919061444e565b60405180910390f35b3480156104a357600080fd5b506104ac611039565b6040516104b99190614366565b60405180910390f35b3480156104ce57600080fd5b506104e960048036038101906104e491906145ea565b61108e565b005b3480156104f757600080fd5b50610512600480360381019061050d919061449c565b61109e565b005b61052e6004803603810190610529919061449c565b611124565b005b34801561053c57600080fd5b5061055760048036038101906105529190614551565b611392565b6040516105649190614366565b60405180910390f35b34801561057957600080fd5b50610582611599565b60405161058f9190614332565b60405180910390f35b3480156105a457600080fd5b506105ad6115ac565b005b3480156105bb57600080fd5b506105c461168a565b005b6105e060048036038101906105db91906146a2565b611759565b005b3480156105ee57600080fd5b506105f7611a70565b604051610604919061439a565b60405180910390f35b34801561061957600080fd5b50610622611a76565b005b34801561063057600080fd5b50610639611ba1565b005b34801561064757600080fd5b50610662600480360381019061065d91906145ea565b611c7f565b005b34801561067057600080fd5b50610679611c9f565b6040516106869190614366565b60405180910390f35b34801561069b57600080fd5b506106b660048036038101906106b1919061449c565b611ca5565b6040516106c39190614366565b60405180910390f35b3480156106d857600080fd5b506106f360048036038101906106ee919061449c565b611e16565b005b34801561070157600080fd5b5061070a611e9c565b6040516107179190614332565b60405180910390f35b34801561072c57600080fd5b5061074760048036038101906107429190614832565b611eaf565b005b34801561075557600080fd5b50610770600480360381019061076b919061449c565b611f45565b60405161077d919061450a565b60405180910390f35b34801561079257600080fd5b5061079b611f5b565b6040516107a89190614366565b60405180910390f35b3480156107bd57600080fd5b506107c6611f61565b6040516107d3919061444e565b60405180910390f35b3480156107e857600080fd5b506107f1611fef565b6040516107fe9190614332565b60405180910390f35b34801561081357600080fd5b5061082e600480360381019061082991906146a2565b612002565b005b34801561083c57600080fd5b506108576004803603810190610852919061449c565b612195565b005b34801561086557600080fd5b50610880600480360381019061087b919061487b565b61221b565b60405161088d9190614366565b60405180910390f35b3480156108a257600080fd5b506108ab6122eb565b005b3480156108b957600080fd5b506108d460048036038101906108cf91906145bd565b612373565b005b3480156108e257600080fd5b506108eb6123f9565b6040516108f8919061450a565b60405180910390f35b34801561090d57600080fd5b50610916612423565b6040516109239190614332565b60405180910390f35b34801561093857600080fd5b50610953600480360381019061094e919061449c565b612436565b005b34801561096157600080fd5b5061096a6124bc565b604051610977919061444e565b60405180910390f35b34801561098c57600080fd5b506109a760048036038101906109a291906148d4565b61254e565b005b3480156109b557600080fd5b506109be6126c6565b005b3480156109cc57600080fd5b506109e760048036038101906109e2919061449c565b61276e565b005b3480156109f557600080fd5b506109fe6127f4565b005b348015610a0c57600080fd5b50610a276004803603810190610a229190614832565b612a12565b005b348015610a3557600080fd5b50610a3e612aa8565b604051610a4b9190614366565b60405180910390f35b348015610a6057600080fd5b50610a7b6004803603810190610a7691906149b5565b612aae565b005b348015610a8957600080fd5b50610aa46004803603810190610a9f919061449c565b612b01565b604051610ab1919061444e565b60405180910390f35b348015610ac657600080fd5b50610acf612c57565b604051610adc9190614366565b60405180910390f35b348015610af157600080fd5b50610afa612c5d565b604051610b079190614366565b60405180910390f35b348015610b1c57600080fd5b50610b376004803603810190610b329190614a38565b612c63565b604051610b449190614332565b60405180910390f35b348015610b5957600080fd5b50610b746004803603810190610b6f919061487b565b612cf7565b005b348015610b8257600080fd5b50610b9d6004803603810190610b98919061449c565b612def565b005b348015610bab57600080fd5b50610bb4612e75565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c8157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ce957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610cf95750610cf882612f53565b5b9050919050565b60105481565b600a5481565b606060018054610d1b90614aa7565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4790614aa7565b8015610d945780601f10610d6957610100808354040283529160200191610d94565b820191906000526020600020905b815481529060010190602001808311610d7757829003601f168201915b5050505050905090565b6000610da982612fbd565b610ddf576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e2582611f45565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e8d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610eac613025565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ede5750610edc81610ed7613025565b612c63565b155b15610f15576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f2083838361302d565b505050565b610f2d613025565b73ffffffffffffffffffffffffffffffffffffffff16610f4b6123f9565b73ffffffffffffffffffffffffffffffffffffffff1614610fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9890614b25565b60405180910390fd5b8060098190555050565b600c8054610fb890614aa7565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe490614aa7565b80156110315780601f1061100657610100808354040283529160200191611031565b820191906000526020600020905b81548152906001019060200180831161101457829003601f168201915b505050505081565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b6110998383836130df565b505050565b6110a6613025565b73ffffffffffffffffffffffffffffffffffffffff166110c46123f9565b73ffffffffffffffffffffffffffffffffffffffff161461111a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111190614b25565b60405180910390fd5b8060118190555050565b601360009054906101000a900460ff16611173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116a90614b91565b60405180910390fd5b60115481601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111c19190614be0565b1115611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f990614c82565b60405180910390fd5b60008111611245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123c90614cee565b60405180910390fd5b80600d546112539190614d0e565b341015611295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128c90614db4565b60405180910390fd5b806112a060086135fc565b6112aa9190614be0565b601054600f546112ba9190614dd4565b10156112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f290614e54565b60405180910390fd5b60005b8181101561138457601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061135690614e74565b91905055508061136660086135fc565b6113709190614be0565b50808061137c90614e74565b9150506112fe565b5061138f338261360a565b50565b600061139d8361221b565b82106113d5576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b8381101561158d576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151156114ec5750611580565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461152c57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561157e5786841415611575578195505050505050611593565b83806001019450505b505b808060010191505061140f565b50600080fd5b92915050565b601360009054906101000a900460ff1681565b6115b4613025565b73ffffffffffffffffffffffffffffffffffffffff166115d26123f9565b73ffffffffffffffffffffffffffffffffffffffff1614611628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161f90614b25565b60405180910390fd5b6000601360016101000a81548160ff0219169083151502179055506000601360006101000a81548160ff021916908315150217905550601360029054906101000a900460ff1615601360026101000a81548160ff021916908315150217905550565b611692613025565b73ffffffffffffffffffffffffffffffffffffffff166116b06123f9565b73ffffffffffffffffffffffffffffffffffffffff1614611706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fd90614b25565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506000601360016101000a81548160ff0219169083151502179055506000601360026101000a81548160ff021916908315150217905550565b601360019054906101000a900460ff166117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f90614f09565b60405180910390fd5b61181c838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600954336040516020016118019190614f71565b60405160208183030381529060405280519060200120613628565b61185b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185290614ffe565b60405180910390fd5b60125481601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118a99190614be0565b11156118ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e190614c82565b60405180910390fd5b6000811161192d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192490614cee565b60405180910390fd5b80600e5461193b9190614d0e565b34101561197d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197490614db4565b60405180910390fd5b8061198860086135fc565b6119929190614be0565b601054600f546119a29190614dd4565b10156119e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119da90614e54565b60405180910390fd5b60005b81811015611a6057601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611a3e90614e74565b9190505550611a4d600861363f565b8080611a5890614e74565b9150506119e6565b50611a6b338261360a565b505050565b60095481565b611a7e613025565b73ffffffffffffffffffffffffffffffffffffffff16611a9c6123f9565b73ffffffffffffffffffffffffffffffffffffffff1614611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae990614b25565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611b189061504f565b60006040518083038185875af1925050503d8060008114611b55576040519150601f19603f3d011682016040523d82523d6000602084013e611b5a565b606091505b5050905080611b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b95906150b0565b60405180910390fd5b50565b611ba9613025565b73ffffffffffffffffffffffffffffffffffffffff16611bc76123f9565b73ffffffffffffffffffffffffffffffffffffffff1614611c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1490614b25565b60405180910390fd5b601360009054906101000a900460ff1615601360006101000a81548160ff0219169083151502179055506000601360016101000a81548160ff0219169083151502179055506000601360026101000a81548160ff021916908315150217905550565b611c9a83838360405180602001604052806000815250612aae565b505050565b600e5481565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b82811015611dde576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611dd05785831415611dc75781945050505050611e11565b82806001019350505b508080600101915050611cdd565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b611e1e613025565b73ffffffffffffffffffffffffffffffffffffffff16611e3c6123f9565b73ffffffffffffffffffffffffffffffffffffffff1614611e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8990614b25565b60405180910390fd5b8060108190555050565b601360039054906101000a900460ff1681565b611eb7613025565b73ffffffffffffffffffffffffffffffffffffffff16611ed56123f9565b73ffffffffffffffffffffffffffffffffffffffff1614611f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2290614b25565b60405180910390fd5b80600b9080519060200190611f41929190614198565b5050565b6000611f5082613655565b600001519050919050565b600d5481565b600b8054611f6e90614aa7565b80601f0160208091040260200160405190810160405280929190818152602001828054611f9a90614aa7565b8015611fe75780601f10611fbc57610100808354040283529160200191611fe7565b820191906000526020600020905b815481529060010190602001808311611fca57829003601f168201915b505050505081565b601360029054906101000a900460ff1681565b601360029054906101000a900460ff16612051576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120489061511c565b60405180910390fd5b6120c5838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a54336040516020016120aa9190614f71565b60405160208183030381529060405280519060200120613628565b612104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fb90615188565b60405180910390fd5b8061210f60086135fc565b6121199190614be0565b600f54101561215d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215490614e54565b60405180910390fd5b60005b8181101561218557612172600861363f565b808061217d90614e74565b915050612160565b50612190338261360a565b505050565b61219d613025565b73ffffffffffffffffffffffffffffffffffffffff166121bb6123f9565b73ffffffffffffffffffffffffffffffffffffffff1614612211576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220890614b25565b60405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612283576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6122f3613025565b73ffffffffffffffffffffffffffffffffffffffff166123116123f9565b73ffffffffffffffffffffffffffffffffffffffff1614612367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235e90614b25565b60405180910390fd5b61237160006138fd565b565b61237b613025565b73ffffffffffffffffffffffffffffffffffffffff166123996123f9565b73ffffffffffffffffffffffffffffffffffffffff16146123ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e690614b25565b60405180910390fd5b80600a8190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601360019054906101000a900460ff1681565b61243e613025565b73ffffffffffffffffffffffffffffffffffffffff1661245c6123f9565b73ffffffffffffffffffffffffffffffffffffffff16146124b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a990614b25565b60405180910390fd5b8060128190555050565b6060600280546124cb90614aa7565b80601f01602080910402602001604051908101604052809291908181526020018280546124f790614aa7565b80156125445780601f1061251957610100808354040283529160200191612544565b820191906000526020600020905b81548152906001019060200180831161252757829003601f168201915b5050505050905090565b612556613025565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125bb576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600660006125c8613025565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612675613025565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516126ba9190614332565b60405180910390a35050565b6126ce613025565b73ffffffffffffffffffffffffffffffffffffffff166126ec6123f9565b73ffffffffffffffffffffffffffffffffffffffff1614612742576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273990614b25565b60405180910390fd5b601360039054906101000a900460ff1615601360036101000a81548160ff021916908315150217905550565b612776613025565b73ffffffffffffffffffffffffffffffffffffffff166127946123f9565b73ffffffffffffffffffffffffffffffffffffffff16146127ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e190614b25565b60405180910390fd5b80600e8190555050565b6127fc613025565b73ffffffffffffffffffffffffffffffffffffffff1661281a6123f9565b73ffffffffffffffffffffffffffffffffffffffff1614612870576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286790614b25565b60405180910390fd5b600047905060007323a3f45bd7961b968970d6a69ebe1b5d6513b8bf73ffffffffffffffffffffffffffffffffffffffff1660646014846128b19190614d0e565b6128bb91906151d7565b6040516128c79061504f565b60006040518083038185875af1925050503d8060008114612904576040519150601f19603f3d011682016040523d82523d6000602084013e612909565b606091505b50509050600073e9d99c29b2872784b7d28f10ed37347374fb084b73ffffffffffffffffffffffffffffffffffffffff16476040516129479061504f565b60006040518083038185875af1925050503d8060008114612984576040519150601f19603f3d011682016040523d82523d6000602084013e612989565b606091505b50509050816129cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c4906150b0565b60405180910390fd5b80612a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0490615254565b60405180910390fd5b505050565b612a1a613025565b73ffffffffffffffffffffffffffffffffffffffff16612a386123f9565b73ffffffffffffffffffffffffffffffffffffffff1614612a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8590614b25565b60405180910390fd5b80600c9080519060200190612aa4929190614198565b5050565b60125481565b612ab98484846130df565b612ac5848484846139c3565b612afb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060612b0c82612fbd565b612b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b42906152e6565b60405180910390fd5b60001515601360039054906101000a900460ff1615151415612bf957600c8054612b7490614aa7565b80601f0160208091040260200160405190810160405280929190818152602001828054612ba090614aa7565b8015612bed5780601f10612bc257610100808354040283529160200191612bed565b820191906000526020600020905b815481529060010190602001808311612bd057829003601f168201915b50505050509050612c52565b6000612c03613b42565b90506000815111612c235760405180602001604052806000815250612c4e565b80612c2d84613bd4565b604051602001612c3e92919061538e565b6040516020818303038152906040525b9150505b919050565b60115481565b600f5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612cff613025565b73ffffffffffffffffffffffffffffffffffffffff16612d1d6123f9565b73ffffffffffffffffffffffffffffffffffffffff1614612d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6a90614b25565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dda9061542f565b60405180910390fd5b612dec816138fd565b50565b612df7613025565b73ffffffffffffffffffffffffffffffffffffffff16612e156123f9565b73ffffffffffffffffffffffffffffffffffffffff1614612e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6290614b25565b60405180910390fd5b80600d8190555050565b612e7d613025565b73ffffffffffffffffffffffffffffffffffffffff16612e9b6123f9565b73ffffffffffffffffffffffffffffffffffffffff1614612ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee890614b25565b60405180910390fd5b601360019054906101000a900460ff1615601360016101000a81548160ff0219169083151502179055506000601360006101000a81548160ff0219169083151502179055506000601360026101000a81548160ff021916908315150217905550565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168210801561301e575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006130ea82613655565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16613111613025565b73ffffffffffffffffffffffffffffffffffffffff1614806131445750613143826000015161313e613025565b612c63565b5b806131895750613152613025565b73ffffffffffffffffffffffffffffffffffffffff1661317184610d9e565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806131c2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461322b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613292576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61329f8585856001613d35565b6132af600084846000015161302d565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561358c5760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681101561358b5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135f58585856001613d3b565b5050505050565b600081600001549050919050565b613624828260405180602001604052806000815250613d41565b5050565b6000826136358584613d53565b1490509392505050565b6001816000016000828254019250508190555050565b61365d61421e565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156138c6576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516138c457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146137a85780925050506138f8565b5b6001156138c357818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146138be5780925050506138f8565b6137a9565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006139e48473ffffffffffffffffffffffffffffffffffffffff16613dc8565b15613b35578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613a0d613025565b8786866040518563ffffffff1660e01b8152600401613a2f94939291906154a4565b6020604051808303816000875af1925050508015613a6b57506040513d601f19601f82011682018060405250810190613a689190615505565b60015b613ae5573d8060008114613a9b576040519150601f19603f3d011682016040523d82523d6000602084013e613aa0565b606091505b50600081511415613add576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613b3a565b600190505b949350505050565b6060600b8054613b5190614aa7565b80601f0160208091040260200160405190810160405280929190818152602001828054613b7d90614aa7565b8015613bca5780601f10613b9f57610100808354040283529160200191613bca565b820191906000526020600020905b815481529060010190602001808311613bad57829003601f168201915b5050505050905090565b60606000821415613c1c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613d30565b600082905060005b60008214613c4e578080613c3790614e74565b915050600a82613c4791906151d7565b9150613c24565b60008167ffffffffffffffff811115613c6a57613c69614707565b5b6040519080825280601f01601f191660200182016040528015613c9c5781602001600182028036833780820191505090505b5090505b60008514613d2957600182613cb59190614dd4565b9150600a85613cc49190615532565b6030613cd09190614be0565b60f81b818381518110613ce657613ce5615563565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613d2291906151d7565b9450613ca0565b8093505050505b919050565b50505050565b50505050565b613d4e8383836001613deb565b505050565b60008082905060005b8451811015613dbd576000858281518110613d7a57613d79615563565b5b60200260200101519050808311613d9c57613d958382614181565b9250613da9565b613da68184614181565b92505b508080613db590614e74565b915050613d5c565b508091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613e86576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613ec1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613ece6000868387613d35565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561413357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156140e757506140e560008884886139c3565b155b1561411e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8180600101925050808060010191505061406c565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055505061417a6000868387613d3b565b5050505050565b600082600052816020526040600020905092915050565b8280546141a490614aa7565b90600052602060002090601f0160209004810192826141c6576000855561420d565b82601f106141df57805160ff191683800117855561420d565b8280016001018555821561420d579182015b8281111561420c5782518255916020019190600101906141f1565b5b50905061421a9190614261565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561427a576000816000905550600101614262565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6142c781614292565b81146142d257600080fd5b50565b6000813590506142e4816142be565b92915050565b600060208284031215614300576142ff614288565b5b600061430e848285016142d5565b91505092915050565b60008115159050919050565b61432c81614317565b82525050565b60006020820190506143476000830184614323565b92915050565b6000819050919050565b6143608161434d565b82525050565b600060208201905061437b6000830184614357565b92915050565b6000819050919050565b61439481614381565b82525050565b60006020820190506143af600083018461438b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156143ef5780820151818401526020810190506143d4565b838111156143fe576000848401525b50505050565b6000601f19601f8301169050919050565b6000614420826143b5565b61442a81856143c0565b935061443a8185602086016143d1565b61444381614404565b840191505092915050565b600060208201905081810360008301526144688184614415565b905092915050565b6144798161434d565b811461448457600080fd5b50565b60008135905061449681614470565b92915050565b6000602082840312156144b2576144b1614288565b5b60006144c084828501614487565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006144f4826144c9565b9050919050565b614504816144e9565b82525050565b600060208201905061451f60008301846144fb565b92915050565b61452e816144e9565b811461453957600080fd5b50565b60008135905061454b81614525565b92915050565b6000806040838503121561456857614567614288565b5b60006145768582860161453c565b925050602061458785828601614487565b9150509250929050565b61459a81614381565b81146145a557600080fd5b50565b6000813590506145b781614591565b92915050565b6000602082840312156145d3576145d2614288565b5b60006145e1848285016145a8565b91505092915050565b60008060006060848603121561460357614602614288565b5b60006146118682870161453c565b93505060206146228682870161453c565b925050604061463386828701614487565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126146625761466161463d565b5b8235905067ffffffffffffffff81111561467f5761467e614642565b5b60208301915083602082028301111561469b5761469a614647565b5b9250929050565b6000806000604084860312156146bb576146ba614288565b5b600084013567ffffffffffffffff8111156146d9576146d861428d565b5b6146e58682870161464c565b935093505060206146f886828701614487565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61473f82614404565b810181811067ffffffffffffffff8211171561475e5761475d614707565b5b80604052505050565b600061477161427e565b905061477d8282614736565b919050565b600067ffffffffffffffff82111561479d5761479c614707565b5b6147a682614404565b9050602081019050919050565b82818337600083830152505050565b60006147d56147d084614782565b614767565b9050828152602081018484840111156147f1576147f0614702565b5b6147fc8482856147b3565b509392505050565b600082601f8301126148195761481861463d565b5b81356148298482602086016147c2565b91505092915050565b60006020828403121561484857614847614288565b5b600082013567ffffffffffffffff8111156148665761486561428d565b5b61487284828501614804565b91505092915050565b60006020828403121561489157614890614288565b5b600061489f8482850161453c565b91505092915050565b6148b181614317565b81146148bc57600080fd5b50565b6000813590506148ce816148a8565b92915050565b600080604083850312156148eb576148ea614288565b5b60006148f98582860161453c565b925050602061490a858286016148bf565b9150509250929050565b600067ffffffffffffffff82111561492f5761492e614707565b5b61493882614404565b9050602081019050919050565b600061495861495384614914565b614767565b90508281526020810184848401111561497457614973614702565b5b61497f8482856147b3565b509392505050565b600082601f83011261499c5761499b61463d565b5b81356149ac848260208601614945565b91505092915050565b600080600080608085870312156149cf576149ce614288565b5b60006149dd8782880161453c565b94505060206149ee8782880161453c565b93505060406149ff87828801614487565b925050606085013567ffffffffffffffff811115614a2057614a1f61428d565b5b614a2c87828801614987565b91505092959194509250565b60008060408385031215614a4f57614a4e614288565b5b6000614a5d8582860161453c565b9250506020614a6e8582860161453c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614abf57607f821691505b60208210811415614ad357614ad2614a78565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614b0f6020836143c0565b9150614b1a82614ad9565b602082019050919050565b60006020820190508181036000830152614b3e81614b02565b9050919050565b7f5075626c6963206d696e74696e67206973206e6f74206c6976652e0000000000600082015250565b6000614b7b601b836143c0565b9150614b8682614b45565b602082019050919050565b60006020820190508181036000830152614baa81614b6e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614beb8261434d565b9150614bf68361434d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c2b57614c2a614bb1565b5b828201905092915050565b7f596f752072656163686564206d6178207065722077616c6c65742e0000000000600082015250565b6000614c6c601b836143c0565b9150614c7782614c36565b602082019050919050565b60006020820190508181036000830152614c9b81614c5f565b9050919050565b7f596f75206e65656420746f206d696e74206174206c656173742031204e46542e600082015250565b6000614cd86020836143c0565b9150614ce382614ca2565b602082019050919050565b60006020820190508181036000830152614d0781614ccb565b9050919050565b6000614d198261434d565b9150614d248361434d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614d5d57614d5c614bb1565b5b828202905092915050565b7f496e73756666696369656e742045544800000000000000000000000000000000600082015250565b6000614d9e6010836143c0565b9150614da982614d68565b602082019050919050565b60006020820190508181036000830152614dcd81614d91565b9050919050565b6000614ddf8261434d565b9150614dea8361434d565b925082821015614dfd57614dfc614bb1565b5b828203905092915050565b7f536f6c64206f7574206f722045786365656473206d617820746f6b656e730000600082015250565b6000614e3e601e836143c0565b9150614e4982614e08565b602082019050919050565b60006020820190508181036000830152614e6d81614e31565b9050919050565b6000614e7f8261434d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614eb257614eb1614bb1565b5b600182019050919050565b7f416c6c6f77206c697374206d696e74696e67206973206e6f74206c6976652e00600082015250565b6000614ef3601f836143c0565b9150614efe82614ebd565b602082019050919050565b60006020820190508181036000830152614f2281614ee6565b9050919050565b60008160601b9050919050565b6000614f4182614f29565b9050919050565b6000614f5382614f36565b9050919050565b614f6b614f66826144e9565b614f48565b82525050565b6000614f7d8284614f5a565b60148201915081905092915050565b7f41646472657373206973206e6f74206f6e2074686520616c6c6f77206c69737460008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b6000614fe86021836143c0565b9150614ff382614f8c565b604082019050919050565b6000602082019050818103600083015261501781614fdb565b9050919050565b600081905092915050565b50565b600061503960008361501e565b915061504482615029565b600082019050919050565b600061505a8261502c565b9150819050919050565b7f57697468647261772031206661696c6564000000000000000000000000000000600082015250565b600061509a6011836143c0565b91506150a582615064565b602082019050919050565b600060208201905081810360008301526150c98161508d565b9050919050565b7f446576206d696e74206973206e6f74206c6976652e0000000000000000000000600082015250565b60006151066015836143c0565b9150615111826150d0565b602082019050919050565b60006020820190508181036000830152615135816150f9565b9050919050565b7f41646472657373206973206e6f74206f6e2074686520646576206c6973742e00600082015250565b6000615172601f836143c0565b915061517d8261513c565b602082019050919050565b600060208201905081810360008301526151a181615165565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006151e28261434d565b91506151ed8361434d565b9250826151fd576151fc6151a8565b5b828204905092915050565b7f57697468647261772032206661696c6564000000000000000000000000000000600082015250565b600061523e6011836143c0565b915061524982615208565b602082019050919050565b6000602082019050818103600083015261526d81615231565b9050919050565b7f45524337323141204d657461646174613a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b60006152d06031836143c0565b91506152db82615274565b604082019050919050565b600060208201905081810360008301526152ff816152c3565b9050919050565b600081905092915050565b600061531c826143b5565b6153268185615306565b93506153368185602086016143d1565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000615378600583615306565b915061538382615342565b600582019050919050565b600061539a8285615311565b91506153a68284615311565b91506153b18261536b565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006154196026836143c0565b9150615424826153bd565b604082019050919050565b600060208201905081810360008301526154488161540c565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006154768261544f565b615480818561545a565b93506154908185602086016143d1565b61549981614404565b840191505092915050565b60006080820190506154b960008301876144fb565b6154c660208301866144fb565b6154d36040830185614357565b81810360608301526154e5818461546b565b905095945050505050565b6000815190506154ff816142be565b92915050565b60006020828403121561551b5761551a614288565b5b6000615529848285016154f0565b91505092915050565b600061553d8261434d565b91506155488361434d565b925082615558576155576151a8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212204844cf8288ad614669fd8f3460abbde173c7aa80608520177447967f0959978c64736f6c634300080a0033

Deployed Bytecode

0x60806040526004361061031a5760003560e01c80636352211e116101ab578063a22cb465116100f7578063c87b56dd11610095578063e985e9c51161006f578063e985e9c514610b10578063f2fde38b14610b4d578063f4a0a52814610b76578063fae9046c14610b9f5761031a565b8063c87b56dd14610a7d578063cabadaa014610aba578063d5abeb0114610ae55761031a565b8063a50e89ff116100d1578063a50e89ff146109e9578063a811a37b14610a00578063ac397f1214610a29578063b88d4fde14610a545761031a565b8063a22cb46514610980578063a475b5dd146109a9578063a491c48b146109c05761031a565b806370a08231116101645780638da5cb5b1161013e5780638da5cb5b146108d65780638de4fdfa1461090157806394985e941461092c57806395d89b41146109555761031a565b806370a0823114610859578063715018a61461089657806382f4828b146108ad5761031a565b80636352211e146107495780636817c76c146107865780636c0360eb146107b15780636d3ebe66146107dc5780636e041e99146108075780636f8b44b0146108305761031a565b80633057931f1161026a5780634047638d116102235780634f6ccce7116101fd5780634f6ccce71461068f578063505cee49146106cc57806351830227146106f557806355f804b3146107205761031a565b80634047638d1461062457806342842e0e1461063b578063449d0f10146106645761031a565b80633057931f1461056d578063318f15521461059857806334452f38146105af578063356cef7c146105c657806338e6025a146105e25780633ccfd60b1461060d5761031a565b80630dcd3b48116102d757806323b872dd116102b157806323b872dd146104c2578063270ab52c146104eb5780632db11544146105145780632f745c59146105305761031a565b80630dcd3b4814610443578063160fba561461046c57806318160ddd146104975761031a565b806301ffc9a71461031f57806303d41eb61461035c57806306ba4fae1461038757806306fdde03146103b2578063081812fc146103dd578063095ea7b31461041a575b600080fd5b34801561032b57600080fd5b50610346600480360381019061034191906142ea565b610bb6565b6040516103539190614332565b60405180910390f35b34801561036857600080fd5b50610371610d00565b60405161037e9190614366565b60405180910390f35b34801561039357600080fd5b5061039c610d06565b6040516103a9919061439a565b60405180910390f35b3480156103be57600080fd5b506103c7610d0c565b6040516103d4919061444e565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff919061449c565b610d9e565b604051610411919061450a565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c9190614551565b610e1a565b005b34801561044f57600080fd5b5061046a600480360381019061046591906145bd565b610f25565b005b34801561047857600080fd5b50610481610fab565b60405161048e919061444e565b60405180910390f35b3480156104a357600080fd5b506104ac611039565b6040516104b99190614366565b60405180910390f35b3480156104ce57600080fd5b506104e960048036038101906104e491906145ea565b61108e565b005b3480156104f757600080fd5b50610512600480360381019061050d919061449c565b61109e565b005b61052e6004803603810190610529919061449c565b611124565b005b34801561053c57600080fd5b5061055760048036038101906105529190614551565b611392565b6040516105649190614366565b60405180910390f35b34801561057957600080fd5b50610582611599565b60405161058f9190614332565b60405180910390f35b3480156105a457600080fd5b506105ad6115ac565b005b3480156105bb57600080fd5b506105c461168a565b005b6105e060048036038101906105db91906146a2565b611759565b005b3480156105ee57600080fd5b506105f7611a70565b604051610604919061439a565b60405180910390f35b34801561061957600080fd5b50610622611a76565b005b34801561063057600080fd5b50610639611ba1565b005b34801561064757600080fd5b50610662600480360381019061065d91906145ea565b611c7f565b005b34801561067057600080fd5b50610679611c9f565b6040516106869190614366565b60405180910390f35b34801561069b57600080fd5b506106b660048036038101906106b1919061449c565b611ca5565b6040516106c39190614366565b60405180910390f35b3480156106d857600080fd5b506106f360048036038101906106ee919061449c565b611e16565b005b34801561070157600080fd5b5061070a611e9c565b6040516107179190614332565b60405180910390f35b34801561072c57600080fd5b5061074760048036038101906107429190614832565b611eaf565b005b34801561075557600080fd5b50610770600480360381019061076b919061449c565b611f45565b60405161077d919061450a565b60405180910390f35b34801561079257600080fd5b5061079b611f5b565b6040516107a89190614366565b60405180910390f35b3480156107bd57600080fd5b506107c6611f61565b6040516107d3919061444e565b60405180910390f35b3480156107e857600080fd5b506107f1611fef565b6040516107fe9190614332565b60405180910390f35b34801561081357600080fd5b5061082e600480360381019061082991906146a2565b612002565b005b34801561083c57600080fd5b506108576004803603810190610852919061449c565b612195565b005b34801561086557600080fd5b50610880600480360381019061087b919061487b565b61221b565b60405161088d9190614366565b60405180910390f35b3480156108a257600080fd5b506108ab6122eb565b005b3480156108b957600080fd5b506108d460048036038101906108cf91906145bd565b612373565b005b3480156108e257600080fd5b506108eb6123f9565b6040516108f8919061450a565b60405180910390f35b34801561090d57600080fd5b50610916612423565b6040516109239190614332565b60405180910390f35b34801561093857600080fd5b50610953600480360381019061094e919061449c565b612436565b005b34801561096157600080fd5b5061096a6124bc565b604051610977919061444e565b60405180910390f35b34801561098c57600080fd5b506109a760048036038101906109a291906148d4565b61254e565b005b3480156109b557600080fd5b506109be6126c6565b005b3480156109cc57600080fd5b506109e760048036038101906109e2919061449c565b61276e565b005b3480156109f557600080fd5b506109fe6127f4565b005b348015610a0c57600080fd5b50610a276004803603810190610a229190614832565b612a12565b005b348015610a3557600080fd5b50610a3e612aa8565b604051610a4b9190614366565b60405180910390f35b348015610a6057600080fd5b50610a7b6004803603810190610a7691906149b5565b612aae565b005b348015610a8957600080fd5b50610aa46004803603810190610a9f919061449c565b612b01565b604051610ab1919061444e565b60405180910390f35b348015610ac657600080fd5b50610acf612c57565b604051610adc9190614366565b60405180910390f35b348015610af157600080fd5b50610afa612c5d565b604051610b079190614366565b60405180910390f35b348015610b1c57600080fd5b50610b376004803603810190610b329190614a38565b612c63565b604051610b449190614332565b60405180910390f35b348015610b5957600080fd5b50610b746004803603810190610b6f919061487b565b612cf7565b005b348015610b8257600080fd5b50610b9d6004803603810190610b98919061449c565b612def565b005b348015610bab57600080fd5b50610bb4612e75565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c8157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ce957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610cf95750610cf882612f53565b5b9050919050565b60105481565b600a5481565b606060018054610d1b90614aa7565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4790614aa7565b8015610d945780601f10610d6957610100808354040283529160200191610d94565b820191906000526020600020905b815481529060010190602001808311610d7757829003601f168201915b5050505050905090565b6000610da982612fbd565b610ddf576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e2582611f45565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e8d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610eac613025565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ede5750610edc81610ed7613025565b612c63565b155b15610f15576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f2083838361302d565b505050565b610f2d613025565b73ffffffffffffffffffffffffffffffffffffffff16610f4b6123f9565b73ffffffffffffffffffffffffffffffffffffffff1614610fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9890614b25565b60405180910390fd5b8060098190555050565b600c8054610fb890614aa7565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe490614aa7565b80156110315780601f1061100657610100808354040283529160200191611031565b820191906000526020600020905b81548152906001019060200180831161101457829003601f168201915b505050505081565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b6110998383836130df565b505050565b6110a6613025565b73ffffffffffffffffffffffffffffffffffffffff166110c46123f9565b73ffffffffffffffffffffffffffffffffffffffff161461111a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111190614b25565b60405180910390fd5b8060118190555050565b601360009054906101000a900460ff16611173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116a90614b91565b60405180910390fd5b60115481601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111c19190614be0565b1115611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f990614c82565b60405180910390fd5b60008111611245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123c90614cee565b60405180910390fd5b80600d546112539190614d0e565b341015611295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128c90614db4565b60405180910390fd5b806112a060086135fc565b6112aa9190614be0565b601054600f546112ba9190614dd4565b10156112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f290614e54565b60405180910390fd5b60005b8181101561138457601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061135690614e74565b91905055508061136660086135fc565b6113709190614be0565b50808061137c90614e74565b9150506112fe565b5061138f338261360a565b50565b600061139d8361221b565b82106113d5576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b8381101561158d576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151156114ec5750611580565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461152c57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561157e5786841415611575578195505050505050611593565b83806001019450505b505b808060010191505061140f565b50600080fd5b92915050565b601360009054906101000a900460ff1681565b6115b4613025565b73ffffffffffffffffffffffffffffffffffffffff166115d26123f9565b73ffffffffffffffffffffffffffffffffffffffff1614611628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161f90614b25565b60405180910390fd5b6000601360016101000a81548160ff0219169083151502179055506000601360006101000a81548160ff021916908315150217905550601360029054906101000a900460ff1615601360026101000a81548160ff021916908315150217905550565b611692613025565b73ffffffffffffffffffffffffffffffffffffffff166116b06123f9565b73ffffffffffffffffffffffffffffffffffffffff1614611706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fd90614b25565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506000601360016101000a81548160ff0219169083151502179055506000601360026101000a81548160ff021916908315150217905550565b601360019054906101000a900460ff166117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f90614f09565b60405180910390fd5b61181c838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600954336040516020016118019190614f71565b60405160208183030381529060405280519060200120613628565b61185b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185290614ffe565b60405180910390fd5b60125481601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118a99190614be0565b11156118ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e190614c82565b60405180910390fd5b6000811161192d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192490614cee565b60405180910390fd5b80600e5461193b9190614d0e565b34101561197d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197490614db4565b60405180910390fd5b8061198860086135fc565b6119929190614be0565b601054600f546119a29190614dd4565b10156119e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119da90614e54565b60405180910390fd5b60005b81811015611a6057601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611a3e90614e74565b9190505550611a4d600861363f565b8080611a5890614e74565b9150506119e6565b50611a6b338261360a565b505050565b60095481565b611a7e613025565b73ffffffffffffffffffffffffffffffffffffffff16611a9c6123f9565b73ffffffffffffffffffffffffffffffffffffffff1614611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae990614b25565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611b189061504f565b60006040518083038185875af1925050503d8060008114611b55576040519150601f19603f3d011682016040523d82523d6000602084013e611b5a565b606091505b5050905080611b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b95906150b0565b60405180910390fd5b50565b611ba9613025565b73ffffffffffffffffffffffffffffffffffffffff16611bc76123f9565b73ffffffffffffffffffffffffffffffffffffffff1614611c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1490614b25565b60405180910390fd5b601360009054906101000a900460ff1615601360006101000a81548160ff0219169083151502179055506000601360016101000a81548160ff0219169083151502179055506000601360026101000a81548160ff021916908315150217905550565b611c9a83838360405180602001604052806000815250612aae565b505050565b600e5481565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b82811015611dde576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611dd05785831415611dc75781945050505050611e11565b82806001019350505b508080600101915050611cdd565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b611e1e613025565b73ffffffffffffffffffffffffffffffffffffffff16611e3c6123f9565b73ffffffffffffffffffffffffffffffffffffffff1614611e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8990614b25565b60405180910390fd5b8060108190555050565b601360039054906101000a900460ff1681565b611eb7613025565b73ffffffffffffffffffffffffffffffffffffffff16611ed56123f9565b73ffffffffffffffffffffffffffffffffffffffff1614611f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2290614b25565b60405180910390fd5b80600b9080519060200190611f41929190614198565b5050565b6000611f5082613655565b600001519050919050565b600d5481565b600b8054611f6e90614aa7565b80601f0160208091040260200160405190810160405280929190818152602001828054611f9a90614aa7565b8015611fe75780601f10611fbc57610100808354040283529160200191611fe7565b820191906000526020600020905b815481529060010190602001808311611fca57829003601f168201915b505050505081565b601360029054906101000a900460ff1681565b601360029054906101000a900460ff16612051576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120489061511c565b60405180910390fd5b6120c5838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a54336040516020016120aa9190614f71565b60405160208183030381529060405280519060200120613628565b612104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fb90615188565b60405180910390fd5b8061210f60086135fc565b6121199190614be0565b600f54101561215d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215490614e54565b60405180910390fd5b60005b8181101561218557612172600861363f565b808061217d90614e74565b915050612160565b50612190338261360a565b505050565b61219d613025565b73ffffffffffffffffffffffffffffffffffffffff166121bb6123f9565b73ffffffffffffffffffffffffffffffffffffffff1614612211576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220890614b25565b60405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612283576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6122f3613025565b73ffffffffffffffffffffffffffffffffffffffff166123116123f9565b73ffffffffffffffffffffffffffffffffffffffff1614612367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235e90614b25565b60405180910390fd5b61237160006138fd565b565b61237b613025565b73ffffffffffffffffffffffffffffffffffffffff166123996123f9565b73ffffffffffffffffffffffffffffffffffffffff16146123ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e690614b25565b60405180910390fd5b80600a8190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601360019054906101000a900460ff1681565b61243e613025565b73ffffffffffffffffffffffffffffffffffffffff1661245c6123f9565b73ffffffffffffffffffffffffffffffffffffffff16146124b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a990614b25565b60405180910390fd5b8060128190555050565b6060600280546124cb90614aa7565b80601f01602080910402602001604051908101604052809291908181526020018280546124f790614aa7565b80156125445780601f1061251957610100808354040283529160200191612544565b820191906000526020600020905b81548152906001019060200180831161252757829003601f168201915b5050505050905090565b612556613025565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125bb576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600660006125c8613025565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612675613025565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516126ba9190614332565b60405180910390a35050565b6126ce613025565b73ffffffffffffffffffffffffffffffffffffffff166126ec6123f9565b73ffffffffffffffffffffffffffffffffffffffff1614612742576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273990614b25565b60405180910390fd5b601360039054906101000a900460ff1615601360036101000a81548160ff021916908315150217905550565b612776613025565b73ffffffffffffffffffffffffffffffffffffffff166127946123f9565b73ffffffffffffffffffffffffffffffffffffffff16146127ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e190614b25565b60405180910390fd5b80600e8190555050565b6127fc613025565b73ffffffffffffffffffffffffffffffffffffffff1661281a6123f9565b73ffffffffffffffffffffffffffffffffffffffff1614612870576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286790614b25565b60405180910390fd5b600047905060007323a3f45bd7961b968970d6a69ebe1b5d6513b8bf73ffffffffffffffffffffffffffffffffffffffff1660646014846128b19190614d0e565b6128bb91906151d7565b6040516128c79061504f565b60006040518083038185875af1925050503d8060008114612904576040519150601f19603f3d011682016040523d82523d6000602084013e612909565b606091505b50509050600073e9d99c29b2872784b7d28f10ed37347374fb084b73ffffffffffffffffffffffffffffffffffffffff16476040516129479061504f565b60006040518083038185875af1925050503d8060008114612984576040519150601f19603f3d011682016040523d82523d6000602084013e612989565b606091505b50509050816129cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c4906150b0565b60405180910390fd5b80612a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0490615254565b60405180910390fd5b505050565b612a1a613025565b73ffffffffffffffffffffffffffffffffffffffff16612a386123f9565b73ffffffffffffffffffffffffffffffffffffffff1614612a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8590614b25565b60405180910390fd5b80600c9080519060200190612aa4929190614198565b5050565b60125481565b612ab98484846130df565b612ac5848484846139c3565b612afb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060612b0c82612fbd565b612b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b42906152e6565b60405180910390fd5b60001515601360039054906101000a900460ff1615151415612bf957600c8054612b7490614aa7565b80601f0160208091040260200160405190810160405280929190818152602001828054612ba090614aa7565b8015612bed5780601f10612bc257610100808354040283529160200191612bed565b820191906000526020600020905b815481529060010190602001808311612bd057829003601f168201915b50505050509050612c52565b6000612c03613b42565b90506000815111612c235760405180602001604052806000815250612c4e565b80612c2d84613bd4565b604051602001612c3e92919061538e565b6040516020818303038152906040525b9150505b919050565b60115481565b600f5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612cff613025565b73ffffffffffffffffffffffffffffffffffffffff16612d1d6123f9565b73ffffffffffffffffffffffffffffffffffffffff1614612d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6a90614b25565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dda9061542f565b60405180910390fd5b612dec816138fd565b50565b612df7613025565b73ffffffffffffffffffffffffffffffffffffffff16612e156123f9565b73ffffffffffffffffffffffffffffffffffffffff1614612e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6290614b25565b60405180910390fd5b80600d8190555050565b612e7d613025565b73ffffffffffffffffffffffffffffffffffffffff16612e9b6123f9565b73ffffffffffffffffffffffffffffffffffffffff1614612ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee890614b25565b60405180910390fd5b601360019054906101000a900460ff1615601360016101000a81548160ff0219169083151502179055506000601360006101000a81548160ff0219169083151502179055506000601360026101000a81548160ff021916908315150217905550565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168210801561301e575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006130ea82613655565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16613111613025565b73ffffffffffffffffffffffffffffffffffffffff1614806131445750613143826000015161313e613025565b612c63565b5b806131895750613152613025565b73ffffffffffffffffffffffffffffffffffffffff1661317184610d9e565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806131c2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461322b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613292576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61329f8585856001613d35565b6132af600084846000015161302d565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561358c5760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681101561358b5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135f58585856001613d3b565b5050505050565b600081600001549050919050565b613624828260405180602001604052806000815250613d41565b5050565b6000826136358584613d53565b1490509392505050565b6001816000016000828254019250508190555050565b61365d61421e565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156138c6576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516138c457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146137a85780925050506138f8565b5b6001156138c357818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146138be5780925050506138f8565b6137a9565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006139e48473ffffffffffffffffffffffffffffffffffffffff16613dc8565b15613b35578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613a0d613025565b8786866040518563ffffffff1660e01b8152600401613a2f94939291906154a4565b6020604051808303816000875af1925050508015613a6b57506040513d601f19601f82011682018060405250810190613a689190615505565b60015b613ae5573d8060008114613a9b576040519150601f19603f3d011682016040523d82523d6000602084013e613aa0565b606091505b50600081511415613add576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613b3a565b600190505b949350505050565b6060600b8054613b5190614aa7565b80601f0160208091040260200160405190810160405280929190818152602001828054613b7d90614aa7565b8015613bca5780601f10613b9f57610100808354040283529160200191613bca565b820191906000526020600020905b815481529060010190602001808311613bad57829003601f168201915b5050505050905090565b60606000821415613c1c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613d30565b600082905060005b60008214613c4e578080613c3790614e74565b915050600a82613c4791906151d7565b9150613c24565b60008167ffffffffffffffff811115613c6a57613c69614707565b5b6040519080825280601f01601f191660200182016040528015613c9c5781602001600182028036833780820191505090505b5090505b60008514613d2957600182613cb59190614dd4565b9150600a85613cc49190615532565b6030613cd09190614be0565b60f81b818381518110613ce657613ce5615563565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613d2291906151d7565b9450613ca0565b8093505050505b919050565b50505050565b50505050565b613d4e8383836001613deb565b505050565b60008082905060005b8451811015613dbd576000858281518110613d7a57613d79615563565b5b60200260200101519050808311613d9c57613d958382614181565b9250613da9565b613da68184614181565b92505b508080613db590614e74565b915050613d5c565b508091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613e86576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613ec1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613ece6000868387613d35565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561413357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156140e757506140e560008884886139c3565b155b1561411e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8180600101925050808060010191505061406c565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055505061417a6000868387613d3b565b5050505050565b600082600052816020526040600020905092915050565b8280546141a490614aa7565b90600052602060002090601f0160209004810192826141c6576000855561420d565b82601f106141df57805160ff191683800117855561420d565b8280016001018555821561420d579182015b8281111561420c5782518255916020019190600101906141f1565b5b50905061421a9190614261565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561427a576000816000905550600101614262565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6142c781614292565b81146142d257600080fd5b50565b6000813590506142e4816142be565b92915050565b600060208284031215614300576142ff614288565b5b600061430e848285016142d5565b91505092915050565b60008115159050919050565b61432c81614317565b82525050565b60006020820190506143476000830184614323565b92915050565b6000819050919050565b6143608161434d565b82525050565b600060208201905061437b6000830184614357565b92915050565b6000819050919050565b61439481614381565b82525050565b60006020820190506143af600083018461438b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156143ef5780820151818401526020810190506143d4565b838111156143fe576000848401525b50505050565b6000601f19601f8301169050919050565b6000614420826143b5565b61442a81856143c0565b935061443a8185602086016143d1565b61444381614404565b840191505092915050565b600060208201905081810360008301526144688184614415565b905092915050565b6144798161434d565b811461448457600080fd5b50565b60008135905061449681614470565b92915050565b6000602082840312156144b2576144b1614288565b5b60006144c084828501614487565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006144f4826144c9565b9050919050565b614504816144e9565b82525050565b600060208201905061451f60008301846144fb565b92915050565b61452e816144e9565b811461453957600080fd5b50565b60008135905061454b81614525565b92915050565b6000806040838503121561456857614567614288565b5b60006145768582860161453c565b925050602061458785828601614487565b9150509250929050565b61459a81614381565b81146145a557600080fd5b50565b6000813590506145b781614591565b92915050565b6000602082840312156145d3576145d2614288565b5b60006145e1848285016145a8565b91505092915050565b60008060006060848603121561460357614602614288565b5b60006146118682870161453c565b93505060206146228682870161453c565b925050604061463386828701614487565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126146625761466161463d565b5b8235905067ffffffffffffffff81111561467f5761467e614642565b5b60208301915083602082028301111561469b5761469a614647565b5b9250929050565b6000806000604084860312156146bb576146ba614288565b5b600084013567ffffffffffffffff8111156146d9576146d861428d565b5b6146e58682870161464c565b935093505060206146f886828701614487565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61473f82614404565b810181811067ffffffffffffffff8211171561475e5761475d614707565b5b80604052505050565b600061477161427e565b905061477d8282614736565b919050565b600067ffffffffffffffff82111561479d5761479c614707565b5b6147a682614404565b9050602081019050919050565b82818337600083830152505050565b60006147d56147d084614782565b614767565b9050828152602081018484840111156147f1576147f0614702565b5b6147fc8482856147b3565b509392505050565b600082601f8301126148195761481861463d565b5b81356148298482602086016147c2565b91505092915050565b60006020828403121561484857614847614288565b5b600082013567ffffffffffffffff8111156148665761486561428d565b5b61487284828501614804565b91505092915050565b60006020828403121561489157614890614288565b5b600061489f8482850161453c565b91505092915050565b6148b181614317565b81146148bc57600080fd5b50565b6000813590506148ce816148a8565b92915050565b600080604083850312156148eb576148ea614288565b5b60006148f98582860161453c565b925050602061490a858286016148bf565b9150509250929050565b600067ffffffffffffffff82111561492f5761492e614707565b5b61493882614404565b9050602081019050919050565b600061495861495384614914565b614767565b90508281526020810184848401111561497457614973614702565b5b61497f8482856147b3565b509392505050565b600082601f83011261499c5761499b61463d565b5b81356149ac848260208601614945565b91505092915050565b600080600080608085870312156149cf576149ce614288565b5b60006149dd8782880161453c565b94505060206149ee8782880161453c565b93505060406149ff87828801614487565b925050606085013567ffffffffffffffff811115614a2057614a1f61428d565b5b614a2c87828801614987565b91505092959194509250565b60008060408385031215614a4f57614a4e614288565b5b6000614a5d8582860161453c565b9250506020614a6e8582860161453c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614abf57607f821691505b60208210811415614ad357614ad2614a78565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614b0f6020836143c0565b9150614b1a82614ad9565b602082019050919050565b60006020820190508181036000830152614b3e81614b02565b9050919050565b7f5075626c6963206d696e74696e67206973206e6f74206c6976652e0000000000600082015250565b6000614b7b601b836143c0565b9150614b8682614b45565b602082019050919050565b60006020820190508181036000830152614baa81614b6e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614beb8261434d565b9150614bf68361434d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c2b57614c2a614bb1565b5b828201905092915050565b7f596f752072656163686564206d6178207065722077616c6c65742e0000000000600082015250565b6000614c6c601b836143c0565b9150614c7782614c36565b602082019050919050565b60006020820190508181036000830152614c9b81614c5f565b9050919050565b7f596f75206e65656420746f206d696e74206174206c656173742031204e46542e600082015250565b6000614cd86020836143c0565b9150614ce382614ca2565b602082019050919050565b60006020820190508181036000830152614d0781614ccb565b9050919050565b6000614d198261434d565b9150614d248361434d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614d5d57614d5c614bb1565b5b828202905092915050565b7f496e73756666696369656e742045544800000000000000000000000000000000600082015250565b6000614d9e6010836143c0565b9150614da982614d68565b602082019050919050565b60006020820190508181036000830152614dcd81614d91565b9050919050565b6000614ddf8261434d565b9150614dea8361434d565b925082821015614dfd57614dfc614bb1565b5b828203905092915050565b7f536f6c64206f7574206f722045786365656473206d617820746f6b656e730000600082015250565b6000614e3e601e836143c0565b9150614e4982614e08565b602082019050919050565b60006020820190508181036000830152614e6d81614e31565b9050919050565b6000614e7f8261434d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614eb257614eb1614bb1565b5b600182019050919050565b7f416c6c6f77206c697374206d696e74696e67206973206e6f74206c6976652e00600082015250565b6000614ef3601f836143c0565b9150614efe82614ebd565b602082019050919050565b60006020820190508181036000830152614f2281614ee6565b9050919050565b60008160601b9050919050565b6000614f4182614f29565b9050919050565b6000614f5382614f36565b9050919050565b614f6b614f66826144e9565b614f48565b82525050565b6000614f7d8284614f5a565b60148201915081905092915050565b7f41646472657373206973206e6f74206f6e2074686520616c6c6f77206c69737460008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b6000614fe86021836143c0565b9150614ff382614f8c565b604082019050919050565b6000602082019050818103600083015261501781614fdb565b9050919050565b600081905092915050565b50565b600061503960008361501e565b915061504482615029565b600082019050919050565b600061505a8261502c565b9150819050919050565b7f57697468647261772031206661696c6564000000000000000000000000000000600082015250565b600061509a6011836143c0565b91506150a582615064565b602082019050919050565b600060208201905081810360008301526150c98161508d565b9050919050565b7f446576206d696e74206973206e6f74206c6976652e0000000000000000000000600082015250565b60006151066015836143c0565b9150615111826150d0565b602082019050919050565b60006020820190508181036000830152615135816150f9565b9050919050565b7f41646472657373206973206e6f74206f6e2074686520646576206c6973742e00600082015250565b6000615172601f836143c0565b915061517d8261513c565b602082019050919050565b600060208201905081810360008301526151a181615165565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006151e28261434d565b91506151ed8361434d565b9250826151fd576151fc6151a8565b5b828204905092915050565b7f57697468647261772032206661696c6564000000000000000000000000000000600082015250565b600061523e6011836143c0565b915061524982615208565b602082019050919050565b6000602082019050818103600083015261526d81615231565b9050919050565b7f45524337323141204d657461646174613a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b60006152d06031836143c0565b91506152db82615274565b604082019050919050565b600060208201905081810360008301526152ff816152c3565b9050919050565b600081905092915050565b600061531c826143b5565b6153268185615306565b93506153368185602086016143d1565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000615378600583615306565b915061538382615342565b600582019050919050565b600061539a8285615311565b91506153a68284615311565b91506153b18261536b565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006154196026836143c0565b9150615424826153bd565b604082019050919050565b600060208201905081810360008301526154488161540c565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006154768261544f565b615480818561545a565b93506154908185602086016143d1565b61549981614404565b840191505092915050565b60006080820190506154b960008301876144fb565b6154c660208301866144fb565b6154d36040830185614357565b81810360608301526154e5818461546b565b905095945050505050565b6000815190506154ff816142be565b92915050565b60006020828403121561551b5761551a614288565b5b6000615529848285016154f0565b91505092915050565b600061553d8261434d565b91506155488361434d565b925082615558576155576151a8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212204844cf8288ad614669fd8f3460abbde173c7aa80608520177447967f0959978c64736f6c634300080a0033

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.