ETH Price: $2,285.12 (-3.70%)

Token

CryptoApeSkullClub (CASC)
 

Overview

Max Total Supply

539 CASC

Holders

131

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
juanmr.eth
Balance
1 CASC
0xb7bcb275ce07859a290ec994b95a2fadd48a460a
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:
CryptoApeSkullClub

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 1 of 6: CryptoApeSkullClub.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./other.sol";
import "./ERC721A.sol";
import "./IERC2981.sol";
import { MerkleProof } from "./MerkleProof.sol";

contract CryptoApeSkullClub is Ownable, ERC721A, ReentrancyGuard ,IERC2981  {

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

  struct SaleConfig {
    uint256 startTime;
    uint256 endTime;
    uint256 price;
  }

  struct AuctionConfig {
    uint256 startPrice;
    uint256 endPrice;
    uint256 stepPrice;
    uint256 supply;
    uint256 interval;
  }
  
  SaleConfig public auctionSaleConfig;
  SaleConfig public whitelistSaleConfig;
  SaleConfig public publicSaleConfig;

  AuctionConfig public auctionConfig;

  uint256 public immutable publicCollectionSize;

  uint256 public immutable maxForFounder;

  uint256 public  founderCount;
  uint256 public  auctionCount;


  bytes32 public merkleRoot;
  mapping(address => uint256) public whitelist;


  uint256 mintCommunityPercent = 75;
  uint256 otherCommunityPercent = 55;

  address public  communityOwner;

  uint256 public founderIncome;
  uint256 public communityIncome;

  uint256 public constant Collection_Size = 10000;

  uint256 public constant Max_Batch_Size = 20;
  uint256 public constant Max_Auction_Batch_Size = 5;


  uint256[] withdrawScale = [0 ether,1,
                            100 ether,20,
                            300 ether,50,
                            1000 ether,80,
                            10000 ether,100];


  uint256 public founderWithdrawAmount;
  uint256 public communityWithdrawAmount;
  
  event FounderWithdraw(uint income);
  event CommunityWithdraw(uint income);

  event Mint(address indexed minter,uint256 indexed price);
  event RoyaltyIncome(address indexed sender, uint indexed income);
  event CommunityOwnershipTransferred(address indexed previousOwner, address indexed newOwner);

  constructor(
    uint256 maxForFounder_,
    address communityAddress_,
    string memory _baseTokenURI_ 
  ) ERC721A("CryptoApeSkullClub", "CASC", Max_Batch_Size, Collection_Size) {
    require(maxForFounder_ < Collection_Size,"larger collection size needed");
    _baseTokenURI = _baseTokenURI_;
    publicCollectionSize = Collection_Size - maxForFounder_;
    maxForFounder = maxForFounder_;
    communityOwner = communityAddress_;   
  }

  modifier callerIsUser() {
    require(tx.origin == msg.sender, "The caller is another contract");
    _;
  }

   modifier onlyCommunityOwner() {
    require(tx.origin == communityOwner, "Ownable: caller is not the owner");
    _;
   }

  modifier checkSale(SaleConfig storage config,uint256 quantity){
    require(
      quantity <= Max_Batch_Size,
      "can not mint this many"
    );
    require(
      config.startTime != 0 && block.timestamp >= config.startTime,
      "sale has not started yet"
    );
    require(
      config.endTime != 0 && block.timestamp < config.endTime,
      "sale has end yet"
    );
    require(
      totalSupply() + quantity <= publicCollectionSize + founderCount, 
      "reached max supply"
    );
    _;
  }

  function founderMint(uint256 quantity) external onlyOwner {
    require(founderCount + quantity <= maxForFounder,"can not mint this many");
    founderCount += quantity;

    while(quantity >= maxBatchSize){
        _safeMint(msg.sender, maxBatchSize);
        quantity -= maxBatchSize;
    }
  
    if(quantity > 0){
      _safeMint(msg.sender, quantity);
    }
  }

  function auctionMint(uint256 quantity) external payable callerIsUser checkSale(auctionSaleConfig,quantity){
    require(quantity <= Max_Auction_Batch_Size,"can not mint this many");
    require(auctionCount + quantity <= auctionConfig.supply, "reached max supply");
    uint256 price = getAuctionPrice();
    
    auctionCount += quantity;
    _safeMint(msg.sender, quantity);
    settlement(price * quantity);
  }


  function whitelistMint(uint256 quantity,uint256 mintMaxAmount, bytes32[] calldata proof) external payable callerIsUser checkSale(whitelistSaleConfig,quantity){
    require(whitelist[msg.sender] + quantity <= mintMaxAmount, "not eligible for mint");
    
    bytes32 leaf = keccak256(abi.encodePacked(msg.sender, mintMaxAmount));
    require(MerkleProof.verify(proof, merkleRoot, leaf), "INVALID PROOF");

    whitelist[msg.sender] += quantity;//
    _safeMint(msg.sender, quantity);
    settlement(whitelistSaleConfig.price * quantity);

  }


  function publicMint(uint256 quantity) external payable callerIsUser checkSale(publicSaleConfig,quantity){
    _safeMint(msg.sender, quantity);
    settlement(publicSaleConfig.price * quantity);
  }


  function settlement(uint256 price) private {
    require(msg.value >= price, "Need to send more ETH.");
    if (msg.value > price) {
      payable(msg.sender).transfer(msg.value - price);
    }
    uint256 community = price * mintCommunityPercent / 100;
    uint256 founder = price - community;
    //
    founderIncome += founder;
    communityIncome += community;
    emit Mint(msg.sender,price);
  }

  function getAuctionPrice() public view returns (uint256)
  {
    uint256 _saleStartTime = auctionSaleConfig.startTime;
    if (block.timestamp < _saleStartTime) {
      return auctionConfig.startPrice;
    }
    uint256 steps = (block.timestamp - _saleStartTime) / auctionConfig.interval;
    uint256 lost = steps * auctionConfig.stepPrice;
    if(lost >= auctionConfig.startPrice){
       return auctionConfig.endPrice;
    }
    uint256 price = auctionConfig.startPrice - lost;
    if(price < auctionConfig.endPrice){
      return auctionConfig.endPrice;
    }
    return price;
  }


  function setAuction(
    uint256 startTimeStamp,uint256 endTimeStamp,
    uint256 startPriceWei,uint256 endPriceWei,uint256 stepPriceWei,uint256 interval,
    uint256 supply
    ) external onlyOwner {
      auctionSaleConfig.startTime = startTimeStamp;
      auctionSaleConfig.endTime = endTimeStamp;

      auctionConfig.startPrice = startPriceWei;
      auctionConfig.endPrice = endPriceWei;
      auctionConfig.stepPrice = stepPriceWei;
      auctionConfig.interval = interval;
      auctionConfig.supply = supply;

      auctionCount = 0;
  }

  function setWhiteList(uint256 startTimeStamp,uint256 endTimeStamp,uint256 priceWei) external onlyOwner {
    whitelistSaleConfig.startTime = startTimeStamp;
    whitelistSaleConfig.endTime = endTimeStamp;
    whitelistSaleConfig.price = priceWei;
  }

  function setPublic(uint256 startTimeStamp,uint256 endTimeStamp,uint256 priceWei) external onlyOwner {
    publicSaleConfig.startTime = startTimeStamp;
    publicSaleConfig.endTime = endTimeStamp;
    publicSaleConfig.price = priceWei;
  }

  function setMerkleRoot(bytes32 newRoot) external onlyOwner {
      merkleRoot = newRoot;
  }
  
  //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 setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant {
    _setOwnersExplicit(quantity);
  }

  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }


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


  receive () external payable{
    _royalty();
  }

  function _royalty() private{
    if(msg.value <= 0){
      return;
    }
    uint256 community = msg.value * otherCommunityPercent / 100;
    uint256 founder = msg.value - community;
    founderIncome += founder;
    communityIncome += community;
    emit RoyaltyIncome(msg.sender,msg.value);
  }

  function royaltyInfo(
    uint256 _tokenId,
    uint256 _salePrice
  )external view override returns (
    address receiver,
    uint256 royaltyAmount
){
    _tokenId;
    _salePrice;
  return(address(this),_salePrice / 10);
}
  function canWithdrawAmount() public view returns (uint256) {
    if(totalSupply() < collectionSize){
      return 0;
    }
    uint256 percent = 0;
    for (uint256 i = 0; i < withdrawScale.length; i=i+2) {
      if(founderIncome>=withdrawScale[i]){
          percent = withdrawScale[i+1];
      }else{
        break;
      }
    }
    return percent*founderIncome/100 - founderWithdrawAmount;
  }
  
  function founderWithdraw() external onlyOwner nonReentrant {
    uint256 amount = canWithdrawAmount();
    require(amount > 0, "Balance is not enough");
    (bool success, ) = msg.sender.call{value: amount}("");
    if(success){
      founderWithdrawAmount = founderWithdrawAmount + amount;
    }
    require(success, "Transfer failed.");
    emit FounderWithdraw(amount);
  }

  function communityWithdraw() external onlyCommunityOwner nonReentrant {
    uint256 amount = communityIncome - communityWithdrawAmount;
    require(amount > 0, "Balance is not enough");
    (bool success, ) = msg.sender.call{value: amount}("");
    if(success){
      communityWithdrawAmount = communityWithdrawAmount + amount;
    }
    require(success, "Transfer failed");
    emit CommunityWithdraw(amount);
  }

   function transferCommunityOwnership(address newOwner) external  onlyCommunityOwner nonReentrant{
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        address oldOwner = communityOwner;
        communityOwner = newOwner;
        emit CommunityOwnershipTransferred(oldOwner,newOwner);
    }
    
  function getBalance() external view returns(uint256){
      return address(this).balance;
  }
}

File 2 of 6: ERC721A.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./other.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 3 of 6: IERC2981.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./other.sol";
///
/// @dev Interface for the NFT Royalty Standard
///
interface IERC2981 is IERC165 {
    /// ERC165 bytes to add to interface array - set in parent contract
    /// implementing this standard
    ///
    /// bytes4(keccak256("royaltyInfo(uint256,uint256)")) == 0x2a55205a
    /// bytes4 private constant _INTERFACE_ID_ERC2981 = 0x2a55205a;
    /// _registerInterface(_INTERFACE_ID_ERC2981);

    /// @notice Called with the sale price to determine how much royalty
    //          is owed and to whom.
    /// @param _tokenId - the NFT asset queried for royalty information
    /// @param _salePrice - the sale price of the NFT asset specified by _tokenId
    /// @return receiver - address of who should be sent the royalty payment
    /// @return royaltyAmount - the royalty payment amount for _salePrice
    function royaltyInfo(
        uint256 _tokenId,
        uint256 _salePrice
    ) external view returns (
        address receiver,
        uint256 royaltyAmount
    );
}

File 4 of 6: MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

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

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

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


pragma solidity ^0.8.0;

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



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



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




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


pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.0;


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




pragma solidity ^0.8.0;

//import "../IERC721.sol";

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

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

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




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


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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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





File 6 of 6: 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;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxForFounder_","type":"uint256"},{"internalType":"address","name":"communityAddress_","type":"address"},{"internalType":"string","name":"_baseTokenURI_","type":"string"}],"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":"CommunityOwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"income","type":"uint256"}],"name":"CommunityWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"income","type":"uint256"}],"name":"FounderWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"minter","type":"address"},{"indexed":true,"internalType":"uint256","name":"price","type":"uint256"}],"name":"Mint","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":"sender","type":"address"},{"indexed":true,"internalType":"uint256","name":"income","type":"uint256"}],"name":"RoyaltyIncome","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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"Collection_Size","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Max_Auction_Batch_Size","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Max_Batch_Size","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"auctionConfig","outputs":[{"internalType":"uint256","name":"startPrice","type":"uint256"},{"internalType":"uint256","name":"endPrice","type":"uint256"},{"internalType":"uint256","name":"stepPrice","type":"uint256"},{"internalType":"uint256","name":"supply","type":"uint256"},{"internalType":"uint256","name":"interval","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"auctionCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"auctionMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"auctionSaleConfig","outputs":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"canWithdrawAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"communityIncome","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"communityOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"communityWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"communityWithdrawAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"founderCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"founderIncome","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"founderMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"founderWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"founderWithdrawAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAuctionPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":"maxForFounder","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","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":[],"name":"publicCollectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleConfig","outputs":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"startTimeStamp","type":"uint256"},{"internalType":"uint256","name":"endTimeStamp","type":"uint256"},{"internalType":"uint256","name":"startPriceWei","type":"uint256"},{"internalType":"uint256","name":"endPriceWei","type":"uint256"},{"internalType":"uint256","name":"stepPriceWei","type":"uint256"},{"internalType":"uint256","name":"interval","type":"uint256"},{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"setAuction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"startTimeStamp","type":"uint256"},{"internalType":"uint256","name":"endTimeStamp","type":"uint256"},{"internalType":"uint256","name":"priceWei","type":"uint256"}],"name":"setPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"startTimeStamp","type":"uint256"},{"internalType":"uint256","name":"endTimeStamp","type":"uint256"},{"internalType":"uint256","name":"priceWei","type":"uint256"}],"name":"setWhiteList","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":"newOwner","type":"address"}],"name":"transferCommunityOwnership","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":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"uint256","name":"mintMaxAmount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistSaleConfig","outputs":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

