ETH Price: $3,259.51 (+4.64%)
Gas: 2 Gwei

Token

Nemus Genesis Collection (NEGEN)
 

Overview

Max Total Supply

1,483 NEGEN

Holders

662

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 NEGEN
0x3a9d246fa5b5f3824e6c682cce7e38a1d441b6d7
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:
NeaNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 10 of 13: NeaNFT.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

/**
 *
 *                                    (/  #%%                                    
 *                                 ((((   %%%%%*                                 
 *                                /(/(,  #%%%%%%*                                
 *                          (((((/((/(   %%%%%%%%#%%%%/                          
 *                       ((((((((((((/  *%%%%%%%%%%%%%%%%#                       
 *                      /((((((((((((*  #%%%%%%%%%%%%%%%%%%%                     
 *                        ./(((((((((,  #%%%%%%%%%%%%%%%%%%%%%                   
 *                 *(((((((((((((((((   %%%%%%%%%%%%%%%%%%%%%%%                  
 *                ,((((((((((((((((((   %%%%%%%%%%%%%%%%%%%%%%%%                 
 *                (((((((((((((((((((   %%%%%%%%%%%%%%%%%%%%%%%%%                
 *               .(/(((((((((((((((((   %%%%%%%%%%%%%%%%%%%%%%%%#.               
 *                    (((((((((((((((   %%%%%%%%%%%%%%%%%%%%%%%%%                
 *                   /(((((((((((((((   %%%%%%%%%%%%%%%%%%%%%##*                 
 *               *(((((((((((((((((((   %%%%%#%%#%%%%%%%%%%#%%                   
 *                (((((((((((((((((((.  %%%%%          %%%%%%                    
 *                (((((((((((((((((((,  #%%%         .%%%%%%,                    
 *                 ((((((((((((((((((/  (%%%       %%%%%%%%%.                    
 *                           ((((((((/  ,%%%   .%%%%%%%%%%%%%                    
 *                        *((((((((((/   %%#   %%%%%%%%%%%%%%                    
 *                    //((((((((((((((        ,%%%%%%%%%%%%%.                    
 *                      ((((((((((((((        %%%%%%%%%%%%(                      
 *                        (//(((((((((       *%%%%%%%%%#%                        
 *                          /(((((((((,      %%%%%%#%%(                          
 *                             (((((((*     *%%%%%%%                             
 *                               ./((((     %%%%#  
 * 
 * Hello Guardians,
 * We don't have a lot of time. You have been called upon to act, the time is now or never.
 * Together we can collectively push back the damage that has been done to the amazon.
 * 
 * This contract stands to emit a digitally owned slice of property which you can use 
 * to join the fight. Gas saving measures have been used to even further reduce carbon emission.
 * ~ See you in the rainforest.
 *
 * Project By: @nemus_earth
 * Developed By: @notmokk
 *
 *
 * Error Legend
 * ---------------------------------------
 * E01: Not on allow list
 * E02: Cannot mint 0 NFTs
 * E03: Not enough tickets for redemption
 * E04: Not authenticated for call
 * E05: Address cannot be 0
 * E06: Timestamp cannot be in the past
 * E07: Token Mode must be 0 to transfer
 * E08: Token cannot already be in mode
 * E09: Non matching lengths
 * E10: Mode setting not allowed
 * 
 */

import "./Ownable.sol";
import "./ReentrancyGuard.sol";
import "./ERC721A.sol";
import "./Strings.sol";

interface MintTicketFactory {
    function getTicketSizeID(uint256 id) external returns(uint8);
    function burnFromRedeem(address account, uint256 id, uint256 amount) external;
    function balanceOf(address account, uint256 id) external view returns (uint256);
}

interface ConservationInterface {
    function conserve(uint256 tokenId) external;
    function remove(uint256 tokenId) external;
}

interface ExplorationInterface {
    function explore(uint256 tokenId) external;
    function remove(uint256 tokenId) external;
}

contract NeaNFT is Ownable, ERC721A, ReentrancyGuard
{
    uint32 public earlyAccessEnds;

    uint8 constant NO_MODE = 0;
    uint8 constant EXPLORATION_MODE = 1;
    uint8 constant CONSERVATION_MODE = 2;
    uint8 constant COMBO_MODE = 3;

    bool public allowConservation = false;
    bool public allowExploration = false;
    bool public allowComboMode = false;
    bool public allowModeSetting = false;

    struct TokenData {
        uint8 tokenSize;
        uint8 tokenMode;
        string tokenTier;
    }

    struct RedeemParams {
        uint256[] mtIndexes; 
        uint256[] amounts;
        uint256[] _parcelId; 
        uint256[] _size;
        uint256[] _gridId;
    }

    mapping(uint256 => TokenData) tokenDataStorage;
    mapping(address => bool) public allowlist;

    MintTicketFactory public neaMintTicketFactory;
    ConservationInterface public conservationContract;
    ExplorationInterface public explorationContract;

    event Redeemed(address indexed account, uint256[] mtIndexes, uint256[] amounts, uint256[] _tokenIds, uint256[] _parcelId, uint256[] _size, uint256[] _gridId);

    constructor(
        uint256 maxBatchSize_,
        uint256 collectionSize_,
        string memory name,
        string memory symbol,
        address _mintTicketAddress,
        uint32 _earlyAccessEnds
    ) ERC721A(name, symbol, maxBatchSize_, collectionSize_) {
        neaMintTicketFactory = MintTicketFactory(_mintTicketAddress);
        earlyAccessEnds = _earlyAccessEnds;
    }

    function redeem(
            RedeemParams calldata params
        ) public virtual {

        if (block.timestamp < earlyAccessEnds ) {
            require(allowlist[_msgSender()], 'E01');
        }

        uint256 totalSupply = totalSupply();
        uint256 amountToMint;

        //check to make sure all are valid then re-loop for redemption 
        for(uint i = 0; i < params.mtIndexes.length; i++) {
            require(params.amounts[i] > 0, 'E02');
            require(neaMintTicketFactory.balanceOf(_msgSender(), params.mtIndexes[i]) >= params.amounts[i], 'E03');
            amountToMint += params.amounts[i];
        }

        uint localSupply = 0;
        uint256[] memory tokenIdStorage = new uint256[](amountToMint);

        for(uint i = 0; i < params.mtIndexes.length; i++) {
            uint8 sizeID = neaMintTicketFactory.getTicketSizeID(params.mtIndexes[i]);
            neaMintTicketFactory.burnFromRedeem(_msgSender(), params.mtIndexes[i], params.amounts[i]);
            _safeMint(_msgSender(), params.amounts[i]);
            for(uint j = 0; j < params.amounts[i]; j++) {
                tokenDataStorage[totalSupply + localSupply].tokenMode = NO_MODE;
                tokenDataStorage[totalSupply + localSupply ].tokenSize = sizeID;
                tokenIdStorage[localSupply] = totalSupply + localSupply;
                localSupply++;
            }
        }
        emit Redeemed(_msgSender(), params.mtIndexes, params.amounts, tokenIdStorage, params._parcelId, params._size, params._gridId);
    }

    function walletOfOwner(address _owner) public view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) return new uint256[](0);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    function seedAllowlist(address[] memory addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            allowlist[addresses[i]] = true;
        }
    }

    function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) {
        return ownershipOf(tokenId);
    }

    function getSizeId(uint256 tokenId) external view returns (uint256) {
        return tokenDataStorage[tokenId].tokenSize;
    }

    function getTokenMode(uint256 tokenId) external view returns (uint256) {
        return tokenDataStorage[tokenId].tokenMode;
    }

    function getTokenTier(uint256 tokenId) external view returns (string memory) {
        return tokenDataStorage[tokenId].tokenTier;
    }

    // metadata URI
    string private _baseTokenURI;

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

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

    function setTokenMode(uint256 tokenId, uint8 tokenMode) external nonReentrant {
        require(_msgSender() == owner() || _msgSender() == ownerOf(tokenId), 'E04');
        require(tokenDataStorage[tokenId].tokenMode != tokenMode, 'E08');
        require(allowModeSetting, 'E10');

        if ( tokenMode == CONSERVATION_MODE ) {
            require(allowConservation, "E10");
            conservationContract.conserve(tokenId);
        }

        if ( tokenMode == EXPLORATION_MODE ) {
            require(allowExploration, "E10");
            explorationContract.explore(tokenId);
        }

        if ( tokenMode == COMBO_MODE ) {
            require(allowComboMode, "E10");
            explorationContract.explore(tokenId);
            conservationContract.conserve(tokenId);
        }

        tokenDataStorage[tokenId].tokenMode = tokenMode;
    }

    function resetTokenMode(uint256 tokenId) external nonReentrant {

        uint8 currentTokenMode = tokenDataStorage[tokenId].tokenMode;

        require(_msgSender() == owner() || _msgSender() == ownerOf(tokenId), 'E04');
        require(currentTokenMode != NO_MODE, 'E08');
        require(allowModeSetting, 'E10');

        if ( currentTokenMode == EXPLORATION_MODE ) {
            explorationContract.remove(tokenId);
        }

        if ( currentTokenMode == CONSERVATION_MODE ) {
            conservationContract.remove(tokenId);
        }

        if ( currentTokenMode == COMBO_MODE ) {
            explorationContract.remove(tokenId);
            conservationContract.remove(tokenId);
        }

        tokenDataStorage[tokenId].tokenMode = NO_MODE;

    }

    function setMintTicketAddress(address _mintTicketAddress) external onlyOwner {
        require(address(_mintTicketAddress) != address(0), 'E05');
        neaMintTicketFactory = MintTicketFactory(_mintTicketAddress);
    }

    function setExplorationAddress(address _explorationAddress) external onlyOwner {
        require(address(_explorationAddress) != address(0), 'E05');
        explorationContract = ExplorationInterface(_explorationAddress);
    }

    function setConservationAddress(address _conservationAddress) external onlyOwner {
        require(address(_conservationAddress) != address(0), 'E05');
        conservationContract = ConservationInterface(_conservationAddress);
    }

    function setEarlyAccessEnds(uint32 _earlyAccessEnds) external onlyOwner {
        require(_earlyAccessEnds > block.timestamp, "E06");
        earlyAccessEnds = _earlyAccessEnds;
    }

    function setAllowTokenMode(bool _allowModeSetting) external onlyOwner {
        allowModeSetting = _allowModeSetting;
    }

    function setAllowConservation(bool _allowConservation) external onlyOwner {
        allowConservation = _allowConservation;
    }


    function setAllowExploration(bool _allowExploration) external onlyOwner {
        allowExploration = _allowExploration;
    }


    function setAllowComboMode(bool _allowComboMode) external onlyOwner {
        allowComboMode = _allowComboMode;
    }

    function batchSetTokenTier(uint256[] calldata _tokenIds, string[] calldata _tokenTiers) external onlyOwner {
        require(_tokenIds.length == _tokenTiers.length, 'E09');
         for (uint256 i = 0; i < _tokenIds.length; i++) {
             tokenDataStorage[_tokenIds[i]].tokenTier = _tokenTiers[i];
         }
    }

    function _beforeTokenTransfers( address _from, address _to, uint256 _startTokenId, uint256 _quantity) internal virtual override {
        require(tokenDataStorage[_startTokenId].tokenMode == NO_MODE, "E07");
        super._beforeTokenTransfers(_from, _to, _startTokenId, _quantity);
    }

}

File 1 of 13: Address.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.6;

library Address {
    function isContract(address account) internal view returns (bool) {
        uint size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }
}

