ETH Price: $2,300.25 (-4.97%)

Token

Waves by Eros (WBE)
 

Overview

Max Total Supply

1,000 WBE

Holders

507

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 WBE
0xc15224E488F7896F1492C03017d61F1495975eB7
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:
WavesbyEros

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

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



pragma solidity >=0.7.0 <0.9.0;

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

contract WavesbyEros is ERC721A, Ownable, ReentrancyGuard {


  string public baseURI;
  string public notRevealedUri;
  uint256 public cost = 0 ether;
  uint256 public maxSupply = 1000;
  uint256 public MaxperWallet = 2;
  uint256 public MaxperWalletWl = 1;
  bool public paused = false;
  bool public revealed = false;
  bool public preSale = true;
  bytes32 public merkleRoot;

  constructor() ERC721A("Waves by Eros", "WBE") {}

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

  // public
  /// @dev Public mint 
  function mint(uint256 tokens) public payable nonReentrant {
    require(!paused, "ETH: FUCK contract is paused");
    require(!preSale, "ETH: Sale hasn't started yet");
    require(tokens <= MaxperWallet, "ETH: max mint amount per tx exceeded");
    require(totalSupply() + tokens <= maxSupply, "We Soldout");
    require(_numberMinted(_msgSenderERC721A()) + tokens <= MaxperWallet, "ETH: Max NFT Per Wallet exceeded");
    require(msg.value >= cost * tokens, "ETH: insufficient funds");

      _safeMint(_msgSenderERC721A(), tokens);
    
  }
/// @dev presale mint for whitelisted
    function presalemint(uint256 tokens, bytes32[] calldata merkleProof) public payable nonReentrant {
    require(!paused, "ETH: oops contract is paused");
    require(preSale, "ETH: Presale Hasnt't started yet");
    require(MerkleProof.verify(merkleProof, merkleRoot, keccak256(abi.encodePacked(msg.sender))), "ETH: You are not Whitelisted");
    require(_numberMinted(_msgSenderERC721A()) + tokens <= MaxperWalletWl, "ETH: Max NFT Per Wallet exceeded");
    require(tokens <= MaxperWalletWl, "ETH: max mint per Tx exceeded");
    require(totalSupply() + tokens <= maxSupply, "ETH: Whitelist MaxSupply exceeded");
    require(msg.value >= cost * tokens, "ETH: insufficient funds");

      _safeMint(_msgSenderERC721A(), tokens);
    
  }

  /// @dev use it for giveaway and team mint
     function airdrop(uint256 _mintAmount, address destination) public onlyOwner nonReentrant {
    require(totalSupply() + _mintAmount <= maxSupply, "max NFT limit exceeded");

      _safeMint(destination, _mintAmount);
  }

/// @notice returns metadata link of tokenid
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721AMetadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

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

     /// @notice return the number minted by an address
    function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

    /// @notice return the tokens owned by an address
      function tokensOfOwner(address owner) public view returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }

  //only owner
  function reveal(bool _state) public onlyOwner {
      revealed = _state;
  }

    /// @dev change the merkle root for the whitelist phase
  function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }

  /// @dev change the public max per wallet
  function setMaxPerWallet(uint256 _limit) public onlyOwner {
    MaxperWallet = _limit;
  }

  /// @dev change the whitelist max per wallet
    function setWlMaxPerWallet(uint256 _limit) public onlyOwner {
    MaxperWalletWl = _limit;
  }

   /// @dev change the public price(amount need to be in wei)
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }


  /// @dev cut the supply if we dont sold out
    function setMaxsupply(uint256 _newsupply) public onlyOwner {
    maxSupply = _newsupply;
  }

 /// @dev set your baseuri
  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

   /// @dev set hidden uri
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

 /// @dev to pause and unpause your contract(use booleans true or false)
  function pause(bool _state) public onlyOwner {
    paused = _state;
  }

     /// @dev activate whitelist sale(use booleans true or false)
    function togglepreSale(bool _state) external onlyOwner {
        preSale = _state;
    }
  
  /// @dev withdraw funds from contract
  function withdraw() public payable onlyOwner nonReentrant {
      uint256 balance = address(this).balance;
      payable(_msgSenderERC721A()).transfer(balance);
  }
}

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

pragma solidity ^0.8.0;

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

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