600060018181556008829055604b601c556037601d556102406040526101009182526101205268056bc75e2d6310000061014052601461016052681043561a88293000006101805260326101a052683635c9adc5dea000006101c05260506101e05269021e19e0c9bab2400000610200526064610220526200008690602190600a62000323565b503480156200009457600080fd5b5060405162003f6538038062003f65833981016040819052620000b79162000412565b6040518060400160405280601281526020017121b93cb83a37a0b832a9b5bab63621b63ab160711b815250604051806040016040528060048152602001634341534360e01b81525060146127106200011e62000118620002cf60201b60201c565b620002d3565b600081116200018b5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001ed5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000182565b8351620002029060029060208701906200037e565b508251620002189060039060208601906200037e565b5060a0919091526080525050600160095561271083106200027c5760405162461bcd60e51b815260206004820152601d60248201527f6c617267657220636f6c6c656374696f6e2073697a65206e6565646564000000604482015260640162000182565b8051620002919060249060208401906200037e565b50620002a0836127106200051c565b60c0525060e091909152601e80546001600160a01b0319166001600160a01b0390921691909117905562000595565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280548282559060005260206000209081019282156200036c579160200282015b828111156200036c57825182906001600160501b031690559160200191906001019062000344565b506200037a929150620003fb565b5090565b8280546200038c9062000542565b90600052602060002090601f016020900481019282620003b057600085556200036c565b82601f10620003cb57805160ff19168380011785556200036c565b828001600101855582156200036c579182015b828111156200036c578251825591602001919060010190620003de565b5b808211156200037a5760008155600101620003fc565b6000806000606084860312156200042857600080fd5b8351602080860151919450906001600160a01b03811681146200044a57600080fd5b60408601519093506001600160401b03808211156200046857600080fd5b818701915087601f8301126200047d57600080fd5b8151818111156200049257620004926200057f565b604051601f8201601f19908116603f01168101908382118183101715620004bd57620004bd6200057f565b816040528281528a86848701011115620004d657600080fd5b600093505b82841015620004fa5784840186015181850187015292850192620004db565b828411156200050c5760008684830101525b8096505050505050509250925092565b6000828210156200053d57634e487b7160e01b600052601160045260246000fd5b500390565b600181811c908216806200055757607f821691505b602082108114156200057957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160a05160c05160e0516139496200061c600039600081816106e40152611f9c015260008181610ac701528181610fb8015281816113320152611c7c0152600081816120010152818161202c0152818161205501528181612881015281816128ab0152612d8401526000818161164901528181612551015261258301526139496000f3fe60806040526004361061037a5760003560e01c8063656cf918116101d1578063a3fd2c4411610102578063d7224ba0116100a0578063f2fde38b1161006f578063f2fde38b14610a5f578063f42202e814610a7f578063f984053614610a9f578063fc51efb114610ab557610389565b8063d7224ba0146109ca578063d906561d146109e0578063dc33e681146109f6578063e985e9c514610a1657610389565b8063b91d3c52116100dc578063b91d3c5214610932578063bb40613514610948578063c4be5b5914610997578063c87b56dd146109aa57610389565b8063a3fd2c44146108d3578063af65f7f3146108f2578063b88d4fde1461091257610389565b806384f859511161016f5780639231ab2a116101495780639231ab2a1461082357806395d89b41146108715780639b19251a14610886578063a22cb465146108b357610389565b806384f85951146107db57806389df3959146107f05780638da5cb5b1461080557610389565b8063715018a6116101ab578063715018a61461077b578063773e3309146107905780637cb64759146107a65780637d4148a7146107c657610389565b8063656cf91814610726578063705dae171461074557806370a082311461075b57610389565b80632eb4a7ab116102ab5780634f6ccce7116102495780635a40c854116102235780635a40c8541461069d578063623330ae146106b257806362c4048a146106d25780636352211e1461070657610389565b80634f6ccce714610648578063540210d21461066857806355f804b31461067d57610389565b80633e3617ed116102855780633e3617ed146105e057806342842e0e146106005780634bd25c6f146106205780634d3554c31461063557610389565b80632eb4a7ab1461058a5780632f745c59146105a057806338518bfe146105c057610389565b806318160ddd116103185780632a55205a116102f25780632a55205a146105025780632ad71573146105415780632d20fb60146105575780632db115441461057757610389565b806318160ddd146104b7578063216af5d9146104cc57806323b872dd146104e257610389565b8063095ea7b311610354578063095ea7b31461042057806312065fe014610440578063133250ba1461045d5780631690bc051461049757610389565b806301ffc9a71461039157806306fdde03146103c6578063081812fc146103e857610389565b3661038957610387610ae9565b005b610387610ae9565b34801561039d57600080fd5b506103b16103ac3660046132df565b610b80565b60405190151581526020015b60405180910390f35b3480156103d257600080fd5b506103db610bfc565b6040516103bd9190613540565b3480156103f457600080fd5b506104086104033660046132c6565b610c8e565b6040516001600160a01b0390911681526020016103bd565b34801561042c57600080fd5b5061038761043b36600461329c565b610d1e565b34801561044c57600080fd5b50475b6040519081526020016103bd565b34801561046957600080fd5b50600a54600b54600c5461047c92919083565b604080519384526020840192909252908201526060016103bd565b3480156104a357600080fd5b506103876104b236600461345c565b610e36565b3480156104c357600080fd5b5060015461044f565b3480156104d857600080fd5b5061044f601f5481565b3480156104ee57600080fd5b506103876104fd366004613148565b610e85565b34801561050e57600080fd5b5061052261051d36600461338b565b610e90565b604080516001600160a01b0390931683526020830191909152016103bd565b34801561054d57600080fd5b5061044f60195481565b34801561056357600080fd5b506103876105723660046132c6565b610eaa565b6103876105853660046132c6565b610f0d565b34801561059657600080fd5b5061044f601a5481565b3480156105ac57600080fd5b5061044f6105bb36600461329c565b61102f565b3480156105cc57600080fd5b50601e54610408906001600160a01b031681565b3480156105ec57600080fd5b506103876105fb366004613430565b6111a8565b34801561060c57600080fd5b5061038761061b366004613148565b6111e0565b34801561062c57600080fd5b5061044f6111fb565b6103876106433660046132c6565b611287565b34801561065457600080fd5b5061044f6106633660046132c6565b611419565b34801561067457600080fd5b50610387611482565b34801561068957600080fd5b50610387610698366004613319565b61160f565b3480156106a957600080fd5b5061044f611645565b3480156106be57600080fd5b506103876106cd3660046130fa565b611725565b3480156106de57600080fd5b5061044f7f000000000000000000000000000000000000000000000000000000000000000081565b34801561071257600080fd5b506104086107213660046132c6565b6117f4565b34801561073257600080fd5b50600d54600e54600f5461047c92919083565b34801561075157600080fd5b5061044f60205481565b34801561076757600080fd5b5061044f6107763660046130fa565b611806565b34801561078757600080fd5b50610387611897565b34801561079c57600080fd5b5061044f60185481565b3480156107b257600080fd5b506103876107c13660046132c6565b6118cd565b3480156107d257600080fd5b5061044f600581565b3480156107e757600080fd5b506103876118fc565b3480156107fc57600080fd5b5061044f601481565b34801561081157600080fd5b506000546001600160a01b0316610408565b34801561082f57600080fd5b5061084361083e3660046132c6565b611a75565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff1692810192909252016103bd565b34801561087d57600080fd5b506103db611a92565b34801561089257600080fd5b5061044f6108a13660046130fa565b601b6020526000908152604090205481565b3480156108bf57600080fd5b506103876108ce366004613260565b611aa1565b3480156108df57600080fd5b5060105460115460125461047c92919083565b3480156108fe57600080fd5b5061038761090d366004613430565b611b66565b34801561091e57600080fd5b5061038761092d366004613184565b611b9e565b34801561093e57600080fd5b5061044f61271081565b34801561095457600080fd5b5060135460145460155460165460175461096f949392919085565b604080519586526020860194909452928401919091526060830152608082015260a0016103bd565b6103876109a53660046133ad565b611bd1565b3480156109b657600080fd5b506103db6109c53660046132c6565b611e3c565b3480156109d657600080fd5b5061044f60085481565b3480156109ec57600080fd5b5061044f60225481565b348015610a0257600080fd5b5061044f610a113660046130fa565b611f09565b348015610a2257600080fd5b506103b1610a31366004613115565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610a6b57600080fd5b50610387610a7a3660046130fa565b611f14565b348015610a8b57600080fd5b50610387610a9a3660046132c6565b611f70565b348015610aab57600080fd5b5061044f60235481565b348015610ac157600080fd5b5061044f7f000000000000000000000000000000000000000000000000000000000000000081565b60003411610af357565b60006064601d5434610b05919061379a565b610b0f9190613786565b90506000610b1d82346137e1565b905080601f6000828254610b31919061376e565b925050819055508160206000828254610b4a919061376e565b9091555050604051349033907fd58b9453e6f4c35a3372d312593e36abb8753db08302eb548b83eabb743c4bb190600090a35050565b60006001600160e01b031982166380ac58cd60e01b1480610bb157506001600160e01b03198216635b5e139f60e01b145b80610bcc57506001600160e01b0319821663780e9d6360e01b145b80610be757506001600160e01b0319821663152a902d60e11b145b80610bf65750610bf682612091565b92915050565b606060028054610c0b9061383b565b80601f0160208091040260200160405190810160405280929190818152602001828054610c379061383b565b8015610c845780601f10610c5957610100808354040283529160200191610c84565b820191906000526020600020905b815481529060010190602001808311610c6757829003601f168201915b5050505050905090565b6000610c9b826001541190565b610d025760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610d29826117f4565b9050806001600160a01b0316836001600160a01b03161415610d985760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610cf9565b336001600160a01b0382161480610db45750610db48133610a31565b610e265760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610cf9565b610e318383836120fc565b505050565b6000546001600160a01b03163314610e605760405162461bcd60e51b8152600401610cf99061365d565b600a96909655600b949094556013929092556014556015556017556016556000601955565b610e31838383612158565b60008030610e9f600a85613786565b915091509250929050565b6000546001600160a01b03163314610ed45760405162461bcd60e51b8152600401610cf99061365d565b60026009541415610ef75760405162461bcd60e51b8152600401610cf990613715565b6002600955610f05816124e0565b506001600955565b323314610f2c5760405162461bcd60e51b8152600401610cf9906135d0565b6010816014811115610f505760405162461bcd60e51b8152600401610cf9906136e5565b815415801590610f61575081544210155b610f7d5760405162461bcd60e51b8152600401610cf990613599565b600182015415801590610f935750816001015442105b610faf5760405162461bcd60e51b8152600401610cf990613633565b601854610fdc907f000000000000000000000000000000000000000000000000000000000000000061376e565b81610fe660015490565b610ff0919061376e565b111561100e5760405162461bcd60e51b8152600401610cf990613607565b61101833846126ca565b601254610e319061102a90859061379a565b6126e8565b600061103a83611806565b82106110935760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610cf9565b600061109e60015490565b905060008060005b83811015611148576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156110f957805192505b876001600160a01b0316836001600160a01b03161415611135578684141561112757509350610bf692505050565b8361113181613876565b9450505b508061114081613876565b9150506110a6565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610cf9565b6000546001600160a01b031633146111d25760405162461bcd60e51b8152600401610cf99061365d565b600d92909255600e55600f55565b610e3183838360405180602001604052806000815250611b9e565b600a546000904281111561121157505060135490565b60175460009061122183426137e1565b61122b9190613786565b60155490915060009061123e908361379a565b601354909150811061125557505060145492915050565b6013546000906112669083906137e1565b60145490915081101561127f5750506014549392505050565b949350505050565b3233146112a65760405162461bcd60e51b8152600401610cf9906135d0565b600a8160148111156112ca5760405162461bcd60e51b8152600401610cf9906136e5565b8154158015906112db575081544210155b6112f75760405162461bcd60e51b8152600401610cf990613599565b60018201541580159061130d5750816001015442105b6113295760405162461bcd60e51b8152600401610cf990613633565b601854611356907f000000000000000000000000000000000000000000000000000000000000000061376e565b8161136060015490565b61136a919061376e565b11156113885760405162461bcd60e51b8152600401610cf990613607565b60058311156113a95760405162461bcd60e51b8152600401610cf9906136e5565b6016546019546113ba90859061376e565b11156113d85760405162461bcd60e51b8152600401610cf990613607565b60006113e26111fb565b905083601960008282546113f6919061376e565b90915550611406905033856126ca565b61141361102a858361379a565b50505050565b600061142460015490565b821061147e5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610cf9565b5090565b601e546001600160a01b031632146114ac5760405162461bcd60e51b8152600401610cf99061365d565b600260095414156114cf5760405162461bcd60e51b8152600401610cf990613715565b60026009556023546020546000916114e6916137e1565b9050600081116115305760405162461bcd60e51b8152602060048201526015602482015274084c2d8c2dcc6ca40d2e640dcdee840cadcdeeaced605b1b6044820152606401610cf9565b604051600090339083908381818185875af1925050503d8060008114611572576040519150601f19603f3d011682016040523d82523d6000602084013e611577565b606091505b505090508015611593578160235461158f919061376e565b6023555b806115d25760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610cf9565b6040518281527f1cd97c19dc1d84701ffe5955bd09ceed679616e510fffc431cb8bada45081013906020015b60405180910390a150506001600955565b6000546001600160a01b031633146116395760405162461bcd60e51b8152600401610cf99061365d565b610e316024838361304e565b60007f000000000000000000000000000000000000000000000000000000000000000061167160015490565b101561167d5750600090565b6000805b6021548110156116f7576021818154811061169e5761169e6138d1565b9060005260206000200154601f54106116e05760216116be82600161376e565b815481106116ce576116ce6138d1565b906000526020600020015491506116e5565b6116f7565b6116f081600261376e565b9050611681565b506022546064601f548361170b919061379a565b6117159190613786565b61171f91906137e1565b91505090565b601e546001600160a01b0316321461174f5760405162461bcd60e51b8152600401610cf99061365d565b600260095414156117725760405162461bcd60e51b8152600401610cf990613715565b60026009556001600160a01b03811661179d5760405162461bcd60e51b8152600401610cf990613553565b601e80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f01c494f8bdbd01d8034d623adad50c653985837ee9456fcfea603ac04cc53ce590600090a350506001600955565b60006117ff826127ff565b5192915050565b60006001600160a01b0382166118725760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610cf9565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146118c15760405162461bcd60e51b8152600401610cf99061365d565b6118cb60006129a9565b565b6000546001600160a01b031633146118f75760405162461bcd60e51b8152600401610cf99061365d565b601a55565b6000546001600160a01b031633146119265760405162461bcd60e51b8152600401610cf99061365d565b600260095414156119495760405162461bcd60e51b8152600401610cf990613715565b60026009556000611958611645565b9050600081116119a25760405162461bcd60e51b8152602060048201526015602482015274084c2d8c2dcc6ca40d2e640dcdee840cadcdeeaced605b1b6044820152606401610cf9565b604051600090339083908381818185875af1925050503d80600081146119e4576040519150601f19603f3d011682016040523d82523d6000602084013e6119e9565b606091505b505090508015611a055781602254611a01919061376e565b6022555b80611a455760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610cf9565b6040518281527f5967486005b8260fe9718580fbbd4c9fe9c61feee7b3628ec31af3d862cc2ef7906020016115fe565b6040805180820190915260008082526020820152610bf6826127ff565b606060038054610c0b9061383b565b6001600160a01b038216331415611afa5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610cf9565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314611b905760405162461bcd60e51b8152600401610cf99061365d565b601092909255601155601255565b611ba9848484612158565b611bb5848484846129f9565b6114135760405162461bcd60e51b8152600401610cf990613692565b323314611bf05760405162461bcd60e51b8152600401610cf9906135d0565b600d846014811115611c145760405162461bcd60e51b8152600401610cf9906136e5565b815415801590611c25575081544210155b611c415760405162461bcd60e51b8152600401610cf990613599565b600182015415801590611c575750816001015442105b611c735760405162461bcd60e51b8152600401610cf990613633565b601854611ca0907f000000000000000000000000000000000000000000000000000000000000000061376e565b81611caa60015490565b611cb4919061376e565b1115611cd25760405162461bcd60e51b8152600401610cf990613607565b336000908152601b60205260409020548590611cef90889061376e565b1115611d355760405162461bcd60e51b81526020600482015260156024820152741b9bdd08195b1a59da589b1948199bdc881b5a5b9d605a1b6044820152606401610cf9565b6040516bffffffffffffffffffffffff193360601b16602082015260348101869052600090605401604051602081830303815290604052805190602001209050611db685858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601a549150849050612b06565b611df25760405162461bcd60e51b815260206004820152600d60248201526c24a72b20a624a210282927a7a360991b6044820152606401610cf9565b336000908152601b602052604081208054899290611e1190849061376e565b90915550611e21905033886126ca565b600f54611e339061102a90899061379a565b50505050505050565b6060611e49826001541190565b611ead5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610cf9565b6000611eb7612b1c565b90506000815111611ed75760405180602001604052806000815250611f02565b80611ee184612b2b565b604051602001611ef29291906134d4565b6040516020818303038152906040525b9392505050565b6000610bf682612c29565b6000546001600160a01b03163314611f3e5760405162461bcd60e51b8152600401610cf99061365d565b6001600160a01b038116611f645760405162461bcd60e51b8152600401610cf990613553565b611f6d816129a9565b50565b6000546001600160a01b03163314611f9a5760405162461bcd60e51b8152600401610cf99061365d565b7f000000000000000000000000000000000000000000000000000000000000000081601854611fc9919061376e565b1115611fe75760405162461bcd60e51b8152600401610cf9906136e5565b8060186000828254611ff9919061376e565b90915550505b7f0000000000000000000000000000000000000000000000000000000000000000811061208157612050337f00000000000000000000000000000000000000000000000000000000000000006126ca565b61207a7f0000000000000000000000000000000000000000000000000000000000000000826137e1565b9050611fff565b8015611f6d57611f6d33826126ca565b60006001600160e01b031982166380ac58cd60e01b14806120c257506001600160e01b03198216635b5e139f60e01b145b806120dd57506001600160e01b0319821663780e9d6360e01b145b80610bf657506301ffc9a760e01b6001600160e01b0319831614610bf6565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000612163826127ff565b80519091506000906001600160a01b0316336001600160a01b0316148061219a57503361218f84610c8e565b6001600160a01b0316145b806121ac575081516121ac9033610a31565b9050806122165760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610cf9565b846001600160a01b031682600001516001600160a01b03161461228a5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610cf9565b6001600160a01b0384166122ee5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610cf9565b6122fe60008484600001516120fc565b6001600160a01b03851660009081526005602052604081208054600192906123309084906001600160801b03166137b9565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261237c9185911661374c565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561240484600161376e565b6000818152600460205260409020549091506001600160a01b03166124965761242e816001541190565b156124965760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600854816125305760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610cf9565b6000600161253e848461376e565b61254891906137e1565b905061257560017f00000000000000000000000000000000000000000000000000000000000000006137e1565b8111156125aa576125a760017f00000000000000000000000000000000000000000000000000000000000000006137e1565b90505b6125b5816001541190565b6126105760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610cf9565b815b8181116126b6576000818152600460205260409020546001600160a01b03166126a4576000612640826127ff565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b806126ae81613876565b915050612612565b506126c281600161376e565b600855505050565b6126e4828260405180602001604052806000815250612cc7565b5050565b803410156127315760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610cf9565b8034111561277157336108fc61274783346137e1565b6040518115909202916000818181858888f1935050505015801561276f573d6000803e3d6000fd5b505b60006064601c5483612783919061379a565b61278d9190613786565b9050600061279b82846137e1565b905080601f60008282546127af919061376e565b9250508190555081602060008282546127c8919061376e565b9091555050604051839033907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688590600090a3505050565b604080518082019091526000808252602082015261281e826001541190565b61287d5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610cf9565b60007f000000000000000000000000000000000000000000000000000000000000000083106128de576128d07f0000000000000000000000000000000000000000000000000000000000000000846137e1565b6128db90600161376e565b90505b825b818110612948576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561293557949350505050565b508061294081613824565b9150506128e0565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610cf9565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15612afb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612a3d903390899088908890600401613503565b602060405180830381600087803b158015612a5757600080fd5b505af1925050508015612a87575060408051601f3d908101601f19168201909252612a84918101906132fc565b60015b612ae1573d808015612ab5576040519150601f19603f3d011682016040523d82523d6000602084013e612aba565b606091505b508051612ad95760405162461bcd60e51b8152600401610cf990613692565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061127f565b506001949350505050565b600082612b138584612fa2565b14949350505050565b606060248054610c0b9061383b565b606081612b4f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612b795780612b6381613876565b9150612b729050600a83613786565b9150612b53565b60008167ffffffffffffffff811115612b9457612b946138e7565b6040519080825280601f01601f191660200182016040528015612bbe576020820181803683370190505b5090505b841561127f57612bd36001836137e1565b9150612be0600a86613891565b612beb90603061376e565b60f81b818381518110612c0057612c006138d1565b60200101906001600160f81b031916908160001a905350612c22600a86613786565b9450612bc2565b60006001600160a01b038216612c9b5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610cf9565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416612d2a5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610cf9565b612d35816001541190565b15612d825760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610cf9565b7f0000000000000000000000000000000000000000000000000000000000000000831115612dfd5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610cf9565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612e5990879061374c565b6001600160801b03168152602001858360200151612e77919061374c565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015612f975760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612f5b60008884886129f9565b612f775760405162461bcd60e51b8152600401610cf990613692565b81612f8181613876565b9250508080612f8f90613876565b915050612f0e565b5060018190556124d8565b600081815b8451811015613046576000858281518110612fc457612fc46138d1565b60200260200101519050808311613006576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250613033565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061303e81613876565b915050612fa7565b509392505050565b82805461305a9061383b565b90600052602060002090601f01602090048101928261307c57600085556130c2565b82601f106130955782800160ff198235161785556130c2565b828001600101855582156130c2579182015b828111156130c25782358255916020019190600101906130a7565b5061147e9291505b8082111561147e57600081556001016130ca565b80356001600160a01b03811681146130f557600080fd5b919050565b60006020828403121561310c57600080fd5b611f02826130de565b6000806040838503121561312857600080fd5b613131836130de565b915061313f602084016130de565b90509250929050565b60008060006060848603121561315d57600080fd5b613166846130de565b9250613174602085016130de565b9150604084013590509250925092565b6000806000806080858703121561319a57600080fd5b6131a3856130de565b93506131b1602086016130de565b925060408501359150606085013567ffffffffffffffff808211156131d557600080fd5b818701915087601f8301126131e957600080fd5b8135818111156131fb576131fb6138e7565b604051601f8201601f19908116603f01168101908382118183101715613223576132236138e7565b816040528281528a602084870101111561323c57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561327357600080fd5b61327c836130de565b91506020830135801515811461329157600080fd5b809150509250929050565b600080604083850312156132af57600080fd5b6132b8836130de565b946020939093013593505050565b6000602082840312156132d857600080fd5b5035919050565b6000602082840312156132f157600080fd5b8135611f02816138fd565b60006020828403121561330e57600080fd5b8151611f02816138fd565b6000806020838503121561332c57600080fd5b823567ffffffffffffffff8082111561334457600080fd5b818501915085601f83011261335857600080fd5b81358181111561336757600080fd5b86602082850101111561337957600080fd5b60209290920196919550909350505050565b6000806040838503121561339e57600080fd5b50508035926020909101359150565b600080600080606085870312156133c357600080fd5b8435935060208501359250604085013567ffffffffffffffff808211156133e957600080fd5b818701915087601f8301126133fd57600080fd5b81358181111561340c57600080fd5b8860208260051b850101111561342157600080fd5b95989497505060200194505050565b60008060006060848603121561344557600080fd5b505081359360208301359350604090920135919050565b600080600080600080600060e0888a03121561347757600080fd5b505085359760208701359750604087013596606081013596506080810135955060a0810135945060c0013592509050565b600081518084526134c08160208601602086016137f8565b601f01601f19169290920160200192915050565b600083516134e68184602088016137f8565b8351908301906134fa8183602088016137f8565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613536908301846134a8565b9695505050505050565b602081526000611f0260208301846134a8565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526018908201527f73616c6520686173206e6f742073746172746564207965740000000000000000604082015260600190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526012908201527172656163686564206d617820737570706c7960701b604082015260600190565b60208082526010908201526f1cd85b19481a185cc8195b99081e595d60821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60208082526016908201527563616e206e6f74206d696e742074686973206d616e7960501b604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60006001600160801b038083168185168083038211156134fa576134fa6138a5565b60008219821115613781576137816138a5565b500190565b600082613795576137956138bb565b500490565b60008160001904831182151516156137b4576137b46138a5565b500290565b60006001600160801b03838116908316818110156137d9576137d96138a5565b039392505050565b6000828210156137f3576137f36138a5565b500390565b60005b838110156138135781810151838201526020016137fb565b838111156114135750506000910152565b600081613833576138336138a5565b506000190190565b600181811c9082168061384f57607f821691505b6020821081141561387057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561388a5761388a6138a5565b5060010190565b6000826138a0576138a06138bb565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611f6d57600080fdfea2646970667358221220241c059eaa4dd1699c4f8d89f443a1fc7a7d3b0b90099d19f84cb7a70307677364736f6c63430008070033000000000000000000000000000000000000000000000000000000000000012c0000000000000000000000001a8d33cb075075e6ef18f8837cd29b38cae0597000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a474843696d6742445850634244633868333863574b7535693356793231625035536d585631684d424431482f00000000000000000000

