ETH Price: $2,425.41 (+3.25%)

Token

Unity Cards (UNITY)
 

Overview

Max Total Supply

518 UNITY

Holders

396

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 UNITY
0xafbe6e8151e67094b4b71108841d1879d80ba9fa
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
UnityCards

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 17 : UnityCards.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

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

import "@openzeppelin/contracts/security/ReentrancyGuard.sol";


import '../interfaces/IUnityCards.sol';
import '../interfaces/IUnityCardsMetadata.sol';

contract UnityCards is ERC721Enumerable, Ownable, IUnityCards, IUnityCardsMetadata, ReentrancyGuard {
  using Strings for uint256;

  uint256 public constant MAX_SUPPLY = 7_777;
  uint256 public PURCHASE_LIMIT = 2;


  bool public isActive = true;
  bool public isAllowListActive = true;
  bytes32 public merkleroot;

  /// @dev We will use these to be able to calculate remaining correctly.
  uint256 public totalPublicSupply;

  mapping(address => uint256) private _allowListClaimed;
  mapping(address => bool) private _batchAllowed;


  string private _contractURI = '';
  string private _tokenBaseURI = '';
  string private _tokenRevealedBaseURI = '';

  constructor(string memory name, string memory symbol, bytes32 root) ERC721(name, symbol) {
    merkleroot = root;
  }


  /**
  * @dev We want to be able to distinguish tokens bought during isAllowListActive
  * and tokens bought outside of isAllowListActive
  */
  function allowListClaimedBy(address owner) external view override returns (uint256){
    require(owner != address(0), 'Zero address not on Allow List');

    return _allowListClaimed[owner];
  }

  function purchase(uint256 numberOfTokens) 
    external 
    override  
  nonReentrant() {

    require(isActive, 'Contract is not active');
    require(!isAllowListActive, 'Only allowing from Allow List');
    require(totalSupply() < MAX_SUPPLY, 'All tokens have been minted');
    require(numberOfTokens <= PURCHASE_LIMIT, 'Would exceed PURCHASE_LIMIT');
    require(totalPublicSupply < MAX_SUPPLY, 'Purchase would exceed MAX_SUPPLY');

    for (uint256 i = 0; i < numberOfTokens; i++) {
      /**
      * @dev Since they can get here while exceeding the MAX_SUPPLY,
      * we have to make sure to not mint any additional tokens.
      */
      if (totalPublicSupply < MAX_SUPPLY) {
        /**
        * @dev Public token numbering starts at 1.
        * so next token id is equal to actualSupply + 1.
        */
        uint256 tokenId = totalPublicSupply + 1;

        totalPublicSupply += 1;
        _safeMint(msg.sender, tokenId);
      }
    }
  }


  function freeClaimAllowList(uint256 index, uint256 numberOfTokens, bytes32[] calldata proof) 
    external 
    override 
  nonReentrant() {
    
    require(isActive, 'Contract is not active'); //
    require(isAllowListActive, 'Allow List is not active'); //
    require(totalSupply() < MAX_SUPPLY, 'All tokens have been minted'); //
    require(totalPublicSupply + numberOfTokens <= MAX_SUPPLY, 'claim would exceed MAX_SUPPLY'); //
    // Verify the merkle proof: we store the the Allow List in a Merkle Tree to reduce gas costs to claim
    require(_verify(_leaf(index, msg.sender, numberOfTokens), proof), "Invalid merkle proof");
    require(_allowListClaimed[msg.sender] + numberOfTokens <= numberOfTokens, 'Already Claimed');


    for (uint256 i = 0; i < numberOfTokens; i++) {

      totalPublicSupply += 1;
      _safeMint(msg.sender, totalPublicSupply);
    }

    _allowListClaimed[msg.sender] += numberOfTokens;   

  }

  function freeClaimAllowListBatch(uint256 index, uint256 numberOfTokens, uint256 numberOfTokensClaimed, bytes32[] calldata proof) 
    external 
    override
  nonReentrant() {
    require(_batchAllowed[msg.sender], 'Batch Claiming is not allowed');
    require(isActive, 'Contract is not active'); //
    require(isAllowListActive, 'Allow List is not active'); //
    require(totalSupply() < MAX_SUPPLY, 'All tokens have been minted'); //
    require(totalPublicSupply + numberOfTokensClaimed <= MAX_SUPPLY, 'claim would exceed MAX_SUPPLY'); //
    // Verify the merkle proof: we store the the Allow List in a Merkle Tree to reduce gas costs to claim
    require(_verify(_leaf(index, msg.sender, numberOfTokens), proof), "Invalid merkle proof");
    require(_allowListClaimed[msg.sender] + numberOfTokensClaimed <= numberOfTokens, 'Already Claimed');


    for (uint256 i = 0; i < numberOfTokensClaimed; i++) {

      totalPublicSupply += 1;
      _safeMint(msg.sender, totalPublicSupply);
    }

    _allowListClaimed[msg.sender] += numberOfTokensClaimed;   

  }

  function _leaf(uint256 index, address account, uint256 amount) internal pure returns (bytes32) {
    return keccak256(abi.encodePacked(index, account, amount));
  }

  function _verify(bytes32 leaf, bytes32[] memory proof) internal view returns (bool) {
    return MerkleProof.verify(proof, merkleroot, leaf);
  }

  function setBatchClaimState(address account, bool state) external override onlyOwner {
    _batchAllowed[account] = state;
  }

  function setIsActive(bool _isActive) external override onlyOwner {
    isActive = _isActive;
  }

  function setIsAllowListActive(bool _isAllowListActive) external override onlyOwner {
    isAllowListActive = _isAllowListActive;
  }

  function setMerkleRoot(bytes32 root) external override onlyOwner {
    merkleroot = root;
  }

  function setPurchaseLimit(uint256 limit) external override onlyOwner {
    PURCHASE_LIMIT = limit;
  }

  function withdraw() external override onlyOwner {
    payable(msg.sender).transfer(address(this).balance);
  }

  function setContractURI(string calldata URI) external override onlyOwner {
    _contractURI = URI;
  }

  function setBaseURI(string calldata URI) external override onlyOwner {
    _tokenBaseURI = URI;
  }

  function setRevealedBaseURI(string calldata revealedBaseURI) external override onlyOwner {
    _tokenRevealedBaseURI = revealedBaseURI;
  }

  function contractURI() public view override returns (string memory) {
    return _contractURI;
  }

  function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) {
    require(_exists(tokenId), 'Token does not exist');

    /// @dev Convert string to bytes so we can check if it's empty or not.
    string memory revealedBaseURI = _tokenRevealedBaseURI;
    return bytes(revealedBaseURI).length > 0 ?
      string(abi.encodePacked(revealedBaseURI, tokenId.toString())) :
      _tokenBaseURI;
  }
}

File 2 of 17 : IUnityCards.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

interface IUnityCards {

  function allowListClaimedBy(address owner) external returns (uint256);

  function purchase(uint256 numberOfTokens) external;

  function freeClaimAllowList(uint256 index, uint256 numberOfTokens, bytes32[] calldata proof) external;

  function freeClaimAllowListBatch(uint256 index, uint256 numberOfTokens,uint256 numberOfTokensClaimed, bytes32[] calldata proof) external;

  function setBatchClaimState(address account, bool state) external;

  function setIsActive(bool isActive) external;

  function setIsAllowListActive(bool isAllowListActive) external;

  function setMerkleRoot(bytes32 root) external;

  function setPurchaseLimit(uint256 limit) external;

  function withdraw() external;
}

File 3 of 17 : IUnityCardsMetadata.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

interface IUnityCardsMetadata {
  function setContractURI(string calldata URI) external;

  function setBaseURI(string calldata URI) external;

  function setRevealedBaseURI(string calldata revealedBaseURI) external;

  function contractURI() external view returns(string memory);
}