File 2 of 7: ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256) {
        // Counter underflow is impossible as `_currentIndex` does not decrement,
        // and it is initialized to `_startTokenId()`.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

    /**
     * @dev Hook that is called after a set of serially-ordered token IDs
     * have been transferred. This includes minting.
     * And also called after one token has been burned.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

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

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

File 3 of 7: IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @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,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` 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 payable;

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

    /**
     * @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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

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

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

File 4 of 7: MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
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 Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle 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++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 5 of 7: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 7: ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

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() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

    function _nonReentrantAfter() private {
        // 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":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MaxperWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWalletWl","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"presalemint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setMaxsupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setWlMaxPerWallet","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":"bool","name":"_state","type":"bool"}],"name":"togglepreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526000600c556103e8600d556002600e556001600f556000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055506001601060026101000a81548160ff0219169083151502179055503480156200007757600080fd5b506040518060400160405280600d81526020017f57617665732062792045726f73000000000000000000000000000000000000008152506040518060400160405280600381526020017f57424500000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000fc92919062000233565b5080600390805190602001906200011592919062000233565b50620001266200015c60201b60201c565b60008190555050506200014e620001426200016560201b60201c565b6200016d60201b60201c565b600160098190555062000348565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024190620002e3565b90600052602060002090601f016020900481019282620002655760008555620002b1565b82601f106200028057805160ff1916838001178555620002b1565b82800160010185558215620002b1579182015b82811115620002b057825182559160200191906001019062000293565b5b509050620002c09190620002c4565b5090565b5b80821115620002df576000816000905550600101620002c5565b5090565b60006002820490506001821680620002fc57607f821691505b6020821081141562000313576200031262000319565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613ed080620003586000396000f3fe60806040526004361061025b5760003560e01c80636c0360eb11610144578063bc63f02e116100b6578063dc33e6811161007a578063dc33e68114610862578063e268e4d31461089f578063e985e9c5146108c8578063f2c4ce1e14610905578063f2fde38b1461092e578063fea0e058146109575761025b565b8063bc63f02e1461077d578063bd7a1998146107a6578063bde0608a146107d1578063c87b56dd146107fa578063d5abeb01146108375761025b565b80638da5cb5b116101085780638da5cb5b1461069d578063940cd05b146106c857806395d89b41146106f1578063a0712d681461071c578063a22cb46514610738578063b88d4fde146107615761025b565b80636c0360eb146105b857806370a08231146105e3578063715018a6146106205780637cb64759146106375780638462151c146106605761025b565b806318160ddd116101dd57806344a0d68a116101a157806344a0d68a146104a857806351830227146104d157806355f804b3146104fc5780635a7adf7f146105255780635c975abb146105505780636352211e1461057b5761025b565b806318160ddd1461041057806323b872dd1461043b5780632eb4a7ab146104575780633ccfd60b1461048257806342842e0e1461048c5761025b565b8063081812fc11610224578063081812fc14610338578063081c8c4414610375578063095ea7b3146103a057806313faede6146103bc578063149835a0146103e75761025b565b806277ec051461026057806301ffc9a71461028b57806302329a29146102c8578063036e4cb5146102f157806306fdde031461030d575b600080fd5b34801561026c57600080fd5b50610275610980565b6040516102829190613680565b60405180910390f35b34801561029757600080fd5b506102b260048036038101906102ad9190612e17565b610986565b6040516102bf9190613428565b60405180910390f35b3480156102d457600080fd5b506102ef60048036038101906102ea9190612dbd565b610a18565b005b61030b60048036038101906103069190612f27565b610a3d565b005b34801561031957600080fd5b50610322610d00565b60405161032f919061345e565b60405180910390f35b34801561034457600080fd5b5061035f600480360381019061035a9190612eba565b610d92565b60405161036c919061339f565b60405180910390f35b34801561038157600080fd5b5061038a610e11565b604051610397919061345e565b60405180910390f35b6103ba60048036038101906103b59190612d7d565b610e9f565b005b3480156103c857600080fd5b506103d1610fe3565b6040516103de9190613680565b60405180910390f35b3480156103f357600080fd5b5061040e60048036038101906104099190612eba565b610fe9565b005b34801561041c57600080fd5b50610425610ffb565b6040516104329190613680565b60405180910390f35b61045560048036038101906104509190612c67565b611012565b005b34801561046357600080fd5b5061046c611337565b6040516104799190613443565b60405180910390f35b61048a61133d565b005b6104a660048036038101906104a19190612c67565b6113ab565b005b3480156104b457600080fd5b506104cf60048036038101906104ca9190612eba565b6113cb565b005b3480156104dd57600080fd5b506104e66113dd565b6040516104f39190613428565b60405180910390f35b34801561050857600080fd5b50610523600480360381019061051e9190612e71565b6113f0565b005b34801561053157600080fd5b5061053a611412565b6040516105479190613428565b60405180910390f35b34801561055c57600080fd5b50610565611425565b6040516105729190613428565b60405180910390f35b34801561058757600080fd5b506105a2600480360381019061059d9190612eba565b611438565b6040516105af919061339f565b60405180910390f35b3480156105c457600080fd5b506105cd61144a565b6040516105da919061345e565b60405180910390f35b3480156105ef57600080fd5b5061060a60048036038101906106059190612bfa565b6114d8565b6040516106179190613680565b60405180910390f35b34801561062c57600080fd5b50610635611591565b005b34801561064357600080fd5b5061065e60048036038101906106599190612dea565b6115a5565b005b34801561066c57600080fd5b5061068760048036038101906106829190612bfa565b6115b7565b6040516106949190613406565b60405180910390f35b3480156106a957600080fd5b506106b2611701565b6040516106bf919061339f565b60405180910390f35b3480156106d457600080fd5b506106ef60048036038101906106ea9190612dbd565b61172b565b005b3480156106fd57600080fd5b50610706611750565b604051610713919061345e565b60405180910390f35b61073660048036038101906107319190612eba565b6117e2565b005b34801561074457600080fd5b5061075f600480360381019061075a9190612d3d565b6119f1565b005b61077b60048036038101906107769190612cba565b611afc565b005b34801561078957600080fd5b506107a4600480360381019061079f9190612ee7565b611b6f565b005b3480156107b257600080fd5b506107bb611bec565b6040516107c89190613680565b60405180910390f35b3480156107dd57600080fd5b506107f860048036038101906107f39190612eba565b611bf2565b005b34801561080657600080fd5b50610821600480360381019061081c9190612eba565b611c04565b60405161082e919061345e565b60405180910390f35b34801561084357600080fd5b5061084c611d5a565b6040516108599190613680565b60405180910390f35b34801561086e57600080fd5b5061088960048036038101906108849190612bfa565b611d60565b6040516108969190613680565b60405180910390f35b3480156108ab57600080fd5b506108c660048036038101906108c19190612eba565b611d72565b005b3480156108d457600080fd5b506108ef60048036038101906108ea9190612c27565b611d84565b6040516108fc9190613428565b60405180910390f35b34801561091157600080fd5b5061092c60048036038101906109279190612e71565b611e18565b005b34801561093a57600080fd5b5061095560048036038101906109509190612bfa565b611e3a565b005b34801561096357600080fd5b5061097e60048036038101906109799190612dbd565b611ebe565b005b600f5481565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109e157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a115750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610a20611ee3565b80601060006101000a81548160ff02191690831515021790555050565b610a45611f61565b601060009054906101000a900460ff1615610a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8c90613500565b60405180910390fd5b601060029054906101000a900460ff16610ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adb90613600565b60405180910390fd5b610b58828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060115433604051602001610b3d9190613355565b60405160208183030381529060405280519060200120611fb1565b610b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8e906135e0565b60405180910390fd5b600f5483610bab610ba6611fc8565b611fd0565b610bb5919061379e565b1115610bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bed906134e0565b60405180910390fd5b600f54831115610c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c32906135c0565b60405180910390fd5b600d5483610c47610ffb565b610c51919061379e565b1115610c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8990613580565b60405180910390fd5b82600c54610ca091906137f4565b341015610ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd9906134a0565b60405180910390fd5b610cf3610ced611fc8565b84612027565b610cfb612045565b505050565b606060028054610d0f9061390e565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3b9061390e565b8015610d885780601f10610d5d57610100808354040283529160200191610d88565b820191906000526020600020905b815481529060010190602001808311610d6b57829003601f168201915b5050505050905090565b6000610d9d8261204f565b610dd3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b8054610e1e9061390e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4a9061390e565b8015610e975780601f10610e6c57610100808354040283529160200191610e97565b820191906000526020600020905b815481529060010190602001808311610e7a57829003601f168201915b505050505081565b6000610eaa82611438565b90508073ffffffffffffffffffffffffffffffffffffffff16610ecb611fc8565b73ffffffffffffffffffffffffffffffffffffffff1614610f2e57610ef781610ef2611fc8565b611d84565b610f2d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b610ff1611ee3565b80600d8190555050565b60006110056120ae565b6001546000540303905090565b600061101d826120b7565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611084576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061109084612185565b915091506110a681876110a1611fc8565b6121ac565b6110f2576110bb866110b6611fc8565b611d84565b6110f1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611159576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61116686868660016121f0565b801561117157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061123f8561121b8888876121f6565b7c02000000000000000000000000000000000000000000000000000000001761221e565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156112c75760006001850190506000600460008381526020019081526020016000205414156112c55760005481146112c4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461132f8686866001612249565b505050505050565b60115481565b611345611ee3565b61134d611f61565b600047905061135a611fc8565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561139f573d6000803e3d6000fd5b50506113a9612045565b565b6113c683838360405180602001604052806000815250611afc565b505050565b6113d3611ee3565b80600c8190555050565b601060019054906101000a900460ff1681565b6113f8611ee3565b80600a908051906020019061140e929190612954565b5050565b601060029054906101000a900460ff1681565b601060009054906101000a900460ff1681565b6000611443826120b7565b9050919050565b600a80546114579061390e565b80601f01602080910402602001604051908101604052809291908181526020018280546114839061390e565b80156114d05780601f106114a5576101008083540402835291602001916114d0565b820191906000526020600020905b8154815290600101906020018083116114b357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611540576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611599611ee3565b6115a3600061224f565b565b6115ad611ee3565b8060118190555050565b606060008060006115c7856114d8565b905060008167ffffffffffffffff8111156115e5576115e4613a6b565b5b6040519080825280602002602001820160405280156116135781602001602082028036833780820191505090505b50905061161e6129da565b60006116286120ae565b90505b8386146116f35761163b81612315565b915081604001511561164c576116e8565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461168c57816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156116e757808387806001019850815181106116da576116d9613a3c565b5b6020026020010181815250505b5b80600101905061162b565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611733611ee3565b80601060016101000a81548160ff02191690831515021790555050565b60606003805461175f9061390e565b80601f016020809104026020016040519081016040528092919081815260200182805461178b9061390e565b80156117d85780601f106117ad576101008083540402835291602001916117d8565b820191906000526020600020905b8154815290600101906020018083116117bb57829003601f168201915b5050505050905090565b6117ea611f61565b601060009054906101000a900460ff161561183a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183190613660565b60405180910390fd5b601060029054906101000a900460ff161561188a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188190613540565b60405180910390fd5b600e548111156118cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c690613640565b60405180910390fd5b600d54816118db610ffb565b6118e5919061379e565b1115611926576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191d90613520565b60405180910390fd5b600e548161193a611935611fc8565b611fd0565b611944919061379e565b1115611985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197c906134e0565b60405180910390fd5b80600c5461199391906137f4565b3410156119d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cc906134a0565b60405180910390fd5b6119e66119e0611fc8565b82612027565b6119ee612045565b50565b80600760006119fe611fc8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611aab611fc8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611af09190613428565b60405180910390a35050565b611b07848484611012565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b6957611b3284848484612340565b611b68576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611b77611ee3565b611b7f611f61565b600d5482611b8b610ffb565b611b95919061379e565b1115611bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcd90613560565b60405180910390fd5b611be08183612027565b611be8612045565b5050565b600e5481565b611bfa611ee3565b80600f8190555050565b6060611c0f8261204f565b611c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4590613480565b60405180910390fd5b60001515601060019054906101000a900460ff1615151415611cfc57600b8054611c779061390e565b80601f0160208091040260200160405190810160405280929190818152602001828054611ca39061390e565b8015611cf05780601f10611cc557610100808354040283529160200191611cf0565b820191906000526020600020905b815481529060010190602001808311611cd357829003601f168201915b50505050509050611d55565b6000611d066124a0565b90506000815111611d265760405180602001604052806000815250611d51565b80611d3084612532565b604051602001611d41929190613370565b6040516020818303038152906040525b9150505b919050565b600d5481565b6000611d6b82611fd0565b9050919050565b611d7a611ee3565b80600e8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e20611ee3565b80600b9080519060200190611e36929190612954565b5050565b611e42611ee3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea9906134c0565b60405180910390fd5b611ebb8161224f565b50565b611ec6611ee3565b80601060026101000a81548160ff02191690831515021790555050565b611eeb61258b565b73ffffffffffffffffffffffffffffffffffffffff16611f09611701565b73ffffffffffffffffffffffffffffffffffffffff1614611f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f56906135a0565b60405180910390fd5b565b60026009541415611fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9e90613620565b60405180910390fd5b6002600981905550565b600082611fbe8584612593565b1490509392505050565b600033905090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6120418282604051806020016040528060008152506125e9565b5050565b6001600981905550565b60008161205a6120ae565b11158015612069575060005482105b80156120a7575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006001905090565b600080829050806120c66120ae565b1161214e5760005481101561214d5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561214b575b6000811415612141576004600083600190039350838152602001908152602001600020549050612116565b8092505050612180565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861220d868684612686565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61231d6129da565b612339600460008481526020019081526020016000205461268f565b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612366611fc8565b8786866040518563ffffffff1660e01b815260040161238894939291906133ba565b602060405180830381600087803b1580156123a257600080fd5b505af19250505080156123d357506040513d601f19601f820116820180604052508101906123d09190612e44565b60015b61244d573d8060008114612403576040519150601f19603f3d011682016040523d82523d6000602084013e612408565b606091505b50600081511415612445576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546124af9061390e565b80601f01602080910402602001604051908101604052809291908181526020018280546124db9061390e565b80156125285780601f106124fd57610100808354040283529160200191612528565b820191906000526020600020905b81548152906001019060200180831161250b57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561257657600184039350600a81066030018453600a810490508061257157612576565b61254b565b50828103602084039350808452505050919050565b600033905090565b60008082905060005b84518110156125de576125c9828683815181106125bc576125bb613a3c565b5b6020026020010151612745565b915080806125d690613971565b91505061259c565b508091505092915050565b6125f38383612770565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461268157600080549050600083820390505b6126336000868380600101945086612340565b612669576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061262057816000541461267e57600080fd5b50505b505050565b60009392505050565b6126976129da565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b600081831061275d57612758828461292d565b612768565b612767838361292d565b5b905092915050565b60008054905060008214156127b1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127be60008483856121f0565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506128358361282660008660006121f6565b61282f85612944565b1761221e565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146128d657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061289b565b506000821415612912576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506129286000848385612249565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b8280546129609061390e565b90600052602060002090601f01602090048101928261298257600085556129c9565b82601f1061299b57805160ff19168380011785556129c9565b828001600101855582156129c9579182015b828111156129c85782518255916020019190600101906129ad565b5b5090506129d69190612a29565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115612a42576000816000905550600101612a2a565b5090565b6000612a59612a54846136c0565b61369b565b905082815260208101848484011115612a7557612a74613aa9565b5b612a808482856138cc565b509392505050565b6000612a9b612a96846136f1565b61369b565b905082815260208101848484011115612ab757612ab6613aa9565b5b612ac28482856138cc565b509392505050565b600081359050612ad981613e27565b92915050565b60008083601f840112612af557612af4613a9f565b5b8235905067ffffffffffffffff811115612b1257612b11613a9a565b5b602083019150836020820283011115612b2e57612b2d613aa4565b5b9250929050565b600081359050612b4481613e3e565b92915050565b600081359050612b5981613e55565b92915050565b600081359050612b6e81613e6c565b92915050565b600081519050612b8381613e6c565b92915050565b600082601f830112612b9e57612b9d613a9f565b5b8135612bae848260208601612a46565b91505092915050565b600082601f830112612bcc57612bcb613a9f565b5b8135612bdc848260208601612a88565b91505092915050565b600081359050612bf481613e83565b92915050565b600060208284031215612c1057612c0f613ab3565b5b6000612c1e84828501612aca565b91505092915050565b60008060408385031215612c3e57612c3d613ab3565b5b6000612c4c85828601612aca565b9250506020612c5d85828601612aca565b9150509250929050565b600080600060608486031215612c8057612c7f613ab3565b5b6000612c8e86828701612aca565b9350506020612c9f86828701612aca565b9250506040612cb086828701612be5565b9150509250925092565b60008060008060808587031215612cd457612cd3613ab3565b5b6000612ce287828801612aca565b9450506020612cf387828801612aca565b9350506040612d0487828801612be5565b925050606085013567ffffffffffffffff811115612d2557612d24613aae565b5b612d3187828801612b89565b91505092959194509250565b60008060408385031215612d5457612d53613ab3565b5b6000612d6285828601612aca565b9250506020612d7385828601612b35565b9150509250929050565b60008060408385031215612d9457612d93613ab3565b5b6000612da285828601612aca565b9250506020612db385828601612be5565b9150509250929050565b600060208284031215612dd357612dd2613ab3565b5b6000612de184828501612b35565b91505092915050565b600060208284031215612e0057612dff613ab3565b5b6000612e0e84828501612b4a565b91505092915050565b600060208284031215612e2d57612e2c613ab3565b5b6000612e3b84828501612b5f565b91505092915050565b600060208284031215612e5a57612e59613ab3565b5b6000612e6884828501612b74565b91505092915050565b600060208284031215612e8757612e86613ab3565b5b600082013567ffffffffffffffff811115612ea557612ea4613aae565b5b612eb184828501612bb7565b91505092915050565b600060208284031215612ed057612ecf613ab3565b5b6000612ede84828501612be5565b91505092915050565b60008060408385031215612efe57612efd613ab3565b5b6000612f0c85828601612be5565b9250506020612f1d85828601612aca565b9150509250929050565b600080600060408486031215612f4057612f3f613ab3565b5b6000612f4e86828701612be5565b935050602084013567ffffffffffffffff811115612f6f57612f6e613aae565b5b612f7b86828701612adf565b92509250509250925092565b6000612f938383613337565b60208301905092915050565b612fa88161384e565b82525050565b612fbf612fba8261384e565b6139ba565b82525050565b6000612fd082613732565b612fda8185613760565b9350612fe583613722565b8060005b83811015613016578151612ffd8882612f87565b975061300883613753565b925050600181019050612fe9565b5085935050505092915050565b61302c81613860565b82525050565b61303b8161386c565b82525050565b600061304c8261373d565b6130568185613771565b93506130668185602086016138db565b61306f81613ab8565b840191505092915050565b600061308582613748565b61308f8185613782565b935061309f8185602086016138db565b6130a881613ab8565b840191505092915050565b60006130be82613748565b6130c88185613793565b93506130d88185602086016138db565b80840191505092915050565b60006130f1603083613782565b91506130fc82613ad6565b604082019050919050565b6000613114601783613782565b915061311f82613b25565b602082019050919050565b6000613137602683613782565b915061314282613b4e565b604082019050919050565b600061315a602083613782565b915061316582613b9d565b602082019050919050565b600061317d601c83613782565b915061318882613bc6565b602082019050919050565b60006131a0600a83613782565b91506131ab82613bef565b602082019050919050565b60006131c3601c83613782565b91506131ce82613c18565b602082019050919050565b60006131e6601683613782565b91506131f182613c41565b602082019050919050565b6000613209602183613782565b915061321482613c6a565b604082019050919050565b600061322c600583613793565b915061323782613cb9565b600582019050919050565b600061324f602083613782565b915061325a82613ce2565b602082019050919050565b6000613272601d83613782565b915061327d82613d0b565b602082019050919050565b6000613295601c83613782565b91506132a082613d34565b602082019050919050565b60006132b8602083613782565b91506132c382613d5d565b602082019050919050565b60006132db601f83613782565b91506132e682613d86565b602082019050919050565b60006132fe602483613782565b915061330982613daf565b604082019050919050565b6000613321601c83613782565b915061332c82613dfe565b602082019050919050565b613340816138c2565b82525050565b61334f816138c2565b82525050565b60006133618284612fae565b60148201915081905092915050565b600061337c82856130b3565b915061338882846130b3565b91506133938261321f565b91508190509392505050565b60006020820190506133b46000830184612f9f565b92915050565b60006080820190506133cf6000830187612f9f565b6133dc6020830186612f9f565b6133e96040830185613346565b81810360608301526133fb8184613041565b905095945050505050565b600060208201905081810360008301526134208184612fc5565b905092915050565b600060208201905061343d6000830184613023565b92915050565b60006020820190506134586000830184613032565b92915050565b60006020820190508181036000830152613478818461307a565b905092915050565b60006020820190508181036000830152613499816130e4565b9050919050565b600060208201905081810360008301526134b981613107565b9050919050565b600060208201905081810360008301526134d98161312a565b9050919050565b600060208201905081810360008301526134f98161314d565b9050919050565b6000602082019050818103600083015261351981613170565b9050919050565b6000602082019050818103600083015261353981613193565b9050919050565b60006020820190508181036000830152613559816131b6565b9050919050565b60006020820190508181036000830152613579816131d9565b9050919050565b60006020820190508181036000830152613599816131fc565b9050919050565b600060208201905081810360008301526135b981613242565b9050919050565b600060208201905081810360008301526135d981613265565b9050919050565b600060208201905081810360008301526135f981613288565b9050919050565b60006020820190508181036000830152613619816132ab565b9050919050565b60006020820190508181036000830152613639816132ce565b9050919050565b60006020820190508181036000830152613659816132f1565b9050919050565b6000602082019050818103600083015261367981613314565b9050919050565b60006020820190506136956000830184613346565b92915050565b60006136a56136b6565b90506136b18282613940565b919050565b6000604051905090565b600067ffffffffffffffff8211156136db576136da613a6b565b5b6136e482613ab8565b9050602081019050919050565b600067ffffffffffffffff82111561370c5761370b613a6b565b5b61371582613ab8565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006137a9826138c2565b91506137b4836138c2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137e9576137e86139de565b5b828201905092915050565b60006137ff826138c2565b915061380a836138c2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613843576138426139de565b5b828202905092915050565b6000613859826138a2565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138f95780820151818401526020810190506138de565b83811115613908576000848401525b50505050565b6000600282049050600182168061392657607f821691505b6020821081141561393a57613939613a0d565b5b50919050565b61394982613ab8565b810181811067ffffffffffffffff8211171561396857613967613a6b565b5b80604052505050565b600061397c826138c2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139af576139ae6139de565b5b600182019050919050565b60006139c5826139cc565b9050919050565b60006139d782613ac9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b7f4554483a20696e73756666696369656e742066756e6473000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4554483a204d6178204e4654205065722057616c6c6574206578636565646564600082015250565b7f4554483a206f6f707320636f6e74726163742069732070617573656400000000600082015250565b7f576520536f6c646f757400000000000000000000000000000000000000000000600082015250565b7f4554483a2053616c65206861736e277420737461727465642079657400000000600082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f4554483a2057686974656c697374204d6178537570706c79206578636565646560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4554483a206d6178206d696e7420706572205478206578636565646564000000600082015250565b7f4554483a20596f7520617265206e6f742057686974656c697374656400000000600082015250565b7f4554483a2050726573616c65204861736e742774207374617274656420796574600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4554483a206d6178206d696e7420616d6f756e7420706572207478206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4554483a204655434b20636f6e74726163742069732070617573656400000000600082015250565b613e308161384e565b8114613e3b57600080fd5b50565b613e4781613860565b8114613e5257600080fd5b50565b613e5e8161386c565b8114613e6957600080fd5b50565b613e7581613876565b8114613e8057600080fd5b50565b613e8c816138c2565b8114613e9757600080fd5b5056fea26469706673582212206b2ddd94e228a4fe24fee7024feef748d42c518664c0d18895fa740ade6f233a64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061025b5760003560e01c80636c0360eb11610144578063bc63f02e116100b6578063dc33e6811161007a578063dc33e68114610862578063e268e4d31461089f578063e985e9c5146108c8578063f2c4ce1e14610905578063f2fde38b1461092e578063fea0e058146109575761025b565b8063bc63f02e1461077d578063bd7a1998146107a6578063bde0608a146107d1578063c87b56dd146107fa578063d5abeb01146108375761025b565b80638da5cb5b116101085780638da5cb5b1461069d578063940cd05b146106c857806395d89b41146106f1578063a0712d681461071c578063a22cb46514610738578063b88d4fde146107615761025b565b80636c0360eb146105b857806370a08231146105e3578063715018a6146106205780637cb64759146106375780638462151c146106605761025b565b806318160ddd116101dd57806344a0d68a116101a157806344a0d68a146104a857806351830227146104d157806355f804b3146104fc5780635a7adf7f146105255780635c975abb146105505780636352211e1461057b5761025b565b806318160ddd1461041057806323b872dd1461043b5780632eb4a7ab146104575780633ccfd60b1461048257806342842e0e1461048c5761025b565b8063081812fc11610224578063081812fc14610338578063081c8c4414610375578063095ea7b3146103a057806313faede6146103bc578063149835a0146103e75761025b565b806277ec051461026057806301ffc9a71461028b57806302329a29146102c8578063036e4cb5146102f157806306fdde031461030d575b600080fd5b34801561026c57600080fd5b50610275610980565b6040516102829190613680565b60405180910390f35b34801561029757600080fd5b506102b260048036038101906102ad9190612e17565b610986565b6040516102bf9190613428565b60405180910390f35b3480156102d457600080fd5b506102ef60048036038101906102ea9190612dbd565b610a18565b005b61030b60048036038101906103069190612f27565b610a3d565b005b34801561031957600080fd5b50610322610d00565b60405161032f919061345e565b60405180910390f35b34801561034457600080fd5b5061035f600480360381019061035a9190612eba565b610d92565b60405161036c919061339f565b60405180910390f35b34801561038157600080fd5b5061038a610e11565b604051610397919061345e565b60405180910390f35b6103ba60048036038101906103b59190612d7d565b610e9f565b005b3480156103c857600080fd5b506103d1610fe3565b6040516103de9190613680565b60405180910390f35b3480156103f357600080fd5b5061040e60048036038101906104099190612eba565b610fe9565b005b34801561041c57600080fd5b50610425610ffb565b6040516104329190613680565b60405180910390f35b61045560048036038101906104509190612c67565b611012565b005b34801561046357600080fd5b5061046c611337565b6040516104799190613443565b60405180910390f35b61048a61133d565b005b6104a660048036038101906104a19190612c67565b6113ab565b005b3480156104b457600080fd5b506104cf60048036038101906104ca9190612eba565b6113cb565b005b3480156104dd57600080fd5b506104e66113dd565b6040516104f39190613428565b60405180910390f35b34801561050857600080fd5b50610523600480360381019061051e9190612e71565b6113f0565b005b34801561053157600080fd5b5061053a611412565b6040516105479190613428565b60405180910390f35b34801561055c57600080fd5b50610565611425565b6040516105729190613428565b60405180910390f35b34801561058757600080fd5b506105a2600480360381019061059d9190612eba565b611438565b6040516105af919061339f565b60405180910390f35b3480156105c457600080fd5b506105cd61144a565b6040516105da919061345e565b60405180910390f35b3480156105ef57600080fd5b5061060a60048036038101906106059190612bfa565b6114d8565b6040516106179190613680565b60405180910390f35b34801561062c57600080fd5b50610635611591565b005b34801561064357600080fd5b5061065e60048036038101906106599190612dea565b6115a5565b005b34801561066c57600080fd5b5061068760048036038101906106829190612bfa565b6115b7565b6040516106949190613406565b60405180910390f35b3480156106a957600080fd5b506106b2611701565b6040516106bf919061339f565b60405180910390f35b3480156106d457600080fd5b506106ef60048036038101906106ea9190612dbd565b61172b565b005b3480156106fd57600080fd5b50610706611750565b604051610713919061345e565b60405180910390f35b61073660048036038101906107319190612eba565b6117e2565b005b34801561074457600080fd5b5061075f600480360381019061075a9190612d3d565b6119f1565b005b61077b60048036038101906107769190612cba565b611afc565b005b34801561078957600080fd5b506107a4600480360381019061079f9190612ee7565b611b6f565b005b3480156107b257600080fd5b506107bb611bec565b6040516107c89190613680565b60405180910390f35b3480156107dd57600080fd5b506107f860048036038101906107f39190612eba565b611bf2565b005b34801561080657600080fd5b50610821600480360381019061081c9190612eba565b611c04565b60405161082e919061345e565b60405180910390f35b34801561084357600080fd5b5061084c611d5a565b6040516108599190613680565b60405180910390f35b34801561086e57600080fd5b5061088960048036038101906108849190612bfa565b611d60565b6040516108969190613680565b60405180910390f35b3480156108ab57600080fd5b506108c660048036038101906108c19190612eba565b611d72565b005b3480156108d457600080fd5b506108ef60048036038101906108ea9190612c27565b611d84565b6040516108fc9190613428565b60405180910390f35b34801561091157600080fd5b5061092c60048036038101906109279190612e71565b611e18565b005b34801561093a57600080fd5b5061095560048036038101906109509190612bfa565b611e3a565b005b34801561096357600080fd5b5061097e60048036038101906109799190612dbd565b611ebe565b005b600f5481565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109e157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a115750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610a20611ee3565b80601060006101000a81548160ff02191690831515021790555050565b610a45611f61565b601060009054906101000a900460ff1615610a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8c90613500565b60405180910390fd5b601060029054906101000a900460ff16610ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adb90613600565b60405180910390fd5b610b58828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060115433604051602001610b3d9190613355565b60405160208183030381529060405280519060200120611fb1565b610b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8e906135e0565b60405180910390fd5b600f5483610bab610ba6611fc8565b611fd0565b610bb5919061379e565b1115610bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bed906134e0565b60405180910390fd5b600f54831115610c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c32906135c0565b60405180910390fd5b600d5483610c47610ffb565b610c51919061379e565b1115610c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8990613580565b60405180910390fd5b82600c54610ca091906137f4565b341015610ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd9906134a0565b60405180910390fd5b610cf3610ced611fc8565b84612027565b610cfb612045565b505050565b606060028054610d0f9061390e565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3b9061390e565b8015610d885780601f10610d5d57610100808354040283529160200191610d88565b820191906000526020600020905b815481529060010190602001808311610d6b57829003601f168201915b5050505050905090565b6000610d9d8261204f565b610dd3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b8054610e1e9061390e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4a9061390e565b8015610e975780601f10610e6c57610100808354040283529160200191610e97565b820191906000526020600020905b815481529060010190602001808311610e7a57829003601f168201915b505050505081565b6000610eaa82611438565b90508073ffffffffffffffffffffffffffffffffffffffff16610ecb611fc8565b73ffffffffffffffffffffffffffffffffffffffff1614610f2e57610ef781610ef2611fc8565b611d84565b610f2d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b610ff1611ee3565b80600d8190555050565b60006110056120ae565b6001546000540303905090565b600061101d826120b7565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611084576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061109084612185565b915091506110a681876110a1611fc8565b6121ac565b6110f2576110bb866110b6611fc8565b611d84565b6110f1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611159576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61116686868660016121f0565b801561117157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061123f8561121b8888876121f6565b7c02000000000000000000000000000000000000000000000000000000001761221e565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156112c75760006001850190506000600460008381526020019081526020016000205414156112c55760005481146112c4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461132f8686866001612249565b505050505050565b60115481565b611345611ee3565b61134d611f61565b600047905061135a611fc8565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561139f573d6000803e3d6000fd5b50506113a9612045565b565b6113c683838360405180602001604052806000815250611afc565b505050565b6113d3611ee3565b80600c8190555050565b601060019054906101000a900460ff1681565b6113f8611ee3565b80600a908051906020019061140e929190612954565b5050565b601060029054906101000a900460ff1681565b601060009054906101000a900460ff1681565b6000611443826120b7565b9050919050565b600a80546114579061390e565b80601f01602080910402602001604051908101604052809291908181526020018280546114839061390e565b80156114d05780601f106114a5576101008083540402835291602001916114d0565b820191906000526020600020905b8154815290600101906020018083116114b357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611540576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611599611ee3565b6115a3600061224f565b565b6115ad611ee3565b8060118190555050565b606060008060006115c7856114d8565b905060008167ffffffffffffffff8111156115e5576115e4613a6b565b5b6040519080825280602002602001820160405280156116135781602001602082028036833780820191505090505b50905061161e6129da565b60006116286120ae565b90505b8386146116f35761163b81612315565b915081604001511561164c576116e8565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461168c57816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156116e757808387806001019850815181106116da576116d9613a3c565b5b6020026020010181815250505b5b80600101905061162b565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611733611ee3565b80601060016101000a81548160ff02191690831515021790555050565b60606003805461175f9061390e565b80601f016020809104026020016040519081016040528092919081815260200182805461178b9061390e565b80156117d85780601f106117ad576101008083540402835291602001916117d8565b820191906000526020600020905b8154815290600101906020018083116117bb57829003601f168201915b5050505050905090565b6117ea611f61565b601060009054906101000a900460ff161561183a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183190613660565b60405180910390fd5b601060029054906101000a900460ff161561188a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188190613540565b60405180910390fd5b600e548111156118cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c690613640565b60405180910390fd5b600d54816118db610ffb565b6118e5919061379e565b1115611926576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191d90613520565b60405180910390fd5b600e548161193a611935611fc8565b611fd0565b611944919061379e565b1115611985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197c906134e0565b60405180910390fd5b80600c5461199391906137f4565b3410156119d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cc906134a0565b60405180910390fd5b6119e66119e0611fc8565b82612027565b6119ee612045565b50565b80600760006119fe611fc8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611aab611fc8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611af09190613428565b60405180910390a35050565b611b07848484611012565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b6957611b3284848484612340565b611b68576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611b77611ee3565b611b7f611f61565b600d5482611b8b610ffb565b611b95919061379e565b1115611bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcd90613560565b60405180910390fd5b611be08183612027565b611be8612045565b5050565b600e5481565b611bfa611ee3565b80600f8190555050565b6060611c0f8261204f565b611c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4590613480565b60405180910390fd5b60001515601060019054906101000a900460ff1615151415611cfc57600b8054611c779061390e565b80601f0160208091040260200160405190810160405280929190818152602001828054611ca39061390e565b8015611cf05780601f10611cc557610100808354040283529160200191611cf0565b820191906000526020600020905b815481529060010190602001808311611cd357829003601f168201915b50505050509050611d55565b6000611d066124a0565b90506000815111611d265760405180602001604052806000815250611d51565b80611d3084612532565b604051602001611d41929190613370565b6040516020818303038152906040525b9150505b919050565b600d5481565b6000611d6b82611fd0565b9050919050565b611d7a611ee3565b80600e8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e20611ee3565b80600b9080519060200190611e36929190612954565b5050565b611e42611ee3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea9906134c0565b60405180910390fd5b611ebb8161224f565b50565b611ec6611ee3565b80601060026101000a81548160ff02191690831515021790555050565b611eeb61258b565b73ffffffffffffffffffffffffffffffffffffffff16611f09611701565b73ffffffffffffffffffffffffffffffffffffffff1614611f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f56906135a0565b60405180910390fd5b565b60026009541415611fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9e90613620565b60405180910390fd5b6002600981905550565b600082611fbe8584612593565b1490509392505050565b600033905090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6120418282604051806020016040528060008152506125e9565b5050565b6001600981905550565b60008161205a6120ae565b11158015612069575060005482105b80156120a7575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006001905090565b600080829050806120c66120ae565b1161214e5760005481101561214d5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561214b575b6000811415612141576004600083600190039350838152602001908152602001600020549050612116565b8092505050612180565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861220d868684612686565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61231d6129da565b612339600460008481526020019081526020016000205461268f565b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612366611fc8565b8786866040518563ffffffff1660e01b815260040161238894939291906133ba565b602060405180830381600087803b1580156123a257600080fd5b505af19250505080156123d357506040513d601f19601f820116820180604052508101906123d09190612e44565b60015b61244d573d8060008114612403576040519150601f19603f3d011682016040523d82523d6000602084013e612408565b606091505b50600081511415612445576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546124af9061390e565b80601f01602080910402602001604051908101604052809291908181526020018280546124db9061390e565b80156125285780601f106124fd57610100808354040283529160200191612528565b820191906000526020600020905b81548152906001019060200180831161250b57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561257657600184039350600a81066030018453600a810490508061257157612576565b61254b565b50828103602084039350808452505050919050565b600033905090565b60008082905060005b84518110156125de576125c9828683815181106125bc576125bb613a3c565b5b6020026020010151612745565b915080806125d690613971565b91505061259c565b508091505092915050565b6125f38383612770565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461268157600080549050600083820390505b6126336000868380600101945086612340565b612669576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061262057816000541461267e57600080fd5b50505b505050565b60009392505050565b6126976129da565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b600081831061275d57612758828461292d565b612768565b612767838361292d565b5b905092915050565b60008054905060008214156127b1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127be60008483856121f0565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506128358361282660008660006121f6565b61282f85612944565b1761221e565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146128d657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061289b565b506000821415612912576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506129286000848385612249565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b8280546129609061390e565b90600052602060002090601f01602090048101928261298257600085556129c9565b82601f1061299b57805160ff19168380011785556129c9565b828001600101855582156129c9579182015b828111156129c85782518255916020019190600101906129ad565b5b5090506129d69190612a29565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115612a42576000816000905550600101612a2a565b5090565b6000612a59612a54846136c0565b61369b565b905082815260208101848484011115612a7557612a74613aa9565b5b612a808482856138cc565b509392505050565b6000612a9b612a96846136f1565b61369b565b905082815260208101848484011115612ab757612ab6613aa9565b5b612ac28482856138cc565b509392505050565b600081359050612ad981613e27565b92915050565b60008083601f840112612af557612af4613a9f565b5b8235905067ffffffffffffffff811115612b1257612b11613a9a565b5b602083019150836020820283011115612b2e57612b2d613aa4565b5b9250929050565b600081359050612b4481613e3e565b92915050565b600081359050612b5981613e55565b92915050565b600081359050612b6e81613e6c565b92915050565b600081519050612b8381613e6c565b92915050565b600082601f830112612b9e57612b9d613a9f565b5b8135612bae848260208601612a46565b91505092915050565b600082601f830112612bcc57612bcb613a9f565b5b8135612bdc848260208601612a88565b91505092915050565b600081359050612bf481613e83565b92915050565b600060208284031215612c1057612c0f613ab3565b5b6000612c1e84828501612aca565b91505092915050565b60008060408385031215612c3e57612c3d613ab3565b5b6000612c4c85828601612aca565b9250506020612c5d85828601612aca565b9150509250929050565b600080600060608486031215612c8057612c7f613ab3565b5b6000612c8e86828701612aca565b9350506020612c9f86828701612aca565b9250506040612cb086828701612be5565b9150509250925092565b60008060008060808587031215612cd457612cd3613ab3565b5b6000612ce287828801612aca565b9450506020612cf387828801612aca565b9350506040612d0487828801612be5565b925050606085013567ffffffffffffffff811115612d2557612d24613aae565b5b612d3187828801612b89565b91505092959194509250565b60008060408385031215612d5457612d53613ab3565b5b6000612d6285828601612aca565b9250506020612d7385828601612b35565b9150509250929050565b60008060408385031215612d9457612d93613ab3565b5b6000612da285828601612aca565b9250506020612db385828601612be5565b9150509250929050565b600060208284031215612dd357612dd2613ab3565b5b6000612de184828501612b35565b91505092915050565b600060208284031215612e0057612dff613ab3565b5b6000612e0e84828501612b4a565b91505092915050565b600060208284031215612e2d57612e2c613ab3565b5b6000612e3b84828501612b5f565b91505092915050565b600060208284031215612e5a57612e59613ab3565b5b6000612e6884828501612b74565b91505092915050565b600060208284031215612e8757612e86613ab3565b5b600082013567ffffffffffffffff811115612ea557612ea4613aae565b5b612eb184828501612bb7565b91505092915050565b600060208284031215612ed057612ecf613ab3565b5b6000612ede84828501612be5565b91505092915050565b60008060408385031215612efe57612efd613ab3565b5b6000612f0c85828601612be5565b9250506020612f1d85828601612aca565b9150509250929050565b600080600060408486031215612f4057612f3f613ab3565b5b6000612f4e86828701612be5565b935050602084013567ffffffffffffffff811115612f6f57612f6e613aae565b5b612f7b86828701612adf565b92509250509250925092565b6000612f938383613337565b60208301905092915050565b612fa88161384e565b82525050565b612fbf612fba8261384e565b6139ba565b82525050565b6000612fd082613732565b612fda8185613760565b9350612fe583613722565b8060005b83811015613016578151612ffd8882612f87565b975061300883613753565b925050600181019050612fe9565b5085935050505092915050565b61302c81613860565b82525050565b61303b8161386c565b82525050565b600061304c8261373d565b6130568185613771565b93506130668185602086016138db565b61306f81613ab8565b840191505092915050565b600061308582613748565b61308f8185613782565b935061309f8185602086016138db565b6130a881613ab8565b840191505092915050565b60006130be82613748565b6130c88185613793565b93506130d88185602086016138db565b80840191505092915050565b60006130f1603083613782565b91506130fc82613ad6565b604082019050919050565b6000613114601783613782565b915061311f82613b25565b602082019050919050565b6000613137602683613782565b915061314282613b4e565b604082019050919050565b600061315a602083613782565b915061316582613b9d565b602082019050919050565b600061317d601c83613782565b915061318882613bc6565b602082019050919050565b60006131a0600a83613782565b91506131ab82613bef565b602082019050919050565b60006131c3601c83613782565b91506131ce82613c18565b602082019050919050565b60006131e6601683613782565b91506131f182613c41565b602082019050919050565b6000613209602183613782565b915061321482613c6a565b604082019050919050565b600061322c600583613793565b915061323782613cb9565b600582019050919050565b600061324f602083613782565b915061325a82613ce2565b602082019050919050565b6000613272601d83613782565b915061327d82613d0b565b602082019050919050565b6000613295601c83613782565b91506132a082613d34565b602082019050919050565b60006132b8602083613782565b91506132c382613d5d565b602082019050919050565b60006132db601f83613782565b91506132e682613d86565b602082019050919050565b60006132fe602483613782565b915061330982613daf565b604082019050919050565b6000613321601c83613782565b915061332c82613dfe565b602082019050919050565b613340816138c2565b82525050565b61334f816138c2565b82525050565b60006133618284612fae565b60148201915081905092915050565b600061337c82856130b3565b915061338882846130b3565b91506133938261321f565b91508190509392505050565b60006020820190506133b46000830184612f9f565b92915050565b60006080820190506133cf6000830187612f9f565b6133dc6020830186612f9f565b6133e96040830185613346565b81810360608301526133fb8184613041565b905095945050505050565b600060208201905081810360008301526134208184612fc5565b905092915050565b600060208201905061343d6000830184613023565b92915050565b60006020820190506134586000830184613032565b92915050565b60006020820190508181036000830152613478818461307a565b905092915050565b60006020820190508181036000830152613499816130e4565b9050919050565b600060208201905081810360008301526134b981613107565b9050919050565b600060208201905081810360008301526134d98161312a565b9050919050565b600060208201905081810360008301526134f98161314d565b9050919050565b6000602082019050818103600083015261351981613170565b9050919050565b6000602082019050818103600083015261353981613193565b9050919050565b60006020820190508181036000830152613559816131b6565b9050919050565b60006020820190508181036000830152613579816131d9565b9050919050565b60006020820190508181036000830152613599816131fc565b9050919050565b600060208201905081810360008301526135b981613242565b9050919050565b600060208201905081810360008301526135d981613265565b9050919050565b600060208201905081810360008301526135f981613288565b9050919050565b60006020820190508181036000830152613619816132ab565b9050919050565b60006020820190508181036000830152613639816132ce565b9050919050565b60006020820190508181036000830152613659816132f1565b9050919050565b6000602082019050818103600083015261367981613314565b9050919050565b60006020820190506136956000830184613346565b92915050565b60006136a56136b6565b90506136b18282613940565b919050565b6000604051905090565b600067ffffffffffffffff8211156136db576136da613a6b565b5b6136e482613ab8565b9050602081019050919050565b600067ffffffffffffffff82111561370c5761370b613a6b565b5b61371582613ab8565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006137a9826138c2565b91506137b4836138c2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137e9576137e86139de565b5b828201905092915050565b60006137ff826138c2565b915061380a836138c2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613843576138426139de565b5b828202905092915050565b6000613859826138a2565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138f95780820151818401526020810190506138de565b83811115613908576000848401525b50505050565b6000600282049050600182168061392657607f821691505b6020821081141561393a57613939613a0d565b5b50919050565b61394982613ab8565b810181811067ffffffffffffffff8211171561396857613967613a6b565b5b80604052505050565b600061397c826138c2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139af576139ae6139de565b5b600182019050919050565b60006139c5826139cc565b9050919050565b60006139d782613ac9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b7f4554483a20696e73756666696369656e742066756e6473000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4554483a204d6178204e4654205065722057616c6c6574206578636565646564600082015250565b7f4554483a206f6f707320636f6e74726163742069732070617573656400000000600082015250565b7f576520536f6c646f757400000000000000000000000000000000000000000000600082015250565b7f4554483a2053616c65206861736e277420737461727465642079657400000000600082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f4554483a2057686974656c697374204d6178537570706c79206578636565646560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4554483a206d6178206d696e7420706572205478206578636565646564000000600082015250565b7f4554483a20596f7520617265206e6f742057686974656c697374656400000000600082015250565b7f4554483a2050726573616c65204861736e742774207374617274656420796574600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4554483a206d6178206d696e7420616d6f756e7420706572207478206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4554483a204655434b20636f6e74726163742069732070617573656400000000600082015250565b613e308161384e565b8114613e3b57600080fd5b50565b613e4781613860565b8114613e5257600080fd5b50565b613e5e8161386c565b8114613e6957600080fd5b50565b613e7581613876565b8114613e8057600080fd5b50565b613e8c816138c2565b8114613e9757600080fd5b5056fea26469706673582212206b2ddd94e228a4fe24fee7024feef748d42c518664c0d18895fa740ade6f233a64736f6c63430008070033

Deployed Bytecode Sourcemap

188:5697:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;420:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9155:630:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5428:73:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1507:747;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10039:98:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16360:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;281:28:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15812:398:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;314:29:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4968:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5894:317:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19903:2764;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;553:25:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5715:167;;;:::i;:::-;;22758:187:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4831:80:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;489:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5096:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;522:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;458;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11391:150:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;255:21:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7045:230:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1824:101:4;;;;;;;;;;;;;:::i;:::-;;4361:106:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3313:881;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1194:85:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4216:78:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10208:102:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;909:553:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16901:231:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23526:396;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2309:223:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;384:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4666:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2584:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;348:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3141:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4518:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17282:162:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5228:120:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2074:198:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5576:90:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;420:33;;;;:::o;9155:630:1:-;9240:4;9573:10;9558:25;;:11;:25;;;;:101;;;;9649:10;9634:25;;:11;:25;;;;9558:101;:177;;;;9725:10;9710:25;;:11;:25;;;;9558:177;9539:196;;9155:630;;;:::o;5428:73:6:-;1087:13:4;:11;:13::i;:::-;5489:6:6::1;5480;;:15;;;;;;;;;;;;;;;;;;5428:73:::0;:::o;1507:747::-;2261:21:5;:19;:21::i;:::-;1620:6:6::1;;;;;;;;;;;1619:7;1611:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;1674:7;;;;;;;;;;;1666:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;1733:84;1752:11;;1733:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1765:10;;1804;1787:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;1777:39;;;;;;1733:18;:84::i;:::-;1725:125;;;;;;;;;;;;:::i;:::-;;;;;;;;;1912:14;;1902:6;1865:34;1879:19;:17;:19::i;:::-;1865:13;:34::i;:::-;:43;;;;:::i;:::-;:61;;1857:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;1988:14;;1978:6;:24;;1970:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;2077:9;;2067:6;2051:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;2043:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;2159:6;2152:4;;:13;;;;:::i;:::-;2139:9;:26;;2131:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;2204:38;2214:19;:17;:19::i;:::-;2235:6;2204:9;:38::i;:::-;2303:20:5::0;:18;:20::i;:::-;1507:747:6;;;:::o;10039:98:1:-;10093:13;10125:5;10118:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10039:98;:::o;16360:214::-;16436:7;16460:16;16468:7;16460;:16::i;:::-;16455:64;;16485:34;;;;;;;;;;;;;;16455:64;16537:15;:24;16553:7;16537:24;;;;;;;;;;;:30;;;;;;;;;;;;16530:37;;16360:214;;;:::o;281:28:6:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;15812:398:1:-;15900:13;15916:16;15924:7;15916;:16::i;:::-;15900:32;;15970:5;15947:28;;:19;:17;:19::i;:::-;:28;;;15943:172;;15994:44;16011:5;16018:19;:17;:19::i;:::-;15994:16;:44::i;:::-;15989:126;;16065:35;;;;;;;;;;;;;;15989:126;15943:172;16158:2;16125:15;:24;16141:7;16125:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;16195:7;16191:2;16175:28;;16184:5;16175:28;;;;;;;;;;;;15890:320;15812:398;;:::o;314:29:6:-;;;;:::o;4968:94::-;1087:13:4;:11;:13::i;:::-;5046:10:6::1;5034:9;:22;;;;4968:94:::0;:::o;5894:317:1:-;5955:7;6179:15;:13;:15::i;:::-;6164:12;;6148:13;;:28;:46;6141:53;;5894:317;:::o;19903:2764::-;20040:27;20070;20089:7;20070:18;:27::i;:::-;20040:57;;20153:4;20112:45;;20128:19;20112:45;;;20108:86;;20166:28;;;;;;;;;;;;;;20108:86;20206:27;20235:23;20262:35;20289:7;20262:26;:35::i;:::-;20205:92;;;;20394:68;20419:15;20436:4;20442:19;:17;:19::i;:::-;20394:24;:68::i;:::-;20389:179;;20481:43;20498:4;20504:19;:17;:19::i;:::-;20481:16;:43::i;:::-;20476:92;;20533:35;;;;;;;;;;;;;;20476:92;20389:179;20597:1;20583:16;;:2;:16;;;20579:52;;;20608:23;;;;;;;;;;;;;;20579:52;20642:43;20664:4;20670:2;20674:7;20683:1;20642:21;:43::i;:::-;20774:15;20771:157;;;20912:1;20891:19;20884:30;20771:157;21300:18;:24;21319:4;21300:24;;;;;;;;;;;;;;;;21298:26;;;;;;;;;;;;21368:18;:22;21387:2;21368:22;;;;;;;;;;;;;;;;21366:24;;;;;;;;;;;21683:143;21719:2;21767:45;21782:4;21788:2;21792:19;21767:14;:45::i;:::-;2392:8;21739:73;21683:18;:143::i;:::-;21654:17;:26;21672:7;21654:26;;;;;;;;;;;:172;;;;21994:1;2392:8;21943:19;:47;:52;21939:617;;;22015:19;22047:1;22037:7;:11;22015:33;;22202:1;22168:17;:30;22186:11;22168:30;;;;;;;;;;;;:35;22164:378;;;22304:13;;22289:11;:28;22285:239;;22482:19;22449:17;:30;22467:11;22449:30;;;;;;;;;;;:52;;;;22285:239;22164:378;21997:559;21939:617;22600:7;22596:2;22581:27;;22590:4;22581:27;;;;;;;;;;;;22618:42;22639:4;22645:2;22649:7;22658:1;22618:20;:42::i;:::-;20030:2637;;;19903:2764;;;:::o;553:25:6:-;;;;:::o;5715:167::-;1087:13:4;:11;:13::i;:::-;2261:21:5::1;:19;:21::i;:::-;5782:15:6::2;5800:21;5782:39;;5838:19;:17;:19::i;:::-;5830:37;;:46;5868:7;5830:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;5773:109;2303:20:5::1;:18;:20::i;:::-;5715:167:6:o:0;22758:187:1:-;22899:39;22916:4;22922:2;22926:7;22899:39;;;;;;;;;;;;:16;:39::i;:::-;22758:187;;;:::o;4831:80:6:-;1087:13:4;:11;:13::i;:::-;4897:8:6::1;4890:4;:15;;;;4831:80:::0;:::o;489:28::-;;;;;;;;;;;;;:::o;5096:98::-;1087:13:4;:11;:13::i;:::-;5177:11:6::1;5167:7;:21;;;;;;;;;;;;:::i;:::-;;5096:98:::0;:::o;522:26::-;;;;;;;;;;;;;:::o;458:::-;;;;;;;;;;;;;:::o;11391:150:1:-;11463:7;11505:27;11524:7;11505:18;:27::i;:::-;11482:52;;11391:150;;;:::o;255:21:6:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7045:230:1:-;7117:7;7157:1;7140:19;;:5;:19;;;7136:60;;;7168:28;;;;;;;;;;;;;;7136:60;1360:13;7213:18;:25;7232:5;7213:25;;;;;;;;;;;;;;;;:55;7206:62;;7045:230;;;:::o;1824:101:4:-;1087:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;:::-;1824:101::o:0;4361:106:6:-;1087:13:4;:11;:13::i;:::-;4448:11:6::1;4435:10;:24;;;;4361:106:::0;:::o;3313:881::-;3372:16;3426:19;3460:25;3500:22;3525:16;3535:5;3525:9;:16::i;:::-;3500:41;;3556:25;3598:14;3584:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3556:57;;3628:31;;:::i;:::-;3679:9;3691:15;:13;:15::i;:::-;3679:27;;3674:472;3723:14;3708:11;:29;3674:472;;3775:15;3788:1;3775:12;:15::i;:::-;3763:27;;3813:9;:16;;;3809:73;;;3854:8;;3809:73;3930:1;3904:28;;:9;:14;;;:28;;;3900:111;;3977:9;:14;;;3957:34;;3900:111;4054:5;4033:26;;:17;:26;;;4029:102;;;4110:1;4084:8;4093:13;;;;;;4084:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;4029:102;3674:472;3739:3;;;;;3674:472;;;;4167:8;4160:15;;;;;;;3313:881;;;:::o;1194:85:4:-;1240:7;1266:6;;;;;;;;;;;1259:13;;1194:85;:::o;4216:78:6:-;1087:13:4;:11;:13::i;:::-;4282:6:6::1;4271:8;;:17;;;;;;;;;;;;;;;;;;4216:78:::0;:::o;10208:102:1:-;10264:13;10296:7;10289:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10208:102;:::o;909:553:6:-;2261:21:5;:19;:21::i;:::-;983:6:6::1;;;;;;;;;;;982:7;974:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;1038:7;;;;;;;;;;;1037:8;1029:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;1103:12;;1093:6;:22;;1085:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;1197:9;;1187:6;1171:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;1163:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;1283:12;;1273:6;1236:34;1250:19;:17;:19::i;:::-;1236:13;:34::i;:::-;:43;;;;:::i;:::-;:59;;1228:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;1367:6;1360:4;;:13;;;;:::i;:::-;1347:9;:26;;1339:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;1412:38;1422:19;:17;:19::i;:::-;1443:6;1412:9;:38::i;:::-;2303:20:5::0;:18;:20::i;:::-;909:553:6;:::o;16901:231:1:-;17047:8;16995:18;:39;17014:19;:17;:19::i;:::-;16995:39;;;;;;;;;;;;;;;:49;17035:8;16995:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;17106:8;17070:55;;17085:19;:17;:19::i;:::-;17070:55;;;17116:8;17070:55;;;;;;:::i;:::-;;;;;;;;16901:231;;:::o;23526:396::-;23695:31;23708:4;23714:2;23718:7;23695:12;:31::i;:::-;23758:1;23740:2;:14;;;:19;23736:180;;23778:56;23809:4;23815:2;23819:7;23828:5;23778:30;:56::i;:::-;23773:143;;23861:40;;;;;;;;;;;;;;23773:143;23736:180;23526:396;;;;:::o;2309:223:6:-;1087:13:4;:11;:13::i;:::-;2261:21:5::1;:19;:21::i;:::-;2444:9:6::2;;2429:11;2413:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;2405:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;2491:35;2501:11;2514;2491:9;:35::i;:::-;2303:20:5::1;:18;:20::i;:::-;2309:223:6::0;;:::o;384:31::-;;;;:::o;4666:96::-;1087:13:4;:11;:13::i;:::-;4750:6:6::1;4733:14;:23;;;;4666:96:::0;:::o;2584:492::-;2682:13;2723:16;2731:7;2723;:16::i;:::-;2707:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;2833:5;2821:17;;:8;;;;;;;;;;;:17;;;2818:62;;;2858:14;2851:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2818:62;2888:28;2919:10;:8;:10::i;:::-;2888:41;;2974:1;2949:14;2943:28;:32;:127;;;;;;;;;;;;;;;;;3011:14;3027:18;3037:7;3027:9;:18::i;:::-;2994:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2943:127;2936:134;;;2584:492;;;;:::o;348:31::-;;;;:::o;3141:107::-;3199:7;3222:20;3236:5;3222:13;:20::i;:::-;3215:27;;3141:107;;;:::o;4518:92::-;1087:13:4;:11;:13::i;:::-;4598:6:6::1;4583:12;:21;;;;4518:92:::0;:::o;17282:162:1:-;17379:4;17402:18;:25;17421:5;17402:25;;;;;;;;;;;;;;;:35;17428:8;17402:35;;;;;;;;;;;;;;;;;;;;;;;;;17395:42;;17282:162;;;;:::o;5228:120:6:-;1087:13:4;:11;:13::i;:::-;5327:15:6::1;5310:14;:32;;;;;;;;;;;;:::i;:::-;;5228:120:::0;:::o;2074:198:4:-;1087:13;:11;:13::i;:::-;2182:1:::1;2162:22;;:8;:22;;;;2154:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2237:28;2256:8;2237:18;:28::i;:::-;2074:198:::0;:::o;5576:90:6:-;1087:13:4;:11;:13::i;:::-;5652:6:6::1;5642:7;;:16;;;;;;;;;;;;;;;;;;5576:90:::0;:::o;1352:130:4:-;1426:12;:10;:12::i;:::-;1415:23;;:7;:5;:7::i;:::-;:23;;;1407:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1352:130::o;2336:287:5:-;1759:1;2468:7;;:19;;2460:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1759:1;2598:7;:18;;;;2336:287::o;1156:184:3:-;1277:4;1329;1300:25;1313:5;1320:4;1300:12;:25::i;:::-;:33;1293:40;;1156:184;;;;;:::o;39437:103:1:-;39497:7;39523:10;39516:17;;39437:103;:::o;7352:176::-;7413:7;1360:13;1495:2;7440:18;:25;7459:5;7440:25;;;;;;;;;;;;;;;;:50;;7439:82;7432:89;;7352:176;;;:::o;33423:110::-;33499:27;33509:2;33513:8;33499:27;;;;;;;;;;;;:9;:27::i;:::-;33423:110;;:::o;2629:209:5:-;1716:1;2809:7;:22;;;;2629:209::o;17693:277:1:-;17758:4;17812:7;17793:15;:13;:15::i;:::-;:26;;:65;;;;;17845:13;;17835:7;:23;17793:65;:151;;;;;17943:1;2118:8;17895:17;:26;17913:7;17895:26;;;;;;;;;;;;:44;:49;17793:151;17774:170;;17693:277;;;:::o;764:101:6:-;829:7;856:1;849:8;;764:101;:::o;12515:1249:1:-;12582:7;12601:12;12616:7;12601:22;;12681:4;12662:15;:13;:15::i;:::-;:23;12658:1042;;12714:13;;12707:4;:20;12703:997;;;12751:14;12768:17;:23;12786:4;12768:23;;;;;;;;;;;;12751:40;;12883:1;2118:8;12855:6;:24;:29;12851:831;;;13510:111;13527:1;13517:6;:11;13510:111;;;13569:17;:25;13587:6;;;;;;;13569:25;;;;;;;;;;;;13560:34;;13510:111;;;13653:6;13646:13;;;;;;12851:831;12729:971;12703:997;12658:1042;13726:31;;;;;;;;;;;;;;12515:1249;;;;:::o;18828:474::-;18927:27;18956:23;18995:38;19036:15;:24;19052:7;19036:24;;;;;;;;;;;18995:65;;19210:18;19187:41;;19266:19;19260:26;19241:45;;19173:123;18828:474;;;:::o;18074:646::-;18219:11;18381:16;18374:5;18370:28;18361:37;;18539:16;18528:9;18524:32;18511:45;;18687:15;18676:9;18673:30;18665:5;18654:9;18651:20;18648:56;18638:66;;18074:646;;;;;:::o;24566:154::-;;;;;:::o;38764:304::-;38895:7;38914:16;2513:3;38940:19;:41;;38914:68;;2513:3;39007:31;39018:4;39024:2;39028:9;39007:10;:31::i;:::-;38999:40;;:62;;38992:69;;;38764:304;;;;;:::o;14297:443::-;14377:14;14542:16;14535:5;14531:28;14522:37;;14717:5;14703:11;14678:23;14674:41;14671:52;14664:5;14661:63;14651:73;;14297:443;;;;:::o;25367:153::-;;;;;:::o;2426:187:4:-;2499:16;2518:6;;;;;;;;;;;2499:25;;2543:8;2534:6;;:17;;;;;;;;;;;;;;;;;;2597:8;2566:40;;2587:8;2566:40;;;;;;;;;;;;2489:124;2426:187;:::o;11979:159:1:-;12047:21;;:::i;:::-;12087:44;12106:17;:24;12124:5;12106:24;;;;;;;;;;;;12087:18;:44::i;:::-;12080:51;;11979:159;;;:::o;25948:697::-;26106:4;26151:2;26126:45;;;26172:19;:17;:19::i;:::-;26193:4;26199:7;26208:5;26126:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;26122:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26421:1;26404:6;:13;:18;26400:229;;;26449:40;;;;;;;;;;;;;;26400:229;26589:6;26583:13;26574:6;26570:2;26566:15;26559:38;26122:517;26292:54;;;26282:64;;;:6;:64;;;;26275:71;;;25948:697;;;;;;:::o;654:102:6:-;714:13;743:7;736:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;654:102;:::o;39637:1708:1:-;39702:17;40130:4;40123;40117:11;40113:22;40220:1;40214:4;40207:15;40293:4;40290:1;40286:12;40279:19;;40373:1;40368:3;40361:14;40474:3;40708:5;40690:419;40716:1;40690:419;;;40755:1;40750:3;40746:11;40739:18;;40923:2;40917:4;40913:13;40909:2;40905:22;40900:3;40892:36;41015:2;41009:4;41005:13;40997:21;;41080:4;41070:25;;41088:5;;41070:25;40690:419;;;40694:21;41146:3;41141;41137:13;41259:4;41254:3;41250:14;41243:21;;41322:6;41317:3;41310:19;39740:1599;;;39637:1708;;;:::o;640:96:0:-;693:7;719:10;712:17;;640:96;:::o;1994:290:3:-;2077:7;2096:20;2119:4;2096:27;;2138:9;2133:116;2157:5;:12;2153:1;:16;2133:116;;;2205:33;2215:12;2229:5;2235:1;2229:8;;;;;;;;:::i;:::-;;;;;;;;2205:9;:33::i;:::-;2190:48;;2171:3;;;;;:::i;:::-;;;;2133:116;;;;2265:12;2258:19;;;1994:290;;;;:::o;32675:669:1:-;32801:19;32807:2;32811:8;32801:5;:19::i;:::-;32877:1;32859:2;:14;;;:19;32855:473;;32898:11;32912:13;;32898:27;;32943:13;32965:8;32959:3;:14;32943:30;;32991:229;33021:62;33060:1;33064:2;33068:7;;;;;;33077:5;33021:30;:62::i;:::-;33016:165;;33118:40;;;;;;;;;;;;;;33016:165;33215:3;33207:5;:11;32991:229;;33300:3;33283:13;;:20;33279:34;;33305:8;;;33279:34;32880:448;;32855:473;32675:669;;;:::o;38475:143::-;38608:6;38475:143;;;;;:::o;13858:361::-;13924:31;;:::i;:::-;14000:6;13967:9;:14;;:41;;;;;;;;;;;2004:3;14052:6;:33;;14018:9;:24;;:68;;;;;;;;;;;14143:1;2118:8;14115:6;:24;:29;;14096:9;:16;;:48;;;;;;;;;;;2513:3;14183:6;:28;;14154:9;:19;;:58;;;;;;;;;;;13858:361;;;:::o;8879:147:3:-;8942:7;8972:1;8968;:5;:51;;8999:20;9014:1;9017;8999:14;:20::i;:::-;8968:51;;;8976:20;8991:1;8994;8976:14;:20::i;:::-;8968:51;8961:58;;8879:147;;;;:::o;27091:2902:1:-;27163:20;27186:13;;27163:36;;27225:1;27213:8;:13;27209:44;;;27235:18;;;;;;;;;;;;;;27209:44;27264:61;27294:1;27298:2;27302:12;27316:8;27264:21;:61::i;:::-;27797:1;1495:2;27767:1;:26;;27766:32;27754:8;:45;27728:18;:22;27747:2;27728:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;28069:136;28105:2;28158:33;28181:1;28185:2;28189:1;28158:14;:33::i;:::-;28125:30;28146:8;28125:20;:30::i;:::-;:66;28069:18;:136::i;:::-;28035:17;:31;28053:12;28035:31;;;;;;;;;;;:170;;;;28220:16;28250:11;28279:8;28264:12;:23;28250:37;;28792:16;28788:2;28784:25;28772:37;;29156:12;29117:8;29077:1;29016:25;28958:1;28898;28872:328;29520:1;29506:12;29502:20;29461:339;29560:3;29551:7;29548:16;29461:339;;29774:7;29764:8;29761:1;29734:25;29731:1;29728;29723:59;29612:1;29603:7;29599:15;29588:26;;29461:339;;;29465:75;29843:1;29831:8;:13;29827:45;;;29853:19;;;;;;;;;;;;;;29827:45;29903:3;29887:13;:19;;;;27508:2409;;29926:60;29955:1;29959:2;29963:12;29977:8;29926:20;:60::i;:::-;27153:2840;27091:2902;;:::o;9032:261:3:-;9100:13;9204:1;9198:4;9191:15;9232:1;9226:4;9219:15;9272:4;9266;9256:21;9247:30;;9032:261;;;;:::o;14837:318:1:-;14907:14;15136:1;15126:8;15123:15;15097:24;15093:46;15083:56;;14837:318;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:7:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:139::-;1762:5;1800:6;1787:20;1778:29;;1816:33;1843:5;1816:33;:::i;:::-;1716:139;;;;:::o;1861:137::-;1906:5;1944:6;1931:20;1922:29;;1960:32;1986:5;1960:32;:::i;:::-;1861:137;;;;:::o;2004:141::-;2060:5;2091:6;2085:13;2076:22;;2107:32;2133:5;2107:32;:::i;:::-;2004:141;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:122;;2276:79;;:::i;:::-;2235:122;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;2164:338;;;;:::o;2522:340::-;2578:5;2627:3;2620:4;2612:6;2608:17;2604:27;2594:122;;2635:79;;:::i;:::-;2594:122;2752:6;2739:20;2777:79;2852:3;2844:6;2837:4;2829:6;2825:17;2777:79;:::i;:::-;2768:88;;2584:278;2522:340;;;;:::o;2868:139::-;2914:5;2952:6;2939:20;2930:29;;2968:33;2995:5;2968:33;:::i;:::-;2868:139;;;;:::o;3013:329::-;3072:6;3121:2;3109:9;3100:7;3096:23;3092:32;3089:119;;;3127:79;;:::i;:::-;3089:119;3247:1;3272:53;3317:7;3308:6;3297:9;3293:22;3272:53;:::i;:::-;3262:63;;3218:117;3013:329;;;;:::o;3348:474::-;3416:6;3424;3473:2;3461:9;3452:7;3448:23;3444:32;3441:119;;;3479:79;;:::i;:::-;3441:119;3599:1;3624:53;3669:7;3660:6;3649:9;3645:22;3624:53;:::i;:::-;3614:63;;3570:117;3726:2;3752:53;3797:7;3788:6;3777:9;3773:22;3752:53;:::i;:::-;3742:63;;3697:118;3348:474;;;;;:::o;3828:619::-;3905:6;3913;3921;3970:2;3958:9;3949:7;3945:23;3941:32;3938:119;;;3976:79;;:::i;:::-;3938:119;4096:1;4121:53;4166:7;4157:6;4146:9;4142:22;4121:53;:::i;:::-;4111:63;;4067:117;4223:2;4249:53;4294:7;4285:6;4274:9;4270:22;4249:53;:::i;:::-;4239:63;;4194:118;4351:2;4377:53;4422:7;4413:6;4402:9;4398:22;4377:53;:::i;:::-;4367:63;;4322:118;3828:619;;;;;:::o;4453:943::-;4548:6;4556;4564;4572;4621:3;4609:9;4600:7;4596:23;4592:33;4589:120;;;4628:79;;:::i;:::-;4589:120;4748:1;4773:53;4818:7;4809:6;4798:9;4794:22;4773:53;:::i;:::-;4763:63;;4719:117;4875:2;4901:53;4946:7;4937:6;4926:9;4922:22;4901:53;:::i;:::-;4891:63;;4846:118;5003:2;5029:53;5074:7;5065:6;5054:9;5050:22;5029:53;:::i;:::-;5019:63;;4974:118;5159:2;5148:9;5144:18;5131:32;5190:18;5182:6;5179:30;5176:117;;;5212:79;;:::i;:::-;5176:117;5317:62;5371:7;5362:6;5351:9;5347:22;5317:62;:::i;:::-;5307:72;;5102:287;4453:943;;;;;;;:::o;5402:468::-;5467:6;5475;5524:2;5512:9;5503:7;5499:23;5495:32;5492:119;;;5530:79;;:::i;:::-;5492:119;5650:1;5675:53;5720:7;5711:6;5700:9;5696:22;5675:53;:::i;:::-;5665:63;;5621:117;5777:2;5803:50;5845:7;5836:6;5825:9;5821:22;5803:50;:::i;:::-;5793:60;;5748:115;5402:468;;;;;:::o;5876:474::-;5944:6;5952;6001:2;5989:9;5980:7;5976:23;5972:32;5969:119;;;6007:79;;:::i;:::-;5969:119;6127:1;6152:53;6197:7;6188:6;6177:9;6173:22;6152:53;:::i;:::-;6142:63;;6098:117;6254:2;6280:53;6325:7;6316:6;6305:9;6301:22;6280:53;:::i;:::-;6270:63;;6225:118;5876:474;;;;;:::o;6356:323::-;6412:6;6461:2;6449:9;6440:7;6436:23;6432:32;6429:119;;;6467:79;;:::i;:::-;6429:119;6587:1;6612:50;6654:7;6645:6;6634:9;6630:22;6612:50;:::i;:::-;6602:60;;6558:114;6356:323;;;;:::o;6685:329::-;6744:6;6793:2;6781:9;6772:7;6768:23;6764:32;6761:119;;;6799:79;;:::i;:::-;6761:119;6919:1;6944:53;6989:7;6980:6;6969:9;6965:22;6944:53;:::i;:::-;6934:63;;6890:117;6685:329;;;;:::o;7020:327::-;7078:6;7127:2;7115:9;7106:7;7102:23;7098:32;7095:119;;;7133:79;;:::i;:::-;7095:119;7253:1;7278:52;7322:7;7313:6;7302:9;7298:22;7278:52;:::i;:::-;7268:62;;7224:116;7020:327;;;;:::o;7353:349::-;7422:6;7471:2;7459:9;7450:7;7446:23;7442:32;7439:119;;;7477:79;;:::i;:::-;7439:119;7597:1;7622:63;7677:7;7668:6;7657:9;7653:22;7622:63;:::i;:::-;7612:73;;7568:127;7353:349;;;;:::o;7708:509::-;7777:6;7826:2;7814:9;7805:7;7801:23;7797:32;7794:119;;;7832:79;;:::i;:::-;7794:119;7980:1;7969:9;7965:17;7952:31;8010:18;8002:6;7999:30;7996:117;;;8032:79;;:::i;:::-;7996:117;8137:63;8192:7;8183:6;8172:9;8168:22;8137:63;:::i;:::-;8127:73;;7923:287;7708:509;;;;:::o;8223:329::-;8282:6;8331:2;8319:9;8310:7;8306:23;8302:32;8299:119;;;8337:79;;:::i;:::-;8299:119;8457:1;8482:53;8527:7;8518:6;8507:9;8503:22;8482:53;:::i;:::-;8472:63;;8428:117;8223:329;;;;:::o;8558:474::-;8626:6;8634;8683:2;8671:9;8662:7;8658:23;8654:32;8651:119;;;8689:79;;:::i;:::-;8651:119;8809:1;8834:53;8879:7;8870:6;8859:9;8855:22;8834:53;:::i;:::-;8824:63;;8780:117;8936:2;8962:53;9007:7;8998:6;8987:9;8983:22;8962:53;:::i;:::-;8952:63;;8907:118;8558:474;;;;;:::o;9038:704::-;9133:6;9141;9149;9198:2;9186:9;9177:7;9173:23;9169:32;9166:119;;;9204:79;;:::i;:::-;9166:119;9324:1;9349:53;9394:7;9385:6;9374:9;9370:22;9349:53;:::i;:::-;9339:63;;9295:117;9479:2;9468:9;9464:18;9451:32;9510:18;9502:6;9499:30;9496:117;;;9532:79;;:::i;:::-;9496:117;9645:80;9717:7;9708:6;9697:9;9693:22;9645:80;:::i;:::-;9627:98;;;;9422:313;9038:704;;;;;:::o;9748:179::-;9817:10;9838:46;9880:3;9872:6;9838:46;:::i;:::-;9916:4;9911:3;9907:14;9893:28;;9748:179;;;;:::o;9933:118::-;10020:24;10038:5;10020:24;:::i;:::-;10015:3;10008:37;9933:118;;:::o;10057:157::-;10162:45;10182:24;10200:5;10182:24;:::i;:::-;10162:45;:::i;:::-;10157:3;10150:58;10057:157;;:::o;10250:732::-;10369:3;10398:54;10446:5;10398:54;:::i;:::-;10468:86;10547:6;10542:3;10468:86;:::i;:::-;10461:93;;10578:56;10628:5;10578:56;:::i;:::-;10657:7;10688:1;10673:284;10698:6;10695:1;10692:13;10673:284;;;10774:6;10768:13;10801:63;10860:3;10845:13;10801:63;:::i;:::-;10794:70;;10887:60;10940:6;10887:60;:::i;:::-;10877:70;;10733:224;10720:1;10717;10713:9;10708:14;;10673:284;;;10677:14;10973:3;10966:10;;10374:608;;;10250:732;;;;:::o;10988:109::-;11069:21;11084:5;11069:21;:::i;:::-;11064:3;11057:34;10988:109;;:::o;11103:118::-;11190:24;11208:5;11190:24;:::i;:::-;11185:3;11178:37;11103:118;;:::o;11227:360::-;11313:3;11341:38;11373:5;11341:38;:::i;:::-;11395:70;11458:6;11453:3;11395:70;:::i;:::-;11388:77;;11474:52;11519:6;11514:3;11507:4;11500:5;11496:16;11474:52;:::i;:::-;11551:29;11573:6;11551:29;:::i;:::-;11546:3;11542:39;11535:46;;11317:270;11227:360;;;;:::o;11593:364::-;11681:3;11709:39;11742:5;11709:39;:::i;:::-;11764:71;11828:6;11823:3;11764:71;:::i;:::-;11757:78;;11844:52;11889:6;11884:3;11877:4;11870:5;11866:16;11844:52;:::i;:::-;11921:29;11943:6;11921:29;:::i;:::-;11916:3;11912:39;11905:46;;11685:272;11593:364;;;;:::o;11963:377::-;12069:3;12097:39;12130:5;12097:39;:::i;:::-;12152:89;12234:6;12229:3;12152:89;:::i;:::-;12145:96;;12250:52;12295:6;12290:3;12283:4;12276:5;12272:16;12250:52;:::i;:::-;12327:6;12322:3;12318:16;12311:23;;12073:267;11963:377;;;;:::o;12346:366::-;12488:3;12509:67;12573:2;12568:3;12509:67;:::i;:::-;12502:74;;12585:93;12674:3;12585:93;:::i;:::-;12703:2;12698:3;12694:12;12687:19;;12346:366;;;:::o;12718:::-;12860:3;12881:67;12945:2;12940:3;12881:67;:::i;:::-;12874:74;;12957:93;13046:3;12957:93;:::i;:::-;13075:2;13070:3;13066:12;13059:19;;12718:366;;;:::o;13090:::-;13232:3;13253:67;13317:2;13312:3;13253:67;:::i;:::-;13246:74;;13329:93;13418:3;13329:93;:::i;:::-;13447:2;13442:3;13438:12;13431:19;;13090:366;;;:::o;13462:::-;13604:3;13625:67;13689:2;13684:3;13625:67;:::i;:::-;13618:74;;13701:93;13790:3;13701:93;:::i;:::-;13819:2;13814:3;13810:12;13803:19;;13462:366;;;:::o;13834:::-;13976:3;13997:67;14061:2;14056:3;13997:67;:::i;:::-;13990:74;;14073:93;14162:3;14073:93;:::i;:::-;14191:2;14186:3;14182:12;14175:19;;13834:366;;;:::o;14206:::-;14348:3;14369:67;14433:2;14428:3;14369:67;:::i;:::-;14362:74;;14445:93;14534:3;14445:93;:::i;:::-;14563:2;14558:3;14554:12;14547:19;;14206:366;;;:::o;14578:::-;14720:3;14741:67;14805:2;14800:3;14741:67;:::i;:::-;14734:74;;14817:93;14906:3;14817:93;:::i;:::-;14935:2;14930:3;14926:12;14919:19;;14578:366;;;:::o;14950:::-;15092:3;15113:67;15177:2;15172:3;15113:67;:::i;:::-;15106:74;;15189:93;15278:3;15189:93;:::i;:::-;15307:2;15302:3;15298:12;15291:19;;14950:366;;;:::o;15322:::-;15464:3;15485:67;15549:2;15544:3;15485:67;:::i;:::-;15478:74;;15561:93;15650:3;15561:93;:::i;:::-;15679:2;15674:3;15670:12;15663:19;;15322:366;;;:::o;15694:400::-;15854:3;15875:84;15957:1;15952:3;15875:84;:::i;:::-;15868:91;;15968:93;16057:3;15968:93;:::i;:::-;16086:1;16081:3;16077:11;16070:18;;15694:400;;;:::o;16100:366::-;16242:3;16263:67;16327:2;16322:3;16263:67;:::i;:::-;16256:74;;16339:93;16428:3;16339:93;:::i;:::-;16457:2;16452:3;16448:12;16441:19;;16100:366;;;:::o;16472:::-;16614:3;16635:67;16699:2;16694:3;16635:67;:::i;:::-;16628:74;;16711:93;16800:3;16711:93;:::i;:::-;16829:2;16824:3;16820:12;16813:19;;16472:366;;;:::o;16844:::-;16986:3;17007:67;17071:2;17066:3;17007:67;:::i;:::-;17000:74;;17083:93;17172:3;17083:93;:::i;:::-;17201:2;17196:3;17192:12;17185:19;;16844:366;;;:::o;17216:::-;17358:3;17379:67;17443:2;17438:3;17379:67;:::i;:::-;17372:74;;17455:93;17544:3;17455:93;:::i;:::-;17573:2;17568:3;17564:12;17557:19;;17216:366;;;:::o;17588:::-;17730:3;17751:67;17815:2;17810:3;17751:67;:::i;:::-;17744:74;;17827:93;17916:3;17827:93;:::i;:::-;17945:2;17940:3;17936:12;17929:19;;17588:366;;;:::o;17960:::-;18102:3;18123:67;18187:2;18182:3;18123:67;:::i;:::-;18116:74;;18199:93;18288:3;18199:93;:::i;:::-;18317:2;18312:3;18308:12;18301:19;;17960:366;;;:::o;18332:::-;18474:3;18495:67;18559:2;18554:3;18495:67;:::i;:::-;18488:74;;18571:93;18660:3;18571:93;:::i;:::-;18689:2;18684:3;18680:12;18673:19;;18332:366;;;:::o;18704:108::-;18781:24;18799:5;18781:24;:::i;:::-;18776:3;18769:37;18704:108;;:::o;18818:118::-;18905:24;18923:5;18905:24;:::i;:::-;18900:3;18893:37;18818:118;;:::o;18942:256::-;19054:3;19069:75;19140:3;19131:6;19069:75;:::i;:::-;19169:2;19164:3;19160:12;19153:19;;19189:3;19182:10;;18942:256;;;;:::o;19204:701::-;19485:3;19507:95;19598:3;19589:6;19507:95;:::i;:::-;19500:102;;19619:95;19710:3;19701:6;19619:95;:::i;:::-;19612:102;;19731:148;19875:3;19731:148;:::i;:::-;19724:155;;19896:3;19889:10;;19204:701;;;;;:::o;19911:222::-;20004:4;20042:2;20031:9;20027:18;20019:26;;20055:71;20123:1;20112:9;20108:17;20099:6;20055:71;:::i;:::-;19911:222;;;;:::o;20139:640::-;20334:4;20372:3;20361:9;20357:19;20349:27;;20386:71;20454:1;20443:9;20439:17;20430:6;20386:71;:::i;:::-;20467:72;20535:2;20524:9;20520:18;20511:6;20467:72;:::i;:::-;20549;20617:2;20606:9;20602:18;20593:6;20549:72;:::i;:::-;20668:9;20662:4;20658:20;20653:2;20642:9;20638:18;20631:48;20696:76;20767:4;20758:6;20696:76;:::i;:::-;20688:84;;20139:640;;;;;;;:::o;20785:373::-;20928:4;20966:2;20955:9;20951:18;20943:26;;21015:9;21009:4;21005:20;21001:1;20990:9;20986:17;20979:47;21043:108;21146:4;21137:6;21043:108;:::i;:::-;21035:116;;20785:373;;;;:::o;21164:210::-;21251:4;21289:2;21278:9;21274:18;21266:26;;21302:65;21364:1;21353:9;21349:17;21340:6;21302:65;:::i;:::-;21164:210;;;;:::o;21380:222::-;21473:4;21511:2;21500:9;21496:18;21488:26;;21524:71;21592:1;21581:9;21577:17;21568:6;21524:71;:::i;:::-;21380:222;;;;:::o;21608:313::-;21721:4;21759:2;21748:9;21744:18;21736:26;;21808:9;21802:4;21798:20;21794:1;21783:9;21779:17;21772:47;21836:78;21909:4;21900:6;21836:78;:::i;:::-;21828:86;;21608:313;;;;:::o;21927:419::-;22093:4;22131:2;22120:9;22116:18;22108:26;;22180:9;22174:4;22170:20;22166:1;22155:9;22151:17;22144:47;22208:131;22334:4;22208:131;:::i;:::-;22200:139;;21927:419;;;:::o;22352:::-;22518:4;22556:2;22545:9;22541:18;22533:26;;22605:9;22599:4;22595:20;22591:1;22580:9;22576:17;22569:47;22633:131;22759:4;22633:131;:::i;:::-;22625:139;;22352:419;;;:::o;22777:::-;22943:4;22981:2;22970:9;22966:18;22958:26;;23030:9;23024:4;23020:20;23016:1;23005:9;23001:17;22994:47;23058:131;23184:4;23058:131;:::i;:::-;23050:139;;22777:419;;;:::o;23202:::-;23368:4;23406:2;23395:9;23391:18;23383:26;;23455:9;23449:4;23445:20;23441:1;23430:9;23426:17;23419:47;23483:131;23609:4;23483:131;:::i;:::-;23475:139;;23202:419;;;:::o;23627:::-;23793:4;23831:2;23820:9;23816:18;23808:26;;23880:9;23874:4;23870:20;23866:1;23855:9;23851:17;23844:47;23908:131;24034:4;23908:131;:::i;:::-;23900:139;;23627:419;;;:::o;24052:::-;24218:4;24256:2;24245:9;24241:18;24233:26;;24305:9;24299:4;24295:20;24291:1;24280:9;24276:17;24269:47;24333:131;24459:4;24333:131;:::i;:::-;24325:139;;24052:419;;;:::o;24477:::-;24643:4;24681:2;24670:9;24666:18;24658:26;;24730:9;24724:4;24720:20;24716:1;24705:9;24701:17;24694:47;24758:131;24884:4;24758:131;:::i;:::-;24750:139;;24477:419;;;:::o;24902:::-;25068:4;25106:2;25095:9;25091:18;25083:26;;25155:9;25149:4;25145:20;25141:1;25130:9;25126:17;25119:47;25183:131;25309:4;25183:131;:::i;:::-;25175:139;;24902:419;;;:::o;25327:::-;25493:4;25531:2;25520:9;25516:18;25508:26;;25580:9;25574:4;25570:20;25566:1;25555:9;25551:17;25544:47;25608:131;25734:4;25608:131;:::i;:::-;25600:139;;25327:419;;;:::o;25752:::-;25918:4;25956:2;25945:9;25941:18;25933:26;;26005:9;25999:4;25995:20;25991:1;25980:9;25976:17;25969:47;26033:131;26159:4;26033:131;:::i;:::-;26025:139;;25752:419;;;:::o;26177:::-;26343:4;26381:2;26370:9;26366:18;26358:26;;26430:9;26424:4;26420:20;26416:1;26405:9;26401:17;26394:47;26458:131;26584:4;26458:131;:::i;:::-;26450:139;;26177:419;;;:::o;26602:::-;26768:4;26806:2;26795:9;26791:18;26783:26;;26855:9;26849:4;26845:20;26841:1;26830:9;26826:17;26819:47;26883:131;27009:4;26883:131;:::i;:::-;26875:139;;26602:419;;;:::o;27027:::-;27193:4;27231:2;27220:9;27216:18;27208:26;;27280:9;27274:4;27270:20;27266:1;27255:9;27251:17;27244:47;27308:131;27434:4;27308:131;:::i;:::-;27300:139;;27027:419;;;:::o;27452:::-;27618:4;27656:2;27645:9;27641:18;27633:26;;27705:9;27699:4;27695:20;27691:1;27680:9;27676:17;27669:47;27733:131;27859:4;27733:131;:::i;:::-;27725:139;;27452:419;;;:::o;27877:::-;28043:4;28081:2;28070:9;28066:18;28058:26;;28130:9;28124:4;28120:20;28116:1;28105:9;28101:17;28094:47;28158:131;28284:4;28158:131;:::i;:::-;28150:139;;27877:419;;;:::o;28302:::-;28468:4;28506:2;28495:9;28491:18;28483:26;;28555:9;28549:4;28545:20;28541:1;28530:9;28526:17;28519:47;28583:131;28709:4;28583:131;:::i;:::-;28575:139;;28302:419;;;:::o;28727:222::-;28820:4;28858:2;28847:9;28843:18;28835:26;;28871:71;28939:1;28928:9;28924:17;28915:6;28871:71;:::i;:::-;28727:222;;;;:::o;28955:129::-;28989:6;29016:20;;:::i;:::-;29006:30;;29045:33;29073:4;29065:6;29045:33;:::i;:::-;28955:129;;;:::o;29090:75::-;29123:6;29156:2;29150:9;29140:19;;29090:75;:::o;29171:307::-;29232:4;29322:18;29314:6;29311:30;29308:56;;;29344:18;;:::i;:::-;29308:56;29382:29;29404:6;29382:29;:::i;:::-;29374:37;;29466:4;29460;29456:15;29448:23;;29171:307;;;:::o;29484:308::-;29546:4;29636:18;29628:6;29625:30;29622:56;;;29658:18;;:::i;:::-;29622:56;29696:29;29718:6;29696:29;:::i;:::-;29688:37;;29780:4;29774;29770:15;29762:23;;29484:308;;;:::o;29798:132::-;29865:4;29888:3;29880:11;;29918:4;29913:3;29909:14;29901:22;;29798:132;;;:::o;29936:114::-;30003:6;30037:5;30031:12;30021:22;;29936:114;;;:::o;30056:98::-;30107:6;30141:5;30135:12;30125:22;;30056:98;;;:::o;30160:99::-;30212:6;30246:5;30240:12;30230:22;;30160:99;;;:::o;30265:113::-;30335:4;30367;30362:3;30358:14;30350:22;;30265:113;;;:::o;30384:184::-;30483:11;30517:6;30512:3;30505:19;30557:4;30552:3;30548:14;30533:29;;30384:184;;;;:::o;30574:168::-;30657:11;30691:6;30686:3;30679:19;30731:4;30726:3;30722:14;30707:29;;30574:168;;;;:::o;30748:169::-;30832:11;30866:6;30861:3;30854:19;30906:4;30901:3;30897:14;30882:29;;30748:169;;;;:::o;30923:148::-;31025:11;31062:3;31047:18;;30923:148;;;;:::o;31077:305::-;31117:3;31136:20;31154:1;31136:20;:::i;:::-;31131:25;;31170:20;31188:1;31170:20;:::i;:::-;31165:25;;31324:1;31256:66;31252:74;31249:1;31246:81;31243:107;;;31330:18;;:::i;:::-;31243:107;31374:1;31371;31367:9;31360:16;;31077:305;;;;:::o;31388:348::-;31428:7;31451:20;31469:1;31451:20;:::i;:::-;31446:25;;31485:20;31503:1;31485:20;:::i;:::-;31480:25;;31673:1;31605:66;31601:74;31598:1;31595:81;31590:1;31583:9;31576:17;31572:105;31569:131;;;31680:18;;:::i;:::-;31569:131;31728:1;31725;31721:9;31710:20;;31388:348;;;;:::o;31742:96::-;31779:7;31808:24;31826:5;31808:24;:::i;:::-;31797:35;;31742:96;;;:::o;31844:90::-;31878:7;31921:5;31914:13;31907:21;31896:32;;31844:90;;;:::o;31940:77::-;31977:7;32006:5;31995:16;;31940:77;;;:::o;32023:149::-;32059:7;32099:66;32092:5;32088:78;32077:89;;32023:149;;;:::o;32178:126::-;32215:7;32255:42;32248:5;32244:54;32233:65;;32178:126;;;:::o;32310:77::-;32347:7;32376:5;32365:16;;32310:77;;;:::o;32393:154::-;32477:6;32472:3;32467;32454:30;32539:1;32530:6;32525:3;32521:16;32514:27;32393:154;;;:::o;32553:307::-;32621:1;32631:113;32645:6;32642:1;32639:13;32631:113;;;32730:1;32725:3;32721:11;32715:18;32711:1;32706:3;32702:11;32695:39;32667:2;32664:1;32660:10;32655:15;;32631:113;;;32762:6;32759:1;32756:13;32753:101;;;32842:1;32833:6;32828:3;32824:16;32817:27;32753:101;32602:258;32553:307;;;:::o;32866:320::-;32910:6;32947:1;32941:4;32937:12;32927:22;;32994:1;32988:4;32984:12;33015:18;33005:81;;33071:4;33063:6;33059:17;33049:27;;33005:81;33133:2;33125:6;33122:14;33102:18;33099:38;33096:84;;;33152:18;;:::i;:::-;33096:84;32917:269;32866:320;;;:::o;33192:281::-;33275:27;33297:4;33275:27;:::i;:::-;33267:6;33263:40;33405:6;33393:10;33390:22;33369:18;33357:10;33354:34;33351:62;33348:88;;;33416:18;;:::i;:::-;33348:88;33456:10;33452:2;33445:22;33235:238;33192:281;;:::o;33479:233::-;33518:3;33541:24;33559:5;33541:24;:::i;:::-;33532:33;;33587:66;33580:5;33577:77;33574:103;;;33657:18;;:::i;:::-;33574:103;33704:1;33697:5;33693:13;33686:20;;33479:233;;;:::o;33718:100::-;33757:7;33786:26;33806:5;33786:26;:::i;:::-;33775:37;;33718:100;;;:::o;33824:94::-;33863:7;33892:20;33906:5;33892:20;:::i;:::-;33881:31;;33824:94;;;:::o;33924:180::-;33972:77;33969:1;33962:88;34069:4;34066:1;34059:15;34093:4;34090:1;34083:15;34110:180;34158:77;34155:1;34148:88;34255:4;34252:1;34245:15;34279:4;34276:1;34269:15;34296:180;34344:77;34341:1;34334:88;34441:4;34438:1;34431:15;34465:4;34462:1;34455:15;34482:180;34530:77;34527:1;34520:88;34627:4;34624:1;34617:15;34651:4;34648:1;34641:15;34668:117;34777:1;34774;34767:12;34791:117;34900:1;34897;34890:12;34914:117;35023:1;35020;35013:12;35037:117;35146:1;35143;35136:12;35160:117;35269:1;35266;35259:12;35283:117;35392:1;35389;35382:12;35406:102;35447:6;35498:2;35494:7;35489:2;35482:5;35478:14;35474:28;35464:38;;35406:102;;;:::o;35514:94::-;35547:8;35595:5;35591:2;35587:14;35566:35;;35514:94;;;:::o;35614:235::-;35754:34;35750:1;35742:6;35738:14;35731:58;35823:18;35818:2;35810:6;35806:15;35799:43;35614:235;:::o;35855:173::-;35995:25;35991:1;35983:6;35979:14;35972:49;35855:173;:::o;36034:225::-;36174:34;36170:1;36162:6;36158:14;36151:58;36243:8;36238:2;36230:6;36226:15;36219:33;36034:225;:::o;36265:182::-;36405:34;36401:1;36393:6;36389:14;36382:58;36265:182;:::o;36453:178::-;36593:30;36589:1;36581:6;36577:14;36570:54;36453:178;:::o;36637:160::-;36777:12;36773:1;36765:6;36761:14;36754:36;36637:160;:::o;36803:178::-;36943:30;36939:1;36931:6;36927:14;36920:54;36803:178;:::o;36987:172::-;37127:24;37123:1;37115:6;37111:14;37104:48;36987:172;:::o;37165:220::-;37305:34;37301:1;37293:6;37289:14;37282:58;37374:3;37369:2;37361:6;37357:15;37350:28;37165:220;:::o;37391:155::-;37531:7;37527:1;37519:6;37515:14;37508:31;37391:155;:::o;37552:182::-;37692:34;37688:1;37680:6;37676:14;37669:58;37552:182;:::o;37740:179::-;37880:31;37876:1;37868:6;37864:14;37857:55;37740:179;:::o;37925:178::-;38065:30;38061:1;38053:6;38049:14;38042:54;37925:178;:::o;38109:182::-;38249:34;38245:1;38237:6;38233:14;38226:58;38109:182;:::o;38297:181::-;38437:33;38433:1;38425:6;38421:14;38414:57;38297:181;:::o;38484:223::-;38624:34;38620:1;38612:6;38608:14;38601:58;38693:6;38688:2;38680:6;38676:15;38669:31;38484:223;:::o;38713:178::-;38853:30;38849:1;38841:6;38837:14;38830:54;38713:178;:::o;38897:122::-;38970:24;38988:5;38970:24;:::i;:::-;38963:5;38960:35;38950:63;;39009:1;39006;38999:12;38950:63;38897:122;:::o;39025:116::-;39095:21;39110:5;39095:21;:::i;:::-;39088:5;39085:32;39075:60;;39131:1;39128;39121:12;39075:60;39025:116;:::o;39147:122::-;39220:24;39238:5;39220:24;:::i;:::-;39213:5;39210:35;39200:63;;39259:1;39256;39249:12;39200:63;39147:122;:::o;39275:120::-;39347:23;39364:5;39347:23;:::i;:::-;39340:5;39337:34;39327:62;;39385:1;39382;39375:12;39327:62;39275:120;:::o;39401:122::-;39474:24;39492:5;39474:24;:::i;:::-;39467:5;39464:35;39454:63;;39513:1;39510;39503:12;39454:63;39401:122;:::o

Swarm Source

ipfs://6b2ddd94e228a4fe24fee7024feef748d42c518664c0d18895fa740ade6f233a
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.