Deployed Bytecode

0x60806040526004361061037a5760003560e01c8063656cf918116101d1578063a3fd2c4411610102578063d7224ba0116100a0578063f2fde38b1161006f578063f2fde38b14610a5f578063f42202e814610a7f578063f984053614610a9f578063fc51efb114610ab557610389565b8063d7224ba0146109ca578063d906561d146109e0578063dc33e681146109f6578063e985e9c514610a1657610389565b8063b91d3c52116100dc578063b91d3c5214610932578063bb40613514610948578063c4be5b5914610997578063c87b56dd146109aa57610389565b8063a3fd2c44146108d3578063af65f7f3146108f2578063b88d4fde1461091257610389565b806384f859511161016f5780639231ab2a116101495780639231ab2a1461082357806395d89b41146108715780639b19251a14610886578063a22cb465146108b357610389565b806384f85951146107db57806389df3959146107f05780638da5cb5b1461080557610389565b8063715018a6116101ab578063715018a61461077b578063773e3309146107905780637cb64759146107a65780637d4148a7146107c657610389565b8063656cf91814610726578063705dae171461074557806370a082311461075b57610389565b80632eb4a7ab116102ab5780634f6ccce7116102495780635a40c854116102235780635a40c8541461069d578063623330ae146106b257806362c4048a146106d25780636352211e1461070657610389565b80634f6ccce714610648578063540210d21461066857806355f804b31461067d57610389565b80633e3617ed116102855780633e3617ed146105e057806342842e0e146106005780634bd25c6f146106205780634d3554c31461063557610389565b80632eb4a7ab1461058a5780632f745c59146105a057806338518bfe146105c057610389565b806318160ddd116103185780632a55205a116102f25780632a55205a146105025780632ad71573146105415780632d20fb60146105575780632db115441461057757610389565b806318160ddd146104b7578063216af5d9146104cc57806323b872dd146104e257610389565b8063095ea7b311610354578063095ea7b31461042057806312065fe014610440578063133250ba1461045d5780631690bc051461049757610389565b806301ffc9a71461039157806306fdde03146103c6578063081812fc146103e857610389565b3661038957610387610ae9565b005b610387610ae9565b34801561039d57600080fd5b506103b16103ac3660046132df565b610b80565b60405190151581526020015b60405180910390f35b3480156103d257600080fd5b506103db610bfc565b6040516103bd9190613540565b3480156103f457600080fd5b506104086104033660046132c6565b610c8e565b6040516001600160a01b0390911681526020016103bd565b34801561042c57600080fd5b5061038761043b36600461329c565b610d1e565b34801561044c57600080fd5b50475b6040519081526020016103bd565b34801561046957600080fd5b50600a54600b54600c5461047c92919083565b604080519384526020840192909252908201526060016103bd565b3480156104a357600080fd5b506103876104b236600461345c565b610e36565b3480156104c357600080fd5b5060015461044f565b3480156104d857600080fd5b5061044f601f5481565b3480156104ee57600080fd5b506103876104fd366004613148565b610e85565b34801561050e57600080fd5b5061052261051d36600461338b565b610e90565b604080516001600160a01b0390931683526020830191909152016103bd565b34801561054d57600080fd5b5061044f60195481565b34801561056357600080fd5b506103876105723660046132c6565b610eaa565b6103876105853660046132c6565b610f0d565b34801561059657600080fd5b5061044f601a5481565b3480156105ac57600080fd5b5061044f6105bb36600461329c565b61102f565b3480156105cc57600080fd5b50601e54610408906001600160a01b031681565b3480156105ec57600080fd5b506103876105fb366004613430565b6111a8565b34801561060c57600080fd5b5061038761061b366004613148565b6111e0565b34801561062c57600080fd5b5061044f6111fb565b6103876106433660046132c6565b611287565b34801561065457600080fd5b5061044f6106633660046132c6565b611419565b34801561067457600080fd5b50610387611482565b34801561068957600080fd5b50610387610698366004613319565b61160f565b3480156106a957600080fd5b5061044f611645565b3480156106be57600080fd5b506103876106cd3660046130fa565b611725565b3480156106de57600080fd5b5061044f7f000000000000000000000000000000000000000000000000000000000000012c81565b34801561071257600080fd5b506104086107213660046132c6565b6117f4565b34801561073257600080fd5b50600d54600e54600f5461047c92919083565b34801561075157600080fd5b5061044f60205481565b34801561076757600080fd5b5061044f6107763660046130fa565b611806565b34801561078757600080fd5b50610387611897565b34801561079c57600080fd5b5061044f60185481565b3480156107b257600080fd5b506103876107c13660046132c6565b6118cd565b3480156107d257600080fd5b5061044f600581565b3480156107e757600080fd5b506103876118fc565b3480156107fc57600080fd5b5061044f601481565b34801561081157600080fd5b506000546001600160a01b0316610408565b34801561082f57600080fd5b5061084361083e3660046132c6565b611a75565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff1692810192909252016103bd565b34801561087d57600080fd5b506103db611a92565b34801561089257600080fd5b5061044f6108a13660046130fa565b601b6020526000908152604090205481565b3480156108bf57600080fd5b506103876108ce366004613260565b611aa1565b3480156108df57600080fd5b5060105460115460125461047c92919083565b3480156108fe57600080fd5b5061038761090d366004613430565b611b66565b34801561091e57600080fd5b5061038761092d366004613184565b611b9e565b34801561093e57600080fd5b5061044f61271081565b34801561095457600080fd5b5060135460145460155460165460175461096f949392919085565b604080519586526020860194909452928401919091526060830152608082015260a0016103bd565b6103876109a53660046133ad565b611bd1565b3480156109b657600080fd5b506103db6109c53660046132c6565b611e3c565b3480156109d657600080fd5b5061044f60085481565b3480156109ec57600080fd5b5061044f60225481565b348015610a0257600080fd5b5061044f610a113660046130fa565b611f09565b348015610a2257600080fd5b506103b1610a31366004613115565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610a6b57600080fd5b50610387610a7a3660046130fa565b611f14565b348015610a8b57600080fd5b50610387610a9a3660046132c6565b611f70565b348015610aab57600080fd5b5061044f60235481565b348015610ac157600080fd5b5061044f7f00000000000000000000000000000000000000000000000000000000000025e481565b60003411610af357565b60006064601d5434610b05919061379a565b610b0f9190613786565b90506000610b1d82346137e1565b905080601f6000828254610b31919061376e565b925050819055508160206000828254610b4a919061376e565b9091555050604051349033907fd58b9453e6f4c35a3372d312593e36abb8753db08302eb548b83eabb743c4bb190600090a35050565b60006001600160e01b031982166380ac58cd60e01b1480610bb157506001600160e01b03198216635b5e139f60e01b145b80610bcc57506001600160e01b0319821663780e9d6360e01b145b80610be757506001600160e01b0319821663152a902d60e11b145b80610bf65750610bf682612091565b92915050565b606060028054610c0b9061383b565b80601f0160208091040260200160405190810160405280929190818152602001828054610c379061383b565b8015610c845780601f10610c5957610100808354040283529160200191610c84565b820191906000526020600020905b815481529060010190602001808311610c6757829003601f168201915b5050505050905090565b6000610c9b826001541190565b610d025760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610d29826117f4565b9050806001600160a01b0316836001600160a01b03161415610d985760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610cf9565b336001600160a01b0382161480610db45750610db48133610a31565b610e265760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610cf9565b610e318383836120fc565b505050565b6000546001600160a01b03163314610e605760405162461bcd60e51b8152600401610cf99061365d565b600a96909655600b949094556013929092556014556015556017556016556000601955565b610e31838383612158565b60008030610e9f600a85613786565b915091509250929050565b6000546001600160a01b03163314610ed45760405162461bcd60e51b8152600401610cf99061365d565b60026009541415610ef75760405162461bcd60e51b8152600401610cf990613715565b6002600955610f05816124e0565b506001600955565b323314610f2c5760405162461bcd60e51b8152600401610cf9906135d0565b6010816014811115610f505760405162461bcd60e51b8152600401610cf9906136e5565b815415801590610f61575081544210155b610f7d5760405162461bcd60e51b8152600401610cf990613599565b600182015415801590610f935750816001015442105b610faf5760405162461bcd60e51b8152600401610cf990613633565b601854610fdc907f00000000000000000000000000000000000000000000000000000000000025e461376e565b81610fe660015490565b610ff0919061376e565b111561100e5760405162461bcd60e51b8152600401610cf990613607565b61101833846126ca565b601254610e319061102a90859061379a565b6126e8565b600061103a83611806565b82106110935760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610cf9565b600061109e60015490565b905060008060005b83811015611148576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156110f957805192505b876001600160a01b0316836001600160a01b03161415611135578684141561112757509350610bf692505050565b8361113181613876565b9450505b508061114081613876565b9150506110a6565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610cf9565b6000546001600160a01b031633146111d25760405162461bcd60e51b8152600401610cf99061365d565b600d92909255600e55600f55565b610e3183838360405180602001604052806000815250611b9e565b600a546000904281111561121157505060135490565b60175460009061122183426137e1565b61122b9190613786565b60155490915060009061123e908361379a565b601354909150811061125557505060145492915050565b6013546000906112669083906137e1565b60145490915081101561127f5750506014549392505050565b949350505050565b3233146112a65760405162461bcd60e51b8152600401610cf9906135d0565b600a8160148111156112ca5760405162461bcd60e51b8152600401610cf9906136e5565b8154158015906112db575081544210155b6112f75760405162461bcd60e51b8152600401610cf990613599565b60018201541580159061130d5750816001015442105b6113295760405162461bcd60e51b8152600401610cf990613633565b601854611356907f00000000000000000000000000000000000000000000000000000000000025e461376e565b8161136060015490565b61136a919061376e565b11156113885760405162461bcd60e51b8152600401610cf990613607565b60058311156113a95760405162461bcd60e51b8152600401610cf9906136e5565b6016546019546113ba90859061376e565b11156113d85760405162461bcd60e51b8152600401610cf990613607565b60006113e26111fb565b905083601960008282546113f6919061376e565b90915550611406905033856126ca565b61141361102a858361379a565b50505050565b600061142460015490565b821061147e5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610cf9565b5090565b601e546001600160a01b031632146114ac5760405162461bcd60e51b8152600401610cf99061365d565b600260095414156114cf5760405162461bcd60e51b8152600401610cf990613715565b60026009556023546020546000916114e6916137e1565b9050600081116115305760405162461bcd60e51b8152602060048201526015602482015274084c2d8c2dcc6ca40d2e640dcdee840cadcdeeaced605b1b6044820152606401610cf9565b604051600090339083908381818185875af1925050503d8060008114611572576040519150601f19603f3d011682016040523d82523d6000602084013e611577565b606091505b505090508015611593578160235461158f919061376e565b6023555b806115d25760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610cf9565b6040518281527f1cd97c19dc1d84701ffe5955bd09ceed679616e510fffc431cb8bada45081013906020015b60405180910390a150506001600955565b6000546001600160a01b031633146116395760405162461bcd60e51b8152600401610cf99061365d565b610e316024838361304e565b60007f000000000000000000000000000000000000000000000000000000000000271061167160015490565b101561167d5750600090565b6000805b6021548110156116f7576021818154811061169e5761169e6138d1565b9060005260206000200154601f54106116e05760216116be82600161376e565b815481106116ce576116ce6138d1565b906000526020600020015491506116e5565b6116f7565b6116f081600261376e565b9050611681565b506022546064601f548361170b919061379a565b6117159190613786565b61171f91906137e1565b91505090565b601e546001600160a01b0316321461174f5760405162461bcd60e51b8152600401610cf99061365d565b600260095414156117725760405162461bcd60e51b8152600401610cf990613715565b60026009556001600160a01b03811661179d5760405162461bcd60e51b8152600401610cf990613553565b601e80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f01c494f8bdbd01d8034d623adad50c653985837ee9456fcfea603ac04cc53ce590600090a350506001600955565b60006117ff826127ff565b5192915050565b60006001600160a01b0382166118725760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610cf9565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146118c15760405162461bcd60e51b8152600401610cf99061365d565b6118cb60006129a9565b565b6000546001600160a01b031633146118f75760405162461bcd60e51b8152600401610cf99061365d565b601a55565b6000546001600160a01b031633146119265760405162461bcd60e51b8152600401610cf99061365d565b600260095414156119495760405162461bcd60e51b8152600401610cf990613715565b60026009556000611958611645565b9050600081116119a25760405162461bcd60e51b8152602060048201526015602482015274084c2d8c2dcc6ca40d2e640dcdee840cadcdeeaced605b1b6044820152606401610cf9565b604051600090339083908381818185875af1925050503d80600081146119e4576040519150601f19603f3d011682016040523d82523d6000602084013e6119e9565b606091505b505090508015611a055781602254611a01919061376e565b6022555b80611a455760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610cf9565b6040518281527f5967486005b8260fe9718580fbbd4c9fe9c61feee7b3628ec31af3d862cc2ef7906020016115fe565b6040805180820190915260008082526020820152610bf6826127ff565b606060038054610c0b9061383b565b6001600160a01b038216331415611afa5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610cf9565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314611b905760405162461bcd60e51b8152600401610cf99061365d565b601092909255601155601255565b611ba9848484612158565b611bb5848484846129f9565b6114135760405162461bcd60e51b8152600401610cf990613692565b323314611bf05760405162461bcd60e51b8152600401610cf9906135d0565b600d846014811115611c145760405162461bcd60e51b8152600401610cf9906136e5565b815415801590611c25575081544210155b611c415760405162461bcd60e51b8152600401610cf990613599565b600182015415801590611c575750816001015442105b611c735760405162461bcd60e51b8152600401610cf990613633565b601854611ca0907f00000000000000000000000000000000000000000000000000000000000025e461376e565b81611caa60015490565b611cb4919061376e565b1115611cd25760405162461bcd60e51b8152600401610cf990613607565b336000908152601b60205260409020548590611cef90889061376e565b1115611d355760405162461bcd60e51b81526020600482015260156024820152741b9bdd08195b1a59da589b1948199bdc881b5a5b9d605a1b6044820152606401610cf9565b6040516bffffffffffffffffffffffff193360601b16602082015260348101869052600090605401604051602081830303815290604052805190602001209050611db685858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601a549150849050612b06565b611df25760405162461bcd60e51b815260206004820152600d60248201526c24a72b20a624a210282927a7a360991b6044820152606401610cf9565b336000908152601b602052604081208054899290611e1190849061376e565b90915550611e21905033886126ca565b600f54611e339061102a90899061379a565b50505050505050565b6060611e49826001541190565b611ead5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610cf9565b6000611eb7612b1c565b90506000815111611ed75760405180602001604052806000815250611f02565b80611ee184612b2b565b604051602001611ef29291906134d4565b6040516020818303038152906040525b9392505050565b6000610bf682612c29565b6000546001600160a01b03163314611f3e5760405162461bcd60e51b8152600401610cf99061365d565b6001600160a01b038116611f645760405162461bcd60e51b8152600401610cf990613553565b611f6d816129a9565b50565b6000546001600160a01b03163314611f9a5760405162461bcd60e51b8152600401610cf99061365d565b7f000000000000000000000000000000000000000000000000000000000000012c81601854611fc9919061376e565b1115611fe75760405162461bcd60e51b8152600401610cf9906136e5565b8060186000828254611ff9919061376e565b90915550505b7f0000000000000000000000000000000000000000000000000000000000000014811061208157612050337f00000000000000000000000000000000000000000000000000000000000000146126ca565b61207a7f0000000000000000000000000000000000000000000000000000000000000014826137e1565b9050611fff565b8015611f6d57611f6d33826126ca565b60006001600160e01b031982166380ac58cd60e01b14806120c257506001600160e01b03198216635b5e139f60e01b145b806120dd57506001600160e01b0319821663780e9d6360e01b145b80610bf657506301ffc9a760e01b6001600160e01b0319831614610bf6565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000612163826127ff565b80519091506000906001600160a01b0316336001600160a01b0316148061219a57503361218f84610c8e565b6001600160a01b0316145b806121ac575081516121ac9033610a31565b9050806122165760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610cf9565b846001600160a01b031682600001516001600160a01b03161461228a5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610cf9565b6001600160a01b0384166122ee5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610cf9565b6122fe60008484600001516120fc565b6001600160a01b03851660009081526005602052604081208054600192906123309084906001600160801b03166137b9565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261237c9185911661374c565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561240484600161376e565b6000818152600460205260409020549091506001600160a01b03166124965761242e816001541190565b156124965760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600854816125305760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610cf9565b6000600161253e848461376e565b61254891906137e1565b905061257560017f00000000000000000000000000000000000000000000000000000000000027106137e1565b8111156125aa576125a760017f00000000000000000000000000000000000000000000000000000000000027106137e1565b90505b6125b5816001541190565b6126105760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610cf9565b815b8181116126b6576000818152600460205260409020546001600160a01b03166126a4576000612640826127ff565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b806126ae81613876565b915050612612565b506126c281600161376e565b600855505050565b6126e4828260405180602001604052806000815250612cc7565b5050565b803410156127315760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610cf9565b8034111561277157336108fc61274783346137e1565b6040518115909202916000818181858888f1935050505015801561276f573d6000803e3d6000fd5b505b60006064601c5483612783919061379a565b61278d9190613786565b9050600061279b82846137e1565b905080601f60008282546127af919061376e565b9250508190555081602060008282546127c8919061376e565b9091555050604051839033907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688590600090a3505050565b604080518082019091526000808252602082015261281e826001541190565b61287d5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610cf9565b60007f000000000000000000000000000000000000000000000000000000000000001483106128de576128d07f0000000000000000000000000000000000000000000000000000000000000014846137e1565b6128db90600161376e565b90505b825b818110612948576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561293557949350505050565b508061294081613824565b9150506128e0565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610cf9565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15612afb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612a3d903390899088908890600401613503565b602060405180830381600087803b158015612a5757600080fd5b505af1925050508015612a87575060408051601f3d908101601f19168201909252612a84918101906132fc565b60015b612ae1573d808015612ab5576040519150601f19603f3d011682016040523d82523d6000602084013e612aba565b606091505b508051612ad95760405162461bcd60e51b8152600401610cf990613692565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061127f565b506001949350505050565b600082612b138584612fa2565b14949350505050565b606060248054610c0b9061383b565b606081612b4f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612b795780612b6381613876565b9150612b729050600a83613786565b9150612b53565b60008167ffffffffffffffff811115612b9457612b946138e7565b6040519080825280601f01601f191660200182016040528015612bbe576020820181803683370190505b5090505b841561127f57612bd36001836137e1565b9150612be0600a86613891565b612beb90603061376e565b60f81b818381518110612c0057612c006138d1565b60200101906001600160f81b031916908160001a905350612c22600a86613786565b9450612bc2565b60006001600160a01b038216612c9b5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610cf9565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416612d2a5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610cf9565b612d35816001541190565b15612d825760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610cf9565b7f0000000000000000000000000000000000000000000000000000000000000014831115612dfd5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610cf9565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612e5990879061374c565b6001600160801b03168152602001858360200151612e77919061374c565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015612f975760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612f5b60008884886129f9565b612f775760405162461bcd60e51b8152600401610cf990613692565b81612f8181613876565b9250508080612f8f90613876565b915050612f0e565b5060018190556124d8565b600081815b8451811015613046576000858281518110612fc457612fc46138d1565b60200260200101519050808311613006576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250613033565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061303e81613876565b915050612fa7565b509392505050565b82805461305a9061383b565b90600052602060002090601f01602090048101928261307c57600085556130c2565b82601f106130955782800160ff198235161785556130c2565b828001600101855582156130c2579182015b828111156130c25782358255916020019190600101906130a7565b5061147e9291505b8082111561147e57600081556001016130ca565b80356001600160a01b03811681146130f557600080fd5b919050565b60006020828403121561310c57600080fd5b611f02826130de565b6000806040838503121561312857600080fd5b613131836130de565b915061313f602084016130de565b90509250929050565b60008060006060848603121561315d57600080fd5b613166846130de565b9250613174602085016130de565b9150604084013590509250925092565b6000806000806080858703121561319a57600080fd5b6131a3856130de565b93506131b1602086016130de565b925060408501359150606085013567ffffffffffffffff808211156131d557600080fd5b818701915087601f8301126131e957600080fd5b8135818111156131fb576131fb6138e7565b604051601f8201601f19908116603f01168101908382118183101715613223576132236138e7565b816040528281528a602084870101111561323c57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561327357600080fd5b61327c836130de565b91506020830135801515811461329157600080fd5b809150509250929050565b600080604083850312156132af57600080fd5b6132b8836130de565b946020939093013593505050565b6000602082840312156132d857600080fd5b5035919050565b6000602082840312156132f157600080fd5b8135611f02816138fd565b60006020828403121561330e57600080fd5b8151611f02816138fd565b6000806020838503121561332c57600080fd5b823567ffffffffffffffff8082111561334457600080fd5b818501915085601f83011261335857600080fd5b81358181111561336757600080fd5b86602082850101111561337957600080fd5b60209290920196919550909350505050565b6000806040838503121561339e57600080fd5b50508035926020909101359150565b600080600080606085870312156133c357600080fd5b8435935060208501359250604085013567ffffffffffffffff808211156133e957600080fd5b818701915087601f8301126133fd57600080fd5b81358181111561340c57600080fd5b8860208260051b850101111561342157600080fd5b95989497505060200194505050565b60008060006060848603121561344557600080fd5b505081359360208301359350604090920135919050565b600080600080600080600060e0888a03121561347757600080fd5b505085359760208701359750604087013596606081013596506080810135955060a0810135945060c0013592509050565b600081518084526134c08160208601602086016137f8565b601f01601f19169290920160200192915050565b600083516134e68184602088016137f8565b8351908301906134fa8183602088016137f8565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613536908301846134a8565b9695505050505050565b602081526000611f0260208301846134a8565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526018908201527f73616c6520686173206e6f742073746172746564207965740000000000000000604082015260600190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526012908201527172656163686564206d617820737570706c7960701b604082015260600190565b60208082526010908201526f1cd85b19481a185cc8195b99081e595d60821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60208082526016908201527563616e206e6f74206d696e742074686973206d616e7960501b604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60006001600160801b038083168185168083038211156134fa576134fa6138a5565b60008219821115613781576137816138a5565b500190565b600082613795576137956138bb565b500490565b60008160001904831182151516156137b4576137b46138a5565b500290565b60006001600160801b03838116908316818110156137d9576137d96138a5565b039392505050565b6000828210156137f3576137f36138a5565b500390565b60005b838110156138135781810151838201526020016137fb565b838111156114135750506000910152565b600081613833576138336138a5565b506000190190565b600181811c9082168061384f57607f821691505b6020821081141561387057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561388a5761388a6138a5565b5060010190565b6000826138a0576138a06138bb565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611f6d57600080fdfea2646970667358221220241c059eaa4dd1699c4f8d89f443a1fc7a7d3b0b90099d19f84cb7a70307677364736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000012c0000000000000000000000001a8d33cb075075e6ef18f8837cd29b38cae0597000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a474843696d6742445850634244633868333863574b7535693356793231625035536d585631684d424431482f00000000000000000000