File 2 of 13: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 3 of 13: 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 4 of 13: ERC721A.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./IERC721Enumerable.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

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

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

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

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

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

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

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

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

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

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

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

  /**
   * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
   * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
   * by default, can be overriden in child contracts.
   */
  function _baseURI() internal view virtual returns (string memory) {
    return "";
  }

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: 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 override {
    _transfer(from, to, tokenId);
  }

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: 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`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

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

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `tokenId` token must be owned by `from`.
   *
   * Emits a {Transfer} event.
   */
  function _transfer(
    address from,
    address to,
    uint256 tokenId
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

  /**
   * @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("ERC721A: transfer to non ERC721Receiver implementer");
        } else {
          assembly {
            revert(add(32, reason), mload(reason))
          }
        }
      }
    } else {
      return true;
    }
  }

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
   * transferred to `to`.
   * - When `from` is zero, `tokenId` will be minted for `to`.
   */
  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

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

File 5 of 13: 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 6 of 13: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./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 13: 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 8 of 13: 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 9 of 13: 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 11 of 13: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 13 of 13: Strings.sol
pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address","name":"_mintTicketAddress","type":"address"},{"internalType":"uint32","name":"_earlyAccessEnds","type":"uint32"}],"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":"account","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"mtIndexes","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"_parcelId","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"_size","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"_gridId","type":"uint256[]"}],"name":"Redeemed","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":"allowComboMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowConservation","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowExploration","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowModeSetting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"},{"internalType":"string[]","name":"_tokenTiers","type":"string[]"}],"name":"batchSetTokenTier","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"conservationContract","outputs":[{"internalType":"contract ConservationInterface","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlyAccessEnds","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"explorationContract","outputs":[{"internalType":"contract ExplorationInterface","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getSizeId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTokenMode","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTokenTier","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"neaMintTicketFactory","outputs":[{"internalType":"contract MintTicketFactory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256[]","name":"mtIndexes","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"uint256[]","name":"_parcelId","type":"uint256[]"},{"internalType":"uint256[]","name":"_size","type":"uint256[]"},{"internalType":"uint256[]","name":"_gridId","type":"uint256[]"}],"internalType":"struct NeaNFT.RedeemParams","name":"params","type":"tuple"}],"name":"redeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"resetTokenMode","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":"addresses","type":"address[]"}],"name":"seedAllowlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_allowComboMode","type":"bool"}],"name":"setAllowComboMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_allowConservation","type":"bool"}],"name":"setAllowConservation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_allowExploration","type":"bool"}],"name":"setAllowExploration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_allowModeSetting","type":"bool"}],"name":"setAllowTokenMode","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_conservationAddress","type":"address"}],"name":"setConservationAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_earlyAccessEnds","type":"uint32"}],"name":"setEarlyAccessEnds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_explorationAddress","type":"address"}],"name":"setExplorationAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_mintTicketAddress","type":"address"}],"name":"setMintTicketAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint8","name":"tokenMode","type":"uint8"}],"name":"setTokenMode","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"}]

60c060405260006001819055600855600a805463ffffffff60201b191690553480156200002b57600080fd5b5060405162003bc638038062003bc68339810160408190526200004e916200035a565b838387876200005d33620001ad565b60008111620000ca5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b600082116200012c5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620000c1565b835162000141906002906020870190620001fd565b50825162000157906003906020860190620001fd565b5060a09190915260805250506001600955600d80546001600160a01b0319166001600160a01b039390931692909217909155600a805463ffffffff191663ffffffff909216919091179055506200046b92505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200020b9062000418565b90600052602060002090601f0160209004810192826200022f57600085556200027a565b82601f106200024a57805160ff19168380011785556200027a565b828001600101855582156200027a579182015b828111156200027a5782518255916020019190600101906200025d565b50620002889291506200028c565b5090565b5b808211156200028857600081556001016200028d565b600082601f830112620002b557600080fd5b81516001600160401b0380821115620002d257620002d262000455565b604051601f8301601f19908116603f01168101908282118183101715620002fd57620002fd62000455565b816040528381526020925086838588010111156200031a57600080fd5b600091505b838210156200033e57858201830151818301840152908201906200031f565b83821115620003505760008385830101525b9695505050505050565b60008060008060008060c087890312156200037457600080fd5b86516020880151604089015191975095506001600160401b03808211156200039b57600080fd5b620003a98a838b01620002a3565b95506060890151915080821115620003c057600080fd5b50620003cf89828a01620002a3565b608089015190945090506001600160a01b0381168114620003ef57600080fd5b60a088015190925063ffffffff811681146200040a57600080fd5b809150509295509295509295565b600181811c908216806200042d57607f821691505b602082108114156200044f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160a05161372a6200049c600039600081816125d3015281816125fd0152612a7001526000505061372a6000f3fe608060405234801561001057600080fd5b50600436106102a05760003560e01c8063715018a611610167578063b88d4fde116100ce578063e985e9c511610087578063e985e9c514610659578063e9def62714610695578063edf1b41e146106a8578063ee354008146106bb578063f2fde38b146106ce578063ffa4727b146106e157600080fd5b8063b88d4fde146105df578063c26b265f146105f2578063c87b56dd14610605578063d7224ba014610618578063e2d1b3f214610621578063e31ea4961461063457600080fd5b80639e0359ec116101205780639e0359ec1461054d578063a22cb46514610560578063a497b72914610573578063a7cd52cb14610596578063b1a8e8f6146105b9578063b8029a9c146105cc57600080fd5b8063715018a6146104c6578063740587d5146104ce57806388c206f7146104e15780638da5cb5b146104f45780639231ab2a1461050557806395d89b411461054557600080fd5b80633de578991161020b57806355f804b3116101c457806355f804b31461043f578063590e5088146104525780636352211e146104655780636550615c14610478578063696a6f8c1461048b57806370a08231146104b357600080fd5b80633de57899146103bd5780633e401534146103d057806342842e0e146103e6578063438b6300146103f95780634b0c44e8146104195780634f6ccce71461042c57600080fd5b80631954bcb71161025d5780631954bcb7146103495780631d8fc6311461035d57806323b872dd1461037057806326180d11146103835780632f745c59146103965780633b33716a146103a957600080fd5b806301ffc9a7146102a557806306fdde03146102cd578063081812fc146102e257806308cf22101461030d578063095ea7b31461032257806318160ddd14610337575b600080fd5b6102b86102b3366004613077565b6106f4565b60405190151581526020015b60405180910390f35b6102d5610761565b6040516102c491906133a9565b6102f56102f036600461315c565b6107f3565b6040516001600160a01b0390911681526020016102c4565b600a546102b890640100000000900460ff1681565b610335610330366004612f14565b610883565b005b6001545b6040519081526020016102c4565b600a546102b890600160301b900460ff1681565b61033561036b366004612da1565b61099b565b61033561037e366004612def565b610a0d565b610335610391366004612da1565b610a18565b61033b6103a4366004612f14565b610a8a565b600a546102b890600160381b900460ff1681565b6103356103cb366004612da1565b610c02565b600a546102b89065010000000000900460ff1681565b6103356103f4366004612def565b610c74565b61040c610407366004612da1565b610c8f565b6040516102c49190613396565b610335610427366004613122565b610d47565b61033b61043a36600461315c565b6112ea565b61033561044d3660046130b1565b611353565b6103356104603660046131be565b611389565b6102f561047336600461315c565b61140a565b610335610486366004612ff1565b61141c565b61033b61049936600461315c565b6000908152600b6020526040902054610100900460ff1690565b61033b6104c1366004612da1565b6114ff565b610335611590565b600d546102f5906001600160a01b031681565b6103356104ef366004612f3e565b6115c6565b6000546001600160a01b03166102f5565b61051861051336600461315c565b61165c565b6040805182516001600160a01b031681526020928301516001600160401b031692810192909252016102c4565b6102d5611679565b61033561055b36600461315c565b611688565b61033561056e366004612eea565b611991565b61033b61058136600461315c565b6000908152600b602052604090205460ff1690565b6102b86105a4366004612da1565b600c6020526000908152604090205460ff1681565b6103356105c736600461318e565b611a56565b6103356105da36600461305c565b611dd5565b6103356105ed366004612e2b565b611e20565b6102d561060036600461315c565b611e59565b6102d561061336600461315c565b611efe565b61033b60085481565b61033561062f36600461305c565b611fcb565b600a546106449063ffffffff1681565b60405163ffffffff90911681526020016102c4565b6102b8610667366004612dbc565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6103356106a336600461305c565b612015565b600e546102f5906001600160a01b031681565b600f546102f5906001600160a01b031681565b6103356106dc366004612da1565b612061565b6103356106ef36600461305c565b6120fc565b60006001600160e01b031982166380ac58cd60e01b148061072557506001600160e01b03198216635b5e139f60e01b145b8061074057506001600160e01b0319821663780e9d6360e01b145b8061075b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107709061360d565b80601f016020809104026020016040519081016040528092919081815260200182805461079c9061360d565b80156107e95780601f106107be576101008083540402835291602001916107e9565b820191906000526020600020905b8154815290600101906020018083116107cc57829003601f168201915b5050505050905090565b6000610800826001541190565b6108675760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061088e8261140a565b9050806001600160a01b0316836001600160a01b031614156108fd5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161085e565b336001600160a01b038216148061091957506109198133610667565b61098b5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161085e565b610996838383612148565b505050565b6000546001600160a01b031633146109c55760405162461bcd60e51b815260040161085e906133f6565b6001600160a01b0381166109eb5760405162461bcd60e51b815260040161085e906133bc565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6109968383836121a4565b6000546001600160a01b03163314610a425760405162461bcd60e51b815260040161085e906133f6565b6001600160a01b038116610a685760405162461bcd60e51b815260040161085e906133bc565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610a95836114ff565b8210610aee5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161085e565b6000610af960015490565b905060008060005b83811015610ba2576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610b5357805192505b876001600160a01b0316836001600160a01b03161415610b8f5786841415610b815750935061075b92505050565b83610b8b81613648565b9450505b5080610b9a81613648565b915050610b01565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161085e565b6000546001600160a01b03163314610c2c5760405162461bcd60e51b815260040161085e906133f6565b6001600160a01b038116610c525760405162461bcd60e51b815260040161085e906133bc565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b61099683838360405180602001604052806000815250611e20565b60606000610c9c836114ff565b905080610cbd5760408051600080825260208201909252905b509392505050565b6000816001600160401b03811115610cd757610cd76136b9565b604051908082528060200260200182016040528015610d00578160200160208202803683370190505b50905060005b82811015610cb557610d188582610a8a565b828281518110610d2a57610d2a6136a3565b602090810291909101015280610d3f81613648565b915050610d06565b600a5463ffffffff16421015610d9c57336000908152600c602052604090205460ff16610d9c5760405162461bcd60e51b815260206004820152600360248201526245303160e81b604482015260640161085e565b6000610da760015490565b90506000805b610db7848061347e565b9050811015610f70576000610dcf602086018661347e565b83818110610ddf57610ddf6136a3565b9050602002013511610e195760405162461bcd60e51b815260206004820152600360248201526222981960e91b604482015260640161085e565b610e26602085018561347e565b82818110610e3657610e366136a3565b600d5460209091029290920135916001600160a01b0316905062fdd58e610e5a3390565b610e64888061347e565b86818110610e7457610e746136a3565b6040516001600160e01b031960e087901b1681526001600160a01b039094166004850152602002919091013560248301525060440160206040518083038186803b158015610ec157600080fd5b505afa158015610ed5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef99190613175565b1015610f2d5760405162461bcd60e51b815260206004820152600360248201526245303360e81b604482015260640161085e565b610f3a602085018561347e565b82818110610f4a57610f4a6136a3565b9050602002013582610f5c919061355f565b915080610f6881613648565b915050610dad565b50600080826001600160401b03811115610f8c57610f8c6136b9565b604051908082528060200260200182016040528015610fb5578160200160208202803683370190505b50905060005b610fc5868061347e565b905081101561125f57600d546000906001600160a01b031663ea30b004610fec898061347e565b85818110610ffc57610ffc6136a3565b905060200201356040518263ffffffff1660e01b815260040161102191815260200190565b602060405180830381600087803b15801561103b57600080fd5b505af115801561104f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061107391906131e4565b600d549091506001600160a01b0316633aeca210336110928a8061347e565b868181106110a2576110a26136a3565b905060200201358a80602001906110b9919061347e565b878181106110c9576110c96136a3565b6040516001600160e01b031960e088901b1681526001600160a01b039095166004860152602485019390935250602090910201356044820152606401600060405180830381600087803b15801561111f57600080fd5b505af1158015611133573d6000803e3d6000fd5b5050505061116a6111413390565b61114e60208a018a61347e565b8581811061115e5761115e6136a3565b90506020020135612537565b60005b61117a602089018961347e565b8481811061118a5761118a6136a3565b9050602002013581101561124a576000600b816111a7888b61355f565b815260200190815260200160002060000160016101000a81548160ff021916908360ff16021790555081600b6000878a6111e1919061355f565b81526020810191909152604001600020805460ff191660ff9290921691909117905561120d858861355f565b84868151811061121f5761121f6136a3565b60209081029190910101528461123481613648565b955050808061124290613648565b91505061116d565b5050808061125790613648565b915050610fbb565b50337fd88dff69aaa7a6ff16d99b07d464e46d1b8f847b11da5b993f8cec6484e3681b61128c878061347e565b61129960208a018a61347e565b866112a760408d018d61347e565b6112b460608f018f61347e565b8f80608001906112c4919061347e565b6040516112db9b9a9998979695949392919061330a565b60405180910390a25050505050565b60006112f560015490565b821061134f5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161085e565b5090565b6000546001600160a01b0316331461137d5760405162461bcd60e51b815260040161085e906133f6565b61099660108383612c9a565b6000546001600160a01b031633146113b35760405162461bcd60e51b815260040161085e906133f6565b428163ffffffff16116113ee5760405162461bcd60e51b815260206004820152600360248201526222981b60e91b604482015260640161085e565b600a805463ffffffff191663ffffffff92909216919091179055565b600061141582612551565b5192915050565b6000546001600160a01b031633146114465760405162461bcd60e51b815260040161085e906133f6565b82811461147b5760405162461bcd60e51b815260206004820152600360248201526245303960e81b604482015260640161085e565b60005b838110156114f857828282818110611498576114986136a3565b90506020028101906114aa91906134c7565b600b60008888868181106114c0576114c06136a3565b90506020020135815260200190815260200160002060010191906114e5929190612c9a565b50806114f081613648565b91505061147e565b5050505050565b60006001600160a01b03821661156b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161085e565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146115ba5760405162461bcd60e51b815260040161085e906133f6565b6115c460006126fa565b565b6000546001600160a01b031633146115f05760405162461bcd60e51b815260040161085e906133f6565b60005b8151811015611658576001600c6000848481518110611614576116146136a3565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061165081613648565b9150506115f3565b5050565b604080518082019091526000808252602082015261075b82612551565b6060600380546107709061360d565b600260095414156116db5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161085e565b60026009556000818152600b602052604090205460ff6101009091041661170a6000546001600160a01b031690565b6001600160a01b0316336001600160a01b03161480611742575061172d8261140a565b6001600160a01b0316336001600160a01b0316145b6117745760405162461bcd60e51b8152602060048201526003602482015262114c0d60ea1b604482015260640161085e565b60ff81166117aa5760405162461bcd60e51b815260206004820152600360248201526208a60760eb1b604482015260640161085e565b600a54600160381b900460ff166117d35760405162461bcd60e51b815260040161085e906133d9565b60ff81166001141561183e57600f54604051634cc8221560e01b8152600481018490526001600160a01b0390911690634cc8221590602401600060405180830381600087803b15801561182557600080fd5b505af1158015611839573d6000803e3d6000fd5b505050505b60ff8116600214156118a957600e54604051634cc8221560e01b8152600481018490526001600160a01b0390911690634cc8221590602401600060405180830381600087803b15801561189057600080fd5b505af11580156118a4573d6000803e3d6000fd5b505050505b60ff81166003141561197257600f54604051634cc8221560e01b8152600481018490526001600160a01b0390911690634cc8221590602401600060405180830381600087803b1580156118fb57600080fd5b505af115801561190f573d6000803e3d6000fd5b5050600e54604051634cc8221560e01b8152600481018690526001600160a01b039091169250634cc822159150602401600060405180830381600087803b15801561195957600080fd5b505af115801561196d573d6000803e3d6000fd5b505050505b506000908152600b60205260409020805461ff00191690556001600955565b6001600160a01b0382163314156119ea5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161085e565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60026009541415611aa95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161085e565b60026009556000546001600160a01b0316331480611ae05750611acb8261140a565b6001600160a01b0316336001600160a01b0316145b611b125760405162461bcd60e51b8152602060048201526003602482015262114c0d60ea1b604482015260640161085e565b6000828152600b602052604090205460ff828116610100909204161415611b615760405162461bcd60e51b815260206004820152600360248201526208a60760eb1b604482015260640161085e565b600a54600160381b900460ff16611b8a5760405162461bcd60e51b815260040161085e906133d9565b60ff811660021415611c1f57600a54640100000000900460ff16611bc05760405162461bcd60e51b815260040161085e906133d9565b600e546040516366c355fb60e01b8152600481018490526001600160a01b03909116906366c355fb90602401600060405180830381600087803b158015611c0657600080fd5b505af1158015611c1a573d6000803e3d6000fd5b505050505b60ff811660011415611cb557600a5465010000000000900460ff16611c565760405162461bcd60e51b815260040161085e906133d9565b600f54604051636457e38960e01b8152600481018490526001600160a01b0390911690636457e38990602401600060405180830381600087803b158015611c9c57600080fd5b505af1158015611cb0573d6000803e3d6000fd5b505050505b60ff811660031415611da757600a54600160301b900460ff16611cea5760405162461bcd60e51b815260040161085e906133d9565b600f54604051636457e38960e01b8152600481018490526001600160a01b0390911690636457e38990602401600060405180830381600087803b158015611d3057600080fd5b505af1158015611d44573d6000803e3d6000fd5b5050600e546040516366c355fb60e01b8152600481018690526001600160a01b0390911692506366c355fb9150602401600060405180830381600087803b158015611d8e57600080fd5b505af1158015611da2573d6000803e3d6000fd5b505050505b6000918252600b6020526040909120805460ff9092166101000261ff00199092169190911790556001600955565b6000546001600160a01b03163314611dff5760405162461bcd60e51b815260040161085e906133f6565b600a8054911515600160301b0266ff00000000000019909216919091179055565b611e2b8484846121a4565b611e378484848461274a565b611e535760405162461bcd60e51b815260040161085e9061342b565b50505050565b6000818152600b60205260409020600101805460609190611e799061360d565b80601f0160208091040260200160405190810160405280929190818152602001828054611ea59061360d565b8015611ef25780601f10611ec757610100808354040283529160200191611ef2565b820191906000526020600020905b815481529060010190602001808311611ed557829003601f168201915b50505050509050919050565b6060611f0b826001541190565b611f6f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161085e565b6000611f79612858565b90506000815111611f995760405180602001604052806000815250611fc4565b80611fa384612867565b604051602001611fb492919061329e565b6040516020818303038152906040525b9392505050565b6000546001600160a01b03163314611ff55760405162461bcd60e51b815260040161085e906133f6565b600a80549115156401000000000264ff0000000019909216919091179055565b6000546001600160a01b0316331461203f5760405162461bcd60e51b815260040161085e906133f6565b600a8054911515600160381b0267ff0000000000000019909216919091179055565b6000546001600160a01b0316331461208b5760405162461bcd60e51b815260040161085e906133f6565b6001600160a01b0381166120f05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161085e565b6120f9816126fa565b50565b6000546001600160a01b031633146121265760405162461bcd60e51b815260040161085e906133f6565b600a8054911515650100000000000265ff000000000019909216919091179055565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006121af82612551565b80519091506000906001600160a01b0316336001600160a01b031614806121e65750336121db846107f3565b6001600160a01b0316145b806121f8575081516121f89033610667565b9050806122625760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161085e565b846001600160a01b031682600001516001600160a01b0316146122d65760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161085e565b6001600160a01b03841661233a5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161085e565b6123478585856001612964565b6123576000848460000151612148565b6001600160a01b03851660009081526005602052604081208054600192906123899084906001600160801b031661358b565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260056020526040812080546001945090926123d59185911661353d565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561245c84600161355f565b6000818152600460205260409020549091506001600160a01b03166124ed57612486816001541190565b156124ed5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6116588282604051806020016040528060008152506129b3565b6040805180820190915260008082526020820152612570826001541190565b6125cf5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161085e565b60007f00000000000000000000000000000000000000000000000000000000000000008310612630576126227f0000000000000000000000000000000000000000000000000000000000000000846135b3565b61262d90600161355f565b90505b825b818110612699576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561268657949350505050565b5080612691816135f6565b915050612632565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161085e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b1561284c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061278e9033908990889088906004016132cd565b602060405180830381600087803b1580156127a857600080fd5b505af19250505080156127d8575060408051601f3d908101601f191682019092526127d591810190613094565b60015b612832573d808015612806576040519150601f19603f3d011682016040523d82523d6000602084013e61280b565b606091505b50805161282a5760405162461bcd60e51b815260040161085e9061342b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612850565b5060015b949350505050565b6060601080546107709061360d565b60608161288b5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156128b5578061289f81613648565b91506128ae9050600a83613577565b915061288f565b6000816001600160401b038111156128cf576128cf6136b9565b6040519080825280601f01601f1916602001820160405280156128f9576020820181803683370190505b5090505b84156128505761290e6001836135b3565b915061291b600a86613663565b61292690603061355f565b60f81b81838151811061293b5761293b6136a3565b60200101906001600160f81b031916908160001a90535061295d600a86613577565b94506128fd565b6000828152600b6020526040902054610100900460ff16156129ae5760405162461bcd60e51b815260206004820152600360248201526245303760e81b604482015260640161085e565b611e53565b6001546001600160a01b038416612a165760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161085e565b612a21816001541190565b15612a6e5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161085e565b7f0000000000000000000000000000000000000000000000000000000000000000831115612ae95760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161085e565b612af66000858386612964565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612b5290879061353d565b6001600160801b03168152602001858360200151612b70919061353d565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015612c8f5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612c53600088848861274a565b612c6f5760405162461bcd60e51b815260040161085e9061342b565b81612c7981613648565b9250508080612c8790613648565b915050612c06565b50600181905561252f565b828054612ca69061360d565b90600052602060002090601f016020900481019282612cc85760008555612d0e565b82601f10612ce15782800160ff19823516178555612d0e565b82800160010185558215612d0e579182015b82811115612d0e578235825591602001919060010190612cf3565b5061134f9291505b8082111561134f5760008155600101612d16565b80356001600160a01b0381168114612d4157600080fd5b919050565b60008083601f840112612d5857600080fd5b5081356001600160401b03811115612d6f57600080fd5b6020830191508360208260051b8501011115612d8a57600080fd5b9250929050565b80358015158114612d4157600080fd5b600060208284031215612db357600080fd5b611fc482612d2a565b60008060408385031215612dcf57600080fd5b612dd883612d2a565b9150612de660208401612d2a565b90509250929050565b600080600060608486031215612e0457600080fd5b612e0d84612d2a565b9250612e1b60208501612d2a565b9150604084013590509250925092565b60008060008060808587031215612e4157600080fd5b612e4a85612d2a565b93506020612e59818701612d2a565b93506040860135925060608601356001600160401b0380821115612e7c57600080fd5b818801915088601f830112612e9057600080fd5b813581811115612ea257612ea26136b9565b612eb4601f8201601f1916850161350d565b91508082528984828501011115612eca57600080fd5b808484018584013760008482840101525080935050505092959194509250565b60008060408385031215612efd57600080fd5b612f0683612d2a565b9150612de660208401612d91565b60008060408385031215612f2757600080fd5b612f3083612d2a565b946020939093013593505050565b60006020808385031215612f5157600080fd5b82356001600160401b0380821115612f6857600080fd5b818501915085601f830112612f7c57600080fd5b813581811115612f8e57612f8e6136b9565b8060051b9150612f9f84830161350d565b8181528481019084860184860187018a1015612fba57600080fd5b600095505b83861015612fe457612fd081612d2a565b835260019590950194918601918601612fbf565b5098975050505050505050565b6000806000806040858703121561300757600080fd5b84356001600160401b038082111561301e57600080fd5b61302a88838901612d46565b9096509450602087013591508082111561304357600080fd5b5061305087828801612d46565b95989497509550505050565b60006020828403121561306e57600080fd5b611fc482612d91565b60006020828403121561308957600080fd5b8135611fc4816136cf565b6000602082840312156130a657600080fd5b8151611fc4816136cf565b600080602083850312156130c457600080fd5b82356001600160401b03808211156130db57600080fd5b818501915085601f8301126130ef57600080fd5b8135818111156130fe57600080fd5b86602082850101111561311057600080fd5b60209290920196919550909350505050565b60006020828403121561313457600080fd5b81356001600160401b0381111561314a57600080fd5b820160a08185031215611fc457600080fd5b60006020828403121561316e57600080fd5b5035919050565b60006020828403121561318757600080fd5b5051919050565b600080604083850312156131a157600080fd5b8235915060208301356131b3816136e5565b809150509250929050565b6000602082840312156131d057600080fd5b813563ffffffff81168114611fc457600080fd5b6000602082840312156131f657600080fd5b8151611fc4816136e5565b81835260006001600160fb1b0383111561321a57600080fd5b8260051b8083602087013760009401602001938452509192915050565b600081518084526020808501945080840160005b838110156132675781518752958201959082019060010161324b565b509495945050505050565b6000815180845261328a8160208601602086016135ca565b601f01601f19169290920160200192915050565b600083516132b08184602088016135ca565b8351908301906132c48183602088016135ca565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061330090830184613272565b9695505050505050565b60c08152600061331e60c083018d8f613201565b8281036020840152613331818c8e613201565b90508281036040840152613345818b613237565b9050828103606084015261335a81898b613201565b9050828103608084015261336f818789613201565b905082810360a0840152613384818587613201565b9e9d5050505050505050505050505050565b602081526000611fc46020830184613237565b602081526000611fc46020830184613272565b60208082526003908201526245303560e81b604082015260600190565b60208082526003908201526204531360ec1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000808335601e1984360301811261349557600080fd5b8301803591506001600160401b038211156134af57600080fd5b6020019150600581901b3603821315612d8a57600080fd5b6000808335601e198436030181126134de57600080fd5b8301803591506001600160401b038211156134f857600080fd5b602001915036819003821315612d8a57600080fd5b604051601f8201601f191681016001600160401b0381118282101715613535576135356136b9565b604052919050565b60006001600160801b038083168185168083038211156132c4576132c4613677565b6000821982111561357257613572613677565b500190565b6000826135865761358661368d565b500490565b60006001600160801b03838116908316818110156135ab576135ab613677565b039392505050565b6000828210156135c5576135c5613677565b500390565b60005b838110156135e55781810151838201526020016135cd565b83811115611e535750506000910152565b60008161360557613605613677565b506000190190565b600181811c9082168061362157607f821691505b6020821081141561364257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561365c5761365c613677565b5060010190565b6000826136725761367261368d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146120f957600080fd5b60ff811681146120f957600080fdfea26469706673582212201636185eb754f4ea5a9460be54dd8f319df25e71becc0e10d004c65ee407f1a164736f6c63430008070033000000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000286100000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000fdeef424c147e869a9bb2723874186f06f36b38600000000000000000000000000000000000000000000000000000000623dbcd000000000000000000000000000000000000000000000000000000000000000184e656d75732047656e6573697320436f6c6c656374696f6e000000000000000000000000000000000000000000000000000000000000000000000000000000054e4547454e000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102a05760003560e01c8063715018a611610167578063b88d4fde116100ce578063e985e9c511610087578063e985e9c514610659578063e9def62714610695578063edf1b41e146106a8578063ee354008146106bb578063f2fde38b146106ce578063ffa4727b146106e157600080fd5b8063b88d4fde146105df578063c26b265f146105f2578063c87b56dd14610605578063d7224ba014610618578063e2d1b3f214610621578063e31ea4961461063457600080fd5b80639e0359ec116101205780639e0359ec1461054d578063a22cb46514610560578063a497b72914610573578063a7cd52cb14610596578063b1a8e8f6146105b9578063b8029a9c146105cc57600080fd5b8063715018a6146104c6578063740587d5146104ce57806388c206f7146104e15780638da5cb5b146104f45780639231ab2a1461050557806395d89b411461054557600080fd5b80633de578991161020b57806355f804b3116101c457806355f804b31461043f578063590e5088146104525780636352211e146104655780636550615c14610478578063696a6f8c1461048b57806370a08231146104b357600080fd5b80633de57899146103bd5780633e401534146103d057806342842e0e146103e6578063438b6300146103f95780634b0c44e8146104195780634f6ccce71461042c57600080fd5b80631954bcb71161025d5780631954bcb7146103495780631d8fc6311461035d57806323b872dd1461037057806326180d11146103835780632f745c59146103965780633b33716a146103a957600080fd5b806301ffc9a7146102a557806306fdde03146102cd578063081812fc146102e257806308cf22101461030d578063095ea7b31461032257806318160ddd14610337575b600080fd5b6102b86102b3366004613077565b6106f4565b60405190151581526020015b60405180910390f35b6102d5610761565b6040516102c491906133a9565b6102f56102f036600461315c565b6107f3565b6040516001600160a01b0390911681526020016102c4565b600a546102b890640100000000900460ff1681565b610335610330366004612f14565b610883565b005b6001545b6040519081526020016102c4565b600a546102b890600160301b900460ff1681565b61033561036b366004612da1565b61099b565b61033561037e366004612def565b610a0d565b610335610391366004612da1565b610a18565b61033b6103a4366004612f14565b610a8a565b600a546102b890600160381b900460ff1681565b6103356103cb366004612da1565b610c02565b600a546102b89065010000000000900460ff1681565b6103356103f4366004612def565b610c74565b61040c610407366004612da1565b610c8f565b6040516102c49190613396565b610335610427366004613122565b610d47565b61033b61043a36600461315c565b6112ea565b61033561044d3660046130b1565b611353565b6103356104603660046131be565b611389565b6102f561047336600461315c565b61140a565b610335610486366004612ff1565b61141c565b61033b61049936600461315c565b6000908152600b6020526040902054610100900460ff1690565b61033b6104c1366004612da1565b6114ff565b610335611590565b600d546102f5906001600160a01b031681565b6103356104ef366004612f3e565b6115c6565b6000546001600160a01b03166102f5565b61051861051336600461315c565b61165c565b6040805182516001600160a01b031681526020928301516001600160401b031692810192909252016102c4565b6102d5611679565b61033561055b36600461315c565b611688565b61033561056e366004612eea565b611991565b61033b61058136600461315c565b6000908152600b602052604090205460ff1690565b6102b86105a4366004612da1565b600c6020526000908152604090205460ff1681565b6103356105c736600461318e565b611a56565b6103356105da36600461305c565b611dd5565b6103356105ed366004612e2b565b611e20565b6102d561060036600461315c565b611e59565b6102d561061336600461315c565b611efe565b61033b60085481565b61033561062f36600461305c565b611fcb565b600a546106449063ffffffff1681565b60405163ffffffff90911681526020016102c4565b6102b8610667366004612dbc565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6103356106a336600461305c565b612015565b600e546102f5906001600160a01b031681565b600f546102f5906001600160a01b031681565b6103356106dc366004612da1565b612061565b6103356106ef36600461305c565b6120fc565b60006001600160e01b031982166380ac58cd60e01b148061072557506001600160e01b03198216635b5e139f60e01b145b8061074057506001600160e01b0319821663780e9d6360e01b145b8061075b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107709061360d565b80601f016020809104026020016040519081016040528092919081815260200182805461079c9061360d565b80156107e95780601f106107be576101008083540402835291602001916107e9565b820191906000526020600020905b8154815290600101906020018083116107cc57829003601f168201915b5050505050905090565b6000610800826001541190565b6108675760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061088e8261140a565b9050806001600160a01b0316836001600160a01b031614156108fd5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161085e565b336001600160a01b038216148061091957506109198133610667565b61098b5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161085e565b610996838383612148565b505050565b6000546001600160a01b031633146109c55760405162461bcd60e51b815260040161085e906133f6565b6001600160a01b0381166109eb5760405162461bcd60e51b815260040161085e906133bc565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6109968383836121a4565b6000546001600160a01b03163314610a425760405162461bcd60e51b815260040161085e906133f6565b6001600160a01b038116610a685760405162461bcd60e51b815260040161085e906133bc565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610a95836114ff565b8210610aee5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161085e565b6000610af960015490565b905060008060005b83811015610ba2576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610b5357805192505b876001600160a01b0316836001600160a01b03161415610b8f5786841415610b815750935061075b92505050565b83610b8b81613648565b9450505b5080610b9a81613648565b915050610b01565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161085e565b6000546001600160a01b03163314610c2c5760405162461bcd60e51b815260040161085e906133f6565b6001600160a01b038116610c525760405162461bcd60e51b815260040161085e906133bc565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b61099683838360405180602001604052806000815250611e20565b60606000610c9c836114ff565b905080610cbd5760408051600080825260208201909252905b509392505050565b6000816001600160401b03811115610cd757610cd76136b9565b604051908082528060200260200182016040528015610d00578160200160208202803683370190505b50905060005b82811015610cb557610d188582610a8a565b828281518110610d2a57610d2a6136a3565b602090810291909101015280610d3f81613648565b915050610d06565b600a5463ffffffff16421015610d9c57336000908152600c602052604090205460ff16610d9c5760405162461bcd60e51b815260206004820152600360248201526245303160e81b604482015260640161085e565b6000610da760015490565b90506000805b610db7848061347e565b9050811015610f70576000610dcf602086018661347e565b83818110610ddf57610ddf6136a3565b9050602002013511610e195760405162461bcd60e51b815260206004820152600360248201526222981960e91b604482015260640161085e565b610e26602085018561347e565b82818110610e3657610e366136a3565b600d5460209091029290920135916001600160a01b0316905062fdd58e610e5a3390565b610e64888061347e565b86818110610e7457610e746136a3565b6040516001600160e01b031960e087901b1681526001600160a01b039094166004850152602002919091013560248301525060440160206040518083038186803b158015610ec157600080fd5b505afa158015610ed5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef99190613175565b1015610f2d5760405162461bcd60e51b815260206004820152600360248201526245303360e81b604482015260640161085e565b610f3a602085018561347e565b82818110610f4a57610f4a6136a3565b9050602002013582610f5c919061355f565b915080610f6881613648565b915050610dad565b50600080826001600160401b03811115610f8c57610f8c6136b9565b604051908082528060200260200182016040528015610fb5578160200160208202803683370190505b50905060005b610fc5868061347e565b905081101561125f57600d546000906001600160a01b031663ea30b004610fec898061347e565b85818110610ffc57610ffc6136a3565b905060200201356040518263ffffffff1660e01b815260040161102191815260200190565b602060405180830381600087803b15801561103b57600080fd5b505af115801561104f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061107391906131e4565b600d549091506001600160a01b0316633aeca210336110928a8061347e565b868181106110a2576110a26136a3565b905060200201358a80602001906110b9919061347e565b878181106110c9576110c96136a3565b6040516001600160e01b031960e088901b1681526001600160a01b039095166004860152602485019390935250602090910201356044820152606401600060405180830381600087803b15801561111f57600080fd5b505af1158015611133573d6000803e3d6000fd5b5050505061116a6111413390565b61114e60208a018a61347e565b8581811061115e5761115e6136a3565b90506020020135612537565b60005b61117a602089018961347e565b8481811061118a5761118a6136a3565b9050602002013581101561124a576000600b816111a7888b61355f565b815260200190815260200160002060000160016101000a81548160ff021916908360ff16021790555081600b6000878a6111e1919061355f565b81526020810191909152604001600020805460ff191660ff9290921691909117905561120d858861355f565b84868151811061121f5761121f6136a3565b60209081029190910101528461123481613648565b955050808061124290613648565b91505061116d565b5050808061125790613648565b915050610fbb565b50337fd88dff69aaa7a6ff16d99b07d464e46d1b8f847b11da5b993f8cec6484e3681b61128c878061347e565b61129960208a018a61347e565b866112a760408d018d61347e565b6112b460608f018f61347e565b8f80608001906112c4919061347e565b6040516112db9b9a9998979695949392919061330a565b60405180910390a25050505050565b60006112f560015490565b821061134f5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161085e565b5090565b6000546001600160a01b0316331461137d5760405162461bcd60e51b815260040161085e906133f6565b61099660108383612c9a565b6000546001600160a01b031633146113b35760405162461bcd60e51b815260040161085e906133f6565b428163ffffffff16116113ee5760405162461bcd60e51b815260206004820152600360248201526222981b60e91b604482015260640161085e565b600a805463ffffffff191663ffffffff92909216919091179055565b600061141582612551565b5192915050565b6000546001600160a01b031633146114465760405162461bcd60e51b815260040161085e906133f6565b82811461147b5760405162461bcd60e51b815260206004820152600360248201526245303960e81b604482015260640161085e565b60005b838110156114f857828282818110611498576114986136a3565b90506020028101906114aa91906134c7565b600b60008888868181106114c0576114c06136a3565b90506020020135815260200190815260200160002060010191906114e5929190612c9a565b50806114f081613648565b91505061147e565b5050505050565b60006001600160a01b03821661156b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161085e565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146115ba5760405162461bcd60e51b815260040161085e906133f6565b6115c460006126fa565b565b6000546001600160a01b031633146115f05760405162461bcd60e51b815260040161085e906133f6565b60005b8151811015611658576001600c6000848481518110611614576116146136a3565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061165081613648565b9150506115f3565b5050565b604080518082019091526000808252602082015261075b82612551565b6060600380546107709061360d565b600260095414156116db5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161085e565b60026009556000818152600b602052604090205460ff6101009091041661170a6000546001600160a01b031690565b6001600160a01b0316336001600160a01b03161480611742575061172d8261140a565b6001600160a01b0316336001600160a01b0316145b6117745760405162461bcd60e51b8152602060048201526003602482015262114c0d60ea1b604482015260640161085e565b60ff81166117aa5760405162461bcd60e51b815260206004820152600360248201526208a60760eb1b604482015260640161085e565b600a54600160381b900460ff166117d35760405162461bcd60e51b815260040161085e906133d9565b60ff81166001141561183e57600f54604051634cc8221560e01b8152600481018490526001600160a01b0390911690634cc8221590602401600060405180830381600087803b15801561182557600080fd5b505af1158015611839573d6000803e3d6000fd5b505050505b60ff8116600214156118a957600e54604051634cc8221560e01b8152600481018490526001600160a01b0390911690634cc8221590602401600060405180830381600087803b15801561189057600080fd5b505af11580156118a4573d6000803e3d6000fd5b505050505b60ff81166003141561197257600f54604051634cc8221560e01b8152600481018490526001600160a01b0390911690634cc8221590602401600060405180830381600087803b1580156118fb57600080fd5b505af115801561190f573d6000803e3d6000fd5b5050600e54604051634cc8221560e01b8152600481018690526001600160a01b039091169250634cc822159150602401600060405180830381600087803b15801561195957600080fd5b505af115801561196d573d6000803e3d6000fd5b505050505b506000908152600b60205260409020805461ff00191690556001600955565b6001600160a01b0382163314156119ea5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161085e565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60026009541415611aa95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161085e565b60026009556000546001600160a01b0316331480611ae05750611acb8261140a565b6001600160a01b0316336001600160a01b0316145b611b125760405162461bcd60e51b8152602060048201526003602482015262114c0d60ea1b604482015260640161085e565b6000828152600b602052604090205460ff828116610100909204161415611b615760405162461bcd60e51b815260206004820152600360248201526208a60760eb1b604482015260640161085e565b600a54600160381b900460ff16611b8a5760405162461bcd60e51b815260040161085e906133d9565b60ff811660021415611c1f57600a54640100000000900460ff16611bc05760405162461bcd60e51b815260040161085e906133d9565b600e546040516366c355fb60e01b8152600481018490526001600160a01b03909116906366c355fb90602401600060405180830381600087803b158015611c0657600080fd5b505af1158015611c1a573d6000803e3d6000fd5b505050505b60ff811660011415611cb557600a5465010000000000900460ff16611c565760405162461bcd60e51b815260040161085e906133d9565b600f54604051636457e38960e01b8152600481018490526001600160a01b0390911690636457e38990602401600060405180830381600087803b158015611c9c57600080fd5b505af1158015611cb0573d6000803e3d6000fd5b505050505b60ff811660031415611da757600a54600160301b900460ff16611cea5760405162461bcd60e51b815260040161085e906133d9565b600f54604051636457e38960e01b8152600481018490526001600160a01b0390911690636457e38990602401600060405180830381600087803b158015611d3057600080fd5b505af1158015611d44573d6000803e3d6000fd5b5050600e546040516366c355fb60e01b8152600481018690526001600160a01b0390911692506366c355fb9150602401600060405180830381600087803b158015611d8e57600080fd5b505af1158015611da2573d6000803e3d6000fd5b505050505b6000918252600b6020526040909120805460ff9092166101000261ff00199092169190911790556001600955565b6000546001600160a01b03163314611dff5760405162461bcd60e51b815260040161085e906133f6565b600a8054911515600160301b0266ff00000000000019909216919091179055565b611e2b8484846121a4565b611e378484848461274a565b611e535760405162461bcd60e51b815260040161085e9061342b565b50505050565b6000818152600b60205260409020600101805460609190611e799061360d565b80601f0160208091040260200160405190810160405280929190818152602001828054611ea59061360d565b8015611ef25780601f10611ec757610100808354040283529160200191611ef2565b820191906000526020600020905b815481529060010190602001808311611ed557829003601f168201915b50505050509050919050565b6060611f0b826001541190565b611f6f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161085e565b6000611f79612858565b90506000815111611f995760405180602001604052806000815250611fc4565b80611fa384612867565b604051602001611fb492919061329e565b6040516020818303038152906040525b9392505050565b6000546001600160a01b03163314611ff55760405162461bcd60e51b815260040161085e906133f6565b600a80549115156401000000000264ff0000000019909216919091179055565b6000546001600160a01b0316331461203f5760405162461bcd60e51b815260040161085e906133f6565b600a8054911515600160381b0267ff0000000000000019909216919091179055565b6000546001600160a01b0316331461208b5760405162461bcd60e51b815260040161085e906133f6565b6001600160a01b0381166120f05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161085e565b6120f9816126fa565b50565b6000546001600160a01b031633146121265760405162461bcd60e51b815260040161085e906133f6565b600a8054911515650100000000000265ff000000000019909216919091179055565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006121af82612551565b80519091506000906001600160a01b0316336001600160a01b031614806121e65750336121db846107f3565b6001600160a01b0316145b806121f8575081516121f89033610667565b9050806122625760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161085e565b846001600160a01b031682600001516001600160a01b0316146122d65760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161085e565b6001600160a01b03841661233a5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161085e565b6123478585856001612964565b6123576000848460000151612148565b6001600160a01b03851660009081526005602052604081208054600192906123899084906001600160801b031661358b565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260056020526040812080546001945090926123d59185911661353d565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561245c84600161355f565b6000818152600460205260409020549091506001600160a01b03166124ed57612486816001541190565b156124ed5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6116588282604051806020016040528060008152506129b3565b6040805180820190915260008082526020820152612570826001541190565b6125cf5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161085e565b60007f000000000000000000000000000000000000000000000000000000000000000f8310612630576126227f000000000000000000000000000000000000000000000000000000000000000f846135b3565b61262d90600161355f565b90505b825b818110612699576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561268657949350505050565b5080612691816135f6565b915050612632565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161085e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b1561284c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061278e9033908990889088906004016132cd565b602060405180830381600087803b1580156127a857600080fd5b505af19250505080156127d8575060408051601f3d908101601f191682019092526127d591810190613094565b60015b612832573d808015612806576040519150601f19603f3d011682016040523d82523d6000602084013e61280b565b606091505b50805161282a5760405162461bcd60e51b815260040161085e9061342b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612850565b5060015b949350505050565b6060601080546107709061360d565b60608161288b5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156128b5578061289f81613648565b91506128ae9050600a83613577565b915061288f565b6000816001600160401b038111156128cf576128cf6136b9565b6040519080825280601f01601f1916602001820160405280156128f9576020820181803683370190505b5090505b84156128505761290e6001836135b3565b915061291b600a86613663565b61292690603061355f565b60f81b81838151811061293b5761293b6136a3565b60200101906001600160f81b031916908160001a90535061295d600a86613577565b94506128fd565b6000828152600b6020526040902054610100900460ff16156129ae5760405162461bcd60e51b815260206004820152600360248201526245303760e81b604482015260640161085e565b611e53565b6001546001600160a01b038416612a165760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161085e565b612a21816001541190565b15612a6e5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161085e565b7f000000000000000000000000000000000000000000000000000000000000000f831115612ae95760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161085e565b612af66000858386612964565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612b5290879061353d565b6001600160801b03168152602001858360200151612b70919061353d565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015612c8f5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612c53600088848861274a565b612c6f5760405162461bcd60e51b815260040161085e9061342b565b81612c7981613648565b9250508080612c8790613648565b915050612c06565b50600181905561252f565b828054612ca69061360d565b90600052602060002090601f016020900481019282612cc85760008555612d0e565b82601f10612ce15782800160ff19823516178555612d0e565b82800160010185558215612d0e579182015b82811115612d0e578235825591602001919060010190612cf3565b5061134f9291505b8082111561134f5760008155600101612d16565b80356001600160a01b0381168114612d4157600080fd5b919050565b60008083601f840112612d5857600080fd5b5081356001600160401b03811115612d6f57600080fd5b6020830191508360208260051b8501011115612d8a57600080fd5b9250929050565b80358015158114612d4157600080fd5b600060208284031215612db357600080fd5b611fc482612d2a565b60008060408385031215612dcf57600080fd5b612dd883612d2a565b9150612de660208401612d2a565b90509250929050565b600080600060608486031215612e0457600080fd5b612e0d84612d2a565b9250612e1b60208501612d2a565b9150604084013590509250925092565b60008060008060808587031215612e4157600080fd5b612e4a85612d2a565b93506020612e59818701612d2a565b93506040860135925060608601356001600160401b0380821115612e7c57600080fd5b818801915088601f830112612e9057600080fd5b813581811115612ea257612ea26136b9565b612eb4601f8201601f1916850161350d565b91508082528984828501011115612eca57600080fd5b808484018584013760008482840101525080935050505092959194509250565b60008060408385031215612efd57600080fd5b612f0683612d2a565b9150612de660208401612d91565b60008060408385031215612f2757600080fd5b612f3083612d2a565b946020939093013593505050565b60006020808385031215612f5157600080fd5b82356001600160401b0380821115612f6857600080fd5b818501915085601f830112612f7c57600080fd5b813581811115612f8e57612f8e6136b9565b8060051b9150612f9f84830161350d565b8181528481019084860184860187018a1015612fba57600080fd5b600095505b83861015612fe457612fd081612d2a565b835260019590950194918601918601612fbf565b5098975050505050505050565b6000806000806040858703121561300757600080fd5b84356001600160401b038082111561301e57600080fd5b61302a88838901612d46565b9096509450602087013591508082111561304357600080fd5b5061305087828801612d46565b95989497509550505050565b60006020828403121561306e57600080fd5b611fc482612d91565b60006020828403121561308957600080fd5b8135611fc4816136cf565b6000602082840312156130a657600080fd5b8151611fc4816136cf565b600080602083850312156130c457600080fd5b82356001600160401b03808211156130db57600080fd5b818501915085601f8301126130ef57600080fd5b8135818111156130fe57600080fd5b86602082850101111561311057600080fd5b60209290920196919550909350505050565b60006020828403121561313457600080fd5b81356001600160401b0381111561314a57600080fd5b820160a08185031215611fc457600080fd5b60006020828403121561316e57600080fd5b5035919050565b60006020828403121561318757600080fd5b5051919050565b600080604083850312156131a157600080fd5b8235915060208301356131b3816136e5565b809150509250929050565b6000602082840312156131d057600080fd5b813563ffffffff81168114611fc457600080fd5b6000602082840312156131f657600080fd5b8151611fc4816136e5565b81835260006001600160fb1b0383111561321a57600080fd5b8260051b8083602087013760009401602001938452509192915050565b600081518084526020808501945080840160005b838110156132675781518752958201959082019060010161324b565b509495945050505050565b6000815180845261328a8160208601602086016135ca565b601f01601f19169290920160200192915050565b600083516132b08184602088016135ca565b8351908301906132c48183602088016135ca565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061330090830184613272565b9695505050505050565b60c08152600061331e60c083018d8f613201565b8281036020840152613331818c8e613201565b90508281036040840152613345818b613237565b9050828103606084015261335a81898b613201565b9050828103608084015261336f818789613201565b905082810360a0840152613384818587613201565b9e9d5050505050505050505050505050565b602081526000611fc46020830184613237565b602081526000611fc46020830184613272565b60208082526003908201526245303560e81b604082015260600190565b60208082526003908201526204531360ec1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000808335601e1984360301811261349557600080fd5b8301803591506001600160401b038211156134af57600080fd5b6020019150600581901b3603821315612d8a57600080fd5b6000808335601e198436030181126134de57600080fd5b8301803591506001600160401b038211156134f857600080fd5b602001915036819003821315612d8a57600080fd5b604051601f8201601f191681016001600160401b0381118282101715613535576135356136b9565b604052919050565b60006001600160801b038083168185168083038211156132c4576132c4613677565b6000821982111561357257613572613677565b500190565b6000826135865761358661368d565b500490565b60006001600160801b03838116908316818110156135ab576135ab613677565b039392505050565b6000828210156135c5576135c5613677565b500390565b60005b838110156135e55781810151838201526020016135cd565b83811115611e535750506000910152565b60008161360557613605613677565b506000190190565b600181811c9082168061362157607f821691505b6020821081141561364257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561365c5761365c613677565b5060010190565b6000826136725761367261368d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146120f957600080fd5b60ff811681146120f957600080fdfea26469706673582212201636185eb754f4ea5a9460be54dd8f319df25e71becc0e10d004c65ee407f1a164736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000286100000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000fdeef424c147e869a9bb2723874186f06f36b38600000000000000000000000000000000000000000000000000000000623dbcd000000000000000000000000000000000000000000000000000000000000000184e656d75732047656e6573697320436f6c6c656374696f6e000000000000000000000000000000000000000000000000000000000000000000000000000000054e4547454e000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 15
Arg [1] : collectionSize_ (uint256): 10337
Arg [2] : name (string): Nemus Genesis Collection
Arg [3] : symbol (string): NEGEN
Arg [4] : _mintTicketAddress (address): 0xfdeeF424C147E869A9BB2723874186f06f36B386
Arg [5] : _earlyAccessEnds (uint32): 1648213200

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [1] : 0000000000000000000000000000000000000000000000000000000000002861
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [4] : 000000000000000000000000fdeef424c147e869a9bb2723874186f06f36b386
Arg [5] : 00000000000000000000000000000000000000000000000000000000623dbcd0
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000018
Arg [7] : 4e656d75732047656e6573697320436f6c6c656374696f6e0000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [9] : 4e4547454e000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

3615:8121:9:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3826:358:3;;;;;;:::i;:::-;;:::i;:::-;;;12433:14:13;;12426:22;12408:41;;12396:2;12381:18;3826:358:3;;;;;;;;5490:92;;;:::i;:::-;;;;;;;:::i;6955:200::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9409:32:13;;;9391:51;;9379:2;9364:18;6955:200:3;9245:203:13;3861:37:9;;;;;;;;;;;;6533:369:3;;;;;;:::i;:::-;;:::i;:::-;;2432:92;2507:12;;2432:92;;;25630:25:13;;;25618:2;25603:18;2432:92:3;25484:177:13;3946:34:9;;;;;-1:-1:-1;;;3946:34:9;;;;;;10172:233;;;;;;:::i;:::-;;:::i;7773:136:3:-;;;;;;:::i;:::-;;:::i;9712:221:9:-;;;;;;:::i;:::-;;:::i;3046:721:3:-;;;;;;:::i;:::-;;:::i;3986:36:9:-;;;;;-1:-1:-1;;;3986:36:9;;;;;;9939:227;;;;;;:::i;:::-;;:::i;3904:36::-;;;;;;;;;;;;7967:151:3;;;;;;:::i;:::-;;:::i;6655:391:9:-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;5121:1528::-;;;;;;:::i;:::-;;:::i;2588:174:3:-;;;;;;:::i;:::-;;:::i;7969:104:9:-;;;;;;:::i;:::-;;:::i;10411:183::-;;;;;;:::i;:::-;;:::i;5320:116:3:-;;;;;;:::i;:::-;;:::i;11120:319:9:-;;;;;;:::i;:::-;;:::i;7518:130::-;;;;;;:::i;:::-;7580:7;7606:25;;;:16;:25;;;;;:35;;;;;;;7518:130;4235:208:3;;;;;;:::i;:::-;;:::i;1598:92:10:-;;;:::i;4407:45:9:-;;;;;-1:-1:-1;;;;;4407:45:9;;;7052:188;;;;;;:::i;:::-;;:::i;966:85:10:-;1012:7;1038:6;-1:-1:-1;;;;;1038:6:10;966:85;;7246:133:9;;;;;;:::i;:::-;;:::i;:::-;;;;25349:13:13;;-1:-1:-1;;;;;25345:39:13;25327:58;;25445:4;25433:17;;;25427:24;-1:-1:-1;;;;;25423:49:13;25401:20;;;25394:79;;;;25300:18;7246:133:9;25121:358:13;5638:96:3;;;:::i;8939:767:9:-;;;;;;:::i;:::-;;:::i;7214:269:3:-;;;;;;:::i;:::-;;:::i;7385:127:9:-;;;;;;:::i;:::-;7444:7;7470:25;;;:16;:25;;;;;:35;;;;7385:127;4359:41;;;;;;:::i;:::-;;;;;;;;;;;;;;;;8079:854;;;;;;:::i;:::-;;:::i;10997:117::-;;;;;;:::i;:::-;;:::i;8176:300:3:-;;;;;;:::i;:::-;;:::i;7654:136:9:-;;;;;;:::i;:::-;;:::i;5792:377:3:-;;;;;;:::i;:::-;;:::i;12446:43::-;;;;;;10729:129:9;;;;;;:::i;:::-;;:::i;3674:29::-;;;;;;;;;;;;25840:10:13;25828:23;;;25810:42;;25798:2;25783:18;3674:29:9;25666:192:13;7541:178:3;;;;;;:::i;:::-;-1:-1:-1;;;;;7679:25:3;;;7658:4;7679:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;7541:178;10600:123:9;;;;;;:::i;:::-;;:::i;4458:49::-;;;;;-1:-1:-1;;;;;4458:49:9;;;4513:47;;;;;-1:-1:-1;;;;;4513:47:9;;;1839:189:10;;;;;;:::i;:::-;;:::i;10865:125:9:-;;;;;;:::i;:::-;;:::i;3826:358:3:-;3948:4;-1:-1:-1;;;;;;3975:40:3;;-1:-1:-1;;;3975:40:3;;:98;;-1:-1:-1;;;;;;;4025:48:3;;-1:-1:-1;;;4025:48:3;3975:98;:158;;;-1:-1:-1;;;;;;;4083:50:3;;-1:-1:-1;;;4083:50:3;3975:158;:204;;;-1:-1:-1;;;;;;;;;;871:40:2;;;4143:36:3;3962:217;3826:358;-1:-1:-1;;3826:358:3:o;5490:92::-;5544:13;5572:5;5565:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5490:92;:::o;6955:200::-;7023:7;7046:16;7054:7;8792:12;;-1:-1:-1;8782:22:3;8706:103;7046:16;7038:74;;;;-1:-1:-1;;;7038:74:3;;24506:2:13;7038:74:3;;;24488:21:13;24545:2;24525:18;;;24518:30;24584:34;24564:18;;;24557:62;-1:-1:-1;;;24635:18:13;;;24628:43;24688:19;;7038:74:3;;;;;;;;;-1:-1:-1;7126:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;7126:24:3;;6955:200::o;6533:369::-;6601:13;6617:24;6633:7;6617:15;:24::i;:::-;6601:40;;6661:5;-1:-1:-1;;;;;6655:11:3;:2;-1:-1:-1;;;;;6655:11:3;;;6647:58;;;;-1:-1:-1;;;6647:58:3;;21732:2:13;6647:58:3;;;21714:21:13;21771:2;21751:18;;;21744:30;21810:34;21790:18;;;21783:62;-1:-1:-1;;;21861:18:13;;;21854:32;21903:19;;6647:58:3;21530:398:13;6647:58:3;666:10:1;-1:-1:-1;;;;;6727:21:3;;;;:62;;-1:-1:-1;6752:37:3;6769:5;666:10:1;7541:178:3;:::i;6752:37::-;6712:150;;;;-1:-1:-1;;;6712:150:3;;17612:2:13;6712:150:3;;;17594:21:13;17651:2;17631:18;;;17624:30;17690:34;17670:18;;;17663:62;17761:27;17741:18;;;17734:55;17806:19;;6712:150:3;17410:421:13;6712:150:3;6869:28;6878:2;6882:7;6891:5;6869:8;:28::i;:::-;6595:307;6533:369;;:::o;10172:233:9:-;1012:7:10;1038:6;-1:-1:-1;;;;;1038:6:10;666:10:1;1178:23:10;1170:68;;;;-1:-1:-1;;;1170:68:10;;;;;;;:::i;:::-;-1:-1:-1;;;;;10271:43:9;::::1;10263:59;;;;-1:-1:-1::0;;;10263:59:9::1;;;;;;;:::i;:::-;10332:20;:66:::0;;-1:-1:-1;;;;;;10332:66:9::1;-1:-1:-1::0;;;;;10332:66:9;;;::::1;::::0;;;::::1;::::0;;10172:233::o;7773:136:3:-;7876:28;7886:4;7892:2;7896:7;7876:9;:28::i;9712:221:9:-;1012:7:10;1038:6;-1:-1:-1;;;;;1038:6:10;666:10:1;1178:23:10;1170:68;;;;-1:-1:-1;;;1170:68:10;;;;;;;:::i;:::-;-1:-1:-1;;;;;9807:41:9;::::1;9799:57;;;;-1:-1:-1::0;;;9799:57:9::1;;;;;;;:::i;:::-;9866:20;:60:::0;;-1:-1:-1;;;;;;9866:60:9::1;-1:-1:-1::0;;;;;9866:60:9;;;::::1;::::0;;;::::1;::::0;;9712:221::o;3046:721:3:-;3151:7;3184:16;3194:5;3184:9;:16::i;:::-;3176:5;:24;3168:71;;;;-1:-1:-1;;;3168:71:3;;13595:2:13;3168:71:3;;;13577:21:13;13634:2;13614:18;;;13607:30;13673:34;13653:18;;;13646:62;-1:-1:-1;;;13724:18:13;;;13717:32;13766:19;;3168:71:3;13393:398:13;3168:71:3;3245:22;3270:13;2507:12;;;2432:92;3270:13;3245:38;;3289:19;3318:25;3367:9;3362:339;3386:14;3382:1;:18;3362:339;;;3415:31;3449:14;;;:11;:14;;;;;;;;;3415:48;;;;;;;;;-1:-1:-1;;;;;3415:48:3;;;;;-1:-1:-1;;;3415:48:3;;;-1:-1:-1;;;;;3415:48:3;;;;;;;;3475:28;3471:87;;3535:14;;;-1:-1:-1;3471:87:3;3590:5;-1:-1:-1;;;;;3569:26:3;:17;-1:-1:-1;;;;;3569:26:3;;3565:130;;;3626:5;3611:11;:20;3607:57;;;-1:-1:-1;3652:1:3;-1:-1:-1;3645:8:3;;-1:-1:-1;;;3645:8:3;3607:57;3673:13;;;;:::i;:::-;;;;3565:130;-1:-1:-1;3402:3:3;;;;:::i;:::-;;;;3362:339;;;-1:-1:-1;3706:56:3;;-1:-1:-1;;;3706:56:3;;23315:2:13;3706:56:3;;;23297:21:13;23354:2;23334:18;;;23327:30;23393:34;23373:18;;;23366:62;-1:-1:-1;;;23444:18:13;;;23437:44;23498:19;;3706:56:3;23113:410:13;9939:227:9;1012:7:10;1038:6;-1:-1:-1;;;;;1038:6:10;666:10:1;1178:23:10;1170:68;;;;-1:-1:-1;;;1170:68:10;;;;;;;:::i;:::-;-1:-1:-1;;;;;10036:42:9;::::1;10028:58;;;;-1:-1:-1::0;;;10028:58:9::1;;;;;;;:::i;:::-;10096:19;:63:::0;;-1:-1:-1;;;;;;10096:63:9::1;-1:-1:-1::0;;;;;10096:63:9;;;::::1;::::0;;;::::1;::::0;;9939:227::o;7967:151:3:-;8074:39;8091:4;8097:2;8101:7;8074:39;;;;;;;;;;;;:16;:39::i;6655:391:9:-;6715:16;6743:18;6764:17;6774:6;6764:9;:17::i;:::-;6743:38;-1:-1:-1;6795:15:9;6791:44;;6819:16;;;6833:1;6819:16;;;;;;;;;;;-1:-1:-1;6812:23:9;6655:391;-1:-1:-1;;;6655:391:9:o;6791:44::-;6846:25;6888:10;-1:-1:-1;;;;;6874:25:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6874:25:9;;6846:53;;6914:9;6909:106;6929:10;6925:1;:14;6909:106;;;6974:30;6994:6;7002:1;6974:19;:30::i;:::-;6960:8;6969:1;6960:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;6941:3;;;;:::i;:::-;;;;6909:106;;5121:1528;5237:15;;;;5219;:33;5215:104;;;666:10:1;5277:23:9;;;;:9;:23;;;;;;;;5269:39;;;;-1:-1:-1;;;5269:39:9;;13998:2:13;5269:39:9;;;13980:21:13;14037:1;14017:18;;;14010:29;-1:-1:-1;;;14055:18:13;;;14048:33;14098:18;;5269:39:9;13796:326:13;5269:39:9;5329:19;5351:13;2507:12:3;;;2432:92;5351:13:9;5329:35;-1:-1:-1;5374:20:9;;5477:275;5497:16;:6;;:16;:::i;:::-;:23;;5493:1;:27;5477:275;;;5569:1;5549:14;;;;:6;:14;:::i;:::-;5564:1;5549:17;;;;;;;:::i;:::-;;;;;;;:21;5541:37;;;;-1:-1:-1;;;5541:37:9;;18038:2:13;5541:37:9;;;18020:21:13;18077:1;18057:18;;;18050:29;-1:-1:-1;;;18095:18:13;;;18088:33;18138:18;;5541:37:9;17836:326:13;5541:37:9;5669:14;;;;:6;:14;:::i;:::-;5684:1;5669:17;;;;;;;:::i;:::-;5600:20;;5669:17;;;;;;;;;;-1:-1:-1;;;;;5600:20:9;;-1:-1:-1;5600:30:9;5631:12;666:10:1;;587:96;5631:12:9;5645:16;:6;;:16;:::i;:::-;5662:1;5645:19;;;;;;;:::i;:::-;5600:65;;-1:-1:-1;;;;;;5600:65:9;;;;;;;-1:-1:-1;;;;;10138:32:13;;;5600:65:9;;;10120:51:13;5645:19:9;;;;;;;10187:18:13;;;10180:34;-1:-1:-1;10093:18:13;;5600:65:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:86;;5592:102;;;;-1:-1:-1;;;5592:102:9;;18369:2:13;5592:102:9;;;18351:21:13;18408:1;18388:18;;;18381:29;-1:-1:-1;;;18426:18:13;;;18419:33;18469:18;;5592:102:9;18167:326:13;5592:102:9;5724:14;;;;:6;:14;:::i;:::-;5739:1;5724:17;;;;;;;:::i;:::-;;;;;;;5708:33;;;;;:::i;:::-;;-1:-1:-1;5522:3:9;;;;:::i;:::-;;;;5477:275;;;;5762:16;5792:31;5840:12;-1:-1:-1;;;;;5826:27:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5826:27:9;;5792:61;;5868:6;5864:644;5884:16;:6;;:16;:::i;:::-;:23;;5880:1;:27;5864:644;;;5943:20;;5928:12;;-1:-1:-1;;;;;5943:20:9;:36;5980:16;:6;;:16;:::i;:::-;5997:1;5980:19;;;;;;;:::i;:::-;;;;;;;5943:57;;;;;;;;;;;;;25630:25:13;;25618:2;25603:18;;25484:177;5943:57:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6014:20;;5928:72;;-1:-1:-1;;;;;;6014:20:9;:35;666:10:1;6064:16:9;:6;;:16;:::i;:::-;6081:1;6064:19;;;;;;;:::i;:::-;;;;;;;6085:6;:14;;;;;;;;:::i;:::-;6100:1;6085:17;;;;;;;:::i;:::-;6014:89;;-1:-1:-1;;;;;;6014:89:9;;;;;;;-1:-1:-1;;;;;10445:32:13;;;6014:89:9;;;10427:51:13;10494:18;;;10487:34;;;;-1:-1:-1;6085:17:9;;;;;;10537:18:13;;;10530:34;10400:18;;6014:89:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6117:42;6127:12;666:10:1;;587:96;6127:12:9;6141:14;;;;:6;:14;:::i;:::-;6156:1;6141:17;;;;;;;:::i;:::-;;;;;;;6117:9;:42::i;:::-;6177:6;6173:325;6193:14;;;;:6;:14;:::i;:::-;6208:1;6193:17;;;;;;;:::i;:::-;;;;;;;6189:1;:21;6173:325;;;3735:1;6235:16;3735:1;6252:25;6266:11;6252;:25;:::i;:::-;6235:43;;;;;;;;;;;:53;;;:63;;;;;;;;;;;;;;;;;;6373:6;6316:16;:44;6347:11;6333;:25;;;;:::i;:::-;6316:44;;;;;;;;;;;-1:-1:-1;6316:44:9;:63;;-1:-1:-1;;6316:63:9;;;;;;;;;;;;6427:25;6441:11;6427;:25;:::i;:::-;6397:14;6412:11;6397:27;;;;;;;;:::i;:::-;;;;;;;;;;:55;6470:13;;;;:::i;:::-;;;;6212:3;;;;;:::i;:::-;;;;6173:325;;;;5914:594;5909:3;;;;;:::i;:::-;;;;5864:644;;;-1:-1:-1;666:10:1;6522:120:9;6545:16;:6;;:16;:::i;:::-;6563:14;;;;:6;:14;:::i;:::-;6579;6595:16;;;;:6;:16;:::i;:::-;6613:12;;;;:6;:12;:::i;:::-;6627:6;:14;;;;;;;;:::i;:::-;6522:120;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;5204:1445;;;;5121:1528;:::o;2588:174:3:-;2655:7;2686:13;2507:12;;;2432:92;2686:13;2678:5;:21;2670:69;;;;-1:-1:-1;;;2670:69:3;;16140:2:13;2670:69:3;;;16122:21:13;16179:2;16159:18;;;16152:30;16218:34;16198:18;;;16191:62;-1:-1:-1;;;16269:18:13;;;16262:33;16312:19;;2670:69:3;15938:399:13;2670:69:3;-1:-1:-1;2752:5:3;2588:174::o;7969:104:9:-;1012:7:10;1038:6;-1:-1:-1;;;;;1038:6:10;666:10:1;1178:23:10;1170:68;;;;-1:-1:-1;;;1170:68:10;;;;;;;:::i;:::-;8043:23:9::1;:13;8059:7:::0;;8043:23:::1;:::i;10411:183::-:0;1012:7:10;1038:6;-1:-1:-1;;;;;1038:6:10;666:10:1;1178:23:10;1170:68;;;;-1:-1:-1;;;1170:68:10;;;;;;;:::i;:::-;10520:15:9::1;10501:16;:34;;;10493:50;;;::::0;-1:-1:-1;;;10493:50:9;;14660:2:13;10493:50:9::1;::::0;::::1;14642:21:13::0;14699:1;14679:18;;;14672:29;-1:-1:-1;;;14717:18:13;;;14710:33;14760:18;;10493:50:9::1;14458:326:13::0;10493:50:9::1;10553:15;:34:::0;;-1:-1:-1;;10553:34:9::1;;::::0;;;::::1;::::0;;;::::1;::::0;;10411:183::o;5320:116:3:-;5384:7;5406:20;5418:7;5406:11;:20::i;:::-;:25;;5320:116;-1:-1:-1;;5320:116:3:o;11120:319:9:-;1012:7:10;1038:6;-1:-1:-1;;;;;1038:6:10;666:10:1;1178:23:10;1170:68;;;;-1:-1:-1;;;1170:68:10;;;;;;;:::i;:::-;11245:38:9;;::::1;11237:54;;;::::0;-1:-1:-1;;;11237:54:9;;14329:2:13;11237:54:9::1;::::0;::::1;14311:21:13::0;14368:1;14348:18;;;14341:29;-1:-1:-1;;;14386:18:13;;;14379:33;14429:18;;11237:54:9::1;14127:326:13::0;11237:54:9::1;11307:9;11302:131;11322:20:::0;;::::1;11302:131;;;11407:11;;11419:1;11407:14;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;11364:16;:30;11381:9;;11391:1;11381:12;;;;;;;:::i;:::-;;;;;;;11364:30;;;;;;;;;;;:40;;:57;;;;;;;:::i;:::-;-1:-1:-1::0;11344:3:9;::::1;::::0;::::1;:::i;:::-;;;;11302:131;;;;11120:319:::0;;;;:::o;4235:208:3:-;4299:7;-1:-1:-1;;;;;4322:19:3;;4314:75;;;;-1:-1:-1;;;4314:75:3;;19031:2:13;4314:75:3;;;19013:21:13;19070:2;19050:18;;;19043:30;19109:34;19089:18;;;19082:62;-1:-1:-1;;;19160:18:13;;;19153:41;19211:19;;4314:75:3;18829:407:13;4314:75:3;-1:-1:-1;;;;;;4410:19:3;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;4410:27:3;;4235:208::o;1598:92:10:-;1012:7;1038:6;-1:-1:-1;;;;;1038:6:10;666:10:1;1178:23:10;1170:68;;;;-1:-1:-1;;;1170:68:10;;;;;;;:::i;:::-;1662:21:::1;1680:1;1662:9;:21::i;:::-;1598:92::o:0;7052:188:9:-;1012:7:10;1038:6;-1:-1:-1;;;;;1038:6:10;666:10:1;1178:23:10;1170:68;;;;-1:-1:-1;;;1170:68:10;;;;;;;:::i;:::-;7137:9:9::1;7132:102;7156:9;:16;7152:1;:20;7132:102;;;7219:4;7193:9;:23;7203:9;7213:1;7203:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;7193:23:9::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;7193:23:9;:30;;-1:-1:-1;;7193:30:9::1;::::0;::::1;;::::0;;;::::1;::::0;;7174:3;::::1;::::0;::::1;:::i;:::-;;;;7132:102;;;;7052:188:::0;:::o;7246:133::-;-1:-1:-1;;;;;;;;;;;;;;;;;7352:20:9;7364:7;7352:11;:20::i;5638:96:3:-;5694:13;5722:7;5715:14;;;;;:::i;8939:767:9:-;1680:1:11;2259:7;;:19;;2251:63;;;;-1:-1:-1;;;2251:63:11;;23730:2:13;2251:63:11;;;23712:21:13;23769:2;23749:18;;;23742:30;23808:33;23788:18;;;23781:61;23859:18;;2251:63:11;23528:355:13;2251:63:11;1680:1;2389:7;:18;9013:22:9::1;9038:25:::0;;;:16:::1;:25;::::0;;;;:35;::::1;;::::0;;::::1;;9108:7;1012::10::0;1038:6;-1:-1:-1;;;;;1038:6:10;;966:85;9108:7:9::1;-1:-1:-1::0;;;;;9092:23:9::1;666:10:1::0;-1:-1:-1;;;;;9092:23:9::1;;:59;;;;9135:16;9143:7;9135;:16::i;:::-;-1:-1:-1::0;;;;;9119:32:9::1;666:10:1::0;-1:-1:-1;;;;;9119:32:9::1;;9092:59;9084:75;;;::::0;-1:-1:-1;;;9084:75:9;;18700:2:13;9084:75:9::1;::::0;::::1;18682:21:13::0;18739:1;18719:18;;;18712:29;-1:-1:-1;;;18757:18:13;;;18750:33;18800:18;;9084:75:9::1;18498:326:13::0;9084:75:9::1;9177:27;::::0;::::1;9169:43;;;::::0;-1:-1:-1;;;9169:43:9;;19850:2:13;9169:43:9::1;::::0;::::1;19832:21:13::0;19889:1;19869:18;;;19862:29;-1:-1:-1;;;19907:18:13;;;19900:33;19950:18;;9169:43:9::1;19648:326:13::0;9169:43:9::1;9230:16;::::0;-1:-1:-1;;;9230:16:9;::::1;;;9222:32;;;;-1:-1:-1::0;;;9222:32:9::1;;;;;;;:::i;:::-;9270:36;::::0;::::1;3776:1;9270:36;9265:104;;;9323:19;::::0;:35:::1;::::0;-1:-1:-1;;;9323:35:9;;::::1;::::0;::::1;25630:25:13::0;;;-1:-1:-1;;;;;9323:19:9;;::::1;::::0;:26:::1;::::0;25603:18:13;;9323:35:9::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;9265:104;9384:37;::::0;::::1;3818:1;9384:37;9379:106;;;9438:20;::::0;:36:::1;::::0;-1:-1:-1;;;9438:36:9;;::::1;::::0;::::1;25630:25:13::0;;;-1:-1:-1;;;;;9438:20:9;;::::1;::::0;:27:::1;::::0;25603:18:13;;9438:36:9::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;9379:106;9500:30;::::0;::::1;3853:1;9500:30;9495:148;;;9547:19;::::0;:35:::1;::::0;-1:-1:-1;;;9547:35:9;;::::1;::::0;::::1;25630:25:13::0;;;-1:-1:-1;;;;;9547:19:9;;::::1;::::0;:26:::1;::::0;25603:18:13;;9547:35:9::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;9596:20:9::1;::::0;:36:::1;::::0;-1:-1:-1;;;9596:36:9;;::::1;::::0;::::1;25630:25:13::0;;;-1:-1:-1;;;;;9596:20:9;;::::1;::::0;-1:-1:-1;9596:27:9::1;::::0;-1:-1:-1;25603:18:13;;9596:36:9::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;9495:148;-1:-1:-1::0;3735:1:9::1;9653:25:::0;;;:16:::1;:25;::::0;;;;:45;;-1:-1:-1;;9653:45:9::1;::::0;;:35:::1;2562:7:11::0;:22;8939:767:9:o;7214:269:3:-;-1:-1:-1;;;;;7304:24:3;;666:10:1;7304:24:3;;7296:63;;;;-1:-1:-1;;;7296:63:3;;20958:2:13;7296:63:3;;;20940:21:13;20997:2;20977:18;;;20970:30;21036:28;21016:18;;;21009:56;21082:18;;7296:63:3;20756:350:13;7296:63:3;666:10:1;7366:32:3;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;7366:42:3;;;;;;;;;;;;:53;;-1:-1:-1;;7366:53:3;;;;;;;;;;7430:48;;12408:41:13;;;7366:42:3;;666:10:1;7430:48:3;;12381:18:13;7430:48:3;;;;;;;7214:269;;:::o;8079:854:9:-;1680:1:11;2259:7;;:19;;2251:63;;;;-1:-1:-1;;;2251:63:11;;23730:2:13;2251:63:11;;;23712:21:13;23769:2;23749:18;;;23742:30;23808:33;23788:18;;;23781:61;23859:18;;2251:63:11;23528:355:13;2251:63:11;1680:1;2389:7;:18;1012:7:10;1038:6;-1:-1:-1;;;;;1038:6:10;666:10:1;8175:23:9::1;::::0;:59:::1;;;8218:16;8226:7;8218;:16::i;:::-;-1:-1:-1::0;;;;;8202:32:9::1;666:10:1::0;-1:-1:-1;;;;;8202:32:9::1;;8175:59;8167:75;;;::::0;-1:-1:-1;;;8167:75:9;;18700:2:13;8167:75:9::1;::::0;::::1;18682:21:13::0;18739:1;18719:18;;;18712:29;-1:-1:-1;;;18757:18:13;;;18750:33;18800:18;;8167:75:9::1;18498:326:13::0;8167:75:9::1;8260:25;::::0;;;:16:::1;:25;::::0;;;;:35;:48:::1;::::0;;::::1;:35;::::0;;::::1;;:48;;8252:64;;;::::0;-1:-1:-1;;;8252:64:9;;19850:2:13;8252:64:9::1;::::0;::::1;19832:21:13::0;19889:1;19869:18;;;19862:29;-1:-1:-1;;;19907:18:13;;;19900:33;19950:18;;8252:64:9::1;19648:326:13::0;8252:64:9::1;8334:16;::::0;-1:-1:-1;;;8334:16:9;::::1;;;8326:32;;;;-1:-1:-1::0;;;8326:32:9::1;;;;;;;:::i;:::-;8374:30;::::0;::::1;3818:1;8374:30;8369:148;;;8429:17;::::0;;;::::1;;;8421:33;;;;-1:-1:-1::0;;;8421:33:9::1;;;;;;;:::i;:::-;8468:20;::::0;:38:::1;::::0;-1:-1:-1;;;8468:38:9;;::::1;::::0;::::1;25630:25:13::0;;;-1:-1:-1;;;;;8468:20:9;;::::1;::::0;:29:::1;::::0;25603:18:13;;8468:38:9::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;8369:148;8532:29;::::0;::::1;3776:1;8532:29;8527:144;;;8586:16;::::0;;;::::1;;;8578:32;;;;-1:-1:-1::0;;;8578:32:9::1;;;;;;;:::i;:::-;8624:19;::::0;:36:::1;::::0;-1:-1:-1;;;8624:36:9;;::::1;::::0;::::1;25630:25:13::0;;;-1:-1:-1;;;;;8624:19:9;;::::1;::::0;:27:::1;::::0;25603:18:13;;8624:36:9::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;8527:144;8686:23;::::0;::::1;3853:1;8686:23;8681:188;;;8734:14;::::0;-1:-1:-1;;;8734:14:9;::::1;;;8726:30;;;;-1:-1:-1::0;;;8726:30:9::1;;;;;;;:::i;:::-;8770:19;::::0;:36:::1;::::0;-1:-1:-1;;;8770:36:9;;::::1;::::0;::::1;25630:25:13::0;;;-1:-1:-1;;;;;8770:19:9;;::::1;::::0;:27:::1;::::0;25603:18:13;;8770:36:9::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;8820:20:9::1;::::0;:38:::1;::::0;-1:-1:-1;;;8820:38:9;;::::1;::::0;::::1;25630:25:13::0;;;-1:-1:-1;;;;;8820:20:9;;::::1;::::0;-1:-1:-1;8820:29:9::1;::::0;-1:-1:-1;25603:18:13;;8820:38:9::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;8681:188;8879:25;::::0;;;:16:::1;:25;::::0;;;;;:47;;::::1;::::0;;::::1;;;-1:-1:-1::0;;8879:47:9;;::::1;::::0;;;::::1;::::0;;:35:::1;2562:7:11::0;:22;8079:854:9:o;10997:117::-;1012:7:10;1038:6;-1:-1:-1;;;;;1038:6:10;666:10:1;1178:23:10;1170:68;;;;-1:-1:-1;;;1170:68:10;;;;;;;:::i;:::-;11075:14:9::1;:32:::0;;;::::1;;-1:-1:-1::0;;;11075:32:9::1;-1:-1:-1::0;;11075:32:9;;::::1;::::0;;;::::1;::::0;;10997:117::o;8176:300:3:-;8307:28;8317:4;8323:2;8327:7;8307:9;:28::i;:::-;8356:48;8379:4;8385:2;8389:7;8398:5;8356:22;:48::i;:::-;8341:130;;;;-1:-1:-1;;;8341:130:3;;;;;;;:::i;:::-;8176:300;;;;:::o;7654:136:9:-;7748:25;;;;:16;:25;;;;;:35;;7741:42;;7716:13;;7748:35;7741:42;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7654:136;;;:::o;5792:377:3:-;5885:13;5923:16;5931:7;8792:12;;-1:-1:-1;8782:22:3;8706:103;5923:16;5908:94;;;;-1:-1:-1;;;5908:94:3;;20542:2:13;5908:94:3;;;20524:21:13;20581:2;20561:18;;;20554:30;20620:34;20600:18;;;20593:62;-1:-1:-1;;;20671:18:13;;;20664:45;20726:19;;5908:94:3;20340:411:13;5908:94:3;6009:21;6033:10;:8;:10::i;:::-;6009:34;;6086:1;6068:7;6062:21;:25;:102;;;;;;;;;;;;;;;;;6122:7;6131:18;:7;:16;:18::i;:::-;6105:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6062:102;6049:115;5792:377;-1:-1:-1;;;5792:377:3:o;10729:129:9:-;1012:7:10;1038:6;-1:-1:-1;;;;;1038:6:10;666:10:1;1178:23:10;1170:68;;;;-1:-1:-1;;;1170:68:10;;;;;;;:::i;:::-;10813:17:9::1;:38:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;10813:38:9;;::::1;::::0;;;::::1;::::0;;10729:129::o;10600:123::-;1012:7:10;1038:6;-1:-1:-1;;;;;1038:6:10;666:10:1;1178:23:10;1170:68;;;;-1:-1:-1;;;1170:68:10;;;;;;;:::i;:::-;10680:16:9::1;:36:::0;;;::::1;;-1:-1:-1::0;;;10680:36:9::1;-1:-1:-1::0;;10680:36:9;;::::1;::::0;;;::::1;::::0;;10600:123::o;1839:189:10:-;1012:7;1038:6;-1:-1:-1;;;;;1038:6:10;666:10:1;1178:23:10;1170:68;;;;-1:-1:-1;;;1170:68:10;;;;;;;:::i;:::-;-1:-1:-1;;;;;1927:22:10;::::1;1919:73;;;::::0;-1:-1:-1;;;1919:73:10;;14991:2:13;1919:73:10::1;::::0;::::1;14973:21:13::0;15030:2;15010:18;;;15003:30;15069:34;15049:18;;;15042:62;-1:-1:-1;;;15120:18:13;;;15113:36;15166:19;;1919:73:10::1;14789:402:13::0;1919:73:10::1;2002:19;2012:8;2002:9;:19::i;:::-;1839:189:::0;:::o;10865:125:9:-;1012:7:10;1038:6;-1:-1:-1;;;;;1038:6:10;666:10:1;1178:23:10;1170:68;;;;-1:-1:-1;;;1170:68:10;;;;;;;:::i;:::-;10947:16:9::1;:36:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;10947:36:9;;::::1;::::0;;;::::1;::::0;;10865:125::o;12277:165:3:-;12369:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;12369:29:3;-1:-1:-1;;;;;12369:29:3;;;;;;;;;12409:28;;12369:24;;12409:28;;;;;;;12277:165;;;:::o;10694:1484::-;10786:35;10824:20;10836:7;10824:11;:20::i;:::-;10893:18;;10786:58;;-1:-1:-1;10851:22:3;;-1:-1:-1;;;;;10877:34:3;666:10:1;-1:-1:-1;;;;;10877:34:3;;:80;;;-1:-1:-1;666:10:1;10921:20:3;10933:7;10921:11;:20::i;:::-;-1:-1:-1;;;;;10921:36:3;;10877:80;:140;;;-1:-1:-1;10984:18:3;;10967:50;;666:10:1;7541:178:3;:::i;10967:50::-;10851:167;;11040:17;11025:98;;;;-1:-1:-1;;;11025:98:3;;21313:2:13;11025:98:3;;;21295:21:13;21352:2;21332:18;;;21325:30;21391:34;21371:18;;;21364:62;-1:-1:-1;;;21442:18:13;;;21435:48;21500:19;;11025:98:3;21111:414:13;11025:98:3;11167:4;-1:-1:-1;;;;;11145:26:3;:13;:18;;;-1:-1:-1;;;;;11145:26:3;;11130:95;;;;-1:-1:-1;;;11130:95:3;;19443:2:13;11130:95:3;;;19425:21:13;19482:2;19462:18;;;19455:30;19521:34;19501:18;;;19494:62;-1:-1:-1;;;19572:18:13;;;19565:36;19618:19;;11130:95:3;19241:402:13;11130:95:3;-1:-1:-1;;;;;11239:16:3;;11231:66;;;;-1:-1:-1;;;11231:66:3;;16544:2:13;11231:66:3;;;16526:21:13;16583:2;16563:18;;;16556:30;16622:34;16602:18;;;16595:62;-1:-1:-1;;;16673:18:13;;;16666:35;16718:19;;11231:66:3;16342:401:13;11231:66:3;11304:43;11326:4;11332:2;11336:7;11345:1;11304:21;:43::i;:::-;11401:49;11418:1;11422:7;11431:13;:18;;;11401:8;:49::i;:::-;-1:-1:-1;;;;;11457:18:3;;;;;;:12;:18;;;;;:31;;11487:1;;11457:18;:31;;11487:1;;-1:-1:-1;;;;;11457:31:3;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;11457:31:3;;;;;;;;;;;;;;;-1:-1:-1;;;;;11494:16:3;;-1:-1:-1;11494:16:3;;;:12;:16;;;;;:29;;-1:-1:-1;;;11494:16:3;;:29;;-1:-1:-1;;11494:29:3;;:::i;:::-;;;-1:-1:-1;;;;;11494:29:3;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11552:43:3;;;;;;;;-1:-1:-1;;;;;11552:43:3;;;;;-1:-1:-1;;;;;11578:15:3;11552:43;;;;;;;;;-1:-1:-1;11529:20:3;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;11529:66:3;-1:-1:-1;;;;;;11529:66:3;;;;;;;;;;;11841:11;11541:7;-1:-1:-1;11841:11:3;:::i;:::-;11903:1;11862:24;;;:11;:24;;;;;:29;11819:33;;-1:-1:-1;;;;;;11862:29:3;11858:229;;11919:20;11927:11;8792:12;;-1:-1:-1;8782:22:3;8706:103;11919:20;11915:166;;;11978:94;;;;;;;;12004:18;;-1:-1:-1;;;;;11978:94:3;;;;;;12034:28;;;;-1:-1:-1;;;;;11978:94:3;;;;;;;;;-1:-1:-1;11951:24:3;;;:11;:24;;;;;;;:121;;;;;;;;;-1:-1:-1;;;11951:121:3;-1:-1:-1;;;;;;11951:121:3;;;;;;;;;;;;11915:166;12117:7;12113:2;-1:-1:-1;;;;;12098:27:3;12107:4;-1:-1:-1;;;;;12098:27:3;;;;;;;;;;;12131:42;10780:1398;;;10694:1484;;;:::o;8813:96::-;8877:27;8887:2;8891:8;8877:27;;;;;;;;;;;;:9;:27::i;4685:586::-;-1:-1:-1;;;;;;;;;;;;;;;;;4797:16:3;4805:7;8792:12;;-1:-1:-1;8782:22:3;8706:103;4797:16;4789:71;;;;-1:-1:-1;;;4789:71:3;;15398:2:13;4789:71:3;;;15380:21:13;15437:2;15417:18;;;15410:30;15476:34;15456:18;;;15449:62;-1:-1:-1;;;15527:18:13;;;15520:40;15577:19;;4789:71:3;15196:406:13;4789:71:3;4867:26;4914:12;4903:7;:23;4899:91;;4957:22;4967:12;4957:7;:22;:::i;:::-;:26;;4982:1;4957:26;:::i;:::-;4936:47;;4899:91;5016:7;4996:207;5033:18;5025:4;:26;4996:207;;5069:31;5103:17;;;:11;:17;;;;;;;;;5069:51;;;;;;;;;-1:-1:-1;;;;;5069:51:3;;;;;-1:-1:-1;;;5069:51:3;;;-1:-1:-1;;;;;5069:51:3;;;;;;;;5132:28;5128:69;;5179:9;4685:586;-1:-1:-1;;;;4685:586:3:o;5128:69::-;-1:-1:-1;5053:6:3;;;;:::i;:::-;;;;4996:207;;;-1:-1:-1;5209:57:3;;-1:-1:-1;;;5209:57:3;;24090:2:13;5209:57:3;;;24072:21:13;24129:2;24109:18;;;24102:30;24168:34;24148:18;;;24141:62;-1:-1:-1;;;24219:18:13;;;24212:45;24274:19;;5209:57:3;23888:411:13;2034:169:10;2089:16;2108:6;;-1:-1:-1;;;;;2124:17:10;;;-1:-1:-1;;;;;;2124:17:10;;;;;;2156:40;;2108:6;;;;;;;2156:40;;2089:16;2156:40;2079:124;2034:169;:::o;13947:667:3:-;14079:4;-1:-1:-1;;;;;14095:13:3;;205:20:0;251:8;14091:519:3;;14132:72;;-1:-1:-1;;;14132:72:3;;-1:-1:-1;;;;;14132:36:3;;;;;:72;;666:10:1;;14183:4:3;;14189:7;;14198:5;;14132:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14132:72:3;;;;;;;;-1:-1:-1;;14132:72:3;;;;;;;;;;;;:::i;:::-;;;14120:452;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14359:13:3;;14355:209;;14391:61;;-1:-1:-1;;;14391:61:3;;;;;;;:::i;14355:209::-;14534:6;14528:13;14519:6;14515:2;14511:15;14504:38;14120:452;-1:-1:-1;;;;;;14252:55:3;-1:-1:-1;;;14252:55:3;;-1:-1:-1;14245:62:3;;14091:519;-1:-1:-1;14599:4:3;14091:519;13947:667;;;;;;:::o;7851:112:9:-;7911:13;7943;7936:20;;;;;:::i;242:703:12:-;298:13;515:10;511:51;;-1:-1:-1;;541:10:12;;;;;;;;;;;;-1:-1:-1;;;541:10:12;;;;;242:703::o;511:51::-;586:5;571:12;625:75;632:9;;625:75;;657:8;;;;:::i;:::-;;-1:-1:-1;679:10:12;;-1:-1:-1;687:2:12;679:10;;:::i;:::-;;;625:75;;;709:19;741:6;-1:-1:-1;;;;;731:17:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;731:17:12;;709:39;;758:150;765:10;;758:150;;791:11;801:1;791:11;;:::i;:::-;;-1:-1:-1;859:10:12;867:2;859:5;:10;:::i;:::-;846:24;;:2;:24;:::i;:::-;833:39;;816:6;823;816:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;816:56:12;;;;;;;;-1:-1:-1;886:11:12;895:2;886:11;;:::i;:::-;;;758:150;;11445:288:9;3735:1;11591:31;;;:16;:31;;;;;:41;;;;:52;:41;:52;11583:68;;;;-1:-1:-1;;;11583:68:9;;16950:2:13;11583:68:9;;;16932:21:13;16989:1;16969:18;;;16962:29;-1:-1:-1;;;17007:18:13;;;17000:33;17050:18;;11583:68:9;16748:326:13;11583:68:9;11661:65;8176:300:3;9235:1239;9358:12;;-1:-1:-1;;;;;9384:16:3;;9376:62;;;;-1:-1:-1;;;9376:62:3;;22913:2:13;9376:62:3;;;22895:21:13;22952:2;22932:18;;;22925:30;22991:34;22971:18;;;22964:62;-1:-1:-1;;;23042:18:13;;;23035:31;23083:19;;9376:62:3;22711:397:13;9376:62:3;9573:21;9581:12;8792;;-1:-1:-1;8782:22:3;8706:103;9573:21;9572:22;9564:64;;;;-1:-1:-1;;;9564:64:3;;22555:2:13;9564:64:3;;;22537:21:13;22594:2;22574:18;;;22567:30;22633:31;22613:18;;;22606:59;22682:18;;9564:64:3;22353:353:13;9564:64:3;9654:12;9642:8;:24;;9634:71;;;;-1:-1:-1;;;9634:71:3;;24920:2:13;9634:71:3;;;24902:21:13;24959:2;24939:18;;;24932:30;24998:34;24978:18;;;24971:62;-1:-1:-1;;;25049:18:13;;;25042:32;25091:19;;9634:71:3;24718:398:13;9634:71:3;9712:61;9742:1;9746:2;9750:12;9764:8;9712:21;:61::i;:::-;-1:-1:-1;;;;;9813:16:3;;9780:30;9813:16;;;:12;:16;;;;;;;;;9780:49;;;;;;;;;-1:-1:-1;;;;;9780:49:3;;;;;-1:-1:-1;;;9780:49:3;;;;;;;;;;;9854:116;;;;;;;;9873:19;;9780:49;;9854:116;;;9873:39;;9903:8;;9873:39;:::i;:::-;-1:-1:-1;;;;;9854:116:3;;;;;9955:8;9920:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;9854:116:3;;;;;;-1:-1:-1;;;;;9835:16:3;;;;;;;:12;:16;;;;;;;;:135;;;;;;;;-1:-1:-1;;;9835:135:3;;;;;;;;;;;;10004:43;;;;;;;;;;-1:-1:-1;;;;;10030:15:3;10004:43;;;;;;;;9976:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;9976:71:3;-1:-1:-1;;;;;;9976:71:3;;;;;;;;;;;;;;;;;;9988:12;;10096:274;10120:8;10116:1;:12;10096:274;;;10148:38;;10173:12;;-1:-1:-1;;;;;10148:38:3;;;10165:1;;10148:38;;10165:1;;10148:38;10211:59;10242:1;10246:2;10250:12;10264:5;10211:22;:59::i;:::-;10194:147;;;;-1:-1:-1;;;10194:147:3;;;;;;;:::i;:::-;10349:14;;;;:::i;:::-;;;;10130:3;;;;;:::i;:::-;;;;10096:274;;;-1:-1:-1;10376:12:3;:27;;;10409:60;8176:300;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:13;82:20;;-1:-1:-1;;;;;131:31:13;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:375::-;263:8;273:6;327:3;320:4;312:6;308:17;304:27;294:55;;345:1;342;335:12;294:55;-1:-1:-1;368:20:13;;-1:-1:-1;;;;;400:30:13;;397:50;;;443:1;440;433:12;397:50;480:4;472:6;468:17;456:29;;540:3;533:4;523:6;520:1;516:14;508:6;504:27;500:38;497:47;494:67;;;557:1;554;547:12;494:67;192:375;;;;;:::o;572:160::-;637:20;;693:13;;686:21;676:32;;666:60;;722:1;719;712:12;737:186;796:6;849:2;837:9;828:7;824:23;820:32;817:52;;;865:1;862;855:12;817:52;888:29;907:9;888:29;:::i;928:260::-;996:6;1004;1057:2;1045:9;1036:7;1032:23;1028:32;1025:52;;;1073:1;1070;1063:12;1025:52;1096:29;1115:9;1096:29;:::i;:::-;1086:39;;1144:38;1178:2;1167:9;1163:18;1144:38;:::i;:::-;1134:48;;928:260;;;;;:::o;1193:328::-;1270:6;1278;1286;1339:2;1327:9;1318:7;1314:23;1310:32;1307:52;;;1355:1;1352;1345:12;1307:52;1378:29;1397:9;1378:29;:::i;:::-;1368:39;;1426:38;1460:2;1449:9;1445:18;1426:38;:::i;:::-;1416:48;;1511:2;1500:9;1496:18;1483:32;1473:42;;1193:328;;;;;:::o;1526:980::-;1621:6;1629;1637;1645;1698:3;1686:9;1677:7;1673:23;1669:33;1666:53;;;1715:1;1712;1705:12;1666:53;1738:29;1757:9;1738:29;:::i;:::-;1728:39;;1786:2;1807:38;1841:2;1830:9;1826:18;1807:38;:::i;:::-;1797:48;;1892:2;1881:9;1877:18;1864:32;1854:42;;1947:2;1936:9;1932:18;1919:32;-1:-1:-1;;;;;2011:2:13;2003:6;2000:14;1997:34;;;2027:1;2024;2017:12;1997:34;2065:6;2054:9;2050:22;2040:32;;2110:7;2103:4;2099:2;2095:13;2091:27;2081:55;;2132:1;2129;2122:12;2081:55;2168:2;2155:16;2190:2;2186;2183:10;2180:36;;;2196:18;;:::i;:::-;2238:53;2281:2;2262:13;;-1:-1:-1;;2258:27:13;2254:36;;2238:53;:::i;:::-;2225:66;;2314:2;2307:5;2300:17;2354:7;2349:2;2344;2340;2336:11;2332:20;2329:33;2326:53;;;2375:1;2372;2365:12;2326:53;2430:2;2425;2421;2417:11;2412:2;2405:5;2401:14;2388:45;2474:1;2469:2;2464;2457:5;2453:14;2449:23;2442:34;;2495:5;2485:15;;;;;1526:980;;;;;;;:::o;2511:254::-;2576:6;2584;2637:2;2625:9;2616:7;2612:23;2608:32;2605:52;;;2653:1;2650;2643:12;2605:52;2676:29;2695:9;2676:29;:::i;:::-;2666:39;;2724:35;2755:2;2744:9;2740:18;2724:35;:::i;2770:254::-;2838:6;2846;2899:2;2887:9;2878:7;2874:23;2870:32;2867:52;;;2915:1;2912;2905:12;2867:52;2938:29;2957:9;2938:29;:::i;:::-;2928:39;3014:2;2999:18;;;;2986:32;;-1:-1:-1;;;2770:254:13:o;3029:963::-;3113:6;3144:2;3187;3175:9;3166:7;3162:23;3158:32;3155:52;;;3203:1;3200;3193:12;3155:52;3243:9;3230:23;-1:-1:-1;;;;;3313:2:13;3305:6;3302:14;3299:34;;;3329:1;3326;3319:12;3299:34;3367:6;3356:9;3352:22;3342:32;;3412:7;3405:4;3401:2;3397:13;3393:27;3383:55;;3434:1;3431;3424:12;3383:55;3470:2;3457:16;3492:2;3488;3485:10;3482:36;;;3498:18;;:::i;:::-;3544:2;3541:1;3537:10;3527:20;;3567:28;3591:2;3587;3583:11;3567:28;:::i;:::-;3629:15;;;3660:12;;;;3692:11;;;3722;;;3718:20;;3715:33;-1:-1:-1;3712:53:13;;;3761:1;3758;3751:12;3712:53;3783:1;3774:10;;3793:169;3807:2;3804:1;3801:9;3793:169;;;3864:23;3883:3;3864:23;:::i;:::-;3852:36;;3825:1;3818:9;;;;;3908:12;;;;3940;;3793:169;;;-1:-1:-1;3981:5:13;3029:963;-1:-1:-1;;;;;;;;3029:963:13:o;3997:801::-;4131:6;4139;4147;4155;4208:2;4196:9;4187:7;4183:23;4179:32;4176:52;;;4224:1;4221;4214:12;4176:52;4264:9;4251:23;-1:-1:-1;;;;;4334:2:13;4326:6;4323:14;4320:34;;;4350:1;4347;4340:12;4320:34;4389:78;4459:7;4450:6;4439:9;4435:22;4389:78;:::i;:::-;4486:8;;-1:-1:-1;4363:104:13;-1:-1:-1;4574:2:13;4559:18;;4546:32;;-1:-1:-1;4590:16:13;;;4587:36;;;4619:1;4616;4609:12;4587:36;;4658:80;4730:7;4719:8;4708:9;4704:24;4658:80;:::i;:::-;3997:801;;;;-1:-1:-1;4757:8:13;-1:-1:-1;;;;3997:801:13:o;4803:180::-;4859:6;4912:2;4900:9;4891:7;4887:23;4883:32;4880:52;;;4928:1;4925;4918:12;4880:52;4951:26;4967:9;4951:26;:::i;4988:245::-;5046:6;5099:2;5087:9;5078:7;5074:23;5070:32;5067:52;;;5115:1;5112;5105:12;5067:52;5154:9;5141:23;5173:30;5197:5;5173:30;:::i;5238:249::-;5307:6;5360:2;5348:9;5339:7;5335:23;5331:32;5328:52;;;5376:1;5373;5366:12;5328:52;5408:9;5402:16;5427:30;5451:5;5427:30;:::i;5492:592::-;5563:6;5571;5624:2;5612:9;5603:7;5599:23;5595:32;5592:52;;;5640:1;5637;5630:12;5592:52;5680:9;5667:23;-1:-1:-1;;;;;5750:2:13;5742:6;5739:14;5736:34;;;5766:1;5763;5756:12;5736:34;5804:6;5793:9;5789:22;5779:32;;5849:7;5842:4;5838:2;5834:13;5830:27;5820:55;;5871:1;5868;5861:12;5820:55;5911:2;5898:16;5937:2;5929:6;5926:14;5923:34;;;5953:1;5950;5943:12;5923:34;5998:7;5993:2;5984:6;5980:2;5976:15;5972:24;5969:37;5966:57;;;6019:1;6016;6009:12;5966:57;6050:2;6042:11;;;;;6072:6;;-1:-1:-1;5492:592:13;;-1:-1:-1;;;;5492:592:13:o;6089:392::-;6180:6;6233:2;6221:9;6212:7;6208:23;6204:32;6201:52;;;6249:1;6246;6239:12;6201:52;6289:9;6276:23;-1:-1:-1;;;;;6314:6:13;6311:30;6308:50;;;6354:1;6351;6344:12;6308:50;6377:22;;6433:3;6415:16;;;6411:26;6408:46;;;6450:1;6447;6440:12;6486:180;6545:6;6598:2;6586:9;6577:7;6573:23;6569:32;6566:52;;;6614:1;6611;6604:12;6566:52;-1:-1:-1;6637:23:13;;6486:180;-1:-1:-1;6486:180:13:o;6671:184::-;6741:6;6794:2;6782:9;6773:7;6769:23;6765:32;6762:52;;;6810:1;6807;6800:12;6762:52;-1:-1:-1;6833:16:13;;6671:184;-1:-1:-1;6671:184:13:o;6860:311::-;6926:6;6934;6987:2;6975:9;6966:7;6962:23;6958:32;6955:52;;;7003:1;7000;6993:12;6955:52;7039:9;7026:23;7016:33;;7099:2;7088:9;7084:18;7071:32;7112:29;7135:5;7112:29;:::i;:::-;7160:5;7150:15;;;6860:311;;;;;:::o;7176:276::-;7234:6;7287:2;7275:9;7266:7;7262:23;7258:32;7255:52;;;7303:1;7300;7293:12;7255:52;7342:9;7329:23;7392:10;7385:5;7381:22;7374:5;7371:33;7361:61;;7418:1;7415;7408:12;7457:247;7525:6;7578:2;7566:9;7557:7;7553:23;7549:32;7546:52;;;7594:1;7591;7584:12;7546:52;7626:9;7620:16;7645:29;7668:5;7645:29;:::i;7709:354::-;7797:19;;;7779:3;-1:-1:-1;;;;;7828:31:13;;7825:51;;;7872:1;7869;7862:12;7825:51;7908:6;7905:1;7901:14;7960:8;7953:5;7946:4;7941:3;7937:14;7924:45;8037:1;7992:18;;8012:4;7988:29;8026:13;;;-1:-1:-1;7988:29:13;;7709:354;-1:-1:-1;;7709:354:13:o;8068:435::-;8121:3;8159:5;8153:12;8186:6;8181:3;8174:19;8212:4;8241:2;8236:3;8232:12;8225:19;;8278:2;8271:5;8267:14;8299:1;8309:169;8323:6;8320:1;8317:13;8309:169;;;8384:13;;8372:26;;8418:12;;;;8453:15;;;;8345:1;8338:9;8309:169;;;-1:-1:-1;8494:3:13;;8068:435;-1:-1:-1;;;;;8068:435:13:o;8508:257::-;8549:3;8587:5;8581:12;8614:6;8609:3;8602:19;8630:63;8686:6;8679:4;8674:3;8670:14;8663:4;8656:5;8652:16;8630:63;:::i;:::-;8747:2;8726:15;-1:-1:-1;;8722:29:13;8713:39;;;;8754:4;8709:50;;8508:257;-1:-1:-1;;8508:257:13:o;8770:470::-;8949:3;8987:6;8981:13;9003:53;9049:6;9044:3;9037:4;9029:6;9025:17;9003:53;:::i;:::-;9119:13;;9078:16;;;;9141:57;9119:13;9078:16;9175:4;9163:17;;9141:57;:::i;:::-;9214:20;;8770:470;-1:-1:-1;;;;8770:470:13:o;9453:488::-;-1:-1:-1;;;;;9722:15:13;;;9704:34;;9774:15;;9769:2;9754:18;;9747:43;9821:2;9806:18;;9799:34;;;9869:3;9864:2;9849:18;;9842:31;;;9647:4;;9890:45;;9915:19;;9907:6;9890:45;:::i;:::-;9882:53;9453:488;-1:-1:-1;;;;;;9453:488:13:o;10575:1422::-;11195:3;11184:9;11177:22;11158:4;11222:74;11291:3;11280:9;11276:19;11268:6;11260;11222:74;:::i;:::-;11344:9;11336:6;11332:22;11327:2;11316:9;11312:18;11305:50;11378:61;11432:6;11424;11416;11378:61;:::i;:::-;11364:75;;11487:9;11479:6;11475:22;11470:2;11459:9;11455:18;11448:50;11521:44;11558:6;11550;11521:44;:::i;:::-;11507:58;;11613:9;11605:6;11601:22;11596:2;11585:9;11581:18;11574:50;11647:61;11701:6;11693;11685;11647:61;:::i;:::-;11633:75;;11757:9;11749:6;11745:22;11739:3;11728:9;11724:19;11717:51;11791:61;11845:6;11837;11829;11791:61;:::i;:::-;11777:75;;11901:9;11893:6;11889:22;11883:3;11872:9;11868:19;11861:51;11929:62;11984:6;11975:7;11967:6;11929:62;:::i;:::-;11921:70;10575:1422;-1:-1:-1;;;;;;;;;;;;;;10575:1422:13:o;12002:261::-;12181:2;12170:9;12163:21;12144:4;12201:56;12253:2;12242:9;12238:18;12230:6;12201:56;:::i;13169:219::-;13318:2;13307:9;13300:21;13281:4;13338:44;13378:2;13367:9;13363:18;13355:6;13338:44;:::i;15607:326::-;15809:2;15791:21;;;15848:1;15828:18;;;15821:29;-1:-1:-1;;;15881:2:13;15866:18;;15859:33;15924:2;15909:18;;15607:326::o;17079:::-;17281:2;17263:21;;;17320:1;17300:18;;;17293:29;-1:-1:-1;;;17353:2:13;17338:18;;17331:33;17396:2;17381:18;;17079:326::o;19979:356::-;20181:2;20163:21;;;20200:18;;;20193:30;20259:34;20254:2;20239:18;;20232:62;20326:2;20311:18;;19979:356::o;21933:415::-;22135:2;22117:21;;;22174:2;22154:18;;;22147:30;22213:34;22208:2;22193:18;;22186:62;-1:-1:-1;;;22279:2:13;22264:18;;22257:49;22338:3;22323:19;;21933:415::o;25863:545::-;25956:4;25962:6;26022:11;26009:25;26116:2;26112:7;26101:8;26085:14;26081:29;26077:43;26057:18;26053:68;26043:96;;26135:1;26132;26125:12;26043:96;26162:33;;26214:20;;;-1:-1:-1;;;;;;26246:30:13;;26243:50;;;26289:1;26286;26279:12;26243:50;26322:4;26310:17;;-1:-1:-1;26373:1:13;26369:14;;;26353;26349:35;26339:46;;26336:66;;;26398:1;26395;26388:12;26413:522;26491:4;26497:6;26557:11;26544:25;26651:2;26647:7;26636:8;26620:14;26616:29;26612:43;26592:18;26588:68;26578:96;;26670:1;26667;26660:12;26578:96;26697:33;;26749:20;;;-1:-1:-1;;;;;;26781:30:13;;26778:50;;;26824:1;26821;26814:12;26778:50;26857:4;26845:17;;-1:-1:-1;26888:14:13;26884:27;;;26874:38;;26871:58;;;26925:1;26922;26915:12;26940:275;27011:2;27005:9;27076:2;27057:13;;-1:-1:-1;;27053:27:13;27041:40;;-1:-1:-1;;;;;27096:34:13;;27132:22;;;27093:62;27090:88;;;27158:18;;:::i;:::-;27194:2;27187:22;26940:275;;-1:-1:-1;26940:275:13:o;27220:253::-;27260:3;-1:-1:-1;;;;;27349:2:13;27346:1;27342:10;27379:2;27376:1;27372:10;27410:3;27406:2;27402:12;27397:3;27394:21;27391:47;;;27418:18;;:::i;27478:128::-;27518:3;27549:1;27545:6;27542:1;27539:13;27536:39;;;27555:18;;:::i;:::-;-1:-1:-1;27591:9:13;;27478:128::o;27611:120::-;27651:1;27677;27667:35;;27682:18;;:::i;:::-;-1:-1:-1;27716:9:13;;27611:120::o;27736:246::-;27776:4;-1:-1:-1;;;;;27889:10:13;;;;27859;;27911:12;;;27908:38;;;27926:18;;:::i;:::-;27963:13;;27736:246;-1:-1:-1;;;27736:246:13:o;27987:125::-;28027:4;28055:1;28052;28049:8;28046:34;;;28060:18;;:::i;:::-;-1:-1:-1;28097:9:13;;27987:125::o;28117:258::-;28189:1;28199:113;28213:6;28210:1;28207:13;28199:113;;;28289:11;;;28283:18;28270:11;;;28263:39;28235:2;28228:10;28199:113;;;28330:6;28327:1;28324:13;28321:48;;;-1:-1:-1;;28365:1:13;28347:16;;28340:27;28117:258::o;28380:136::-;28419:3;28447:5;28437:39;;28456:18;;:::i;:::-;-1:-1:-1;;;28492:18:13;;28380:136::o;28521:380::-;28600:1;28596:12;;;;28643;;;28664:61;;28718:4;28710:6;28706:17;28696:27;;28664:61;28771:2;28763:6;28760:14;28740:18;28737:38;28734:161;;;28817:10;28812:3;28808:20;28805:1;28798:31;28852:4;28849:1;28842:15;28880:4;28877:1;28870:15;28734:161;;28521:380;;;:::o;28906:135::-;28945:3;-1:-1:-1;;28966:17:13;;28963:43;;;28986:18;;:::i;:::-;-1:-1:-1;29033:1:13;29022:13;;28906:135::o;29046:112::-;29078:1;29104;29094:35;;29109:18;;:::i;:::-;-1:-1:-1;29143:9:13;;29046:112::o;29163:127::-;29224:10;29219:3;29215:20;29212:1;29205:31;29255:4;29252:1;29245:15;29279:4;29276:1;29269:15;29295:127;29356:10;29351:3;29347:20;29344:1;29337:31;29387:4;29384:1;29377:15;29411:4;29408:1;29401:15;29427:127;29488:10;29483:3;29479:20;29476:1;29469:31;29519:4;29516:1;29509:15;29543:4;29540:1;29533:15;29559:127;29620:10;29615:3;29611:20;29608:1;29601:31;29651:4;29648:1;29641:15;29675:4;29672:1;29665:15;29691:131;-1:-1:-1;;;;;;29765:32:13;;29755:43;;29745:71;;29812:1;29809;29802:12;29827:114;29911:4;29904:5;29900:16;29893:5;29890:27;29880:55;;29931:1;29928;29921:12

Swarm Source

ipfs://1636185eb754f4ea5a9460be54dd8f319df25e71becc0e10d004c65ee407f1a1
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.