File 4 of 17 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 17 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping (uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping (address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping (uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping (address => mapping (address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0
            ? string(abi.encodePacked(baseURI, tokenId.toString()))
            : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual {
        _mint(to, tokenId);
        require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(address from, address to, uint256 tokenId) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev 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("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

File 6 of 17 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 17 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 8 of 17 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 9 of 17 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

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

File 10 of 17 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 12 of 17 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

File 13 of 17 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 14 of 17 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

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

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 16 of 17 : MerkleProof.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor () {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

Settings
{
  "metadata": {
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"bytes32","name":"root","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PURCHASE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"allowListClaimedBy","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":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"freeClaimAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"uint256","name":"numberOfTokensClaimed","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"freeClaimAllowListBatch","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":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAllowListActive","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":"merkleroot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"numberOfTokens","type":"uint256"}],"name":"purchase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"setBatchClaimState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isAllowListActive","type":"bool"}],"name":"setIsAllowListActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"setPurchaseLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"revealedBaseURI","type":"string"}],"name":"setRevealedBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPublicSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6002600c55600d805461ffff191661010117905560a06040819052600060808190526200002f9160129162000149565b50604080516020810191829052600090819052620000509160139162000149565b50604080516020810191829052600090819052620000719160149162000149565b503480156200007f57600080fd5b5060405162002e0738038062002e07833981016040819052620000a291620002a2565b825183908390620000bb90600090602085019062000149565b508051620000d190600190602084019062000149565b5050506000620000e66200014560201b60201c565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506001600b55600e5550620003659050565b3390565b828054620001579062000312565b90600052602060002090601f0160209004810192826200017b5760008555620001c6565b82601f106200019657805160ff1916838001178555620001c6565b82800160010185558215620001c6579182015b82811115620001c6578251825591602001919060010190620001a9565b50620001d4929150620001d8565b5090565b5b80821115620001d45760008155600101620001d9565b600082601f83011262000200578081fd5b81516001600160401b03808211156200021d576200021d6200034f565b604051601f8301601f19908116603f011681019082821181831017156200024857620002486200034f565b8160405283815260209250868385880101111562000264578485fd5b8491505b8382101562000287578582018301518183018401529082019062000268565b838211156200029857848385830101525b9695505050505050565b600080600060608486031215620002b7578283fd5b83516001600160401b0380821115620002ce578485fd5b620002dc87838801620001ef565b94506020860151915080821115620002f2578384fd5b506200030186828701620001ef565b925050604084015190509250925092565b600181811c908216806200032757607f821691505b602082108114156200034957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612a9280620003756000396000f3fe608060405234801561001057600080fd5b506004361061023c5760003560e01c80636e83843a1161013b578063b6c7ecf5116100b8578063e6a5931e1161007c578063e6a5931e146104b3578063e8a3d485146104bc578063e985e9c5146104c4578063efef39a114610500578063f2fde38b1461051357600080fd5b8063b6c7ecf514610468578063b88d4fde14610471578063c87b56dd14610484578063c885f84614610497578063d75e6110146104aa57600080fd5b80637cb64759116100ff5780637cb64759146104165780638da5cb5b14610429578063938e3d7b1461043a57806395d89b411461044d578063a22cb4651461045557600080fd5b80636e83843a146103c25780636edc4388146103d557806370a08231146103e8578063715018a6146103fb578063718bc4af1461040357600080fd5b80632750fc78116101c957806342842e0e1161018d57806342842e0e146103635780634f6ccce71461037657806355f804b31461038957806362b455cd1461039c5780636352211e146103af57600080fd5b80632750fc781461031a57806329fc6bae1461032d5780632f745c591461033f57806332cb6b0c146103525780633ccfd60b1461035b57600080fd5b8063095ea7b311610210578063095ea7b3146102ca57806318160ddd146102df57806320f56455146102e757806322f3e2d4146102fa57806323b872dd1461030757600080fd5b806208ffdd1461024157806301ffc9a71461026757806306fdde031461028a578063081812fc1461029f575b600080fd5b61025461024f3660046123d5565b610526565b6040519081526020015b60405180910390f35b61027a6102753660046125b5565b61059f565b604051901515815260200161025e565b6102926105ca565b60405161025e91906127a2565b6102b26102ad36600461259d565b61065c565b6040516001600160a01b03909116815260200161025e565b6102dd6102d836600461255a565b6106f1565b005b600854610254565b6102dd6102f5366004612531565b610807565b600d5461027a9060ff1681565b6102dd610315366004612421565b61085c565b6102dd610328366004612583565b61088d565b600d5461027a90610100900460ff1681565b61025461034d36600461255a565b6108ca565b610254611e6181565b6102dd610960565b6102dd610371366004612421565b6109b9565b61025461038436600461259d565b6109d4565b6102dd6103973660046125ed565b610a75565b6102dd6103aa3660046126ab565b610aab565b6102b26103bd36600461259d565b610d89565b6102dd6103d03660046125ed565b610e00565b6102dd6103e336600461259d565b610e36565b6102546103f63660046123d5565b610e65565b6102dd610eec565b6102dd610411366004612583565b610f60565b6102dd61042436600461259d565b610fa4565b600a546001600160a01b03166102b2565b6102dd6104483660046125ed565b610fd3565b610292611009565b6102dd610463366004612531565b611018565b610254600e5481565b6102dd61047f36600461245c565b6110dd565b61029261049236600461259d565b611115565b6102dd6104a536600461265a565b6112cd565b610254600c5481565b610254600f5481565b610292611512565b61027a6104d23660046123ef565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102dd61050e36600461259d565b611521565b6102dd6105213660046123d5565b6116fb565b60006001600160a01b0382166105835760405162461bcd60e51b815260206004820152601e60248201527f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c697374000060448201526064015b60405180910390fd5b506001600160a01b031660009081526010602052604090205490565b60006001600160e01b0319821663780e9d6360e01b14806105c457506105c4826117e6565b92915050565b6060600080546105d99061299a565b80601f01602080910402602001604051908101604052809291908181526020018280546106059061299a565b80156106525780601f1061062757610100808354040283529160200191610652565b820191906000526020600020905b81548152906001019060200180831161063557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106d55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161057a565b506000908152600460205260409020546001600160a01b031690565b60006106fc82610d89565b9050806001600160a01b0316836001600160a01b0316141561076a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161057a565b336001600160a01b0382161480610786575061078681336104d2565b6107f85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161057a565b6108028383611836565b505050565b600a546001600160a01b031633146108315760405162461bcd60e51b815260040161057a90612837565b6001600160a01b03919091166000908152601160205260409020805460ff1916911515919091179055565b61086633826118a4565b6108825760405162461bcd60e51b815260040161057a9061286c565b61080283838361199b565b600a546001600160a01b031633146108b75760405162461bcd60e51b815260040161057a90612837565b600d805460ff1916911515919091179055565b60006108d583610e65565b82106109375760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161057a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331461098a5760405162461bcd60e51b815260040161057a90612837565b60405133904780156108fc02916000818181858888f193505050501580156109b6573d6000803e3d6000fd5b50565b610802838383604051806020016040528060008152506110dd565b60006109df60085490565b8210610a425760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161057a565b60088281548110610a6357634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610a9f5760405162461bcd60e51b815260040161057a90612837565b610802601383836122c6565b6002600b541415610ace5760405162461bcd60e51b815260040161057a906128bd565b6002600b553360009081526011602052604090205460ff16610b325760405162461bcd60e51b815260206004820152601d60248201527f426174636820436c61696d696e67206973206e6f7420616c6c6f776564000000604482015260640161057a565b600d5460ff16610b545760405162461bcd60e51b815260040161057a90612807565b600d54610100900460ff16610ba65760405162461bcd60e51b8152602060048201526018602482015277416c6c6f77204c697374206973206e6f742061637469766560401b604482015260640161057a565b611e61610bb260085490565b10610bcf5760405162461bcd60e51b815260040161057a906128f4565b611e6183600f54610be0919061292b565b1115610c2e5760405162461bcd60e51b815260206004820152601d60248201527f636c61696d20776f756c6420657863656564204d41585f535550504c59000000604482015260640161057a565b610c75610c3c863387611b46565b838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250611b8f92505050565b610cb85760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b604482015260640161057a565b336000908152601060205260409020548490610cd590859061292b565b1115610d155760405162461bcd60e51b815260206004820152600f60248201526e105b1c9958591e4810db185a5b5959608a1b604482015260640161057a565b60005b83811015610d58576001600f6000828254610d33919061292b565b92505081905550610d4633600f54611b9e565b80610d50816129d5565b915050610d18565b503360009081526010602052604081208054859290610d7890849061292b565b90915550506001600b555050505050565b6000818152600260205260408120546001600160a01b0316806105c45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161057a565b600a546001600160a01b03163314610e2a5760405162461bcd60e51b815260040161057a90612837565b610802601483836122c6565b600a546001600160a01b03163314610e605760405162461bcd60e51b815260040161057a90612837565b600c55565b60006001600160a01b038216610ed05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161057a565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f165760405162461bcd60e51b815260040161057a90612837565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b03163314610f8a5760405162461bcd60e51b815260040161057a90612837565b600d80549115156101000261ff0019909216919091179055565b600a546001600160a01b03163314610fce5760405162461bcd60e51b815260040161057a90612837565b600e55565b600a546001600160a01b03163314610ffd5760405162461bcd60e51b815260040161057a90612837565b610802601283836122c6565b6060600180546105d99061299a565b6001600160a01b0382163314156110715760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161057a565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110e733836118a4565b6111035760405162461bcd60e51b815260040161057a9061286c565b61110f84848484611bbc565b50505050565b6000818152600260205260409020546060906001600160a01b03166111735760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b604482015260640161057a565b6000601480546111829061299a565b80601f01602080910402602001604051908101604052809291908181526020018280546111ae9061299a565b80156111fb5780601f106111d0576101008083540402835291602001916111fb565b820191906000526020600020905b8154815290600101906020018083116111de57829003601f168201915b50505050509050600081511161129b57601380546112189061299a565b80601f01602080910402602001604051908101604052809291908181526020018280546112449061299a565b80156112915780601f1061126657610100808354040283529160200191611291565b820191906000526020600020905b81548152906001019060200180831161127457829003601f168201915b50505050506112c6565b806112a584611bef565b6040516020016112b6929190612736565b6040516020818303038152906040525b9392505050565b6002600b5414156112f05760405162461bcd60e51b815260040161057a906128bd565b6002600b55600d5460ff166113175760405162461bcd60e51b815260040161057a90612807565b600d54610100900460ff166113695760405162461bcd60e51b8152602060048201526018602482015277416c6c6f77204c697374206973206e6f742061637469766560401b604482015260640161057a565b611e6161137560085490565b106113925760405162461bcd60e51b815260040161057a906128f4565b611e6183600f546113a3919061292b565b11156113f15760405162461bcd60e51b815260206004820152601d60248201527f636c61696d20776f756c6420657863656564204d41585f535550504c59000000604482015260640161057a565b6113ff610c3c853386611b46565b6114425760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b604482015260640161057a565b33600090815260106020526040902054839061145f90829061292b565b111561149f5760405162461bcd60e51b815260206004820152600f60248201526e105b1c9958591e4810db185a5b5959608a1b604482015260640161057a565b60005b838110156114e2576001600f60008282546114bd919061292b565b925050819055506114d033600f54611b9e565b806114da816129d5565b9150506114a2565b50336000908152601060205260408120805485929061150290849061292b565b90915550506001600b5550505050565b6060601280546105d99061299a565b6002600b5414156115445760405162461bcd60e51b815260040161057a906128bd565b6002600b55600d5460ff1661156b5760405162461bcd60e51b815260040161057a90612807565b600d54610100900460ff16156115c35760405162461bcd60e51b815260206004820152601d60248201527f4f6e6c7920616c6c6f77696e672066726f6d20416c6c6f77204c697374000000604482015260640161057a565b611e616115cf60085490565b106115ec5760405162461bcd60e51b815260040161057a906128f4565b600c5481111561163e5760405162461bcd60e51b815260206004820152601b60248201527f576f756c64206578636565642050555243484153455f4c494d49540000000000604482015260640161057a565b611e61600f54106116915760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564204d41585f535550504c59604482015260640161057a565b60005b818110156116f257611e61600f5410156116e0576000600f5460016116b9919061292b565b90506001600f60008282546116ce919061292b565b909155506116de90503382611b9e565b505b806116ea816129d5565b915050611694565b50506001600b55565b600a546001600160a01b031633146117255760405162461bcd60e51b815260040161057a90612837565b6001600160a01b03811661178a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161057a565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b148061181757506001600160e01b03198216635b5e139f60e01b145b806105c457506301ffc9a760e01b6001600160e01b03198316146105c4565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061186b82610d89565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661191d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161057a565b600061192883610d89565b9050806001600160a01b0316846001600160a01b031614806119635750836001600160a01b03166119588461065c565b6001600160a01b0316145b8061199357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119ae82610d89565b6001600160a01b031614611a165760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161057a565b6001600160a01b038216611a785760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161057a565b611a83838383611d09565b611a8e600082611836565b6001600160a01b0383166000908152600360205260408120805460019290611ab7908490612957565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ae590849061292b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6040805160208082019590955260609390931b6bffffffffffffffffffffffff191683820152605480840192909252805180840390920182526074909201909152805191012090565b60006112c682600e5485611dc1565b611bb8828260405180602001604052806000815250611e7e565b5050565b611bc784848461199b565b611bd384848484611eb1565b61110f5760405162461bcd60e51b815260040161057a906127b5565b606081611c135750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c3d5780611c27816129d5565b9150611c369050600a83612943565b9150611c17565b60008167ffffffffffffffff811115611c6657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c90576020820181803683370190505b5090505b841561199357611ca5600183612957565b9150611cb2600a866129f0565b611cbd90603061292b565b60f81b818381518110611ce057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611d02600a86612943565b9450611c94565b6001600160a01b038316611d6457611d5f81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611d87565b816001600160a01b0316836001600160a01b031614611d8757611d878382611fbe565b6001600160a01b038216611d9e576108028161205b565b826001600160a01b0316826001600160a01b031614610802576108028282612134565b600081815b8551811015611e73576000868281518110611df157634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611e33576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611e60565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611e6b816129d5565b915050611dc6565b509092149392505050565b611e888383612178565b611e956000848484611eb1565b6108025760405162461bcd60e51b815260040161057a906127b5565b60006001600160a01b0384163b15611fb357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ef5903390899088908890600401612765565b602060405180830381600087803b158015611f0f57600080fd5b505af1925050508015611f3f575060408051601f3d908101601f19168201909252611f3c918101906125d1565b60015b611f99573d808015611f6d576040519150601f19603f3d011682016040523d82523d6000602084013e611f72565b606091505b508051611f915760405162461bcd60e51b815260040161057a906127b5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611993565b506001949350505050565b60006001611fcb84610e65565b611fd59190612957565b600083815260076020526040902054909150808214612028576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061206d90600190612957565b600083815260096020526040812054600880549394509092849081106120a357634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106120d257634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061211857634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061213f83610e65565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166121ce5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161057a565b6000818152600260205260409020546001600160a01b0316156122335760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161057a565b61223f60008383611d09565b6001600160a01b038216600090815260036020526040812080546001929061226890849061292b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546122d29061299a565b90600052602060002090601f0160209004810192826122f4576000855561233a565b82601f1061230d5782800160ff1982351617855561233a565b8280016001018555821561233a579182015b8281111561233a57823582559160200191906001019061231f565b5061234692915061234a565b5090565b5b80821115612346576000815560010161234b565b80356001600160a01b038116811461237657600080fd5b919050565b60008083601f84011261238c578081fd5b50813567ffffffffffffffff8111156123a3578182fd5b6020830191508360208260051b85010111156123be57600080fd5b9250929050565b8035801515811461237657600080fd5b6000602082840312156123e6578081fd5b6112c68261235f565b60008060408385031215612401578081fd5b61240a8361235f565b91506124186020840161235f565b90509250929050565b600080600060608486031215612435578081fd5b61243e8461235f565b925061244c6020850161235f565b9150604084013590509250925092565b60008060008060808587031215612471578081fd5b61247a8561235f565b93506124886020860161235f565b925060408501359150606085013567ffffffffffffffff808211156124ab578283fd5b818701915087601f8301126124be578283fd5b8135818111156124d0576124d0612a30565b604051601f8201601f19908116603f011681019083821181831017156124f8576124f8612a30565b816040528281528a6020848701011115612510578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215612543578182fd5b61254c8361235f565b9150612418602084016123c5565b6000806040838503121561256c578182fd5b6125758361235f565b946020939093013593505050565b600060208284031215612594578081fd5b6112c6826123c5565b6000602082840312156125ae578081fd5b5035919050565b6000602082840312156125c6578081fd5b81356112c681612a46565b6000602082840312156125e2578081fd5b81516112c681612a46565b600080602083850312156125ff578182fd5b823567ffffffffffffffff80821115612616578384fd5b818501915085601f830112612629578384fd5b813581811115612637578485fd5b866020828501011115612648578485fd5b60209290920196919550909350505050565b6000806000806060858703121561266f578384fd5b8435935060208501359250604085013567ffffffffffffffff811115612693578283fd5b61269f8782880161237b565b95989497509550505050565b6000806000806000608086880312156126c2578283fd5b853594506020860135935060408601359250606086013567ffffffffffffffff8111156126ed578182fd5b6126f98882890161237b565b969995985093965092949392505050565b6000815180845261272281602086016020860161296e565b601f01601f19169290920160200192915050565b6000835161274881846020880161296e565b83519083019061275c81836020880161296e565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127989083018461270a565b9695505050505050565b6020815260006112c6602083018461270a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260169082015275436f6e7472616374206973206e6f742061637469766560501b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252601b908201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604082015260600190565b6000821982111561293e5761293e612a04565b500190565b60008261295257612952612a1a565b500490565b60008282101561296957612969612a04565b500390565b60005b83811015612989578181015183820152602001612971565b8381111561110f5750506000910152565b600181811c908216806129ae57607f821691505b602082108114156129cf57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129e9576129e9612a04565b5060010190565b6000826129ff576129ff612a1a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109b657600080fdfea26469706673582212205c03f7eafd6f7c5bf122ce35e21b0957bcc0b54ae564764ce11fe365330db11164736f6c63430008040033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a09755d07357f80cb87d64ea88b0d784e77a9d73e6b44dbb3fd81738317cf6d649000000000000000000000000000000000000000000000000000000000000000b556e6974792043617264730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005554e495459000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061023c5760003560e01c80636e83843a1161013b578063b6c7ecf5116100b8578063e6a5931e1161007c578063e6a5931e146104b3578063e8a3d485146104bc578063e985e9c5146104c4578063efef39a114610500578063f2fde38b1461051357600080fd5b8063b6c7ecf514610468578063b88d4fde14610471578063c87b56dd14610484578063c885f84614610497578063d75e6110146104aa57600080fd5b80637cb64759116100ff5780637cb64759146104165780638da5cb5b14610429578063938e3d7b1461043a57806395d89b411461044d578063a22cb4651461045557600080fd5b80636e83843a146103c25780636edc4388146103d557806370a08231146103e8578063715018a6146103fb578063718bc4af1461040357600080fd5b80632750fc78116101c957806342842e0e1161018d57806342842e0e146103635780634f6ccce71461037657806355f804b31461038957806362b455cd1461039c5780636352211e146103af57600080fd5b80632750fc781461031a57806329fc6bae1461032d5780632f745c591461033f57806332cb6b0c146103525780633ccfd60b1461035b57600080fd5b8063095ea7b311610210578063095ea7b3146102ca57806318160ddd146102df57806320f56455146102e757806322f3e2d4146102fa57806323b872dd1461030757600080fd5b806208ffdd1461024157806301ffc9a71461026757806306fdde031461028a578063081812fc1461029f575b600080fd5b61025461024f3660046123d5565b610526565b6040519081526020015b60405180910390f35b61027a6102753660046125b5565b61059f565b604051901515815260200161025e565b6102926105ca565b60405161025e91906127a2565b6102b26102ad36600461259d565b61065c565b6040516001600160a01b03909116815260200161025e565b6102dd6102d836600461255a565b6106f1565b005b600854610254565b6102dd6102f5366004612531565b610807565b600d5461027a9060ff1681565b6102dd610315366004612421565b61085c565b6102dd610328366004612583565b61088d565b600d5461027a90610100900460ff1681565b61025461034d36600461255a565b6108ca565b610254611e6181565b6102dd610960565b6102dd610371366004612421565b6109b9565b61025461038436600461259d565b6109d4565b6102dd6103973660046125ed565b610a75565b6102dd6103aa3660046126ab565b610aab565b6102b26103bd36600461259d565b610d89565b6102dd6103d03660046125ed565b610e00565b6102dd6103e336600461259d565b610e36565b6102546103f63660046123d5565b610e65565b6102dd610eec565b6102dd610411366004612583565b610f60565b6102dd61042436600461259d565b610fa4565b600a546001600160a01b03166102b2565b6102dd6104483660046125ed565b610fd3565b610292611009565b6102dd610463366004612531565b611018565b610254600e5481565b6102dd61047f36600461245c565b6110dd565b61029261049236600461259d565b611115565b6102dd6104a536600461265a565b6112cd565b610254600c5481565b610254600f5481565b610292611512565b61027a6104d23660046123ef565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102dd61050e36600461259d565b611521565b6102dd6105213660046123d5565b6116fb565b60006001600160a01b0382166105835760405162461bcd60e51b815260206004820152601e60248201527f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c697374000060448201526064015b60405180910390fd5b506001600160a01b031660009081526010602052604090205490565b60006001600160e01b0319821663780e9d6360e01b14806105c457506105c4826117e6565b92915050565b6060600080546105d99061299a565b80601f01602080910402602001604051908101604052809291908181526020018280546106059061299a565b80156106525780601f1061062757610100808354040283529160200191610652565b820191906000526020600020905b81548152906001019060200180831161063557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106d55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161057a565b506000908152600460205260409020546001600160a01b031690565b60006106fc82610d89565b9050806001600160a01b0316836001600160a01b0316141561076a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161057a565b336001600160a01b0382161480610786575061078681336104d2565b6107f85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161057a565b6108028383611836565b505050565b600a546001600160a01b031633146108315760405162461bcd60e51b815260040161057a90612837565b6001600160a01b03919091166000908152601160205260409020805460ff1916911515919091179055565b61086633826118a4565b6108825760405162461bcd60e51b815260040161057a9061286c565b61080283838361199b565b600a546001600160a01b031633146108b75760405162461bcd60e51b815260040161057a90612837565b600d805460ff1916911515919091179055565b60006108d583610e65565b82106109375760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161057a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331461098a5760405162461bcd60e51b815260040161057a90612837565b60405133904780156108fc02916000818181858888f193505050501580156109b6573d6000803e3d6000fd5b50565b610802838383604051806020016040528060008152506110dd565b60006109df60085490565b8210610a425760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161057a565b60088281548110610a6357634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610a9f5760405162461bcd60e51b815260040161057a90612837565b610802601383836122c6565b6002600b541415610ace5760405162461bcd60e51b815260040161057a906128bd565b6002600b553360009081526011602052604090205460ff16610b325760405162461bcd60e51b815260206004820152601d60248201527f426174636820436c61696d696e67206973206e6f7420616c6c6f776564000000604482015260640161057a565b600d5460ff16610b545760405162461bcd60e51b815260040161057a90612807565b600d54610100900460ff16610ba65760405162461bcd60e51b8152602060048201526018602482015277416c6c6f77204c697374206973206e6f742061637469766560401b604482015260640161057a565b611e61610bb260085490565b10610bcf5760405162461bcd60e51b815260040161057a906128f4565b611e6183600f54610be0919061292b565b1115610c2e5760405162461bcd60e51b815260206004820152601d60248201527f636c61696d20776f756c6420657863656564204d41585f535550504c59000000604482015260640161057a565b610c75610c3c863387611b46565b838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250611b8f92505050565b610cb85760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b604482015260640161057a565b336000908152601060205260409020548490610cd590859061292b565b1115610d155760405162461bcd60e51b815260206004820152600f60248201526e105b1c9958591e4810db185a5b5959608a1b604482015260640161057a565b60005b83811015610d58576001600f6000828254610d33919061292b565b92505081905550610d4633600f54611b9e565b80610d50816129d5565b915050610d18565b503360009081526010602052604081208054859290610d7890849061292b565b90915550506001600b555050505050565b6000818152600260205260408120546001600160a01b0316806105c45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161057a565b600a546001600160a01b03163314610e2a5760405162461bcd60e51b815260040161057a90612837565b610802601483836122c6565b600a546001600160a01b03163314610e605760405162461bcd60e51b815260040161057a90612837565b600c55565b60006001600160a01b038216610ed05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161057a565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f165760405162461bcd60e51b815260040161057a90612837565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b03163314610f8a5760405162461bcd60e51b815260040161057a90612837565b600d80549115156101000261ff0019909216919091179055565b600a546001600160a01b03163314610fce5760405162461bcd60e51b815260040161057a90612837565b600e55565b600a546001600160a01b03163314610ffd5760405162461bcd60e51b815260040161057a90612837565b610802601283836122c6565b6060600180546105d99061299a565b6001600160a01b0382163314156110715760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161057a565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110e733836118a4565b6111035760405162461bcd60e51b815260040161057a9061286c565b61110f84848484611bbc565b50505050565b6000818152600260205260409020546060906001600160a01b03166111735760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b604482015260640161057a565b6000601480546111829061299a565b80601f01602080910402602001604051908101604052809291908181526020018280546111ae9061299a565b80156111fb5780601f106111d0576101008083540402835291602001916111fb565b820191906000526020600020905b8154815290600101906020018083116111de57829003601f168201915b50505050509050600081511161129b57601380546112189061299a565b80601f01602080910402602001604051908101604052809291908181526020018280546112449061299a565b80156112915780601f1061126657610100808354040283529160200191611291565b820191906000526020600020905b81548152906001019060200180831161127457829003601f168201915b50505050506112c6565b806112a584611bef565b6040516020016112b6929190612736565b6040516020818303038152906040525b9392505050565b6002600b5414156112f05760405162461bcd60e51b815260040161057a906128bd565b6002600b55600d5460ff166113175760405162461bcd60e51b815260040161057a90612807565b600d54610100900460ff166113695760405162461bcd60e51b8152602060048201526018602482015277416c6c6f77204c697374206973206e6f742061637469766560401b604482015260640161057a565b611e6161137560085490565b106113925760405162461bcd60e51b815260040161057a906128f4565b611e6183600f546113a3919061292b565b11156113f15760405162461bcd60e51b815260206004820152601d60248201527f636c61696d20776f756c6420657863656564204d41585f535550504c59000000604482015260640161057a565b6113ff610c3c853386611b46565b6114425760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b604482015260640161057a565b33600090815260106020526040902054839061145f90829061292b565b111561149f5760405162461bcd60e51b815260206004820152600f60248201526e105b1c9958591e4810db185a5b5959608a1b604482015260640161057a565b60005b838110156114e2576001600f60008282546114bd919061292b565b925050819055506114d033600f54611b9e565b806114da816129d5565b9150506114a2565b50336000908152601060205260408120805485929061150290849061292b565b90915550506001600b5550505050565b6060601280546105d99061299a565b6002600b5414156115445760405162461bcd60e51b815260040161057a906128bd565b6002600b55600d5460ff1661156b5760405162461bcd60e51b815260040161057a90612807565b600d54610100900460ff16156115c35760405162461bcd60e51b815260206004820152601d60248201527f4f6e6c7920616c6c6f77696e672066726f6d20416c6c6f77204c697374000000604482015260640161057a565b611e616115cf60085490565b106115ec5760405162461bcd60e51b815260040161057a906128f4565b600c5481111561163e5760405162461bcd60e51b815260206004820152601b60248201527f576f756c64206578636565642050555243484153455f4c494d49540000000000604482015260640161057a565b611e61600f54106116915760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564204d41585f535550504c59604482015260640161057a565b60005b818110156116f257611e61600f5410156116e0576000600f5460016116b9919061292b565b90506001600f60008282546116ce919061292b565b909155506116de90503382611b9e565b505b806116ea816129d5565b915050611694565b50506001600b55565b600a546001600160a01b031633146117255760405162461bcd60e51b815260040161057a90612837565b6001600160a01b03811661178a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161057a565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b148061181757506001600160e01b03198216635b5e139f60e01b145b806105c457506301ffc9a760e01b6001600160e01b03198316146105c4565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061186b82610d89565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661191d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161057a565b600061192883610d89565b9050806001600160a01b0316846001600160a01b031614806119635750836001600160a01b03166119588461065c565b6001600160a01b0316145b8061199357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119ae82610d89565b6001600160a01b031614611a165760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161057a565b6001600160a01b038216611a785760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161057a565b611a83838383611d09565b611a8e600082611836565b6001600160a01b0383166000908152600360205260408120805460019290611ab7908490612957565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ae590849061292b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6040805160208082019590955260609390931b6bffffffffffffffffffffffff191683820152605480840192909252805180840390920182526074909201909152805191012090565b60006112c682600e5485611dc1565b611bb8828260405180602001604052806000815250611e7e565b5050565b611bc784848461199b565b611bd384848484611eb1565b61110f5760405162461bcd60e51b815260040161057a906127b5565b606081611c135750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c3d5780611c27816129d5565b9150611c369050600a83612943565b9150611c17565b60008167ffffffffffffffff811115611c6657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c90576020820181803683370190505b5090505b841561199357611ca5600183612957565b9150611cb2600a866129f0565b611cbd90603061292b565b60f81b818381518110611ce057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611d02600a86612943565b9450611c94565b6001600160a01b038316611d6457611d5f81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611d87565b816001600160a01b0316836001600160a01b031614611d8757611d878382611fbe565b6001600160a01b038216611d9e576108028161205b565b826001600160a01b0316826001600160a01b031614610802576108028282612134565b600081815b8551811015611e73576000868281518110611df157634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611e33576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611e60565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611e6b816129d5565b915050611dc6565b509092149392505050565b611e888383612178565b611e956000848484611eb1565b6108025760405162461bcd60e51b815260040161057a906127b5565b60006001600160a01b0384163b15611fb357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ef5903390899088908890600401612765565b602060405180830381600087803b158015611f0f57600080fd5b505af1925050508015611f3f575060408051601f3d908101601f19168201909252611f3c918101906125d1565b60015b611f99573d808015611f6d576040519150601f19603f3d011682016040523d82523d6000602084013e611f72565b606091505b508051611f915760405162461bcd60e51b815260040161057a906127b5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611993565b506001949350505050565b60006001611fcb84610e65565b611fd59190612957565b600083815260076020526040902054909150808214612028576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061206d90600190612957565b600083815260096020526040812054600880549394509092849081106120a357634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106120d257634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061211857634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061213f83610e65565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166121ce5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161057a565b6000818152600260205260409020546001600160a01b0316156122335760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161057a565b61223f60008383611d09565b6001600160a01b038216600090815260036020526040812080546001929061226890849061292b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546122d29061299a565b90600052602060002090601f0160209004810192826122f4576000855561233a565b82601f1061230d5782800160ff1982351617855561233a565b8280016001018555821561233a579182015b8281111561233a57823582559160200191906001019061231f565b5061234692915061234a565b5090565b5b80821115612346576000815560010161234b565b80356001600160a01b038116811461237657600080fd5b919050565b60008083601f84011261238c578081fd5b50813567ffffffffffffffff8111156123a3578182fd5b6020830191508360208260051b85010111156123be57600080fd5b9250929050565b8035801515811461237657600080fd5b6000602082840312156123e6578081fd5b6112c68261235f565b60008060408385031215612401578081fd5b61240a8361235f565b91506124186020840161235f565b90509250929050565b600080600060608486031215612435578081fd5b61243e8461235f565b925061244c6020850161235f565b9150604084013590509250925092565b60008060008060808587031215612471578081fd5b61247a8561235f565b93506124886020860161235f565b925060408501359150606085013567ffffffffffffffff808211156124ab578283fd5b818701915087601f8301126124be578283fd5b8135818111156124d0576124d0612a30565b604051601f8201601f19908116603f011681019083821181831017156124f8576124f8612a30565b816040528281528a6020848701011115612510578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215612543578182fd5b61254c8361235f565b9150612418602084016123c5565b6000806040838503121561256c578182fd5b6125758361235f565b946020939093013593505050565b600060208284031215612594578081fd5b6112c6826123c5565b6000602082840312156125ae578081fd5b5035919050565b6000602082840312156125c6578081fd5b81356112c681612a46565b6000602082840312156125e2578081fd5b81516112c681612a46565b600080602083850312156125ff578182fd5b823567ffffffffffffffff80821115612616578384fd5b818501915085601f830112612629578384fd5b813581811115612637578485fd5b866020828501011115612648578485fd5b60209290920196919550909350505050565b6000806000806060858703121561266f578384fd5b8435935060208501359250604085013567ffffffffffffffff811115612693578283fd5b61269f8782880161237b565b95989497509550505050565b6000806000806000608086880312156126c2578283fd5b853594506020860135935060408601359250606086013567ffffffffffffffff8111156126ed578182fd5b6126f98882890161237b565b969995985093965092949392505050565b6000815180845261272281602086016020860161296e565b601f01601f19169290920160200192915050565b6000835161274881846020880161296e565b83519083019061275c81836020880161296e565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127989083018461270a565b9695505050505050565b6020815260006112c6602083018461270a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260169082015275436f6e7472616374206973206e6f742061637469766560501b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252601b908201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604082015260600190565b6000821982111561293e5761293e612a04565b500190565b60008261295257612952612a1a565b500490565b60008282101561296957612969612a04565b500390565b60005b83811015612989578181015183820152602001612971565b8381111561110f5750506000910152565b600181811c908216806129ae57607f821691505b602082108114156129cf57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129e9576129e9612a04565b5060010190565b6000826129ff576129ff612a1a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109b657600080fdfea26469706673582212205c03f7eafd6f7c5bf122ce35e21b0957bcc0b54ae564764ce11fe365330db11164736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a09755d07357f80cb87d64ea88b0d784e77a9d73e6b44dbb3fd81738317cf6d649000000000000000000000000000000000000000000000000000000000000000b556e6974792043617264730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005554e495459000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Unity Cards
Arg [1] : symbol (string): UNITY
Arg [2] : root (bytes32): 0x9755d07357f80cb87d64ea88b0d784e77a9d73e6b44dbb3fd81738317cf6d649

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 9755d07357f80cb87d64ea88b0d784e77a9d73e6b44dbb3fd81738317cf6d649
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [4] : 556e697479204361726473000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 554e495459000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

466:5966:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1391:194;;;;;;:::i;:::-;;:::i;:::-;;;8711:25:17;;;8699:2;8684:18;1391:194:0;;;;;;;;910:234:8;;;;;;:::i;:::-;;:::i;:::-;;;8538:14:17;;8531:22;8513:41;;8501:2;8486:18;910:234:8;8468:92:17;2408:98:5;;;:::i;:::-;;;;;;;:::i;3820:217::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7836:32:17;;;7818:51;;7806:2;7791:18;3820:217:5;7773:102:17;3371:388:5;;;;;;:::i;:::-;;:::i;:::-;;1547:111:8;1634:10;:17;1547:111;;4872:126:0;;;;;;:::i;:::-;;:::i;685:27::-;;;;;;;;;4684:300:5;;;;;;:::i;:::-;;:::i;5002:96:0:-;;;;;;:::i;:::-;;:::i;716:36::-;;;;;;;;;;;;1223:253:8;;;;;;:::i;:::-;;:::i;600:42:0:-;;637:5;600:42;;5441:110;;;:::i;5050:149:5:-;;;;;;:::i;:::-;;:::i;1730:230:8:-;;;;;;:::i;:::-;;:::i;5661:99:0:-;;;;;;:::i;:::-;;:::i;3487:1064::-;;;;;;:::i;:::-;;:::i;2111:235:5:-;;;;;;:::i;:::-;;:::i;5764:139:0:-;;;;;;:::i;:::-;;:::i;5335:102::-;;;;;;:::i;:::-;;:::i;1849:205:5:-;;;;;;:::i;:::-;;:::i;1700:145:3:-;;;:::i;5102:132:0:-;;;;;;:::i;:::-;;:::i;5238:93::-;;;;;;:::i;:::-;;:::i;1068:85:3:-;1140:6;;-1:-1:-1;;;;;1140:6:3;1068:85;;5555:102:0;;;;;;:::i;:::-;;:::i;2570::5:-;;;:::i;4104:290::-;;;;;;:::i;:::-;;:::i;756:25:0:-;;;;;;5265:282:5;;;;;;:::i;:::-;;:::i;6009:421:0:-;;;;;;:::i;:::-;;:::i;2550:933::-;;;;;;:::i;:::-;;:::i;646:33::-;;;;;;860:32;;;;;;5907:98;;;:::i;4460:162:5:-;;;;;;:::i;:::-;-1:-1:-1;;;;;4580:25:5;;;4557:4;4580:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4460:162;1589:956:0;;;;;;:::i;:::-;;:::i;1994:240:3:-;;;;;;:::i;:::-;;:::i;1391:194:0:-;1466:7;-1:-1:-1;;;;;1488:19:0;;1480:62;;;;-1:-1:-1;;;1480:62:0;;16804:2:17;1480:62:0;;;16786:21:17;16843:2;16823:18;;;16816:30;16882:32;16862:18;;;16855:60;16932:18;;1480:62:0;;;;;;;;;-1:-1:-1;;;;;;1556:24:0;;;;;:17;:24;;;;;;;1391:194::o;910:234:8:-;1012:4;-1:-1:-1;;;;;;1035:50:8;;-1:-1:-1;;;1035:50:8;;:102;;;1101:36;1125:11;1101:23;:36::i;:::-;1028:109;910:234;-1:-1:-1;;910:234:8:o;2408:98:5:-;2462:13;2494:5;2487:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2408:98;:::o;3820:217::-;3896:7;7069:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7069:16:5;3915:73;;;;-1:-1:-1;;;3915:73:5;;16030:2:17;3915:73:5;;;16012:21:17;16069:2;16049:18;;;16042:30;16108:34;16088:18;;;16081:62;-1:-1:-1;;;16159:18:17;;;16152:42;16211:19;;3915:73:5;16002:234:17;3915:73:5;-1:-1:-1;4006:24:5;;;;:15;:24;;;;;;-1:-1:-1;;;;;4006:24:5;;3820:217::o;3371:388::-;3451:13;3467:23;3482:7;3467:14;:23::i;:::-;3451:39;;3514:5;-1:-1:-1;;;;;3508:11:5;:2;-1:-1:-1;;;;;3508:11:5;;;3500:57;;;;-1:-1:-1;;;3500:57:5;;17922:2:17;3500:57:5;;;17904:21:17;17961:2;17941:18;;;17934:30;18000:34;17980:18;;;17973:62;-1:-1:-1;;;18051:18:17;;;18044:31;18092:19;;3500:57:5;17894:223:17;3500:57:5;665:10:12;-1:-1:-1;;;;;3576:21:5;;;;:62;;-1:-1:-1;3601:37:5;3618:5;665:10:12;4460:162:5;:::i;3601:37::-;3568:152;;;;-1:-1:-1;;;3568:152:5;;13714:2:17;3568:152:5;;;13696:21:17;13753:2;13733:18;;;13726:30;13792:34;13772:18;;;13765:62;13863:26;13843:18;;;13836:54;13907:19;;3568:152:5;13686:246:17;3568:152:5;3731:21;3740:2;3744:7;3731:8;:21::i;:::-;3371:388;;;:::o;4872:126:0:-;1140:6:3;;-1:-1:-1;;;;;1140:6:3;665:10:12;1280:23:3;1272:68;;;;-1:-1:-1;;;1272:68:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;4963:22:0;;;::::1;;::::0;;;:13:::1;:22;::::0;;;;:30;;-1:-1:-1;;4963:30:0::1;::::0;::::1;;::::0;;;::::1;::::0;;4872:126::o;4684:300:5:-;4843:41;665:10:12;4876:7:5;4843:18;:41::i;:::-;4835:103;;;;-1:-1:-1;;;4835:103:5;;;;;;;:::i;:::-;4949:28;4959:4;4965:2;4969:7;4949:9;:28::i;5002:96:0:-;1140:6:3;;-1:-1:-1;;;;;1140:6:3;665:10:12;1280:23:3;1272:68;;;;-1:-1:-1;;;1272:68:3;;;;;;;:::i;:::-;5073:8:0::1;:20:::0;;-1:-1:-1;;5073:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;5002:96::o;1223:253:8:-;1320:7;1355:23;1372:5;1355:16;:23::i;:::-;1347:5;:31;1339:87;;;;-1:-1:-1;;;1339:87:8;;9526:2:17;1339:87:8;;;9508:21:17;9565:2;9545:18;;;9538:30;9604:34;9584:18;;;9577:62;-1:-1:-1;;;9655:18:17;;;9648:41;9706:19;;1339:87:8;9498:233:17;1339:87:8;-1:-1:-1;;;;;;1443:19:8;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1223:253::o;5441:110:0:-;1140:6:3;;-1:-1:-1;;;;;1140:6:3;665:10:12;1280:23:3;1272:68;;;;-1:-1:-1;;;1272:68:3;;;;;;;:::i;:::-;5495:51:0::1;::::0;5503:10:::1;::::0;5524:21:::1;5495:51:::0;::::1;;;::::0;::::1;::::0;;;5524:21;5503:10;5495:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;5441:110::o:0;5050:149:5:-;5153:39;5170:4;5176:2;5180:7;5153:39;;;;;;;;;;;;:16;:39::i;1730:230:8:-;1805:7;1840:30;1634:10;:17;;1547:111;1840:30;1832:5;:38;1824:95;;;;-1:-1:-1;;;1824:95:8;;19086:2:17;1824:95:8;;;19068:21:17;19125:2;19105:18;;;19098:30;19164:34;19144:18;;;19137:62;-1:-1:-1;;;19215:18:17;;;19208:42;19267:19;;1824:95:8;19058:234:17;1824:95:8;1936:10;1947:5;1936:17;;;;;;-1:-1:-1;;;1936:17:8;;;;;;;;;;;;;;;;;1929:24;;1730:230;;;:::o;5661:99:0:-;1140:6:3;;-1:-1:-1;;;;;1140:6:3;665:10:12;1280:23:3;1272:68;;;;-1:-1:-1;;;1272:68:3;;;;;;;:::i;:::-;5736:19:0::1;:13;5752:3:::0;;5736:19:::1;:::i;3487:1064::-:0;1680:1:4;2260:7;;:19;;2252:63;;;;-1:-1:-1;;;2252:63:4;;;;;;;:::i;:::-;1680:1;2390:7;:18;3689:10:0::1;3675:25;::::0;;;:13:::1;:25;::::0;;;;;::::1;;3667:67;;;::::0;-1:-1:-1;;;3667:67:0;;13356:2:17;3667:67:0::1;::::0;::::1;13338:21:17::0;13395:2;13375:18;;;13368:30;13434:31;13414:18;;;13407:59;13483:18;;3667:67:0::1;13328:179:17::0;3667:67:0::1;3748:8;::::0;::::1;;3740:43;;;;-1:-1:-1::0;;;3740:43:0::1;;;;;;;:::i;:::-;3800:17;::::0;::::1;::::0;::::1;;;3792:54;;;::::0;-1:-1:-1;;;3792:54:0;;9173:2:17;3792:54:0::1;::::0;::::1;9155:21:17::0;9212:2;9192:18;;;9185:30;-1:-1:-1;;;9231:18:17;;;9224:54;9295:18;;3792:54:0::1;9145:174:17::0;3792:54:0::1;637:5;3863:13;1634:10:8::0;:17;;1547:111;3863:13:0::1;:26;3855:66;;;;-1:-1:-1::0;;;3855:66:0::1;;;;;;;:::i;:::-;637:5;3958:21;3938:17;;:41;;;;:::i;:::-;:55;;3930:97;;;::::0;-1:-1:-1;;;3930:97:0;;14960:2:17;3930:97:0::1;::::0;::::1;14942:21:17::0;14999:2;14979:18;;;14972:30;15038:31;15018:18;;;15011:59;15087:18;;3930:97:0::1;14932:179:17::0;3930:97:0::1;4150:56;4158:40;4164:5;4171:10;4183:14;4158:5;:40::i;:::-;4200:5;;4150:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;4150:7:0::1;::::0;-1:-1:-1;;;4150:56:0:i:1;:::-;4142:89;;;::::0;-1:-1:-1;;;4142:89:0;;17163:2:17;4142:89:0::1;::::0;::::1;17145:21:17::0;17202:2;17182:18;;;17175:30;-1:-1:-1;;;17221:18:17;;;17214:50;17281:18;;4142:89:0::1;17135:170:17::0;4142:89:0::1;4263:10;4245:29;::::0;;;:17:::1;:29;::::0;;;;;4302:14;;4245:53:::1;::::0;4277:21;;4245:53:::1;:::i;:::-;:71;;4237:99;;;::::0;-1:-1:-1;;;4237:99:0;;18742:2:17;4237:99:0::1;::::0;::::1;18724:21:17::0;18781:2;18761:18;;;18754:30;-1:-1:-1;;;18800:18:17;;;18793:45;18855:18;;4237:99:0::1;18714:165:17::0;4237:99:0::1;4349:9;4344:138;4368:21;4364:1;:25;4344:138;;;4426:1;4405:17;;:22;;;;;;;:::i;:::-;;;;;;;;4435:40;4445:10;4457:17;;4435:9;:40::i;:::-;4391:3:::0;::::1;::::0;::::1;:::i;:::-;;;;4344:138;;;-1:-1:-1::0;4506:10:0::1;4488:29;::::0;;;:17:::1;:29;::::0;;;;:54;;4521:21;;4488:29;:54:::1;::::0;4521:21;;4488:54:::1;:::i;:::-;::::0;;;-1:-1:-1;;1637:1:4;2563:7;:22;-1:-1:-1;;;;;3487:1064:0:o;2111:235:5:-;2183:7;2218:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2218:16:5;2252:19;2244:73;;;;-1:-1:-1;;;2244:73:5;;14550:2:17;2244:73:5;;;14532:21:17;14589:2;14569:18;;;14562:30;14628:34;14608:18;;;14601:62;-1:-1:-1;;;14679:18:17;;;14672:39;14728:19;;2244:73:5;14522:231:17;5764:139:0;1140:6:3;;-1:-1:-1;;;;;1140:6:3;665:10:12;1280:23:3;1272:68;;;;-1:-1:-1;;;1272:68:3;;;;;;;:::i;:::-;5859:39:0::1;:21;5883:15:::0;;5859:39:::1;:::i;5335:102::-:0;1140:6:3;;-1:-1:-1;;;;;1140:6:3;665:10:12;1280:23:3;1272:68;;;;-1:-1:-1;;;1272:68:3;;;;;;;:::i;:::-;5410:14:0::1;:22:::0;5335:102::o;1849:205:5:-;1921:7;-1:-1:-1;;;;;1948:19:5;;1940:74;;;;-1:-1:-1;;;1940:74:5;;14139:2:17;1940:74:5;;;14121:21:17;14178:2;14158:18;;;14151:30;14217:34;14197:18;;;14190:62;-1:-1:-1;;;14268:18:17;;;14261:40;14318:19;;1940:74:5;14111:232:17;1940:74:5;-1:-1:-1;;;;;;2031:16:5;;;;;:9;:16;;;;;;;1849:205::o;1700:145:3:-;1140:6;;-1:-1:-1;;;;;1140:6:3;665:10:12;1280:23:3;1272:68;;;;-1:-1:-1;;;1272:68:3;;;;;;;:::i;:::-;1790:6:::1;::::0;1769:40:::1;::::0;1806:1:::1;::::0;-1:-1:-1;;;;;1790:6:3::1;::::0;1769:40:::1;::::0;1806:1;;1769:40:::1;1819:6;:19:::0;;-1:-1:-1;;;;;;1819:19:3::1;::::0;;1700:145::o;5102:132:0:-;1140:6:3;;-1:-1:-1;;;;;1140:6:3;665:10:12;1280:23:3;1272:68;;;;-1:-1:-1;;;1272:68:3;;;;;;;:::i;:::-;5191:17:0::1;:38:::0;;;::::1;;;;-1:-1:-1::0;;5191:38:0;;::::1;::::0;;;::::1;::::0;;5102:132::o;5238:93::-;1140:6:3;;-1:-1:-1;;;;;1140:6:3;665:10:12;1280:23:3;1272:68;;;;-1:-1:-1;;;1272:68:3;;;;;;;:::i;:::-;5309:10:0::1;:17:::0;5238:93::o;5555:102::-;1140:6:3;;-1:-1:-1;;;;;1140:6:3;665:10:12;1280:23:3;1272:68;;;;-1:-1:-1;;;1272:68:3;;;;;;;:::i;:::-;5634:18:0::1;:12;5649:3:::0;;5634:18:::1;:::i;2570:102:5:-:0;2626:13;2658:7;2651:14;;;;;:::i;4104:290::-;-1:-1:-1;;;;;4206:24:5;;665:10:12;4206:24:5;;4198:62;;;;-1:-1:-1;;;4198:62:5;;12240:2:17;4198:62:5;;;12222:21:17;12279:2;12259:18;;;12252:30;12318:27;12298:18;;;12291:55;12363:18;;4198:62:5;12212:175:17;4198:62:5;665:10:12;4271:32:5;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4271:42:5;;;;;;;;;;;;:53;;-1:-1:-1;;4271:53:5;;;;;;;;;;4339:48;;8513:41:17;;;4271:42:5;;665:10:12;4339:48:5;;8486:18:17;4339:48:5;;;;;;;4104:290;;:::o;5265:282::-;5396:41;665:10:12;5429:7:5;5396:18;:41::i;:::-;5388:103;;;;-1:-1:-1;;;5388:103:5;;;;;;;:::i;:::-;5501:39;5515:4;5521:2;5525:7;5534:5;5501:13;:39::i;:::-;5265:282;;;;:::o;6009:421:0:-;7046:4:5;7069:16;;;:7;:16;;;;;;6082:13:0;;-1:-1:-1;;;;;7069:16:5;6103:49:0;;;;-1:-1:-1;;;6103:49:0;;12594:2:17;6103:49:0;;;12576:21:17;12633:2;12613:18;;;12606:30;-1:-1:-1;;;12652:18:17;;;12645:50;12712:18;;6103:49:0;12566:170:17;6103:49:0;6234:29;6266:21;6234:53;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6332:1;6306:15;6300:29;:33;:125;;6412:13;6300:125;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6366:15;6383:18;:7;:16;:18::i;:::-;6349:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6300:125;6293:132;6009:421;-1:-1:-1;;;6009:421:0:o;2550:933::-;1680:1:4;2260:7;;:19;;2252:63;;;;-1:-1:-1;;;2252:63:4;;;;;;;:::i;:::-;1680:1;2390:7;:18;2708:8:0::1;::::0;::::1;;2700:43;;;;-1:-1:-1::0;;;2700:43:0::1;;;;;;;:::i;:::-;2760:17;::::0;::::1;::::0;::::1;;;2752:54;;;::::0;-1:-1:-1;;;2752:54:0;;9173:2:17;2752:54:0::1;::::0;::::1;9155:21:17::0;9212:2;9192:18;;;9185:30;-1:-1:-1;;;9231:18:17;;;9224:54;9295:18;;2752:54:0::1;9145:174:17::0;2752:54:0::1;637:5;2823:13;1634:10:8::0;:17;;1547:111;2823:13:0::1;:26;2815:66;;;;-1:-1:-1::0;;;2815:66:0::1;;;;;;;:::i;:::-;637:5;2918:14;2898:17;;:34;;;;:::i;:::-;:48;;2890:90;;;::::0;-1:-1:-1;;;2890:90:0;;14960:2:17;2890:90:0::1;::::0;::::1;14942:21:17::0;14999:2;14979:18;;;14972:30;15038:31;15018:18;;;15011:59;15087:18;;2890:90:0::1;14932:179:17::0;2890:90:0::1;3103:56;3111:40;3117:5;3124:10;3136:14;3111:5;:40::i;3103:56::-;3095:89;;;::::0;-1:-1:-1;;;3095:89:0;;17163:2:17;3095:89:0::1;::::0;::::1;17145:21:17::0;17202:2;17182:18;;;17175:30;-1:-1:-1;;;17221:18:17;;;17214:50;17281:18;;3095:89:0::1;17135:170:17::0;3095:89:0::1;3216:10;3198:29;::::0;;;:17:::1;:29;::::0;;;;;3248:14;;3198:46:::1;::::0;3248:14;;3198:46:::1;:::i;:::-;:64;;3190:92;;;::::0;-1:-1:-1;;;3190:92:0;;18742:2:17;3190:92:0::1;::::0;::::1;18724:21:17::0;18781:2;18761:18;;;18754:30;-1:-1:-1;;;18800:18:17;;;18793:45;18855:18;;3190:92:0::1;18714:165:17::0;3190:92:0::1;3295:9;3290:131;3314:14;3310:1;:18;3290:131;;;3365:1;3344:17;;:22;;;;;;;:::i;:::-;;;;;;;;3374:40;3384:10;3396:17;;3374:9;:40::i;:::-;3330:3:::0;::::1;::::0;::::1;:::i;:::-;;;;3290:131;;;-1:-1:-1::0;3445:10:0::1;3427:29;::::0;;;:17:::1;:29;::::0;;;;:47;;3460:14;;3427:29;:47:::1;::::0;3460:14;;3427:47:::1;:::i;:::-;::::0;;;-1:-1:-1;;1637:1:4;2563:7;:22;-1:-1:-1;;;;2550:933:0:o;5907:98::-;5960:13;5988:12;5981:19;;;;;:::i;1589:956::-;1680:1:4;2260:7;;:19;;2252:63;;;;-1:-1:-1;;;2252:63:4;;;;;;;:::i;:::-;1680:1;2390:7;:18;1693:8:0::1;::::0;::::1;;1685:43;;;;-1:-1:-1::0;;;1685:43:0::1;;;;;;;:::i;:::-;1743:17;::::0;::::1;::::0;::::1;;;1742:18;1734:60;;;::::0;-1:-1:-1;;;1734:60:0;;9938:2:17;1734:60:0::1;::::0;::::1;9920:21:17::0;9977:2;9957:18;;;9950:30;10016:31;9996:18;;;9989:59;10065:18;;1734:60:0::1;9910:179:17::0;1734:60:0::1;637:5;1808:13;1634:10:8::0;:17;;1547:111;1808:13:0::1;:26;1800:66;;;;-1:-1:-1::0;;;1800:66:0::1;;;;;;;:::i;:::-;1898:14;;1880;:32;;1872:72;;;::::0;-1:-1:-1;;;1872:72:0;;11479:2:17;1872:72:0::1;::::0;::::1;11461:21:17::0;11518:2;11498:18;;;11491:30;11557:29;11537:18;;;11530:57;11604:18;;1872:72:0::1;11451:177:17::0;1872:72:0::1;637:5;1958:17;;:30;1950:75;;;::::0;-1:-1:-1;;;1950:75:0;;19499:2:17;1950:75:0::1;::::0;::::1;19481:21:17::0;;;19518:18;;;19511:30;19577:34;19557:18;;;19550:62;19629:18;;1950:75:0::1;19471:182:17::0;1950:75:0::1;2037:9;2032:509;2056:14;2052:1;:18;2032:509;;;637:5;2241:17;;:30;2237:298;;;2414:15;2432:17;;2452:1;2432:21;;;;:::i;:::-;2414:39;;2485:1;2464:17;;:22;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;2496:30:0::1;::::0;-1:-1:-1;2506:10:0::1;2518:7:::0;2496:9:::1;:30::i;:::-;2237:298;;2072:3:::0;::::1;::::0;::::1;:::i;:::-;;;;2032:509;;;-1:-1:-1::0;;1637:1:4;2563:7;:22;1589:956:0:o;1994:240:3:-;1140:6;;-1:-1:-1;;;;;1140:6:3;665:10:12;1280:23:3;1272:68;;;;-1:-1:-1;;;1272:68:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;2082:22:3;::::1;2074:73;;;::::0;-1:-1:-1;;;2074:73:3;;10715:2:17;2074:73:3::1;::::0;::::1;10697:21:17::0;10754:2;10734:18;;;10727:30;10793:34;10773:18;;;10766:62;-1:-1:-1;;;10844:18:17;;;10837:36;10890:19;;2074:73:3::1;10687:228:17::0;2074:73:3::1;2183:6;::::0;2162:38:::1;::::0;-1:-1:-1;;;;;2162:38:3;;::::1;::::0;2183:6:::1;::::0;2162:38:::1;::::0;2183:6:::1;::::0;2162:38:::1;2210:6;:17:::0;;-1:-1:-1;;;;;;2210:17:3::1;-1:-1:-1::0;;;;;2210:17:3;;;::::1;::::0;;;::::1;::::0;;1994:240::o;1502:288:5:-;1604:4;-1:-1:-1;;;;;;1627:40:5;;-1:-1:-1;;;1627:40:5;;:104;;-1:-1:-1;;;;;;;1683:48:5;;-1:-1:-1;;;1683:48:5;1627:104;:156;;;-1:-1:-1;;;;;;;;;;871:40:15;;;1747:36:5;763:155:15;10738:171:5;10812:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;10812:29:5;-1:-1:-1;;;;;10812:29:5;;;;;;;;:24;;10865:23;10812:24;10865:14;:23::i;:::-;-1:-1:-1;;;;;10856:46:5;;;;;;;;;;;10738:171;;:::o;7264:344::-;7357:4;7069:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7069:16:5;7373:73;;;;-1:-1:-1;;;7373:73:5;;12943:2:17;7373:73:5;;;12925:21:17;12982:2;12962:18;;;12955:30;13021:34;13001:18;;;12994:62;-1:-1:-1;;;13072:18:17;;;13065:42;13124:19;;7373:73:5;12915:234:17;7373:73:5;7456:13;7472:23;7487:7;7472:14;:23::i;:::-;7456:39;;7524:5;-1:-1:-1;;;;;7513:16:5;:7;-1:-1:-1;;;;;7513:16:5;;:51;;;;7557:7;-1:-1:-1;;;;;7533:31:5;:20;7545:7;7533:11;:20::i;:::-;-1:-1:-1;;;;;7533:31:5;;7513:51;:87;;;-1:-1:-1;;;;;;4580:25:5;;;4557:4;4580:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7568:32;7505:96;7264:344;-1:-1:-1;;;;7264:344:5:o;10097:530::-;10221:4;-1:-1:-1;;;;;10194:31:5;:23;10209:7;10194:14;:23::i;:::-;-1:-1:-1;;;;;10194:31:5;;10186:85;;;;-1:-1:-1;;;10186:85:5;;17512:2:17;10186:85:5;;;17494:21:17;17551:2;17531:18;;;17524:30;17590:34;17570:18;;;17563:62;-1:-1:-1;;;17641:18:17;;;17634:39;17690:19;;10186:85:5;17484:231:17;10186:85:5;-1:-1:-1;;;;;10289:16:5;;10281:65;;;;-1:-1:-1;;;10281:65:5;;11835:2:17;10281:65:5;;;11817:21:17;11874:2;11854:18;;;11847:30;11913:34;11893:18;;;11886:62;-1:-1:-1;;;11964:18:17;;;11957:34;12008:19;;10281:65:5;11807:226:17;10281:65:5;10357:39;10378:4;10384:2;10388:7;10357:20;:39::i;:::-;10458:29;10475:1;10479:7;10458:8;:29::i;:::-;-1:-1:-1;;;;;10498:15:5;;;;;;:9;:15;;;;;:20;;10517:1;;10498:15;:20;;10517:1;;10498:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10528:13:5;;;;;;:9;:13;;;;;:18;;10545:1;;10528:13;:18;;10545:1;;10528:18;:::i;:::-;;;;-1:-1:-1;;10556:16:5;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10556:21:5;-1:-1:-1;;;;;10556:21:5;;;;;;;;;10593:27;;10556:16;;10593:27;;;;;;;10097:530;;;:::o;4555:164:0:-;4673:40;;;;;;;7493:19:17;;;;7550:2;7546:15;;;;-1:-1:-1;;7542:53:17;7528:12;;;7521:75;7612:12;;;;7605:28;;;;4673:40:0;;;;;;;;;;7649:12:17;;;;4673:40:0;;;4663:51;;;;;;4555:164::o;4723:145::-;4801:4;4820:43;4839:5;4846:10;;4858:4;4820:18;:43::i;7938:108:5:-;8013:26;8023:2;8027:7;8013:26;;;;;;;;;;;;:9;:26::i;:::-;7938:108;;:::o;6409:269::-;6522:28;6532:4;6538:2;6542:7;6522:9;:28::i;:::-;6568:48;6591:4;6597:2;6601:7;6610:5;6568:22;:48::i;:::-;6560:111;;;;-1:-1:-1;;;6560:111:5;;;;;;;:::i;271:703:13:-;327:13;544:10;540:51;;-1:-1:-1;;570:10:13;;;;;;;;;;;;-1:-1:-1;;;570:10:13;;;;;271:703::o;540:51::-;615:5;600:12;654:75;661:9;;654:75;;686:8;;;;:::i;:::-;;-1:-1:-1;708:10:13;;-1:-1:-1;716:2:13;708:10;;:::i;:::-;;;654:75;;;738:19;770:6;760:17;;;;;;-1:-1:-1;;;760:17:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;760:17:13;;738:39;;787:150;794:10;;787:150;;820:11;830:1;820:11;;:::i;:::-;;-1:-1:-1;888:10:13;896:2;888:5;:10;:::i;:::-;875:24;;:2;:24;:::i;:::-;862:39;;845:6;852;845:14;;;;;;-1:-1:-1;;;845:14:13;;;;;;;;;;;;:56;-1:-1:-1;;;;;845:56:13;;;;;;;;-1:-1:-1;915:11:13;924:2;915:11;;:::i;:::-;;;787:150;;2556:542:8;-1:-1:-1;;;;;2725:18:8;;2721:183;;2759:40;2791:7;3907:10;:17;;3880:24;;;;:15;:24;;;;;:44;;;3934:24;;;;;;;;;;;;3804:161;2759:40;2721:183;;;2828:2;-1:-1:-1;;;;;2820:10:8;:4;-1:-1:-1;;;;;2820:10:8;;2816:88;;2846:47;2879:4;2885:7;2846:32;:47::i;:::-;-1:-1:-1;;;;;2917:16:8;;2913:179;;2949:45;2986:7;2949:36;:45::i;2913:179::-;3021:4;-1:-1:-1;;;;;3015:10:8;:2;-1:-1:-1;;;;;3015:10:8;;3011:81;;3041:40;3069:2;3073:7;3041:27;:40::i;777:779:14:-;868:4;907;868;922:515;946:5;:12;942:1;:16;922:515;;;979:20;1002:5;1008:1;1002:8;;;;;;-1:-1:-1;;;1002:8:14;;;;;;;;;;;;;;;979:31;;1045:12;1029;:28;1025:402;;1180:44;;;;;;6738:19:17;;;6773:12;;;6766:28;;;6810:12;;1180:44:14;;;;;;;;;;;;1170:55;;;;;;1155:70;;1025:402;;;1367:44;;;;;;6738:19:17;;;6773:12;;;6766:28;;;6810:12;;1367:44:14;;;;;;;;;;;;1357:55;;;;;;1342:70;;1025:402;-1:-1:-1;960:3:14;;;;:::i;:::-;;;;922:515;;;-1:-1:-1;1529:20:14;;;;777:779;-1:-1:-1;;;777:779:14:o;8267:247:5:-;8362:18;8368:2;8372:7;8362:5;:18::i;:::-;8398:54;8429:1;8433:2;8437:7;8446:5;8398:22;:54::i;:::-;8390:117;;;;-1:-1:-1;;;8390:117:5;;;;;;;:::i;11462:824::-;11582:4;-1:-1:-1;;;;;11606:13:5;;1078:20:11;1116:8;11602:678:5;;11641:72;;-1:-1:-1;;;11641:72:5;;-1:-1:-1;;;;;11641:36:5;;;;;:72;;665:10:12;;11692:4:5;;11698:7;;11707:5;;11641:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11641:72:5;;;;;;;;-1:-1:-1;;11641:72:5;;;;;;;;;;;;:::i;:::-;;;11637:591;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11884:13:5;;11880:334;;11926:60;;-1:-1:-1;;;11926:60:5;;;;;;;:::i;11880:334::-;12166:6;12160:13;12151:6;12147:2;12143:15;12136:38;11637:591;-1:-1:-1;;;;;;11763:55:5;-1:-1:-1;;;11763:55:5;;-1:-1:-1;11756:62:5;;11602:678;-1:-1:-1;12265:4:5;11462:824;;;;;;:::o;4582:970:8:-;4844:22;4894:1;4869:22;4886:4;4869:16;:22::i;:::-;:26;;;;:::i;:::-;4905:18;4926:26;;;:17;:26;;;;;;4844:51;;-1:-1:-1;5056:28:8;;;5052:323;;-1:-1:-1;;;;;5122:18:8;;5100:19;5122:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5171:30;;;;;;:44;;;5287:30;;:17;:30;;;;;:43;;;5052:323;-1:-1:-1;5468:26:8;;;;:17;:26;;;;;;;;5461:33;;;-1:-1:-1;;;;;5511:18:8;;;;;:12;:18;;;;;:34;;;;;;;5504:41;4582:970::o;5840:1061::-;6114:10;:17;6089:22;;6114:21;;6134:1;;6114:21;:::i;:::-;6145:18;6166:24;;;:15;:24;;;;;;6534:10;:26;;6089:46;;-1:-1:-1;6166:24:8;;6089:46;;6534:26;;;;-1:-1:-1;;;6534:26:8;;;;;;;;;;;;;;;;;6512:48;;6596:11;6571:10;6582;6571:22;;;;;;-1:-1:-1;;;6571:22:8;;;;;;;;;;;;;;;;;;;;:36;;;;6675:28;;;:15;:28;;;;;;;:41;;;6844:24;;;;;6837:31;6878:10;:16;;;;;-1:-1:-1;;;6878:16:8;;;;;;;;;;;;;;;;;;;;;;;;;;5840:1061;;;;:::o;3392:217::-;3476:14;3493:20;3510:2;3493:16;:20::i;:::-;-1:-1:-1;;;;;3523:16:8;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3567:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3392:217:8:o;8836:372:5:-;-1:-1:-1;;;;;8915:16:5;;8907:61;;;;-1:-1:-1;;;8907:61:5;;15318:2:17;8907:61:5;;;15300:21:17;;;15337:18;;;15330:30;15396:34;15376:18;;;15369:62;15448:18;;8907:61:5;15290:182:17;8907:61:5;7046:4;7069:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7069:16:5;:30;8978:58;;;;-1:-1:-1;;;8978:58:5;;11122:2:17;8978:58:5;;;11104:21:17;11161:2;11141:18;;;11134:30;11200;11180:18;;;11173:58;11248:18;;8978:58:5;11094:178:17;8978:58:5;9047:45;9076:1;9080:2;9084:7;9047:20;:45::i;:::-;-1:-1:-1;;;;;9103:13:5;;;;;;:9;:13;;;;;:18;;9120:1;;9103:13;:18;;9120:1;;9103:18;:::i;:::-;;;;-1:-1:-1;;9131:16:5;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9131:21:5;-1:-1:-1;;;;;9131:21:5;;;;;;;;9168:33;;9131:16;;;9168:33;;9131:16;;9168:33;8836:372;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:17;82:20;;-1:-1:-1;;;;;131:31:17;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:391::-;255:8;265:6;319:3;312:4;304:6;300:17;296:27;286:2;;342:6;334;327:22;286:2;-1:-1:-1;370:20:17;;413:18;402:30;;399:2;;;452:8;442;435:26;399:2;496:4;488:6;484:17;472:29;;556:3;549:4;539:6;536:1;532:14;524:6;520:27;516:38;513:47;510:2;;;573:1;570;563:12;510:2;276:307;;;;;:::o;588:160::-;653:20;;709:13;;702:21;692:32;;682:2;;738:1;735;728:12;753:196;812:6;865:2;853:9;844:7;840:23;836:32;833:2;;;886:6;878;871:22;833:2;914:29;933:9;914:29;:::i;954:270::-;1022:6;1030;1083:2;1071:9;1062:7;1058:23;1054:32;1051:2;;;1104:6;1096;1089:22;1051:2;1132:29;1151:9;1132:29;:::i;:::-;1122:39;;1180:38;1214:2;1203:9;1199:18;1180:38;:::i;:::-;1170:48;;1041:183;;;;;:::o;1229:338::-;1306:6;1314;1322;1375:2;1363:9;1354:7;1350:23;1346:32;1343:2;;;1396:6;1388;1381:22;1343:2;1424:29;1443:9;1424:29;:::i;:::-;1414:39;;1472:38;1506:2;1495:9;1491:18;1472:38;:::i;:::-;1462:48;;1557:2;1546:9;1542:18;1529:32;1519:42;;1333:234;;;;;:::o;1572:1183::-;1667:6;1675;1683;1691;1744:3;1732:9;1723:7;1719:23;1715:33;1712:2;;;1766:6;1758;1751:22;1712:2;1794:29;1813:9;1794:29;:::i;:::-;1784:39;;1842:38;1876:2;1865:9;1861:18;1842:38;:::i;:::-;1832:48;;1927:2;1916:9;1912:18;1899:32;1889:42;;1982:2;1971:9;1967:18;1954:32;2005:18;2046:2;2038:6;2035:14;2032:2;;;2067:6;2059;2052:22;2032:2;2110:6;2099:9;2095:22;2085:32;;2155:7;2148:4;2144:2;2140:13;2136:27;2126:2;;2182:6;2174;2167:22;2126:2;2223;2210:16;2245:2;2241;2238:10;2235:2;;;2251:18;;:::i;:::-;2326:2;2320:9;2294:2;2380:13;;-1:-1:-1;;2376:22:17;;;2400:2;2372:31;2368:40;2356:53;;;2424:18;;;2444:22;;;2421:46;2418:2;;;2470:18;;:::i;:::-;2510:10;2506:2;2499:22;2545:2;2537:6;2530:18;2585:7;2580:2;2575;2571;2567:11;2563:20;2560:33;2557:2;;;2611:6;2603;2596:22;2557:2;2672;2667;2663;2659:11;2654:2;2646:6;2642:15;2629:46;2695:15;;;2712:2;2691:24;2684:40;;;;1702:1053;;;;-1:-1:-1;1702:1053:17;;-1:-1:-1;;;;1702:1053:17:o;2760:264::-;2825:6;2833;2886:2;2874:9;2865:7;2861:23;2857:32;2854:2;;;2907:6;2899;2892:22;2854:2;2935:29;2954:9;2935:29;:::i;:::-;2925:39;;2983:35;3014:2;3003:9;2999:18;2983:35;:::i;3029:264::-;3097:6;3105;3158:2;3146:9;3137:7;3133:23;3129:32;3126:2;;;3179:6;3171;3164:22;3126:2;3207:29;3226:9;3207:29;:::i;:::-;3197:39;3283:2;3268:18;;;;3255:32;;-1:-1:-1;;;3116:177:17:o;3298:190::-;3354:6;3407:2;3395:9;3386:7;3382:23;3378:32;3375:2;;;3428:6;3420;3413:22;3375:2;3456:26;3472:9;3456:26;:::i;3493:190::-;3552:6;3605:2;3593:9;3584:7;3580:23;3576:32;3573:2;;;3626:6;3618;3611:22;3573:2;-1:-1:-1;3654:23:17;;3563:120;-1:-1:-1;3563:120:17:o;3688:255::-;3746:6;3799:2;3787:9;3778:7;3774:23;3770:32;3767:2;;;3820:6;3812;3805:22;3767:2;3864:9;3851:23;3883:30;3907:5;3883:30;:::i;3948:259::-;4017:6;4070:2;4058:9;4049:7;4045:23;4041:32;4038:2;;;4091:6;4083;4076:22;4038:2;4128:9;4122:16;4147:30;4171:5;4147:30;:::i;4212:642::-;4283:6;4291;4344:2;4332:9;4323:7;4319:23;4315:32;4312:2;;;4365:6;4357;4350:22;4312:2;4410:9;4397:23;4439:18;4480:2;4472:6;4469:14;4466:2;;;4501:6;4493;4486:22;4466:2;4544:6;4533:9;4529:22;4519:32;;4589:7;4582:4;4578:2;4574:13;4570:27;4560:2;;4616:6;4608;4601:22;4560:2;4661;4648:16;4687:2;4679:6;4676:14;4673:2;;;4708:6;4700;4693:22;4673:2;4758:7;4753:2;4744:6;4740:2;4736:15;4732:24;4729:37;4726:2;;;4784:6;4776;4769:22;4726:2;4820;4812:11;;;;;4842:6;;-1:-1:-1;4302:552:17;;-1:-1:-1;;;;4302:552:17:o;5054:593::-;5158:6;5166;5174;5182;5235:2;5223:9;5214:7;5210:23;5206:32;5203:2;;;5256:6;5248;5241:22;5203:2;5297:9;5284:23;5274:33;;5354:2;5343:9;5339:18;5326:32;5316:42;;5409:2;5398:9;5394:18;5381:32;5436:18;5428:6;5425:30;5422:2;;;5473:6;5465;5458:22;5422:2;5517:70;5579:7;5570:6;5559:9;5555:22;5517:70;:::i;:::-;5193:454;;;;-1:-1:-1;5606:8:17;-1:-1:-1;;;;5193:454:17:o;5652:662::-;5765:6;5773;5781;5789;5797;5850:3;5838:9;5829:7;5825:23;5821:33;5818:2;;;5872:6;5864;5857:22;5818:2;5913:9;5900:23;5890:33;;5970:2;5959:9;5955:18;5942:32;5932:42;;6021:2;6010:9;6006:18;5993:32;5983:42;;6076:2;6065:9;6061:18;6048:32;6103:18;6095:6;6092:30;6089:2;;;6140:6;6132;6125:22;6089:2;6184:70;6246:7;6237:6;6226:9;6222:22;6184:70;:::i;:::-;5808:506;;;;-1:-1:-1;5808:506:17;;-1:-1:-1;6273:8:17;;6158:96;5808:506;-1:-1:-1;;;5808:506:17:o;6319:257::-;6360:3;6398:5;6392:12;6425:6;6420:3;6413:19;6441:63;6497:6;6490:4;6485:3;6481:14;6474:4;6467:5;6463:16;6441:63;:::i;:::-;6558:2;6537:15;-1:-1:-1;;6533:29:17;6524:39;;;;6565:4;6520:50;;6368:208;-1:-1:-1;;6368:208:17:o;6833:470::-;7012:3;7050:6;7044:13;7066:53;7112:6;7107:3;7100:4;7092:6;7088:17;7066:53;:::i;:::-;7182:13;;7141:16;;;;7204:57;7182:13;7141:16;7238:4;7226:17;;7204:57;:::i;:::-;7277:20;;7020:283;-1:-1:-1;;;;7020:283:17:o;7880:488::-;-1:-1:-1;;;;;8149:15:17;;;8131:34;;8201:15;;8196:2;8181:18;;8174:43;8248:2;8233:18;;8226:34;;;8296:3;8291:2;8276:18;;8269:31;;;8074:4;;8317:45;;8342:19;;8334:6;8317:45;:::i;:::-;8309:53;8083:285;-1:-1:-1;;;;;;8083:285:17:o;8747:219::-;8896:2;8885:9;8878:21;8859:4;8916:44;8956:2;8945:9;8941:18;8933:6;8916:44;:::i;10094:414::-;10296:2;10278:21;;;10335:2;10315:18;;;10308:30;10374:34;10369:2;10354:18;;10347:62;-1:-1:-1;;;10440:2:17;10425:18;;10418:48;10498:3;10483:19;;10268:240::o;15477:346::-;15679:2;15661:21;;;15718:2;15698:18;;;15691:30;-1:-1:-1;;;15752:2:17;15737:18;;15730:52;15814:2;15799:18;;15651:172::o;16241:356::-;16443:2;16425:21;;;16462:18;;;16455:30;16521:34;16516:2;16501:18;;16494:62;16588:2;16573:18;;16415:182::o;18122:413::-;18324:2;18306:21;;;18363:2;18343:18;;;18336:30;18402:34;18397:2;18382:18;;18375:62;-1:-1:-1;;;18468:2:17;18453:18;;18446:47;18525:3;18510:19;;18296:239::o;19658:355::-;19860:2;19842:21;;;19899:2;19879:18;;;19872:30;19938:33;19933:2;19918:18;;19911:61;20004:2;19989:18;;19832:181::o;20018:351::-;20220:2;20202:21;;;20259:2;20239:18;;;20232:30;20298:29;20293:2;20278:18;;20271:57;20360:2;20345:18;;20192:177::o;20556:128::-;20596:3;20627:1;20623:6;20620:1;20617:13;20614:2;;;20633:18;;:::i;:::-;-1:-1:-1;20669:9:17;;20604:80::o;20689:120::-;20729:1;20755;20745:2;;20760:18;;:::i;:::-;-1:-1:-1;20794:9:17;;20735:74::o;20814:125::-;20854:4;20882:1;20879;20876:8;20873:2;;;20887:18;;:::i;:::-;-1:-1:-1;20924:9:17;;20863:76::o;20944:258::-;21016:1;21026:113;21040:6;21037:1;21034:13;21026:113;;;21116:11;;;21110:18;21097:11;;;21090:39;21062:2;21055:10;21026:113;;;21157:6;21154:1;21151:13;21148:2;;;-1:-1:-1;;21192:1:17;21174:16;;21167:27;20997:205::o;21207:380::-;21286:1;21282:12;;;;21329;;;21350:2;;21404:4;21396:6;21392:17;21382:27;;21350:2;21457;21449:6;21446:14;21426:18;21423:38;21420:2;;;21503:10;21498:3;21494:20;21491:1;21484:31;21538:4;21535:1;21528:15;21566:4;21563:1;21556:15;21420:2;;21262:325;;;:::o;21592:135::-;21631:3;-1:-1:-1;;21652:17:17;;21649:2;;;21672:18;;:::i;:::-;-1:-1:-1;21719:1:17;21708:13;;21639:88::o;21732:112::-;21764:1;21790;21780:2;;21795:18;;:::i;:::-;-1:-1:-1;21829:9:17;;21770:74::o;21849:127::-;21910:10;21905:3;21901:20;21898:1;21891:31;21941:4;21938:1;21931:15;21965:4;21962:1;21955:15;21981:127;22042:10;22037:3;22033:20;22030:1;22023:31;22073:4;22070:1;22063:15;22097:4;22094:1;22087:15;22113:127;22174:10;22169:3;22165:20;22162:1;22155:31;22205:4;22202:1;22195:15;22229:4;22226:1;22219:15;22245:131;-1:-1:-1;;;;;;22319:32:17;;22309:43;;22299:2;;22366:1;22363;22356:12

Swarm Source

ipfs://5c03f7eafd6f7c5bf122ce35e21b0957bcc0b54ae564764ce11fe365330db111
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.