-----Decoded View---------------
Arg [0] : maxForFounder_ (uint256): 300
Arg [1] : communityAddress_ (address): 0x1a8d33Cb075075e6ef18F8837cD29b38CAe05970
Arg [2] : _baseTokenURI_ (string): ipfs://QmZGHCimgBDXPcBDc8h38cWKu5i3Vy21bP5SmXV1hMBD1H/

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000000012c
Arg [1] : 0000000000000000000000001a8d33cb075075e6ef18f8837cd29b38cae05970
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [4] : 697066733a2f2f516d5a474843696d6742445850634244633868333863574b75
Arg [5] : 35693356793231625035536d585631684d424431482f00000000000000000000


Deployed Bytecode Sourcemap

179:9883:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7883:10;:8;:10::i;:::-;179:9883;;7830:10;:8;:10::i;317:409::-;;;;;;;;;;-1:-1:-1;317:409:0;;;;;:::i;:::-;;:::i;:::-;;;8776:14:6;;8769:22;8751:41;;8739:2;8724:18;317:409:0;;;;;;;;5295:92:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;6760:200::-;;;;;;;;;;-1:-1:-1;6760:200:1;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7795:32:6;;;7777:51;;7765:2;7750:18;6760:200:1;7631:203:6;6338:369:1;;;;;;;;;;-1:-1:-1;6338:369:1;;;;;:::i;:::-;;:::i;9967:93:0:-;;;;;;;;;;-1:-1:-1;10034:21:0;9967:93;;;8949:25:6;;;8937:2;8922:18;9967:93:0;8803:177:6;963:35:0;;;;;;;;;;-1:-1:-1;963:35:0;;;;;;;;;;;;;;;;23393:25:6;;;23449:2;23434:18;;23427:34;;;;23477:18;;;23470:34;23381:2;23366:18;963:35:0;23191:319:6;6022:546:0;;;;;;;;;;-1:-1:-1;6022:546:0;;;;;:::i;:::-;;:::i;2237:92:1:-;;;;;;;;;;-1:-1:-1;2312:12:1;;2237:92;;1470:28:0;;;;;;;;;;;;;;;;7578:136:1;;;;;;;;;;-1:-1:-1;7578:136:1;;;;;:::i;:::-;;:::i;8202:226:0:-;;;;;;;;;;-1:-1:-1;8202:226:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;8524:32:6;;;8506:51;;8588:2;8573:18;;8566:34;;;;8479:18;8202:226:0;8332:274:6;1246:28:0;;;;;;;;;;;;;;;;7432:116;;;;;;;;;;-1:-1:-1;7432:116:0;;;;;:::i;:::-;;:::i;4825:197::-;;;;;;:::i;:::-;;:::i;1280:25::-;;;;;;;;;;;;;;;;2851:721:1;;;;;;;;;;-1:-1:-1;2851:721:1;;;;;:::i;:::-;;:::i;1435:30:0:-;;;;;;;;;;-1:-1:-1;1435:30:0;;;;-1:-1:-1;;;;;1435:30:0;;;6572:250;;;;;;;;;;-1:-1:-1;6572:250:0;;;;;:::i;:::-;;:::i;7772:151:1:-;;;;;;;;;;-1:-1:-1;7772:151:1;;;;;:::i;:::-;;:::i;5433:584:0:-;;;;;;;;;;;;;:::i;3860:414::-;;;;;;:::i;:::-;;:::i;2393:174:1:-;;;;;;;;;;-1:-1:-1;2393:174:1;;;;;:::i;:::-;;:::i;9214:414:0:-;;;;;;;;;;;;;:::i;7330:98::-;;;;;;;;;;-1:-1:-1;7330:98:0;;;;;:::i;:::-;;:::i;8431:397::-;;;;;;;;;;;;;:::i;9633:326::-;;;;;;;;;;-1:-1:-1;9633:326:0;;;;;:::i;:::-;;:::i;1171:38::-;;;;;;;;;;;;;;;5125:116:1;;;;;;;;;;-1:-1:-1;5125:116:1;;;;;:::i;:::-;;:::i;1002:37:0:-;;;;;;;;;;-1:-1:-1;1002:37:0;;;;;;;;;;;;1502:30;;;;;;;;;;;;;;;;4040:208:1;;;;;;;;;;-1:-1:-1;4040:208:1;;;;;:::i;:::-;;:::i;23790:101:5:-;;;;;;;;;;;;;:::i;1214:28:0:-;;;;;;;;;;;;;;;;7068:92;;;;;;;;;;-1:-1:-1;7068:92:0;;;;;:::i;:::-;;:::i;1636:50::-;;;;;;;;;;;;1685:1;1636:50;;8834:376;;;;;;;;;;;;;:::i;1589:43::-;;;;;;;;;;;;1630:2;1589:43;;23158:85:5;;;;;;;;;;-1:-1:-1;23204:7:5;23230:6;-1:-1:-1;;;;;23230:6:5;23158:85;;7662:129:0;;;;;;;;;;-1:-1:-1;7662:129:0;;;;;:::i;:::-;;:::i;:::-;;;;22874:13:6;;-1:-1:-1;;;;;22870:39:6;22852:58;;22970:4;22958:17;;;22952:24;22978:18;22948:49;22926:20;;;22919:79;;;;22825:18;7662:129:0;22642:362:6;5443:96:1;;;;;;;;;;;;;:::i;1309:44:0:-;;;;;;;;;;-1:-1:-1;1309:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;7019:269:1;;;;;;;;;;-1:-1:-1;7019:269:1;;;;;:::i;:::-;;:::i;1043:34:0:-;;;;;;;;;;-1:-1:-1;1043:34:0;;;;;;;;;;;;6826:238;;;;;;;;;;-1:-1:-1;6826:238:0;;;;;:::i;:::-;;:::i;7981:300:1:-;;;;;;;;;;-1:-1:-1;7981:300:1;;;;;:::i;:::-;;:::i;1537:47:0:-;;;;;;;;;;;;1579:5;1537:47;;1082:34;;;;;;;;;;-1:-1:-1;1082:34:0;;;;;;;;;;;;;;;;;;;;;;23774:25:6;;;23830:2;23815:18;;23808:34;;;;23858:18;;;23851:34;;;;23916:2;23901:18;;23894:34;23959:3;23944:19;;23937:35;23761:3;23746:19;1082:34:0;23515:463:6;4279:541:0;;;;;;:::i;:::-;;:::i;5597:377:1:-;;;;;;;;;;-1:-1:-1;5597:377:1;;;;;:::i;:::-;;:::i;12251:43::-;;;;;;;;;;;;;;;;1907:36:0;;;;;;;;;;;;;;;;7552:105;;;;;;;;;;-1:-1:-1;7552:105:0;;;;;:::i;:::-;;:::i;7346:178:1:-;;;;;;;;;;-1:-1:-1;7346:178:1;;;;;:::i;:::-;-1:-1:-1;;;;;7484:25:1;;;7463:4;7484:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;7346:178;24040:198:5;;;;;;;;;;-1:-1:-1;24040:198:5;;;;;:::i;:::-;;:::i;3490:366:0:-;;;;;;;;;;-1:-1:-1;3490:366:0;;;;;:::i;:::-;;:::i;1947:38::-;;;;;;;;;;;;;;;;1121:45;;;;;;;;;;;;;;;7902:296;7951:1;7938:9;:14;7935:39;;7902:296::o;7935:39::-;7979:17;8035:3;8011:21;;7999:9;:33;;;;:::i;:::-;:39;;;;:::i;:::-;7979:59;-1:-1:-1;8044:15:0;8062:21;7979:59;8062:9;:21;:::i;:::-;8044:39;;8106:7;8089:13;;:24;;;;;;;:::i;:::-;;;;;;;;8138:9;8119:15;;:28;;;;;;;:::i;:::-;;;;-1:-1:-1;;8158:35:0;;8183:9;;8172:10;;8158:35;;;;;7929:269;;7902:296::o;317:409::-;439:4;-1:-1:-1;;;;;;466:40:0;;-1:-1:-1;;;466:40:0;;:98;;-1:-1:-1;;;;;;;516:48:0;;-1:-1:-1;;;516:48:0;466:98;:158;;;-1:-1:-1;;;;;;;574:50:0;;-1:-1:-1;;;574:50:0;466:158;:209;;;-1:-1:-1;;;;;;;634:41:0;;-1:-1:-1;;;634:41:0;466:209;:255;;;;685:36;709:11;685:23;:36::i;:::-;453:268;317:409;-1:-1:-1;;317:409:0:o;5295:92:1:-;5349:13;5377:5;5370:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5295:92;:::o;6760:200::-;6828:7;6851:16;6859:7;8597:12;;-1:-1:-1;8587:22:1;8511:103;6851:16;6843:74;;;;-1:-1:-1;;;6843:74:1;;21677:2:6;6843:74:1;;;21659:21:6;21716:2;21696:18;;;21689:30;21755:34;21735:18;;;21728:62;-1:-1:-1;;;21806:18:6;;;21799:43;21859:19;;6843:74:1;;;;;;;;;-1:-1:-1;6931:24:1;;;;:15;:24;;;;;;-1:-1:-1;;;;;6931:24:1;;6760:200::o;6338:369::-;6406:13;6422:24;6438:7;6422:15;:24::i;:::-;6406:40;;6466:5;-1:-1:-1;;;;;6460:11:1;:2;-1:-1:-1;;;;;6460:11:1;;;6452:58;;;;-1:-1:-1;;;6452:58:1;;17099:2:6;6452:58:1;;;17081:21:6;17138:2;17118:18;;;17111:30;17177:34;17157:18;;;17150:62;-1:-1:-1;;;17228:18:6;;;17221:32;17270:19;;6452:58:1;16897:398:6;6452:58:1;4332:10:5;-1:-1:-1;;;;;6532:21:1;;;;:62;;-1:-1:-1;6557:37:1;6574:5;4332:10:5;7346:178:1;:::i;6557:37::-;6517:150;;;;-1:-1:-1;;;6517:150:1;;12916:2:6;6517:150:1;;;12898:21:6;12955:2;12935:18;;;12928:30;12994:34;12974:18;;;12967:62;13065:27;13045:18;;;13038:55;13110:19;;6517:150:1;12714:421:6;6517:150:1;6674:28;6683:2;6687:7;6696:5;6674:8;:28::i;:::-;6400:307;6338:369;;:::o;6022:546:0:-;23204:7:5;23230:6;-1:-1:-1;;;;;23230:6:5;4332:10;23370:23;23362:68;;;;-1:-1:-1;;;23362:68:5;;;;;;;:::i;:::-;6229:17:0::1;:44:::0;;;;6281:25;:40;;;;6330:13:::1;:40:::0;;;;6378:22;:36;6422:23;:38;6468:22;:33;6509:20;:29;6229:27:::1;6547:12;:16:::0;6022:546::o;7578:136:1:-;7681:28;7691:4;7697:2;7701:7;7681:9;:28::i;8202:226:0:-;8309:16;;8403:4;8409:15;8422:2;8409:10;:15;:::i;:::-;8388:37;;;;8202:226;;;;;:::o;7432:116::-;23204:7:5;23230:6;-1:-1:-1;;;;;23230:6:5;4332:10;23370:23;23362:68;;;;-1:-1:-1;;;23362:68:5;;;;;;;:::i;:::-;21288:1:::1;21869:7;;:19;;21861:63;;;;-1:-1:-1::0;;;21861:63:5::1;;;;;;;:::i;:::-;21288:1;21999:7;:18:::0;7515:28:0::2;7534:8:::0;7515:18:::2;:28::i;:::-;-1:-1:-1::0;21245:1:5::1;22172:7;:22:::0;7432:116:0:o;4825:197::-;2779:9;2792:10;2779:23;2771:66;;;;-1:-1:-1;;;2771:66:0;;;;;;;:::i;:::-;4903:16:::1;4920:8;1630:2;3062:8;:26;;3047:79;;;;-1:-1:-1::0;;;3047:79:0::1;;;;;;;:::i;:::-;3147:16:::0;;:21;;::::1;::::0;:60:::1;;-1:-1:-1::0;3191:16:0;;3172:15:::1;:35;;3147:60;3132:115;;;;-1:-1:-1::0;;;3132:115:0::1;;;;;;;:::i;:::-;3268:14;::::0;::::1;::::0;:19;;::::1;::::0;:55:::1;;;3309:6;:14;;;3291:15;:32;3268:55;3253:102;;;;-1:-1:-1::0;;;3253:102:0::1;;;;;;;:::i;:::-;3427:12;::::0;3404:35:::1;::::0;:20:::1;:35;:::i;:::-;3392:8;3376:13;2312:12:1::0;;;2237:92;3376:13:0::1;:24;;;;:::i;:::-;:63;;3361:113;;;;-1:-1:-1::0;;;3361:113:0::1;;;;;;;:::i;:::-;4935:31:::2;4945:10;4957:8;4935:9;:31::i;:::-;4983:22:::0;;4972:45:::2;::::0;4983:33:::2;::::0;5008:8;;4983:33:::2;:::i;:::-;4972:10;:45::i;2851:721:1:-:0;2956:7;2989:16;2999:5;2989:9;:16::i;:::-;2981:5;:24;2973:71;;;;-1:-1:-1;;;2973:71:1;;9411:2:6;2973:71:1;;;9393:21:6;9450:2;9430:18;;;9423:30;9489:34;9469:18;;;9462:62;-1:-1:-1;;;9540:18:6;;;9533:32;9582:19;;2973:71:1;9209:398:6;2973:71:1;3050:22;3075:13;2312:12;;;2237:92;3075:13;3050:38;;3094:19;3123:25;3172:9;3167:339;3191:14;3187:1;:18;3167:339;;;3220:31;3254:14;;;:11;:14;;;;;;;;;3220:48;;;;;;;;;-1:-1:-1;;;;;3220:48:1;;;;;-1:-1:-1;;;3220:48:1;;;;;;;;;;;;3280:28;3276:87;;3340:14;;;-1:-1:-1;3276:87:1;3395:5;-1:-1:-1;;;;;3374:26:1;:17;-1:-1:-1;;;;;3374:26:1;;3370:130;;;3431:5;3416:11;:20;3412:57;;;-1:-1:-1;3457:1:1;-1:-1:-1;3450:8:1;;-1:-1:-1;;;3450:8:1;3412:57;3478:13;;;;:::i;:::-;;;;3370:130;-1:-1:-1;3207:3:1;;;;:::i;:::-;;;;3167:339;;;-1:-1:-1;3511:56:1;;-1:-1:-1;;;3511:56:1;;19729:2:6;3511:56:1;;;19711:21:6;19768:2;19748:18;;;19741:30;19807:34;19787:18;;;19780:62;-1:-1:-1;;;19858:18:6;;;19851:44;19912:19;;3511:56:1;19527:410:6;6572:250:0;23204:7:5;23230:6;-1:-1:-1;;;;;23230:6:5;4332:10;23370:23;23362:68;;;;-1:-1:-1;;;23362:68:5;;;;;;;:::i;:::-;6681:19:0::1;:46:::0;;;;6733:27;:42;6781:25;:36;6572:250::o;7772:151:1:-;7879:39;7896:4;7902:2;7906:7;7879:39;;;;;;;;;;;;:16;:39::i;5433:584:0:-;5523:17;:27;5481:7;;5560:15;:32;-1:-1:-1;5556:84:0;;;-1:-1:-1;;5609:13:0;:24;;5433:584::o;5556:84::-;5698:22;;5645:13;;5662:32;5680:14;5662:15;:32;:::i;:::-;5661:59;;;;:::i;:::-;5749:23;;5645:75;;-1:-1:-1;5726:12:0;;5741:31;;5645:75;5741:31;:::i;:::-;5789:13;:24;5726:46;;-1:-1:-1;5781:32:0;;5778:81;;-1:-1:-1;;5830:22:0;;;5433:584;-1:-1:-1;;5433:584:0:o;5778:81::-;5880:13;:24;5864:13;;5880:31;;5907:4;;5880:31;:::i;:::-;5928:22;;5864:47;;-1:-1:-1;5920:30:0;;5917:78;;;-1:-1:-1;;5966:22:0;;;5433:584;-1:-1:-1;;;5433:584:0:o;5917:78::-;6007:5;5433:584;-1:-1:-1;;;;5433:584:0:o;3860:414::-;2779:9;2792:10;2779:23;2771:66;;;;-1:-1:-1;;;2771:66:0;;;;;;;:::i;:::-;3939:17:::1;3957:8;1630:2;3062:8;:26;;3047:79;;;;-1:-1:-1::0;;;3047:79:0::1;;;;;;;:::i;:::-;3147:16:::0;;:21;;::::1;::::0;:60:::1;;-1:-1:-1::0;3191:16:0;;3172:15:::1;:35;;3147:60;3132:115;;;;-1:-1:-1::0;;;3132:115:0::1;;;;;;;:::i;:::-;3268:14;::::0;::::1;::::0;:19;;::::1;::::0;:55:::1;;;3309:6;:14;;;3291:15;:32;3268:55;3253:102;;;;-1:-1:-1::0;;;3253:102:0::1;;;;;;;:::i;:::-;3427:12;::::0;3404:35:::1;::::0;:20:::1;:35;:::i;:::-;3392:8;3376:13;2312:12:1::0;;;2237:92;3376:13:0::1;:24;;;;:::i;:::-;:63;;3361:113;;;;-1:-1:-1::0;;;3361:113:0::1;;;;;;;:::i;:::-;1685:1:::2;3980:8;:34;;3972:68;;;;-1:-1:-1::0;;;3972:68:0::2;;;;;;;:::i;:::-;4081:20:::0;;4054:12:::2;::::0;:23:::2;::::0;4069:8;;4054:23:::2;:::i;:::-;:47;;4046:78;;;;-1:-1:-1::0;;;4046:78:0::2;;;;;;;:::i;:::-;4130:13;4146:17;:15;:17::i;:::-;4130:33;;4190:8;4174:12;;:24;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;4204:31:0::2;::::0;-1:-1:-1;4214:10:0::2;4226:8:::0;4204:9:::2;:31::i;:::-;4241:28;4252:16;4260:8:::0;4252:5;:16:::2;:::i;4241:28::-;3966:308;2843:1:::1;;3860:414:::0;:::o;2393:174:1:-;2460:7;2491:13;2312:12;;;2237:92;2491:13;2483:5;:21;2475:69;;;;-1:-1:-1;;;2475:69:1;;10976:2:6;2475:69:1;;;10958:21:6;11015:2;10995:18;;;10988:30;11054:34;11034:18;;;11027:62;-1:-1:-1;;;11105:18:6;;;11098:33;11148:19;;2475:69:1;10774:399:6;2475:69:1;-1:-1:-1;2557:5:1;2393:174::o;9214:414:0:-;2911:14;;-1:-1:-1;;;;;2911:14:0;2898:9;:27;2890:72;;;;-1:-1:-1;;;2890:72:0;;;;;;;:::i;:::-;21288:1:5::1;21869:7;;:19;;21861:63;;;;-1:-1:-1::0;;;21861:63:5::1;;;;;;;:::i;:::-;21288:1;21999:7;:18:::0;9325:23:0::2;::::0;9307:15:::2;::::0;9290:14:::2;::::0;9307:41:::2;::::0;::::2;:::i;:::-;9290:58;;9371:1;9362:6;:10;9354:44;;;::::0;-1:-1:-1;;;9354:44:0;;21327:2:6;9354:44:0::2;::::0;::::2;21309:21:6::0;21366:2;21346:18;;;21339:30;-1:-1:-1;;;21385:18:6;;;21378:51;21446:18;;9354:44:0::2;21125:345:6::0;9354:44:0::2;9423:34;::::0;9405:12:::2;::::0;9423:10:::2;::::0;9446:6;;9405:12;9423:34;9405:12;9423:34;9446:6;9423:10;:34:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9404:53;;;9466:7;9463:84;;;9534:6;9508:23;;:32;;;;:::i;:::-;9482:23;:58:::0;9463:84:::2;9560:7;9552:35;;;::::0;-1:-1:-1;;;9552:35:0;;10221:2:6;9552:35:0::2;::::0;::::2;10203:21:6::0;10260:2;10240:18;;;10233:30;-1:-1:-1;;;10279:18:6;;;10272:45;10334:18;;9552:35:0::2;10019:339:6::0;9552:35:0::2;9598:25;::::0;8949::6;;;9598::0::2;::::0;8937:2:6;8922:18;9598:25:0::2;;;;;;;;-1:-1:-1::0;;21245:1:5::1;22172:7;:22:::0;9214:414:0:o;7330:98::-;23204:7:5;23230:6;-1:-1:-1;;;;;23230:6:5;4332:10;23370:23;23362:68;;;;-1:-1:-1;;;23362:68:5;;;;;;;:::i;:::-;7400:23:0::1;:13;7416:7:::0;;7400:23:::1;:::i;8431:397::-:0;8481:7;8515:14;8499:13;2312:12:1;;;2237:92;8499:13:0;:30;8496:57;;;-1:-1:-1;8545:1:0;;8431:397::o;8496:57::-;8558:15;8588:9;8583:179;8607:13;:20;8603:24;;8583:179;;;8662:13;8676:1;8662:16;;;;;;;;:::i;:::-;;;;;;;;;8647:13;;:31;8644:112;;8701:13;8715:3;:1;8717;8715:3;:::i;:::-;8701:18;;;;;;;;:::i;:::-;;;;;;;;;8691:28;;8644:112;;;8742:5;;8644:112;8631:3;:1;8633;8631:3;:::i;:::-;8629:5;;8583:179;;;;8802:21;;8796:3;8782:13;;8774:7;:21;;;;:::i;:::-;:25;;;;:::i;:::-;:49;;;;:::i;:::-;8767:56;;;8431:397;:::o;9633:326::-;2911:14;;-1:-1:-1;;;;;2911:14:0;2898:9;:27;2890:72;;;;-1:-1:-1;;;2890:72:0;;;;;;;:::i;:::-;21288:1:5::1;21869:7;;:19;;21861:63;;;;-1:-1:-1::0;;;21861:63:5::1;;;;;;;:::i;:::-;21288:1;21999:7;:18:::0;-1:-1:-1;;;;;9746:22:0;::::2;9738:73;;;;-1:-1:-1::0;;;9738:73:0::2;;;;;;;:::i;:::-;9840:14;::::0;;-1:-1:-1;;;;;9864:25:0;;::::2;-1:-1:-1::0;;;;;;9864:25:0;::::2;::::0;::::2;::::0;;;9904:48:::2;::::0;9840:14;::::2;::::0;9864:25;9840:14;;9904:48:::2;::::0;9821:16:::2;::::0;9904:48:::2;-1:-1:-1::0;;21245:1:5::1;22172:7;:22:::0;9633:326:0:o;5125:116:1:-;5189:7;5211:20;5223:7;5211:11;:20::i;:::-;:25;;5125:116;-1:-1:-1;;5125:116:1:o;4040:208::-;4104:7;-1:-1:-1;;;;;4127:19:1;;4119:75;;;;-1:-1:-1;;;4119:75:1;;13695:2:6;4119:75:1;;;13677:21:6;13734:2;13714:18;;;13707:30;13773:34;13753:18;;;13746:62;-1:-1:-1;;;13824:18:6;;;13817:41;13875:19;;4119:75:1;13493:407:6;4119:75:1;-1:-1:-1;;;;;;4215:19:1;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;4215:27:1;;4040:208::o;23790:101:5:-;23204:7;23230:6;-1:-1:-1;;;;;23230:6:5;4332:10;23370:23;23362:68;;;;-1:-1:-1;;;23362:68:5;;;;;;;:::i;:::-;23854:30:::1;23881:1;23854:18;:30::i;:::-;23790:101::o:0;7068:92:0:-;23204:7:5;23230:6;-1:-1:-1;;;;;23230:6:5;4332:10;23370:23;23362:68;;;;-1:-1:-1;;;23362:68:5;;;;;;;:::i;:::-;7135:10:0::1;:20:::0;7068:92::o;8834:376::-;23204:7:5;23230:6;-1:-1:-1;;;;;23230:6:5;4332:10;23370:23;23362:68;;;;-1:-1:-1;;;23362:68:5;;;;;;;:::i;:::-;21288:1:::1;21869:7;;:19;;21861:63;;;;-1:-1:-1::0;;;21861:63:5::1;;;;;;;:::i;:::-;21288:1;21999:7;:18:::0;8899:14:0::2;8916:19;:17;:19::i;:::-;8899:36;;8958:1;8949:6;:10;8941:44;;;::::0;-1:-1:-1;;;8941:44:0;;21327:2:6;8941:44:0::2;::::0;::::2;21309:21:6::0;21366:2;21346:18;;;21339:30;-1:-1:-1;;;21385:18:6;;;21378:51;21446:18;;8941:44:0::2;21125:345:6::0;8941:44:0::2;9010:34;::::0;8992:12:::2;::::0;9010:10:::2;::::0;9033:6;;8992:12;9010:34;8992:12;9010:34;9033:6;9010:10;:34:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8991:53;;;9053:7;9050:80;;;9117:6;9093:21;;:30;;;;:::i;:::-;9069:21;:54:::0;9050:80:::2;9143:7;9135:36;;;::::0;-1:-1:-1;;;9135:36:0;;17502:2:6;9135:36:0::2;::::0;::::2;17484:21:6::0;17541:2;17521:18;;;17514:30;-1:-1:-1;;;17560:18:6;;;17553:46;17616:18;;9135:36:0::2;17300:340:6::0;9135:36:0::2;9182:23;::::0;8949:25:6;;;9182:23:0::2;::::0;8937:2:6;8922:18;9182:23:0::2;8803:177:6::0;7662:129:0;-1:-1:-1;;;;;;;;;;;;;;;;;7766:20:0;7778:7;7766:11;:20::i;5443:96:1:-;5499:13;5527:7;5520:14;;;;;:::i;7019:269::-;-1:-1:-1;;;;;7109:24:1;;4332:10:5;7109:24:1;;7101:63;;;;-1:-1:-1;;;7101:63:1;;16325:2:6;7101:63:1;;;16307:21:6;16364:2;16344:18;;;16337:30;16403:28;16383:18;;;16376:56;16449:18;;7101:63:1;16123:350:6;7101:63:1;4332:10:5;7171:32:1;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;7171:42:1;;;;;;;;;;;;:53;;-1:-1:-1;;7171:53:1;;;;;;;;;;7235:48;;8751:41:6;;;7171:42:1;;4332:10:5;7235:48:1;;8724:18:6;7235:48:1;;;;;;;7019:269;;:::o;6826:238:0:-;23204:7:5;23230:6;-1:-1:-1;;;;;23230:6:5;4332:10;23370:23;23362:68;;;;-1:-1:-1;;;23362:68:5;;;;;;;:::i;:::-;6932:16:0::1;:43:::0;;;;6981:24;:39;7026:22;:33;6826:238::o;7981:300:1:-;8112:28;8122:4;8128:2;8132:7;8112:9;:28::i;:::-;8161:48;8184:4;8190:2;8194:7;8203:5;8161:22;:48::i;:::-;8146:130;;;;-1:-1:-1;;;8146:130:1;;;;;;;:::i;4279:541:0:-;2779:9;2792:10;2779:23;2771:66;;;;-1:-1:-1;;;2771:66:0;;;;;;;:::i;:::-;4408:19:::1;4428:8;1630:2;3062:8;:26;;3047:79;;;;-1:-1:-1::0;;;3047:79:0::1;;;;;;;:::i;:::-;3147:16:::0;;:21;;::::1;::::0;:60:::1;;-1:-1:-1::0;3191:16:0;;3172:15:::1;:35;;3147:60;3132:115;;;;-1:-1:-1::0;;;3132:115:0::1;;;;;;;:::i;:::-;3268:14;::::0;::::1;::::0;:19;;::::1;::::0;:55:::1;;;3309:6;:14;;;3291:15;:32;3268:55;3253:102;;;;-1:-1:-1::0;;;3253:102:0::1;;;;;;;:::i;:::-;3427:12;::::0;3404:35:::1;::::0;:20:::1;:35;:::i;:::-;3392:8;3376:13;2312:12:1::0;;;2237:92;3376:13:0::1;:24;;;;:::i;:::-;:63;;3361:113;;;;-1:-1:-1::0;;;3361:113:0::1;;;;;;;:::i;:::-;4461:10:::2;4451:21;::::0;;;:9:::2;:21;::::0;;;;;4487:13;;4451:32:::2;::::0;4475:8;;4451:32:::2;:::i;:::-;:49;;4443:83;;;::::0;-1:-1:-1;;;4443:83:0;;22494:2:6;4443:83:0::2;::::0;::::2;22476:21:6::0;22533:2;22513:18;;;22506:30;-1:-1:-1;;;22552:18:6;;;22545:51;22613:18;;4443:83:0::2;22292:345:6::0;4443:83:0::2;4562:43;::::0;-1:-1:-1;;4579:10:0::2;6572:2:6::0;6568:15;6564:53;4562:43:0::2;::::0;::::2;6552:66:6::0;6634:12;;;6627:28;;;4537:12:0::2;::::0;6671::6;;4562:43:0::2;;;;;;;;;;;;4552:54;;;;;;4537:69;;4620:43;4639:5;;4620:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;4646:10:0::2;::::0;;-1:-1:-1;4658:4:0;;-1:-1:-1;4620:18:0::2;:43::i;:::-;4612:69;;;::::0;-1:-1:-1;;;4612:69:0;;15983:2:6;4612:69:0::2;::::0;::::2;15965:21:6::0;16022:2;16002:18;;;15995:30;-1:-1:-1;;;16041:18:6;;;16034:43;16094:18;;4612:69:0::2;15781:337:6::0;4612:69:0::2;4698:10;4688:21;::::0;;;:9:::2;:21;::::0;;;;:33;;4713:8;;4688:21;:33:::2;::::0;4713:8;;4688:33:::2;:::i;:::-;::::0;;;-1:-1:-1;4729:31:0::2;::::0;-1:-1:-1;4739:10:0::2;4751:8:::0;4729:9:::2;:31::i;:::-;4777:25:::0;;4766:48:::2;::::0;4777:36:::2;::::0;4805:8;;4777:36:::2;:::i;4766:48::-;4437:383;2843:1:::1;;4279:541:::0;;;;:::o;5597:377:1:-;5690:13;5728:16;5736:7;8597:12;;-1:-1:-1;8587:22:1;8511:103;5728:16;5713:94;;;;-1:-1:-1;;;5713:94:1;;15567:2:6;5713:94:1;;;15549:21:6;15606:2;15586:18;;;15579:30;15645:34;15625:18;;;15618:62;-1:-1:-1;;;15696:18:6;;;15689:45;15751:19;;5713:94:1;15365:411:6;5713:94:1;5814:21;5838:10;:8;:10::i;:::-;5814:34;;5891:1;5873:7;5867:21;:25;:102;;;;;;;;;;;;;;;;;5927:7;5936:18;:7;:16;:18::i;:::-;5910:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;5867:102;5854:115;5597:377;-1:-1:-1;;;5597:377:1:o;7552:105:0:-;7610:7;7632:20;7646:5;7632:13;:20::i;24040:198:5:-;23204:7;23230:6;-1:-1:-1;;;;;23230:6:5;4332:10;23370:23;23362:68;;;;-1:-1:-1;;;23362:68:5;;;;;;;:::i;:::-;-1:-1:-1;;;;;24128:22:5;::::1;24120:73;;;;-1:-1:-1::0;;;24120:73:5::1;;;;;;;:::i;:::-;24203:28;24222:8;24203:18;:28::i;:::-;24040:198:::0;:::o;3490:366:0:-;23204:7:5;23230:6;-1:-1:-1;;;;;23230:6:5;4332:10;23370:23;23362:68;;;;-1:-1:-1;;;23362:68:5;;;;;;;:::i;:::-;3589:13:0::1;3577:8;3562:12;;:23;;;;:::i;:::-;:40;;3554:74;;;;-1:-1:-1::0;;;3554:74:0::1;;;;;;;:::i;:::-;3650:8;3634:12;;:24;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;3665:117:0::1;3683:12;3671:8;:24;3665:117;;3706:35;3716:10;3728:12;3706:9;:35::i;:::-;3751:24;3763:12;3751:24:::0;::::1;:::i;:::-;;;3665:117;;;3793:12:::0;;3790:62:::1;;3814:31;3824:10;3836:8;3814:9;:31::i;3631:358:1:-:0;3753:4;-1:-1:-1;;;;;;3780:40:1;;-1:-1:-1;;;3780:40:1;;:98;;-1:-1:-1;;;;;;;3830:48:1;;-1:-1:-1;;;3830:48:1;3780:98;:158;;;-1:-1:-1;;;;;;;3888:50:1;;-1:-1:-1;;;3888:50:1;3780:158;:204;;;-1:-1:-1;;;;;;;;;;1696:40:5;;;3948:36:1;1588:155:5;12082:165:1;12174:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;12174:29:1;-1:-1:-1;;;;;12174:29:1;;;;;;;;;12214:28;;12174:24;;12214:28;;;;;;;12082:165;;;:::o;10499:1484::-;10591:35;10629:20;10641:7;10629:11;:20::i;:::-;10698:18;;10591:58;;-1:-1:-1;10656:22:1;;-1:-1:-1;;;;;10682:34:1;4332:10:5;-1:-1:-1;;;;;10682:34:1;;:80;;;-1:-1:-1;4332:10:5;10726:20:1;10738:7;10726:11;:20::i;:::-;-1:-1:-1;;;;;10726:36:1;;10682:80;:140;;;-1:-1:-1;10789:18:1;;10772:50;;4332:10:5;7346:178:1;:::i;10772:50::-;10656:167;;10845:17;10830:98;;;;-1:-1:-1;;;10830:98:1;;16680:2:6;10830:98:1;;;16662:21:6;16719:2;16699:18;;;16692:30;16758:34;16738:18;;;16731:62;-1:-1:-1;;;16809:18:6;;;16802:48;16867:19;;10830:98:1;16478:414:6;10830:98:1;10972:4;-1:-1:-1;;;;;10950:26:1;:13;:18;;;-1:-1:-1;;;;;10950:26:1;;10935:95;;;;-1:-1:-1;;;10935:95:1;;14799:2:6;10935:95:1;;;14781:21:6;14838:2;14818:18;;;14811:30;14877:34;14857:18;;;14850:62;-1:-1:-1;;;14928:18:6;;;14921:36;14974:19;;10935:95:1;14597:402:6;10935:95:1;-1:-1:-1;;;;;11044:16:1;;11036:66;;;;-1:-1:-1;;;11036:66:1;;11380:2:6;11036:66:1;;;11362:21:6;11419:2;11399:18;;;11392:30;11458:34;11438:18;;;11431:62;-1:-1:-1;;;11509:18:6;;;11502:35;11554:19;;11036:66:1;11178:401:6;11036:66:1;11206:49;11223:1;11227:7;11236:13;:18;;;11206:8;:49::i;:::-;-1:-1:-1;;;;;11262:18:1;;;;;;:12;:18;;;;;:31;;11292:1;;11262:18;:31;;11292:1;;-1:-1:-1;;;;;11262:31:1;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;11262:31:1;;;;;;;;;;;;;;;-1:-1:-1;;;;;11299:16:1;;-1:-1:-1;11299:16:1;;;:12;:16;;;;;:29;;-1:-1:-1;;;11299:16:1;;:29;;-1:-1:-1;;11299:29:1;;:::i;:::-;;;-1:-1:-1;;;;;11299:29:1;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11357:43:1;;;;;;;;-1:-1:-1;;;;;11357:43:1;;;;;;11383:15;11357:43;;;;;;;;;-1:-1:-1;11334:20:1;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;11334:66:1;-1:-1:-1;;;;;;11334:66:1;;;;;;;;;;;11646:11;11346:7;-1:-1:-1;11646:11:1;:::i;:::-;11708:1;11667:24;;;:11;:24;;;;;:29;11624:33;;-1:-1:-1;;;;;;11667:29:1;11663:229;;11724:20;11732:11;8597:12;;-1:-1:-1;8587:22:1;8511:103;11724:20;11720:166;;;11783:94;;;;;;;;11809:18;;-1:-1:-1;;;;;11783:94:1;;;;;;11839:28;;;;11783:94;;;;;;;;;;-1:-1:-1;11756:24:1;;;:11;:24;;;;;;;:121;;;;;;;;;-1:-1:-1;;;11756:121:1;-1:-1:-1;;;;;;11756:121:1;;;;;;;;;;;;11720:166;11922:7;11918:2;-1:-1:-1;;;;;11903:27:1;11912:4;-1:-1:-1;;;;;11903:27:1;;;;;;;;;;;11936:42;10585:1398;;;10499:1484;;;:::o;12394:827::-;12483:24;;12521:12;12513:49;;;;-1:-1:-1;;;12513:49:1;;13342:2:6;12513:49:1;;;13324:21:6;13381:2;13361:18;;;13354:30;13420:26;13400:18;;;13393:54;13464:18;;12513:49:1;13140:348:6;12513:49:1;12568:16;12618:1;12587:28;12607:8;12587:17;:28;:::i;:::-;:32;;;;:::i;:::-;12568:51;-1:-1:-1;12640:18:1;12657:1;12640:14;:18;:::i;:::-;12629:8;:29;12625:79;;;12679:18;12696:1;12679:14;:18;:::i;:::-;12668:29;;12625:79;12817:17;12825:8;8597:12;;-1:-1:-1;8587:22:1;8511:103;12817:17;12809:68;;;;-1:-1:-1;;;12809:68:1;;20144:2:6;12809:68:1;;;20126:21:6;20183:2;20163:18;;;20156:30;20222:34;20202:18;;;20195:62;-1:-1:-1;;;20273:18:6;;;20266:36;20319:19;;12809:68:1;19942:402:6;12809:68:1;12900:17;12883:289;12924:8;12919:1;:13;12883:289;;12982:1;12951:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;12951:19:1;12947:219;;12996:31;13030:14;13042:1;13030:11;:14::i;:::-;13071:86;;;;;;;;13097:14;;-1:-1:-1;;;;;13071:86:1;;;;;;13123:24;;;;13071:86;;;;;;;;;;-1:-1:-1;13054:14:1;;;:11;:14;;;;;;;:103;;;;;;;;;-1:-1:-1;;;13054:103:1;-1:-1:-1;;;;;;13054:103:1;;;;;;;;;;;;-1:-1:-1;12947:219:1;12934:3;;;;:::i;:::-;;;;12883:289;;;-1:-1:-1;13204:12:1;:8;13215:1;13204:12;:::i;:::-;13177:24;:39;-1:-1:-1;;;12394:827:1:o;8618:96::-;8682:27;8692:2;8696:8;8682:27;;;;;;;;;;;;:9;:27::i;:::-;8618:96;;:::o;5027:402:0:-;5097:5;5084:9;:18;;5076:53;;;;-1:-1:-1;;;5076:53:0;;18267:2:6;5076:53:0;;;18249:21:6;18306:2;18286:18;;;18279:30;-1:-1:-1;;;18325:18:6;;;18318:52;18387:18;;5076:53:0;18065:346:6;5076:53:0;5151:5;5139:9;:17;5135:85;;;5174:10;5166:47;5195:17;5207:5;5195:9;:17;:::i;:::-;5166:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5135:85;5225:17;5276:3;5253:20;;5245:5;:28;;;;:::i;:::-;:34;;;;:::i;:::-;5225:54;-1:-1:-1;5285:15:0;5303:17;5225:54;5303:5;:17;:::i;:::-;5285:35;;5350:7;5333:13;;:24;;;;;;;:::i;:::-;;;;;;;;5382:9;5363:15;;:28;;;;;;;:::i;:::-;;;;-1:-1:-1;;5402:22:0;;5418:5;;5407:10;;5402:22;;;;;5070:359;;5027:402;:::o;4490:586:1:-;-1:-1:-1;;;;;;;;;;;;;;;;;4602:16:1;4610:7;8597:12;;-1:-1:-1;8587:22:1;8511:103;4602:16;4594:71;;;;-1:-1:-1;;;4594:71:1;;10565:2:6;4594:71:1;;;10547:21:6;10604:2;10584:18;;;10577:30;10643:34;10623:18;;;10616:62;-1:-1:-1;;;10694:18:6;;;10687:40;10744:19;;4594:71:1;10363:406:6;4594:71:1;4672:26;4719:12;4708:7;:23;4704:91;;4762:22;4772:12;4762:7;:22;:::i;:::-;:26;;4787:1;4762:26;:::i;:::-;4741:47;;4704:91;4821:7;4801:207;4838:18;4830:4;:26;4801:207;;4874:31;4908:17;;;:11;:17;;;;;;;;;4874:51;;;;;;;;;-1:-1:-1;;;;;4874:51:1;;;;;-1:-1:-1;;;4874:51:1;;;;;;;;;;;;4937:28;4933:69;;4984:9;4490:586;-1:-1:-1;;;;4490:586:1:o;4933:69::-;-1:-1:-1;4858:6:1;;;;:::i;:::-;;;;4801:207;;;-1:-1:-1;5014:57:1;;-1:-1:-1;;;5014:57:1;;20911:2:6;5014:57:1;;;20893:21:6;20950:2;20930:18;;;20923:30;20989:34;20969:18;;;20962:62;-1:-1:-1;;;21040:18:6;;;21033:45;21095:19;;5014:57:1;20709:411:6;24392:187:5;24465:16;24484:6;;-1:-1:-1;;;;;24500:17:5;;;-1:-1:-1;;;;;;24500:17:5;;;;;;24532:40;;24484:6;;;;;;;24532:40;;24465:16;24532:40;24455:124;24392:187;:::o;13752:667:1:-;13884:4;-1:-1:-1;;;;;13900:13:1;;5823:19:5;:23;13896:519:1;;13937:72;;-1:-1:-1;;;13937:72:1;;-1:-1:-1;;;;;13937:36:1;;;;;:72;;4332:10:5;;13988:4:1;;13994:7;;14003:5;;13937:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13937:72:1;;;;;;;;-1:-1:-1;;13937:72:1;;;;;;;;;;;;:::i;:::-;;;13925:452;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14164:13:1;;14160:209;;14196:61;;-1:-1:-1;;;14196:61:1;;;;;;;:::i;14160:209::-;14339:6;14333:13;14324:6;14320:2;14316:15;14309:38;13925:452;-1:-1:-1;;;;;;14057:55:1;-1:-1:-1;;;14057:55:1;;-1:-1:-1;14050:62:1;;13896:519;-1:-1:-1;14404:4:1;13752:667;;;;;;:::o;847:184:3:-;968:4;1020;991:25;1004:5;1011:4;991:12;:25::i;:::-;:33;;847:184;-1:-1:-1;;;;847:184:3:o;7220:106:0:-;7280:13;7308;7301:20;;;;;:::i;1991:703:5:-;2047:13;2264:10;2260:51;;-1:-1:-1;;2290:10:5;;;;;;;;;;;;-1:-1:-1;;;2290:10:5;;;;;1991:703::o;2260:51::-;2335:5;2320:12;2374:75;2381:9;;2374:75;;2406:8;;;;:::i;:::-;;-1:-1:-1;2428:10:5;;-1:-1:-1;2436:2:5;2428:10;;:::i;:::-;;;2374:75;;;2458:19;2490:6;2480:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2480:17:5;;2458:39;;2507:150;2514:10;;2507:150;;2540:11;2550:1;2540:11;;:::i;:::-;;-1:-1:-1;2608:10:5;2616:2;2608:5;:10;:::i;:::-;2595:24;;:2;:24;:::i;:::-;2582:39;;2565:6;2572;2565:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2565:56:5;;;;;;;;-1:-1:-1;2635:11:5;2644:2;2635:11;;:::i;:::-;;;2507:150;;4252:234:1;4313:7;-1:-1:-1;;;;;4343:19:1;;4328:99;;;;-1:-1:-1;;;4328:99:1;;12139:2:6;4328:99:1;;;12121:21:6;12178:2;12158:18;;;12151:30;12217:34;12197:18;;;12190:62;-1:-1:-1;;;12268:18:6;;;12261:47;12325:19;;4328:99:1;11937:413:6;4328:99:1;-1:-1:-1;;;;;;4448:19:1;;;;;:12;:19;;;;;:32;-1:-1:-1;;;4448:32:1;;-1:-1:-1;;;;;4448:32:1;;4252:234::o;9040:1239::-;9163:12;;-1:-1:-1;;;;;9189:16:1;;9181:62;;;;-1:-1:-1;;;9181:62:1;;18976:2:6;9181:62:1;;;18958:21:6;19015:2;18995:18;;;18988:30;19054:34;19034:18;;;19027:62;-1:-1:-1;;;19105:18:6;;;19098:31;19146:19;;9181:62:1;18774:397:6;9181:62:1;9378:21;9386:12;8597;;-1:-1:-1;8587:22:1;8511:103;9378:21;9377:22;9369:64;;;;-1:-1:-1;;;9369:64:1;;18618:2:6;9369:64:1;;;18600:21:6;18657:2;18637:18;;;18630:30;18696:31;18676:18;;;18669:59;18745:18;;9369:64:1;18416:353:6;9369:64:1;9459:12;9447:8;:24;;9439:71;;;;-1:-1:-1;;;9439:71:1;;22091:2:6;9439:71:1;;;22073:21:6;22130:2;22110:18;;;22103:30;22169:34;22149:18;;;22142:62;-1:-1:-1;;;22220:18:6;;;22213:32;22262:19;;9439:71:1;21889:398:6;9439:71:1;-1:-1:-1;;;;;9618:16:1;;9585:30;9618:16;;;:12;:16;;;;;;;;;9585:49;;;;;;;;;-1:-1:-1;;;;;9585:49:1;;;;;-1:-1:-1;;;9585:49:1;;;;;;;;;;;9659:116;;;;;;;;9678:19;;9585:49;;9659:116;;;9678:39;;9708:8;;9678:39;:::i;:::-;-1:-1:-1;;;;;9659:116:1;;;;;9760:8;9725:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;9659:116:1;;;;;;-1:-1:-1;;;;;9640:16:1;;;;;;;:12;:16;;;;;;;;:135;;;;;;;;-1:-1:-1;;;9640:135:1;;;;;;;;;;;;9809:43;;;;;;;;;;;9835:15;9809:43;;;;;;;;9781:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;9781:71:1;-1:-1:-1;;;;;;9781:71:1;;;;;;;;;;;;;;;;;;9793:12;;9901:274;9925:8;9921:1;:12;9901:274;;;9953:38;;9978:12;;-1:-1:-1;;;;;9953:38:1;;;9970:1;;9953:38;;9970:1;;9953:38;10016:59;10047:1;10051:2;10055:12;10069:5;10016:22;:59::i;:::-;9999:147;;;;-1:-1:-1;;;9999:147:1;;;;;;;:::i;:::-;10154:14;;;;:::i;:::-;;;;9935:3;;;;;:::i;:::-;;;;9901:274;;;-1:-1:-1;10181:12:1;:27;;;10214:60;3860:414:0;1383:688:3;1466:7;1508:4;1466:7;1522:514;1546:5;:12;1542:1;:16;1522:514;;;1579:20;1602:5;1608:1;1602:8;;;;;;;;:::i;:::-;;;;;;;1579:31;;1644:12;1628;:28;1624:402;;1779:44;;;;;;6851:19:6;;;6886:12;;;6879:28;;;6923:12;;1779:44:3;;;;;;;;;;;;1769:55;;;;;;1754:70;;1624:402;;;1966:44;;;;;;6851:19:6;;;6886:12;;;6879:28;;;6923:12;;1966:44:3;;;;;;;;;;;;1956:55;;;;;;1941:70;;1624:402;-1:-1:-1;1560:3:3;;;;:::i;:::-;;;;1522:514;;;-1:-1:-1;2052:12:3;1383:688;-1:-1:-1;;;1383:688:3:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:6;82:20;;-1:-1:-1;;;;;131:31:6;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:6;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:6:o;2735:180::-;2794:6;2847:2;2835:9;2826:7;2822:23;2818:32;2815:52;;;2863:1;2860;2853:12;2815:52;-1:-1:-1;2886:23:6;;2735:180;-1:-1:-1;2735:180:6:o;2920:245::-;2978:6;3031:2;3019:9;3010:7;3006:23;3002:32;2999:52;;;3047:1;3044;3037:12;2999:52;3086:9;3073:23;3105:30;3129:5;3105:30;:::i;3170:249::-;3239:6;3292:2;3280:9;3271:7;3267:23;3263:32;3260:52;;;3308:1;3305;3298:12;3260:52;3340:9;3334:16;3359:30;3383:5;3359:30;:::i;3424:592::-;3495:6;3503;3556:2;3544:9;3535:7;3531:23;3527:32;3524:52;;;3572:1;3569;3562:12;3524:52;3612:9;3599:23;3641:18;3682:2;3674:6;3671:14;3668:34;;;3698:1;3695;3688:12;3668:34;3736:6;3725:9;3721:22;3711:32;;3781:7;3774:4;3770:2;3766:13;3762:27;3752:55;;3803:1;3800;3793:12;3752:55;3843:2;3830:16;3869:2;3861:6;3858:14;3855:34;;;3885:1;3882;3875:12;3855:34;3930:7;3925:2;3916:6;3912:2;3908:15;3904:24;3901:37;3898:57;;;3951:1;3948;3941:12;3898:57;3982:2;3974:11;;;;;4004:6;;-1:-1:-1;3424:592:6;;-1:-1:-1;;;;3424:592:6:o;4206:248::-;4274:6;4282;4335:2;4323:9;4314:7;4310:23;4306:32;4303:52;;;4351:1;4348;4341:12;4303:52;-1:-1:-1;;4374:23:6;;;4444:2;4429:18;;;4416:32;;-1:-1:-1;4206:248:6:o;4459:751::-;4563:6;4571;4579;4587;4640:2;4628:9;4619:7;4615:23;4611:32;4608:52;;;4656:1;4653;4646:12;4608:52;4692:9;4679:23;4669:33;;4749:2;4738:9;4734:18;4721:32;4711:42;;4804:2;4793:9;4789:18;4776:32;4827:18;4868:2;4860:6;4857:14;4854:34;;;4884:1;4881;4874:12;4854:34;4922:6;4911:9;4907:22;4897:32;;4967:7;4960:4;4956:2;4952:13;4948:27;4938:55;;4989:1;4986;4979:12;4938:55;5029:2;5016:16;5055:2;5047:6;5044:14;5041:34;;;5071:1;5068;5061:12;5041:34;5124:7;5119:2;5109:6;5106:1;5102:14;5098:2;5094:23;5090:32;5087:45;5084:65;;;5145:1;5142;5135:12;5084:65;4459:751;;;;-1:-1:-1;;5176:2:6;5168:11;;-1:-1:-1;;;4459:751:6:o;5215:316::-;5292:6;5300;5308;5361:2;5349:9;5340:7;5336:23;5332:32;5329:52;;;5377:1;5374;5367:12;5329:52;-1:-1:-1;;5400:23:6;;;5470:2;5455:18;;5442:32;;-1:-1:-1;5521:2:6;5506:18;;;5493:32;;5215:316;-1:-1:-1;5215:316:6:o;5536:592::-;5649:6;5657;5665;5673;5681;5689;5697;5750:3;5738:9;5729:7;5725:23;5721:33;5718:53;;;5767:1;5764;5757:12;5718:53;-1:-1:-1;;5790:23:6;;;5860:2;5845:18;;5832:32;;-1:-1:-1;5911:2:6;5896:18;;5883:32;;5962:2;5947:18;;5934:32;;-1:-1:-1;6013:3:6;5998:19;;5985:33;;-1:-1:-1;6065:3:6;6050:19;;6037:33;;-1:-1:-1;6117:3:6;6102:19;6089:33;;-1:-1:-1;5536:592:6;-1:-1:-1;5536:592:6:o;6133:257::-;6174:3;6212:5;6206:12;6239:6;6234:3;6227:19;6255:63;6311:6;6304:4;6299:3;6295:14;6288:4;6281:5;6277:16;6255:63;:::i;:::-;6372:2;6351:15;-1:-1:-1;;6347:29:6;6338:39;;;;6379:4;6334:50;;6133:257;-1:-1:-1;;6133:257:6:o;6946:470::-;7125:3;7163:6;7157:13;7179:53;7225:6;7220:3;7213:4;7205:6;7201:17;7179:53;:::i;:::-;7295:13;;7254:16;;;;7317:57;7295:13;7254:16;7351:4;7339:17;;7317:57;:::i;:::-;7390:20;;6946:470;-1:-1:-1;;;;6946:470:6:o;7839:488::-;-1:-1:-1;;;;;8108:15:6;;;8090:34;;8160:15;;8155:2;8140:18;;8133:43;8207:2;8192:18;;8185:34;;;8255:3;8250:2;8235:18;;8228:31;;;8033:4;;8276:45;;8301:19;;8293:6;8276:45;:::i;:::-;8268:53;7839:488;-1:-1:-1;;;;;;7839:488:6:o;8985:219::-;9134:2;9123:9;9116:21;9097:4;9154:44;9194:2;9183:9;9179:18;9171:6;9154:44;:::i;9612:402::-;9814:2;9796:21;;;9853:2;9833:18;;;9826:30;9892:34;9887:2;9872:18;;9865:62;-1:-1:-1;;;9958:2:6;9943:18;;9936:36;10004:3;9989:19;;9612:402::o;11584:348::-;11786:2;11768:21;;;11825:2;11805:18;;;11798:30;11864:26;11859:2;11844:18;;11837:54;11923:2;11908:18;;11584:348::o;12355:354::-;12557:2;12539:21;;;12596:2;12576:18;;;12569:30;12635:32;12630:2;12615:18;;12608:60;12700:2;12685:18;;12355:354::o;13905:342::-;14107:2;14089:21;;;14146:2;14126:18;;;14119:30;-1:-1:-1;;;14180:2:6;14165:18;;14158:48;14238:2;14223:18;;13905:342::o;14252:340::-;14454:2;14436:21;;;14493:2;14473:18;;;14466:30;-1:-1:-1;;;14527:2:6;14512:18;;14505:46;14583:2;14568:18;;14252:340::o;15004:356::-;15206:2;15188:21;;;15225:18;;;15218:30;15284:34;15279:2;15264:18;;15257:62;15351:2;15336:18;;15004:356::o;17645:415::-;17847:2;17829:21;;;17886:2;17866:18;;;17859:30;17925:34;17920:2;17905:18;;17898:62;-1:-1:-1;;;17991:2:6;17976:18;;17969:49;18050:3;18035:19;;17645:415::o;19176:346::-;19378:2;19360:21;;;19417:2;19397:18;;;19390:30;-1:-1:-1;;;19451:2:6;19436:18;;19429:52;19513:2;19498:18;;19176:346::o;20349:355::-;20551:2;20533:21;;;20590:2;20570:18;;;20563:30;20629:33;20624:2;20609:18;;20602:61;20695:2;20680:18;;20349:355::o;23983:253::-;24023:3;-1:-1:-1;;;;;24112:2:6;24109:1;24105:10;24142:2;24139:1;24135:10;24173:3;24169:2;24165:12;24160:3;24157:21;24154:47;;;24181:18;;:::i;24241:128::-;24281:3;24312:1;24308:6;24305:1;24302:13;24299:39;;;24318:18;;:::i;:::-;-1:-1:-1;24354:9:6;;24241:128::o;24374:120::-;24414:1;24440;24430:35;;24445:18;;:::i;:::-;-1:-1:-1;24479:9:6;;24374:120::o;24499:168::-;24539:7;24605:1;24601;24597:6;24593:14;24590:1;24587:21;24582:1;24575:9;24568:17;24564:45;24561:71;;;24612:18;;:::i;:::-;-1:-1:-1;24652:9:6;;24499:168::o;24672:246::-;24712:4;-1:-1:-1;;;;;24825:10:6;;;;24795;;24847:12;;;24844:38;;;24862:18;;:::i;:::-;24899:13;;24672:246;-1:-1:-1;;;24672:246:6:o;24923:125::-;24963:4;24991:1;24988;24985:8;24982:34;;;24996:18;;:::i;:::-;-1:-1:-1;25033:9:6;;24923:125::o;25053:258::-;25125:1;25135:113;25149:6;25146:1;25143:13;25135:113;;;25225:11;;;25219:18;25206:11;;;25199:39;25171:2;25164:10;25135:113;;;25266:6;25263:1;25260:13;25257:48;;;-1:-1:-1;;25301:1:6;25283:16;;25276:27;25053:258::o;25316:136::-;25355:3;25383:5;25373:39;;25392:18;;:::i;:::-;-1:-1:-1;;;25428:18:6;;25316:136::o;25457:380::-;25536:1;25532:12;;;;25579;;;25600:61;;25654:4;25646:6;25642:17;25632:27;;25600:61;25707:2;25699:6;25696:14;25676:18;25673:38;25670:161;;;25753:10;25748:3;25744:20;25741:1;25734:31;25788:4;25785:1;25778:15;25816:4;25813:1;25806:15;25670:161;;25457:380;;;:::o;25842:135::-;25881:3;-1:-1:-1;;25902:17:6;;25899:43;;;25922:18;;:::i;:::-;-1:-1:-1;25969:1:6;25958:13;;25842:135::o;25982:112::-;26014:1;26040;26030:35;;26045:18;;:::i;:::-;-1:-1:-1;26079:9:6;;25982:112::o;26099:127::-;26160:10;26155:3;26151:20;26148:1;26141:31;26191:4;26188:1;26181:15;26215:4;26212:1;26205:15;26231:127;26292:10;26287:3;26283:20;26280:1;26273:31;26323:4;26320:1;26313:15;26347:4;26344:1;26337:15;26363:127;26424:10;26419:3;26415:20;26412:1;26405:31;26455:4;26452:1;26445:15;26479:4;26476:1;26469:15;26495:127;26556:10;26551:3;26547:20;26544:1;26537:31;26587:4;26584:1;26577:15;26611:4;26608:1;26601:15;26627:131;-1:-1:-1;;;;;;26701:32:6;;26691:43;;26681:71;;26748:1;26745;26738:12

Swarm Source

ipfs://241c059eaa4dd1699c4f8d89f443a1fc7a7d3b0b90099d19f84cb7a703076773
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.