ETH Price: $2,981.98 (+1.73%)
Gas: 1 Gwei

Token

XEL0 (XEL0)
 

Overview

Max Total Supply

3,333 XEL0

Holders

1,166

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 XEL0
0x6bD06afD9D20321f5dEA1c2bAFA28A983374a916
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:
NFT

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 13 of 17: NFT.sol
// SPDX-License-Identifier: MIT
// Create by 0xChrisx

pragma solidity ^0.8.0;

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

contract NFT is Ownable, ERC721A, DefaultOperatorFilterer, ReentrancyGuard {

    event Received(address, uint);

    uint256 public mintPhase ;

    uint256 public mintPrice = 0 ether;

    uint256 public collectionSize_ = 3333 ;
    uint256 public maxWlRound =  3333 ;


    uint256 public maxBatchERC = 20 ; // _safeMint of ERC721A require to set maxBatchSize 

    uint256 public maxPerWhitelist = 2;
    uint256 public maxPerPublic = 3;

    uint256 pvseed ;

    bytes32 public WLroot ;

    string private baseURI ;

    struct AddressDetail {
        uint256 WLBalance ;
        uint256 PBBalance ;
    }

    mapping(address => AddressDetail) public _addressDetail ;

    constructor() ERC721A("XEL0", "XEL0", maxBatchERC , collectionSize_ ) {
        
    }

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

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

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

//--------------------- END BaseURI
//--------------------- Set & Change anythings

    function setMaxBatch (uint256 newSize) public onlyOwner {
        maxBatchERC = newSize ;
    }
    
    function setMintPrice (uint256 newPrice) public onlyOwner {
        mintPrice = newPrice ;
    }
    
    function setCollectionSize (uint256 newCollectionSize) public onlyOwner {
        collectionSize_ = newCollectionSize ;
    }

    function setMaxWlRound (uint256 newMaxWlRound) public onlyOwner {
        maxWlRound = newMaxWlRound ;
    }

    function setMaxPerPublic (uint256 newMaxPerPublic) public onlyOwner {
        maxPerPublic = newMaxPerPublic ;
    }

    function setMaxPerWhitelist (uint256 newMaxPerWhitelist ) public onlyOwner {
        maxPerWhitelist = newMaxPerWhitelist;
    }

    function setWLRoot (bytes32 newWLRoot) public onlyOwner {
        WLroot = newWLRoot ;
    }

    function setPhase (uint256 newPhase) public onlyOwner {
        mintPhase = newPhase ;
    }

    function setPVseed (uint256 newpvseed) public onlyOwner {
        pvseed = newpvseed ;
    }

//--------------------- END Set & Change anythings
//--------------------------------------- Mint
//-------------------- DevMint
    function mintDev(address _to ,uint256 _mintAmount) external onlyOwner {

        require(totalSupply() + _mintAmount <= collectionSize_ , "You can't mint more than collection size");

        _safeMint( _to,_mintAmount);
    }
//-------------------- END DevMint
//-------------------- WhitelistMint
    function mintWhiteList(uint256 _mintAmount , bytes32[] memory _Proof) external payable {
        require(mintPhase == 1, "Whitelist round hasn't open yet");

        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(
            MerkleProof.verify(_Proof, WLroot, leaf),
            "You're not whitelist."
        );

        require(totalSupply() + _mintAmount <= maxWlRound , "Purchase would exceed max tokens");
        
        require(_addressDetail[msg.sender].WLBalance + _mintAmount <= maxPerWhitelist, "Max per address for whitelist. Please try lower.");

        require(mintPrice * _mintAmount <= msg.value, "Ether value sent is not correct");

        _safeMint(msg.sender, _mintAmount);
        _addressDetail[msg.sender].WLBalance += _mintAmount ;

    }

//-------------------- END WhitelistMint
//-------------------- PublicMint
    function mintPublic(uint256 _mintAmount ,uint256 getpvseed) external payable callerIsUser {

        require(mintPhase == 5, "public sale hasn't begun yet");
        require(pvseed == getpvseed, "public sale hasn't begun yet (wrong seed).");
        require(totalSupply() + _mintAmount <= collectionSize_  , "reached max supply"); // must less than collction size
        require(_addressDetail[msg.sender].PBBalance + _mintAmount <= maxPerPublic, "can not mint this many"); // check max mint PerAddress ?
        require(msg.value >= mintPrice * _mintAmount, "ETH amount is not sufficient");

        _safeMint(msg.sender, _mintAmount);
        _addressDetail[msg.sender].PBBalance += _mintAmount ;
    }

    function numberMinted(address owner) public view returns (uint256) { // check number Minted of that address จำนวนที่มิ้นไปแล้ว ใน address นั้น
        return _numberMinted(owner);
    }
//-------------------- END PublicMint
//--------------------------------------------- END Mint
//------------------------- Withdraw Money

        address private wallet1 = 0x7884A13d537D281568Ad7e9b9821b745eB8f1EDa; // K.Bass
        address private wallet2 = 0x4B0A54D5529D34352048022a6e67BB6a26d91A7A; // K.Kayy
        address private wallet3 = 0x977EE6f3C17ECB90Ac5504ad92240D40a33ba129; // K.Chris
        address private wallet4 = 0xAA15cF63a4852C5fb1614c4BfcFDc032B4E33d98; // K.Yok
        address private wallet5 = 0x5350303b367FeA34bFb85Fd0da683eA9D8Ebd550; // VAULT

    function withdrawMoney() external payable nonReentrant { 

        uint256 _paytoW1 = address(this).balance*40/100 ; // K.Bass
        uint256 _paytoW2 = address(this).balance*18/100 ; // K.Kayy
        uint256 _paytoW3 = address(this).balance*18/100 ; // K.Chris
        uint256 _paytoW4 = address(this).balance*18/100 ; // K.Yok
        uint256 _paytoW5 = address(this).balance*6/100 ; // VAULT

        require(address(this).balance > 0, "No ETH left");

        require(payable(wallet1).send(_paytoW1));
        require(payable(wallet2).send(_paytoW2));
        require(payable(wallet3).send(_paytoW3));
        require(payable(wallet4).send(_paytoW4));
        require(payable(wallet5).send(_paytoW5));

    }

//------------------------- END Withdraw Money

//-------------------- START Fallback Receive Ether Function
    receive() external payable {
            emit Received(msg.sender, msg.value);
    }
//-------------------- END Fallback Receive Ether Function
//-------------------- START DefaultOperaterFilterer
    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }
//--------------------- END DefaultOperaterFilterer
}

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

pragma solidity ^0.8.0;

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

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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

pragma solidity ^0.8.0;

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

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

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

import {OperatorFilterer} from "./OperatorFilterer.sol";

/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

    _operatorApprovals[_msgSender()][operator] = approved;
    emit ApprovalForAll(_msgSender(), operator, approved);
  }

  /**
   * @dev See {IERC721-isApprovedForAll}.
   */
  function isApprovedForAll(address owner, address operator)
    public
    view
    virtual
    override
    returns (bool)
  {
    return _operatorApprovals[owner][operator];
  }

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

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public virtual override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: transfer to non ERC721Receiver implementer"
    );
  }

  /**
   * @dev Returns whether `tokenId` exists.
   *
   * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
   *
   * Tokens start existing when they are minted (`_mint`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

  /**
   * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
   * The call is not executed if the target address is not a contract.
   *
   * @param from address representing the previous owner of the given token ID
   * @param to target address that will receive the tokens
   * @param tokenId uint256 ID of the token to be transferred
   * @param _data bytes optional data to send along with the call
   * @return bool whether the call correctly returned the expected magic value
   */
  function _checkOnERC721Received(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) private returns (bool) {
    if (to.isContract()) {
      try
        IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data)
      returns (bytes4 retval) {
        return retval == IERC721Receiver(to).onERC721Received.selector;
      } catch (bytes memory reason) {
        if (reason.length == 0) {
          revert("ERC721A: transfer to non ERC721Receiver implementer");
        } else {
          assembly {
            revert(add(32, reason), mload(reason))
          }
        }
      }
    } else {
      return true;
    }
  }

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

File 11 of 17: IOperatorFilterRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

File 12 of 17: MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * 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.
 */
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 proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] calldata leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] calldata 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 14 of 17: OperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";

/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
        _;
    }
}

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

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"Received","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":"WLroot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_addressDetail","outputs":[{"internalType":"uint256","name":"WLBalance","type":"uint256"},{"internalType":"uint256","name":"PBBalance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectionSize_","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":"maxBatchERC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWlRound","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintDev","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintPhase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"uint256","name":"getpvseed","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_Proof","type":"bytes32[]"}],"name":"mintWhiteList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newCollectionSize","type":"uint256"}],"name":"setCollectionSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSize","type":"uint256"}],"name":"setMaxBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxPerPublic","type":"uint256"}],"name":"setMaxPerPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxPerWhitelist","type":"uint256"}],"name":"setMaxPerWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxWlRound","type":"uint256"}],"name":"setMaxWlRound","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newpvseed","type":"uint256"}],"name":"setPVseed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPhase","type":"uint256"}],"name":"setPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newWLRoot","type":"bytes32"}],"name":"setWLRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600060018190556008819055600b55610d05600c819055600d556014600e556002600f556003601055601580546001600160a01b0319908116737884a13d537d281568ad7e9b9821b745eb8f1eda17909155601680548216734b0a54d5529d34352048022a6e67bb6a26d91a7a17905560178054821673977ee6f3c17ecb90ac5504ad92240d40a33ba12917905560188054821673aa15cf63a4852c5fb1614c4bfcfdc032b4e33d9817905560198054909116735350303b367fea34bfb85fd0da683ea9d8ebd550179055348015620000dc57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb6600160405180604001604052806004815260200163058454c360e41b81525060405180604001604052806004815260200163058454c360e41b815250600e54600c546200014e620001486200039860201b60201c565b6200039c565b60008111620001bb5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b600082116200021d5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620001b2565b60026200022b858262000491565b5060036200023a848262000491565b5060a09190915260805250506daaeb6d7670e522a718067333cd4e3b156200038b578015620002d957604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b158015620002ba57600080fd5b505af1158015620002cf573d6000803e3d6000fd5b505050506200038b565b6001600160a01b038216156200032a5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af2903906044016200029f565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200037157600080fd5b505af115801562000386573d6000803e3d6000fd5b505050505b505060016009556200055d565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200041757607f821691505b6020821081036200043857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200048c57600081815260208120601f850160051c81016020861015620004675750805b601f850160051c820191505b81811015620004885782815560010162000473565b5050505b505050565b81516001600160401b03811115620004ad57620004ad620003ec565b620004c581620004be845462000402565b846200043e565b602080601f831160018114620004fd5760008415620004e45750858301515b600019600386901b1c1916600185901b17855562000488565b600085815260208120601f198616915b828110156200052e578886015182559484019460019091019084016200050d565b50858210156200054d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60805160a05161314d6200058e60003960008181611d3101528181611d5b01526125f701526000505061314d6000f3fe60806040526004361061026b5760003560e01c806370a0823111610144578063b11c7f82116100b6578063dc33e6811161007a578063dc33e6811461073f578063e985e9c51461075f578063ed5ab3f6146107a8578063f2fde38b146107bb578063f4a0a528146107db578063f81420ec146107fb57600080fd5b8063b11c7f82146106b3578063b88d4fde146106d3578063c87b56dd146106f3578063cfe1908d14610713578063d7224ba01461072957600080fd5b80639f68ae76116101085780639f68ae76146105e2578063a06c03ec14610602578063a22cb4651461064b578063ac4460021461066b578063aca8ffe714610673578063aff048b71461069357600080fd5b806370a0823114610564578063715018a6146105845780638da5cb5b1461059957806395d89b41146105b757806397f06278146105cc57600080fd5b8063300b23d8116101dd5780634d10b546116101a15780634d10b546146104c55780634f6ccce7146104d857806355f804b3146104f85780636352211e1461051857806366cc5f0d146105385780636817c76c1461054e57600080fd5b8063300b23d81461042f578063324c6adc1461044f5780633e9e834b1461046f5780633ffde1731461048f57806342842e0e146104a557600080fd5b806318160ddd1161022f57806318160ddd1461038457806323a470231461039957806323b872dd146103af57806324017b5d146103cf5780632cc82655146103ef5780632f745c591461040f57600080fd5b806301ffc9a7146102af57806306fdde03146102e4578063081812fc14610306578063095ea7b31461033e57806317881cbf1461036057600080fd5b366102aa57604080513381523460208201527f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f88525874910160405180910390a1005b600080fd5b3480156102bb57600080fd5b506102cf6102ca3660046129a5565b610811565b60405190151581526020015b60405180910390f35b3480156102f057600080fd5b506102f961087e565b6040516102db9190612a12565b34801561031257600080fd5b50610326610321366004612a25565b610910565b6040516001600160a01b0390911681526020016102db565b34801561034a57600080fd5b5061035e610359366004612a5a565b6109a0565b005b34801561036c57600080fd5b50610376600a5481565b6040519081526020016102db565b34801561039057600080fd5b50600154610376565b3480156103a557600080fd5b50610376600c5481565b3480156103bb57600080fd5b5061035e6103ca366004612a84565b610a69565b3480156103db57600080fd5b5061035e6103ea366004612a25565b610b42565b3480156103fb57600080fd5b5061035e61040a366004612a25565b610b71565b34801561041b57600080fd5b5061037661042a366004612a5a565b610ba0565b34801561043b57600080fd5b5061035e61044a366004612a25565b610d17565b34801561045b57600080fd5b5061035e61046a366004612a5a565b610d46565b34801561047b57600080fd5b5061035e61048a366004612a25565b610df4565b34801561049b57600080fd5b5061037660125481565b3480156104b157600080fd5b5061035e6104c0366004612a84565b610e23565b61035e6104d3366004612b07565b610ef1565b3480156104e457600080fd5b506103766104f3366004612a25565b611147565b34801561050457600080fd5b5061035e610513366004612c11565b6111b0565b34801561052457600080fd5b50610326610533366004612a25565b6111e6565b34801561054457600080fd5b50610376600f5481565b34801561055a57600080fd5b50610376600b5481565b34801561057057600080fd5b5061037661057f366004612c5a565b6111f8565b34801561059057600080fd5b5061035e611289565b3480156105a557600080fd5b506000546001600160a01b0316610326565b3480156105c357600080fd5b506102f96112bf565b3480156105d857600080fd5b50610376600d5481565b3480156105ee57600080fd5b5061035e6105fd366004612a25565b6112ce565b34801561060e57600080fd5b5061063661061d366004612c5a565b6014602052600090815260409020805460019091015482565b604080519283526020830191909152016102db565b34801561065757600080fd5b5061035e610666366004612c83565b6112fd565b61035e6113c1565b34801561067f57600080fd5b5061035e61068e366004612a25565b6115e3565b34801561069f57600080fd5b5061035e6106ae366004612a25565b611612565b3480156106bf57600080fd5b5061035e6106ce366004612a25565b611641565b3480156106df57600080fd5b5061035e6106ee366004612cba565b611670565b3480156106ff57600080fd5b506102f961070e366004612a25565b61174c565b34801561071f57600080fd5b5061037660105481565b34801561073557600080fd5b5061037660085481565b34801561074b57600080fd5b5061037661075a366004612c5a565b611819565b34801561076b57600080fd5b506102cf61077a366004612d36565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61035e6107b6366004612d69565b611824565b3480156107c757600080fd5b5061035e6107d6366004612c5a565b611a7d565b3480156107e757600080fd5b5061035e6107f6366004612a25565b611b18565b34801561080757600080fd5b50610376600e5481565b60006001600160e01b031982166380ac58cd60e01b148061084257506001600160e01b03198216635b5e139f60e01b145b8061085d57506001600160e01b0319821663780e9d6360e01b145b8061087857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461088d90612d8b565b80601f01602080910402602001604051908101604052809291908181526020018280546108b990612d8b565b80156109065780601f106108db57610100808354040283529160200191610906565b820191906000526020600020905b8154815290600101906020018083116108e957829003601f168201915b5050505050905090565b600061091d826001541190565b6109845760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b816daaeb6d7670e522a718067333cd4e3b15610a5a57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610a0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a329190612dc5565b610a5a57604051633b79c77360e21b81526001600160a01b038216600482015260240161097b565b610a648383611b47565b505050565b826daaeb6d7670e522a718067333cd4e3b15610b3157336001600160a01b03821603610a9f57610a9a848484611c59565b610b3c565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610aee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b129190612dc5565b610b3157604051633b79c77360e21b815233600482015260240161097b565b610b3c848484611c59565b50505050565b6000546001600160a01b03163314610b6c5760405162461bcd60e51b815260040161097b90612de2565b601155565b6000546001600160a01b03163314610b9b5760405162461bcd60e51b815260040161097b90612de2565b600a55565b6000610bab836111f8565b8210610c045760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161097b565b6000610c0f60015490565b905060008060005b83811015610cb7576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c6a57805192505b876001600160a01b0316836001600160a01b031603610ca457868403610c965750935061087892505050565b83610ca081612e2d565b9450505b5080610caf81612e2d565b915050610c17565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161097b565b6000546001600160a01b03163314610d415760405162461bcd60e51b815260040161097b90612de2565b600e55565b6000546001600160a01b03163314610d705760405162461bcd60e51b815260040161097b90612de2565b600c5481610d7d60015490565b610d879190612e46565b1115610de65760405162461bcd60e51b815260206004820152602860248201527f596f752063616e2774206d696e74206d6f7265207468616e20636f6c6c656374604482015267696f6e2073697a6560c01b606482015260840161097b565b610df08282611c64565b5050565b6000546001600160a01b03163314610e1e5760405162461bcd60e51b815260040161097b90612de2565b600d55565b826daaeb6d7670e522a718067333cd4e3b15610ee657336001600160a01b03821603610e5457610a9a848484611c7e565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610ea3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec79190612dc5565b610ee657604051633b79c77360e21b815233600482015260240161097b565b610b3c848484611c7e565b600a54600114610f435760405162461bcd60e51b815260206004820152601f60248201527f57686974656c69737420726f756e64206861736e2774206f70656e2079657400604482015260640161097b565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610f898260125483611c99565b610fcd5760405162461bcd60e51b81526020600482015260156024820152742cb7ba93b932903737ba103bb434ba32b634b9ba1760591b604482015260640161097b565b600d5483610fda60015490565b610fe49190612e46565b11156110325760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e73604482015260640161097b565b600f5433600090815260146020526040902054611050908590612e46565b11156110b75760405162461bcd60e51b815260206004820152603060248201527f4d617820706572206164647265737320666f722077686974656c6973742e205060448201526f3632b0b9b2903a393c903637bbb2b91760811b606482015260840161097b565b3483600b546110c69190612e59565b11156111145760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161097b565b61111e3384611c64565b336000908152601460205260408120805485929061113d908490612e46565b9091555050505050565b600061115260015490565b82106111ac5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161097b565b5090565b6000546001600160a01b031633146111da5760405162461bcd60e51b815260040161097b90612de2565b6013610df08282612eb6565b60006111f182611caf565b5192915050565b60006001600160a01b0382166112645760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161097b565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146112b35760405162461bcd60e51b815260040161097b90612de2565b6112bd6000611e59565b565b60606003805461088d90612d8b565b6000546001600160a01b031633146112f85760405162461bcd60e51b815260040161097b90612de2565b601055565b816daaeb6d7670e522a718067333cd4e3b156113b757604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561136b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061138f9190612dc5565b6113b757604051633b79c77360e21b81526001600160a01b038216600482015260240161097b565b610a648383611ea9565b6002600954036114135760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161097b565b600260095560006064611427476028612e59565b6114319190612f8c565b905060006064611442476012612e59565b61144c9190612f8c565b90506000606461145d476012612e59565b6114679190612f8c565b905060006064611478476012612e59565b6114829190612f8c565b905060006064611493476006612e59565b61149d9190612f8c565b9050600047116114dd5760405162461bcd60e51b815260206004820152600b60248201526a139bc8115512081b19599d60aa1b604482015260640161097b565b6015546040516001600160a01b039091169086156108fc029087906000818181858888f1935050505061150f57600080fd5b6016546040516001600160a01b039091169085156108fc029086906000818181858888f1935050505061154157600080fd5b6017546040516001600160a01b039091169084156108fc029085906000818181858888f1935050505061157357600080fd5b6018546040516001600160a01b039091169083156108fc029084906000818181858888f193505050506115a557600080fd5b6019546040516001600160a01b039091169082156108fc029083906000818181858888f193505050506115d757600080fd5b50506001600955505050565b6000546001600160a01b0316331461160d5760405162461bcd60e51b815260040161097b90612de2565b600c55565b6000546001600160a01b0316331461163c5760405162461bcd60e51b815260040161097b90612de2565b600f55565b6000546001600160a01b0316331461166b5760405162461bcd60e51b815260040161097b90612de2565b601255565b836daaeb6d7670e522a718067333cd4e3b1561173957336001600160a01b038216036116a7576116a285858585611f6d565b611745565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156116f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061171a9190612dc5565b61173957604051633b79c77360e21b815233600482015260240161097b565b61174585858585611f6d565b5050505050565b6060611759826001541190565b6117bd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161097b565b60006117c7611fa0565b905060008151116117e75760405180602001604052806000815250611812565b806117f184611faf565b604051602001611802929190612fa0565b6040516020818303038152906040525b9392505050565b6000610878826120b8565b3233146118735760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161097b565b600a546005146118c55760405162461bcd60e51b815260206004820152601c60248201527f7075626c69632073616c65206861736e277420626567756e2079657400000000604482015260640161097b565b80601154146119295760405162461bcd60e51b815260206004820152602a60248201527f7075626c69632073616c65206861736e277420626567756e207965742028777260448201526937b7339039b2b2b2149760b11b606482015260840161097b565b600c548261193660015490565b6119409190612e46565b11156119835760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b604482015260640161097b565b601054336000908152601460205260409020600101546119a4908490612e46565b11156119eb5760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b604482015260640161097b565b81600b546119f99190612e59565b341015611a485760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e7400000000604482015260640161097b565b611a523383611c64565b3360009081526014602052604081206001018054849290611a74908490612e46565b90915550505050565b6000546001600160a01b03163314611aa75760405162461bcd60e51b815260040161097b90612de2565b6001600160a01b038116611b0c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161097b565b611b1581611e59565b50565b6000546001600160a01b03163314611b425760405162461bcd60e51b815260040161097b90612de2565b600b55565b6000611b52826111e6565b9050806001600160a01b0316836001600160a01b031603611bc05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161097b565b336001600160a01b0382161480611bdc5750611bdc813361077a565b611c4e5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161097b565b610a64838383612156565b610a648383836121b2565b610df082826040518060200160405280600081525061253a565b610a6483838360405180602001604052806000815250611670565b600082611ca68584612815565b14949350505050565b6040805180820190915260008082526020820152611cce826001541190565b611d2d5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161097b565b60007f00000000000000000000000000000000000000000000000000000000000000008310611d8e57611d807f000000000000000000000000000000000000000000000000000000000000000084612fcf565b611d8b906001612e46565b90505b825b818110611df8576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611de557949350505050565b5080611df081612fe2565b915050611d90565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161097b565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b336001600160a01b03831603611f015760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161097b565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611f788484846121b2565b611f8484848484612862565b610b3c5760405162461bcd60e51b815260040161097b90612ff9565b60606013805461088d90612d8b565b606081600003611fd65750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120005780611fea81612e2d565b9150611ff99050600a83612f8c565b9150611fda565b60008167ffffffffffffffff81111561201b5761201b612ac0565b6040519080825280601f01601f191660200182016040528015612045576020820181803683370190505b5090505b84156120b05761205a600183612fcf565b9150612067600a8661304c565b612072906030612e46565b60f81b81838151811061208757612087613060565b60200101906001600160f81b031916908160001a9053506120a9600a86612f8c565b9450612049565b949350505050565b60006001600160a01b03821661212a5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b606482015260840161097b565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006121bd82611caf565b80519091506000906001600160a01b0316336001600160a01b031614806121f45750336121e984610910565b6001600160a01b0316145b8061220657508151612206903361077a565b9050806122705760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161097b565b846001600160a01b031682600001516001600160a01b0316146122e45760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161097b565b6001600160a01b0384166123485760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161097b565b6123586000848460000151612156565b6001600160a01b038516600090815260056020526040812080546001929061238a9084906001600160801b0316613076565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260056020526040812080546001945090926123d69185911661309d565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561245e846001612e46565b6000818152600460205260409020549091506001600160a01b03166124f057612488816001541190565b156124f05760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6001546001600160a01b03841661259d5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161097b565b6125a8816001541190565b156125f55760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161097b565b7f00000000000000000000000000000000000000000000000000000000000000008311156126705760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161097b565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906126cc90879061309d565b6001600160801b031681526020018583602001516126ea919061309d565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561280a5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46127ce6000888488612862565b6127ea5760405162461bcd60e51b815260040161097b90612ff9565b816127f481612e2d565b925050808061280290612e2d565b915050612781565b506001819055612532565b600081815b845181101561285a576128468286838151811061283957612839613060565b6020026020010151612963565b91508061285281612e2d565b91505061281a565b509392505050565b60006001600160a01b0384163b1561295857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906128a69033908990889088906004016130bd565b6020604051808303816000875af19250505080156128e1575060408051601f3d908101601f191682019092526128de918101906130fa565b60015b61293e573d80801561290f576040519150601f19603f3d011682016040523d82523d6000602084013e612914565b606091505b5080516000036129365760405162461bcd60e51b815260040161097b90612ff9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506120b0565b506001949350505050565b600081831061297f576000828152602084905260409020611812565b5060009182526020526040902090565b6001600160e01b031981168114611b1557600080fd5b6000602082840312156129b757600080fd5b81356118128161298f565b60005b838110156129dd5781810151838201526020016129c5565b50506000910152565b600081518084526129fe8160208601602086016129c2565b601f01601f19169290920160200192915050565b60208152600061181260208301846129e6565b600060208284031215612a3757600080fd5b5035919050565b80356001600160a01b0381168114612a5557600080fd5b919050565b60008060408385031215612a6d57600080fd5b612a7683612a3e565b946020939093013593505050565b600080600060608486031215612a9957600080fd5b612aa284612a3e565b9250612ab060208501612a3e565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612aff57612aff612ac0565b604052919050565b60008060408385031215612b1a57600080fd5b8235915060208084013567ffffffffffffffff80821115612b3a57600080fd5b818601915086601f830112612b4e57600080fd5b813581811115612b6057612b60612ac0565b8060051b9150612b71848301612ad6565b8181529183018401918481019089841115612b8b57600080fd5b938501935b83851015612ba957843582529385019390850190612b90565b8096505050505050509250929050565b600067ffffffffffffffff831115612bd357612bd3612ac0565b612be6601f8401601f1916602001612ad6565b9050828152838383011115612bfa57600080fd5b828260208301376000602084830101529392505050565b600060208284031215612c2357600080fd5b813567ffffffffffffffff811115612c3a57600080fd5b8201601f81018413612c4b57600080fd5b6120b084823560208401612bb9565b600060208284031215612c6c57600080fd5b61181282612a3e565b8015158114611b1557600080fd5b60008060408385031215612c9657600080fd5b612c9f83612a3e565b91506020830135612caf81612c75565b809150509250929050565b60008060008060808587031215612cd057600080fd5b612cd985612a3e565b9350612ce760208601612a3e565b925060408501359150606085013567ffffffffffffffff811115612d0a57600080fd5b8501601f81018713612d1b57600080fd5b612d2a87823560208401612bb9565b91505092959194509250565b60008060408385031215612d4957600080fd5b612d5283612a3e565b9150612d6060208401612a3e565b90509250929050565b60008060408385031215612d7c57600080fd5b50508035926020909101359150565b600181811c90821680612d9f57607f821691505b602082108103612dbf57634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215612dd757600080fd5b815161181281612c75565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600060018201612e3f57612e3f612e17565b5060010190565b8082018082111561087857610878612e17565b808202811582820484141761087857610878612e17565b601f821115610a6457600081815260208120601f850160051c81016020861015612e975750805b601f850160051c820191505b8181101561253257828155600101612ea3565b815167ffffffffffffffff811115612ed057612ed0612ac0565b612ee481612ede8454612d8b565b84612e70565b602080601f831160018114612f195760008415612f015750858301515b600019600386901b1c1916600185901b178555612532565b600085815260208120601f198616915b82811015612f4857888601518255948401946001909101908401612f29565b5085821015612f665787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601260045260246000fd5b600082612f9b57612f9b612f76565b500490565b60008351612fb28184602088016129c2565b835190830190612fc68183602088016129c2565b01949350505050565b8181038181111561087857610878612e17565b600081612ff157612ff1612e17565b506000190190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008261305b5761305b612f76565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160801b0382811682821603908082111561309657613096612e17565b5092915050565b6001600160801b0381811683821601908082111561309657613096612e17565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906130f0908301846129e6565b9695505050505050565b60006020828403121561310c57600080fd5b81516118128161298f56fea2646970667358221220a7daedeafc1a2cf3d2553619a9a0d4211179ef91450b9c9610aee08daca1712f64736f6c63430008110033

Deployed Bytecode

0x60806040526004361061026b5760003560e01c806370a0823111610144578063b11c7f82116100b6578063dc33e6811161007a578063dc33e6811461073f578063e985e9c51461075f578063ed5ab3f6146107a8578063f2fde38b146107bb578063f4a0a528146107db578063f81420ec146107fb57600080fd5b8063b11c7f82146106b3578063b88d4fde146106d3578063c87b56dd146106f3578063cfe1908d14610713578063d7224ba01461072957600080fd5b80639f68ae76116101085780639f68ae76146105e2578063a06c03ec14610602578063a22cb4651461064b578063ac4460021461066b578063aca8ffe714610673578063aff048b71461069357600080fd5b806370a0823114610564578063715018a6146105845780638da5cb5b1461059957806395d89b41146105b757806397f06278146105cc57600080fd5b8063300b23d8116101dd5780634d10b546116101a15780634d10b546146104c55780634f6ccce7146104d857806355f804b3146104f85780636352211e1461051857806366cc5f0d146105385780636817c76c1461054e57600080fd5b8063300b23d81461042f578063324c6adc1461044f5780633e9e834b1461046f5780633ffde1731461048f57806342842e0e146104a557600080fd5b806318160ddd1161022f57806318160ddd1461038457806323a470231461039957806323b872dd146103af57806324017b5d146103cf5780632cc82655146103ef5780632f745c591461040f57600080fd5b806301ffc9a7146102af57806306fdde03146102e4578063081812fc14610306578063095ea7b31461033e57806317881cbf1461036057600080fd5b366102aa57604080513381523460208201527f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f88525874910160405180910390a1005b600080fd5b3480156102bb57600080fd5b506102cf6102ca3660046129a5565b610811565b60405190151581526020015b60405180910390f35b3480156102f057600080fd5b506102f961087e565b6040516102db9190612a12565b34801561031257600080fd5b50610326610321366004612a25565b610910565b6040516001600160a01b0390911681526020016102db565b34801561034a57600080fd5b5061035e610359366004612a5a565b6109a0565b005b34801561036c57600080fd5b50610376600a5481565b6040519081526020016102db565b34801561039057600080fd5b50600154610376565b3480156103a557600080fd5b50610376600c5481565b3480156103bb57600080fd5b5061035e6103ca366004612a84565b610a69565b3480156103db57600080fd5b5061035e6103ea366004612a25565b610b42565b3480156103fb57600080fd5b5061035e61040a366004612a25565b610b71565b34801561041b57600080fd5b5061037661042a366004612a5a565b610ba0565b34801561043b57600080fd5b5061035e61044a366004612a25565b610d17565b34801561045b57600080fd5b5061035e61046a366004612a5a565b610d46565b34801561047b57600080fd5b5061035e61048a366004612a25565b610df4565b34801561049b57600080fd5b5061037660125481565b3480156104b157600080fd5b5061035e6104c0366004612a84565b610e23565b61035e6104d3366004612b07565b610ef1565b3480156104e457600080fd5b506103766104f3366004612a25565b611147565b34801561050457600080fd5b5061035e610513366004612c11565b6111b0565b34801561052457600080fd5b50610326610533366004612a25565b6111e6565b34801561054457600080fd5b50610376600f5481565b34801561055a57600080fd5b50610376600b5481565b34801561057057600080fd5b5061037661057f366004612c5a565b6111f8565b34801561059057600080fd5b5061035e611289565b3480156105a557600080fd5b506000546001600160a01b0316610326565b3480156105c357600080fd5b506102f96112bf565b3480156105d857600080fd5b50610376600d5481565b3480156105ee57600080fd5b5061035e6105fd366004612a25565b6112ce565b34801561060e57600080fd5b5061063661061d366004612c5a565b6014602052600090815260409020805460019091015482565b604080519283526020830191909152016102db565b34801561065757600080fd5b5061035e610666366004612c83565b6112fd565b61035e6113c1565b34801561067f57600080fd5b5061035e61068e366004612a25565b6115e3565b34801561069f57600080fd5b5061035e6106ae366004612a25565b611612565b3480156106bf57600080fd5b5061035e6106ce366004612a25565b611641565b3480156106df57600080fd5b5061035e6106ee366004612cba565b611670565b3480156106ff57600080fd5b506102f961070e366004612a25565b61174c565b34801561071f57600080fd5b5061037660105481565b34801561073557600080fd5b5061037660085481565b34801561074b57600080fd5b5061037661075a366004612c5a565b611819565b34801561076b57600080fd5b506102cf61077a366004612d36565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61035e6107b6366004612d69565b611824565b3480156107c757600080fd5b5061035e6107d6366004612c5a565b611a7d565b3480156107e757600080fd5b5061035e6107f6366004612a25565b611b18565b34801561080757600080fd5b50610376600e5481565b60006001600160e01b031982166380ac58cd60e01b148061084257506001600160e01b03198216635b5e139f60e01b145b8061085d57506001600160e01b0319821663780e9d6360e01b145b8061087857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461088d90612d8b565b80601f01602080910402602001604051908101604052809291908181526020018280546108b990612d8b565b80156109065780601f106108db57610100808354040283529160200191610906565b820191906000526020600020905b8154815290600101906020018083116108e957829003601f168201915b5050505050905090565b600061091d826001541190565b6109845760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b816daaeb6d7670e522a718067333cd4e3b15610a5a57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610a0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a329190612dc5565b610a5a57604051633b79c77360e21b81526001600160a01b038216600482015260240161097b565b610a648383611b47565b505050565b826daaeb6d7670e522a718067333cd4e3b15610b3157336001600160a01b03821603610a9f57610a9a848484611c59565b610b3c565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610aee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b129190612dc5565b610b3157604051633b79c77360e21b815233600482015260240161097b565b610b3c848484611c59565b50505050565b6000546001600160a01b03163314610b6c5760405162461bcd60e51b815260040161097b90612de2565b601155565b6000546001600160a01b03163314610b9b5760405162461bcd60e51b815260040161097b90612de2565b600a55565b6000610bab836111f8565b8210610c045760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161097b565b6000610c0f60015490565b905060008060005b83811015610cb7576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c6a57805192505b876001600160a01b0316836001600160a01b031603610ca457868403610c965750935061087892505050565b83610ca081612e2d565b9450505b5080610caf81612e2d565b915050610c17565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161097b565b6000546001600160a01b03163314610d415760405162461bcd60e51b815260040161097b90612de2565b600e55565b6000546001600160a01b03163314610d705760405162461bcd60e51b815260040161097b90612de2565b600c5481610d7d60015490565b610d879190612e46565b1115610de65760405162461bcd60e51b815260206004820152602860248201527f596f752063616e2774206d696e74206d6f7265207468616e20636f6c6c656374604482015267696f6e2073697a6560c01b606482015260840161097b565b610df08282611c64565b5050565b6000546001600160a01b03163314610e1e5760405162461bcd60e51b815260040161097b90612de2565b600d55565b826daaeb6d7670e522a718067333cd4e3b15610ee657336001600160a01b03821603610e5457610a9a848484611c7e565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610ea3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec79190612dc5565b610ee657604051633b79c77360e21b815233600482015260240161097b565b610b3c848484611c7e565b600a54600114610f435760405162461bcd60e51b815260206004820152601f60248201527f57686974656c69737420726f756e64206861736e2774206f70656e2079657400604482015260640161097b565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610f898260125483611c99565b610fcd5760405162461bcd60e51b81526020600482015260156024820152742cb7ba93b932903737ba103bb434ba32b634b9ba1760591b604482015260640161097b565b600d5483610fda60015490565b610fe49190612e46565b11156110325760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e73604482015260640161097b565b600f5433600090815260146020526040902054611050908590612e46565b11156110b75760405162461bcd60e51b815260206004820152603060248201527f4d617820706572206164647265737320666f722077686974656c6973742e205060448201526f3632b0b9b2903a393c903637bbb2b91760811b606482015260840161097b565b3483600b546110c69190612e59565b11156111145760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161097b565b61111e3384611c64565b336000908152601460205260408120805485929061113d908490612e46565b9091555050505050565b600061115260015490565b82106111ac5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161097b565b5090565b6000546001600160a01b031633146111da5760405162461bcd60e51b815260040161097b90612de2565b6013610df08282612eb6565b60006111f182611caf565b5192915050565b60006001600160a01b0382166112645760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161097b565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146112b35760405162461bcd60e51b815260040161097b90612de2565b6112bd6000611e59565b565b60606003805461088d90612d8b565b6000546001600160a01b031633146112f85760405162461bcd60e51b815260040161097b90612de2565b601055565b816daaeb6d7670e522a718067333cd4e3b156113b757604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561136b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061138f9190612dc5565b6113b757604051633b79c77360e21b81526001600160a01b038216600482015260240161097b565b610a648383611ea9565b6002600954036114135760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161097b565b600260095560006064611427476028612e59565b6114319190612f8c565b905060006064611442476012612e59565b61144c9190612f8c565b90506000606461145d476012612e59565b6114679190612f8c565b905060006064611478476012612e59565b6114829190612f8c565b905060006064611493476006612e59565b61149d9190612f8c565b9050600047116114dd5760405162461bcd60e51b815260206004820152600b60248201526a139bc8115512081b19599d60aa1b604482015260640161097b565b6015546040516001600160a01b039091169086156108fc029087906000818181858888f1935050505061150f57600080fd5b6016546040516001600160a01b039091169085156108fc029086906000818181858888f1935050505061154157600080fd5b6017546040516001600160a01b039091169084156108fc029085906000818181858888f1935050505061157357600080fd5b6018546040516001600160a01b039091169083156108fc029084906000818181858888f193505050506115a557600080fd5b6019546040516001600160a01b039091169082156108fc029083906000818181858888f193505050506115d757600080fd5b50506001600955505050565b6000546001600160a01b0316331461160d5760405162461bcd60e51b815260040161097b90612de2565b600c55565b6000546001600160a01b0316331461163c5760405162461bcd60e51b815260040161097b90612de2565b600f55565b6000546001600160a01b0316331461166b5760405162461bcd60e51b815260040161097b90612de2565b601255565b836daaeb6d7670e522a718067333cd4e3b1561173957336001600160a01b038216036116a7576116a285858585611f6d565b611745565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156116f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061171a9190612dc5565b61173957604051633b79c77360e21b815233600482015260240161097b565b61174585858585611f6d565b5050505050565b6060611759826001541190565b6117bd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161097b565b60006117c7611fa0565b905060008151116117e75760405180602001604052806000815250611812565b806117f184611faf565b604051602001611802929190612fa0565b6040516020818303038152906040525b9392505050565b6000610878826120b8565b3233146118735760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161097b565b600a546005146118c55760405162461bcd60e51b815260206004820152601c60248201527f7075626c69632073616c65206861736e277420626567756e2079657400000000604482015260640161097b565b80601154146119295760405162461bcd60e51b815260206004820152602a60248201527f7075626c69632073616c65206861736e277420626567756e207965742028777260448201526937b7339039b2b2b2149760b11b606482015260840161097b565b600c548261193660015490565b6119409190612e46565b11156119835760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b604482015260640161097b565b601054336000908152601460205260409020600101546119a4908490612e46565b11156119eb5760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b604482015260640161097b565b81600b546119f99190612e59565b341015611a485760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e7400000000604482015260640161097b565b611a523383611c64565b3360009081526014602052604081206001018054849290611a74908490612e46565b90915550505050565b6000546001600160a01b03163314611aa75760405162461bcd60e51b815260040161097b90612de2565b6001600160a01b038116611b0c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161097b565b611b1581611e59565b50565b6000546001600160a01b03163314611b425760405162461bcd60e51b815260040161097b90612de2565b600b55565b6000611b52826111e6565b9050806001600160a01b0316836001600160a01b031603611bc05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161097b565b336001600160a01b0382161480611bdc5750611bdc813361077a565b611c4e5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161097b565b610a64838383612156565b610a648383836121b2565b610df082826040518060200160405280600081525061253a565b610a6483838360405180602001604052806000815250611670565b600082611ca68584612815565b14949350505050565b6040805180820190915260008082526020820152611cce826001541190565b611d2d5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161097b565b60007f00000000000000000000000000000000000000000000000000000000000000148310611d8e57611d807f000000000000000000000000000000000000000000000000000000000000001484612fcf565b611d8b906001612e46565b90505b825b818110611df8576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611de557949350505050565b5080611df081612fe2565b915050611d90565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161097b565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b336001600160a01b03831603611f015760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161097b565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611f788484846121b2565b611f8484848484612862565b610b3c5760405162461bcd60e51b815260040161097b90612ff9565b60606013805461088d90612d8b565b606081600003611fd65750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120005780611fea81612e2d565b9150611ff99050600a83612f8c565b9150611fda565b60008167ffffffffffffffff81111561201b5761201b612ac0565b6040519080825280601f01601f191660200182016040528015612045576020820181803683370190505b5090505b84156120b05761205a600183612fcf565b9150612067600a8661304c565b612072906030612e46565b60f81b81838151811061208757612087613060565b60200101906001600160f81b031916908160001a9053506120a9600a86612f8c565b9450612049565b949350505050565b60006001600160a01b03821661212a5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b606482015260840161097b565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006121bd82611caf565b80519091506000906001600160a01b0316336001600160a01b031614806121f45750336121e984610910565b6001600160a01b0316145b8061220657508151612206903361077a565b9050806122705760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161097b565b846001600160a01b031682600001516001600160a01b0316146122e45760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161097b565b6001600160a01b0384166123485760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161097b565b6123586000848460000151612156565b6001600160a01b038516600090815260056020526040812080546001929061238a9084906001600160801b0316613076565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260056020526040812080546001945090926123d69185911661309d565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561245e846001612e46565b6000818152600460205260409020549091506001600160a01b03166124f057612488816001541190565b156124f05760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6001546001600160a01b03841661259d5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161097b565b6125a8816001541190565b156125f55760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161097b565b7f00000000000000000000000000000000000000000000000000000000000000148311156126705760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161097b565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906126cc90879061309d565b6001600160801b031681526020018583602001516126ea919061309d565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561280a5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46127ce6000888488612862565b6127ea5760405162461bcd60e51b815260040161097b90612ff9565b816127f481612e2d565b925050808061280290612e2d565b915050612781565b506001819055612532565b600081815b845181101561285a576128468286838151811061283957612839613060565b6020026020010151612963565b91508061285281612e2d565b91505061281a565b509392505050565b60006001600160a01b0384163b1561295857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906128a69033908990889088906004016130bd565b6020604051808303816000875af19250505080156128e1575060408051601f3d908101601f191682019092526128de918101906130fa565b60015b61293e573d80801561290f576040519150601f19603f3d011682016040523d82523d6000602084013e612914565b606091505b5080516000036129365760405162461bcd60e51b815260040161097b90612ff9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506120b0565b506001949350505050565b600081831061297f576000828152602084905260409020611812565b5060009182526020526040902090565b6001600160e01b031981168114611b1557600080fd5b6000602082840312156129b757600080fd5b81356118128161298f565b60005b838110156129dd5781810151838201526020016129c5565b50506000910152565b600081518084526129fe8160208601602086016129c2565b601f01601f19169290920160200192915050565b60208152600061181260208301846129e6565b600060208284031215612a3757600080fd5b5035919050565b80356001600160a01b0381168114612a5557600080fd5b919050565b60008060408385031215612a6d57600080fd5b612a7683612a3e565b946020939093013593505050565b600080600060608486031215612a9957600080fd5b612aa284612a3e565b9250612ab060208501612a3e565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612aff57612aff612ac0565b604052919050565b60008060408385031215612b1a57600080fd5b8235915060208084013567ffffffffffffffff80821115612b3a57600080fd5b818601915086601f830112612b4e57600080fd5b813581811115612b6057612b60612ac0565b8060051b9150612b71848301612ad6565b8181529183018401918481019089841115612b8b57600080fd5b938501935b83851015612ba957843582529385019390850190612b90565b8096505050505050509250929050565b600067ffffffffffffffff831115612bd357612bd3612ac0565b612be6601f8401601f1916602001612ad6565b9050828152838383011115612bfa57600080fd5b828260208301376000602084830101529392505050565b600060208284031215612c2357600080fd5b813567ffffffffffffffff811115612c3a57600080fd5b8201601f81018413612c4b57600080fd5b6120b084823560208401612bb9565b600060208284031215612c6c57600080fd5b61181282612a3e565b8015158114611b1557600080fd5b60008060408385031215612c9657600080fd5b612c9f83612a3e565b91506020830135612caf81612c75565b809150509250929050565b60008060008060808587031215612cd057600080fd5b612cd985612a3e565b9350612ce760208601612a3e565b925060408501359150606085013567ffffffffffffffff811115612d0a57600080fd5b8501601f81018713612d1b57600080fd5b612d2a87823560208401612bb9565b91505092959194509250565b60008060408385031215612d4957600080fd5b612d5283612a3e565b9150612d6060208401612a3e565b90509250929050565b60008060408385031215612d7c57600080fd5b50508035926020909101359150565b600181811c90821680612d9f57607f821691505b602082108103612dbf57634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215612dd757600080fd5b815161181281612c75565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600060018201612e3f57612e3f612e17565b5060010190565b8082018082111561087857610878612e17565b808202811582820484141761087857610878612e17565b601f821115610a6457600081815260208120601f850160051c81016020861015612e975750805b601f850160051c820191505b8181101561253257828155600101612ea3565b815167ffffffffffffffff811115612ed057612ed0612ac0565b612ee481612ede8454612d8b565b84612e70565b602080601f831160018114612f195760008415612f015750858301515b600019600386901b1c1916600185901b178555612532565b600085815260208120601f198616915b82811015612f4857888601518255948401946001909101908401612f29565b5085821015612f665787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601260045260246000fd5b600082612f9b57612f9b612f76565b500490565b60008351612fb28184602088016129c2565b835190830190612fc68183602088016129c2565b01949350505050565b8181038181111561087857610878612e17565b600081612ff157612ff1612e17565b506000190190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008261305b5761305b612f76565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160801b0382811682821603908082111561309657613096612e17565b5092915050565b6001600160801b0381811683821601908082111561309657613096612e17565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906130f0908301846129e6565b9695505050505050565b60006020828403121561310c57600080fd5b81516118128161298f56fea2646970667358221220a7daedeafc1a2cf3d2553619a9a0d4211179ef91450b9c9610aee08daca1712f64736f6c63430008110033

Deployed Bytecode Sourcemap

253:7055:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6194:31;;;6203:10;188:51:17;;6215:9:12;270:2:17;255:18;;248:34;6194:31:12;;161:18:17;6194:31:12;;;;;;;253:7055;;;;;3826:358:4;;;;;;;;;;-1:-1:-1;3826:358:4;;;;;:::i;:::-;;:::i;:::-;;;844:14:17;;837:22;819:41;;807:2;792:18;3826:358:4;;;;;;;;5490:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;6963:208::-;;;;;;;;;;-1:-1:-1;6963:208:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1976:32:17;;;1958:51;;1946:2;1931:18;6963:208:4;1812:203:17;6529:155:12;;;;;;;;;;-1:-1:-1;6529:155:12;;;;;:::i;:::-;;:::i;:::-;;371:24;;;;;;;;;;;;;;;;;;;2603:25:17;;;2591:2;2576:18;371:24:12;2457:177:17;2432:92:4;;;;;;;;;;-1:-1:-1;2507:12:4;;2432:92;;444:37:12;;;;;;;;;;;;;;;;6690:161;;;;;;;;;;-1:-1:-1;6690:161:12;;;;;:::i;:::-;;:::i;2389:92::-;;;;;;;;;;-1:-1:-1;2389:92:12;;;;;:::i;:::-;;:::i;2291:::-;;;;;;;;;;-1:-1:-1;2291:92:12;;;;;:::i;:::-;;:::i;3046:721:4:-;;;;;;;;;;-1:-1:-1;3046:721:4;;;;;:::i;:::-;;:::i;1481:95:12:-;;;;;;;;;;-1:-1:-1;1481:95:12;;;;;:::i;:::-;;:::i;2616:226::-;;;;;;;;;;-1:-1:-1;2616:226:12;;;;;:::i;:::-;;:::i;1823:108::-;;;;;;;;;;-1:-1:-1;1823:108:12;;;;;:::i;:::-;;:::i;722:21::-;;;;;;;;;;;;;;;;6857:169;;;;;;;;;;-1:-1:-1;6857:169:12;;;;;:::i;:::-;;:::i;2919:791::-;;;;;;:::i;:::-;;:::i;2588:174:4:-;;;;;;;;;;-1:-1:-1;2588:174:4;;;;;:::i;:::-;;:::i;1288:103:12:-;;;;;;;;;;-1:-1:-1;1288:103:12;;;;;:::i;:::-;;:::i;5320:116:4:-;;;;;;;;;;-1:-1:-1;5320:116:4;;;;;:::i;:::-;;:::i;622:34:12:-;;;;;;;;;;;;;;;;403;;;;;;;;;;;;;;;;4235:208:4;;;;;;;;;;-1:-1:-1;4235:208:4;;;;;:::i;:::-;;:::i;1598:92:14:-;;;;;;;;;;;;;:::i;966:85::-;;;;;;;;;;-1:-1:-1;1012:7:14;1038:6;-1:-1:-1;;;;;1038:6:14;966:85;;5638:96:4;;;;;;;;;;;;;:::i;488:33:12:-;;;;;;;;;;;;;;;;1937:116;;;;;;;;;;-1:-1:-1;1937:116:12;;;;;:::i;:::-;;:::i;871:55::-;;;;;;;;;;-1:-1:-1;871:55:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;5818:25:17;;;5874:2;5859:18;;5852:34;;;;5791:18;871:55:12;5644:248:17;6349:174:12;;;;;;;;;;-1:-1:-1;6349:174:12;;;;;:::i;:::-;;:::i;5319:714::-;;;:::i;1692:125::-;;;;;;;;;;-1:-1:-1;1692:125:12;;;;;:::i;:::-;;:::i;2059:128::-;;;;;;;;;;-1:-1:-1;2059:128:12;;;;;:::i;:::-;;:::i;2193:92::-;;;;;;;;;;-1:-1:-1;2193:92:12;;;;;:::i;:::-;;:::i;7032:222::-;;;;;;;;;;-1:-1:-1;7032:222:12;;;;;:::i;:::-;;:::i;5792:377:4:-;;;;;;;;;;-1:-1:-1;5792:377:4;;;;;:::i;:::-;;:::i;662:31:12:-;;;;;;;;;;;;;;;;12494:43:4;;;;;;;;;;;;;;;;4502:233:12;;;;;;;;;;-1:-1:-1;4502:233:12;;;;;:::i;:::-;;:::i;7565:178:4:-;;;;;;;;;;-1:-1:-1;7565:178:4;;;;;:::i;:::-;-1:-1:-1;;;;;7703:25:4;;;7682:4;7703:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;7565:178;3791:705:12;;;;;;:::i;:::-;;:::i;1839:189:14:-;;;;;;;;;;-1:-1:-1;1839:189:14;;;;;:::i;:::-;;:::i;1586:96:12:-;;;;;;;;;;-1:-1:-1;1586:96:12;;;;;:::i;:::-;;:::i;530:31::-;;;;;;;;;;;;;;;;3826:358:4;3948:4;-1:-1:-1;;;;;;3975:40:4;;-1:-1:-1;;;3975:40:4;;:98;;-1:-1:-1;;;;;;;4025:48:4;;-1:-1:-1;;;4025:48:4;3975:98;:158;;;-1:-1:-1;;;;;;;4083:50:4;;-1:-1:-1;;;4083:50:4;3975:158;:204;;;-1:-1:-1;;;;;;;;;;871:40:3;;;4143:36:4;3962:217;3826:358;-1:-1:-1;;3826:358:4:o;5490:92::-;5544:13;5572:5;5565:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5490:92;:::o;6963:208::-;7039:7;7062:16;7070:7;8840:12;;-1:-1:-1;8830:22:4;8754:103;7062:16;7054:74;;;;-1:-1:-1;;;7054:74:4;;8302:2:17;7054:74:4;;;8284:21:17;8341:2;8321:18;;;8314:30;8380:34;8360:18;;;8353:62;-1:-1:-1;;;8431:18:17;;;8424:43;8484:19;;7054:74:4;;;;;;;;;-1:-1:-1;7142:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;7142:24:4;;6963:208::o;6529:155:12:-;6625:8;529:42:13;2385:45;:49;2381:221;;2455:67;;-1:-1:-1;;;2455:67:13;;2506:4;2455:67;;;8726:34:17;-1:-1:-1;;;;;8796:15:17;;8776:18;;;8769:43;529:42:13;;2455;;8661:18:17;;2455:67:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2450:142;;2549:28;;-1:-1:-1;;;2549:28:13;;-1:-1:-1;;;;;1976:32:17;;2549:28:13;;;1958:51:17;1931:18;;2549:28:13;1812:203:17;2450:142:13;6645:32:12::1;6659:8;6669:7;6645:13;:32::i;:::-;6529:155:::0;;;:::o;6690:161::-;6791:4;529:42:13;1656:45;:49;1652:528;;1941:10;-1:-1:-1;;;;;1933:18:13;;;1929:82;;6807:37:12::1;6826:4;6832:2;6836:7;6807:18;:37::i;:::-;1990:7:13::0;;1929:82;2029:69;;-1:-1:-1;;;2029:69:13;;2080:4;2029:69;;;8726:34:17;2087:10:13;8776:18:17;;;8769:43;529:42:13;;2029;;8661:18:17;;2029:69:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2024:146;;2125:30;;-1:-1:-1;;;2125:30:13;;2144:10;2125:30;;;1958:51:17;1931:18;;2125:30:13;1812:203:17;2024:146:13;6807:37:12::1;6826:4;6832:2;6836:7;6807:18;:37::i;:::-;6690:161:::0;;;;:::o;2389:92::-;1012:7:14;1038:6;-1:-1:-1;;;;;1038:6:14;665:10:1;1178:23:14;1170:68;;;;-1:-1:-1;;;1170:68:14;;;;;;;:::i;:::-;2455:6:12::1;:18:::0;2389:92::o;2291:::-;1012:7:14;1038:6;-1:-1:-1;;;;;1038:6:14;665:10:1;1178:23:14;1170:68;;;;-1:-1:-1;;;1170:68:14;;;;;;;:::i;:::-;2355:9:12::1;:20:::0;2291:92::o;3046:721:4:-;3151:7;3184:16;3194:5;3184:9;:16::i;:::-;3176:5;:24;3168:71;;;;-1:-1:-1;;;3168:71:4;;9636:2:17;3168:71:4;;;9618:21:17;9675:2;9655:18;;;9648:30;9714:34;9694:18;;;9687:62;-1:-1:-1;;;9765:18:17;;;9758:32;9807:19;;3168:71:4;9434:398:17;3168:71:4;3245:22;3270:13;2507:12;;;2432:92;3270:13;3245:38;;3289:19;3318:25;3367:9;3362:339;3386:14;3382:1;:18;3362:339;;;3415:31;3449:14;;;:11;:14;;;;;;;;;3415:48;;;;;;;;;-1:-1:-1;;;;;3415:48:4;;;;;-1:-1:-1;;;3415:48:4;;;;;;;;;;;;3475:28;3471:87;;3535:14;;;-1:-1:-1;3471:87:4;3590:5;-1:-1:-1;;;;;3569:26:4;:17;-1:-1:-1;;;;;3569:26:4;;3565:130;;3626:5;3611:11;:20;3607:57;;-1:-1:-1;3652:1:4;-1:-1:-1;3645:8:4;;-1:-1:-1;;;3645:8:4;3607:57;3673:13;;;;:::i;:::-;;;;3565:130;-1:-1:-1;3402:3:4;;;;:::i;:::-;;;;3362:339;;;-1:-1:-1;3706:56:4;;-1:-1:-1;;;3706:56:4;;10311:2:17;3706:56:4;;;10293:21:17;10350:2;10330:18;;;10323:30;10389:34;10369:18;;;10362:62;-1:-1:-1;;;10440:18:17;;;10433:44;10494:19;;3706:56:4;10109:410:17;1481:95:12;1012:7:14;1038:6;-1:-1:-1;;;;;1038:6:14;665:10:1;1178:23:14;1170:68;;;;-1:-1:-1;;;1170:68:14;;;;;;;:::i;:::-;1547:11:12::1;:21:::0;1481:95::o;2616:226::-;1012:7:14;1038:6;-1:-1:-1;;;;;1038:6:14;665:10:1;1178:23:14;1170:68;;;;-1:-1:-1;;;1170:68:14;;;;;;;:::i;:::-;2736:15:12::1;;2721:11;2705:13;2507:12:4::0;;;2432:92;2705:13:12::1;:27;;;;:::i;:::-;:46;;2697:100;;;::::0;-1:-1:-1;;;2697:100:12;;10856:2:17;2697:100:12::1;::::0;::::1;10838:21:17::0;10895:2;10875:18;;;10868:30;10934:34;10914:18;;;10907:62;-1:-1:-1;;;10985:18:17;;;10978:38;11033:19;;2697:100:12::1;10654:404:17::0;2697:100:12::1;2808:27;2819:3;2823:11;2808:9;:27::i;:::-;2616:226:::0;;:::o;1823:108::-;1012:7:14;1038:6;-1:-1:-1;;;;;1038:6:14;665:10:1;1178:23:14;1170:68;;;;-1:-1:-1;;;1170:68:14;;;;;;;:::i;:::-;1897:10:12::1;:26:::0;1823:108::o;6857:169::-;6962:4;529:42:13;1656:45;:49;1652:528;;1941:10;-1:-1:-1;;;;;1933:18:13;;;1929:82;;6978:41:12::1;7001:4;7007:2;7011:7;6978:22;:41::i;1929:82:13:-:0;2029:69;;-1:-1:-1;;;2029:69:13;;2080:4;2029:69;;;8726:34:17;2087:10:13;8776:18:17;;;8769:43;529:42:13;;2029;;8661:18:17;;2029:69:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2024:146;;2125:30;;-1:-1:-1;;;2125:30:13;;2144:10;2125:30;;;1958:51:17;1931:18;;2125:30:13;1812:203:17;2024:146:13;6978:41:12::1;7001:4;7007:2;7011:7;6978:22;:41::i;2919:791::-:0;3024:9;;3037:1;3024:14;3016:58;;;;-1:-1:-1;;;3016:58:12;;11265:2:17;3016:58:12;;;11247:21:17;11304:2;11284:18;;;11277:30;11343:33;11323:18;;;11316:61;11394:18;;3016:58:12;11063:355:17;3016:58:12;3110:28;;-1:-1:-1;;3127:10:12;11572:2:17;11568:15;11564:53;3110:28:12;;;11552:66:17;3085:12:12;;11634::17;;3110:28:12;;;;;;;;;;;;3100:39;;;;;;3085:54;;3170:40;3189:6;3197;;3205:4;3170:18;:40::i;:::-;3149:108;;;;-1:-1:-1;;;3149:108:12;;11859:2:17;3149:108:12;;;11841:21:17;11898:2;11878:18;;;11871:30;-1:-1:-1;;;11917:18:17;;;11910:51;11978:18;;3149:108:12;11657:345:17;3149:108:12;3307:10;;3292:11;3276:13;2507:12:4;;;2432:92;3276:13:12;:27;;;;:::i;:::-;:41;;3268:87;;;;-1:-1:-1;;;3268:87:12;;12209:2:17;3268:87:12;;;12191:21:17;;;12228:18;;;12221:30;12287:34;12267:18;;;12260:62;12339:18;;3268:87:12;12007:356:17;3268:87:12;3436:15;;3397:10;3382:26;;;;:14;:26;;;;;:36;:50;;3421:11;;3382:50;:::i;:::-;:69;;3374:130;;;;-1:-1:-1;;;3374:130:12;;12570:2:17;3374:130:12;;;12552:21:17;12609:2;12589:18;;;12582:30;12648:34;12628:18;;;12621:62;-1:-1:-1;;;12699:18:17;;;12692:46;12755:19;;3374:130:12;12368:412:17;3374:130:12;3550:9;3535:11;3523:9;;:23;;;;:::i;:::-;:36;;3515:80;;;;-1:-1:-1;;;3515:80:12;;13160:2:17;3515:80:12;;;13142:21:17;13199:2;13179:18;;;13172:30;13238:33;13218:18;;;13211:61;13289:18;;3515:80:12;12958:355:17;3515:80:12;3606:34;3616:10;3628:11;3606:9;:34::i;:::-;3665:10;3650:26;;;;:14;:26;;;;;:51;;3690:11;;3650:26;:51;;3690:11;;3650:51;:::i;:::-;;;;-1:-1:-1;;;;;2919:791:12:o;2588:174:4:-;2655:7;2686:13;2507:12;;;2432:92;2686:13;2678:5;:21;2670:69;;;;-1:-1:-1;;;2670:69:4;;13520:2:17;2670:69:4;;;13502:21:17;13559:2;13539:18;;;13532:30;13598:34;13578:18;;;13571:62;-1:-1:-1;;;13649:18:17;;;13642:33;13692:19;;2670:69:4;13318:399:17;2670:69:4;-1:-1:-1;2752:5:4;2588:174::o;1288:103:12:-;1012:7:14;1038:6;-1:-1:-1;;;;;1038:6:14;665:10:1;1178:23:14;1170:68;;;;-1:-1:-1;;;1170:68:14;;;;;;;:::i;:::-;1363:7:12::1;:21;1373:11:::0;1363:7;:21:::1;:::i;5320:116:4:-:0;5384:7;5406:20;5418:7;5406:11;:20::i;:::-;:25;;5320:116;-1:-1:-1;;5320:116:4:o;4235:208::-;4299:7;-1:-1:-1;;;;;4322:19:4;;4314:75;;;;-1:-1:-1;;;4314:75:4;;16128:2:17;4314:75:4;;;16110:21:17;16167:2;16147:18;;;16140:30;16206:34;16186:18;;;16179:62;-1:-1:-1;;;16257:18:17;;;16250:41;16308:19;;4314:75:4;15926:407:17;4314:75:4;-1:-1:-1;;;;;;4410:19:4;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;4410:27:4;;4235:208::o;1598:92:14:-;1012:7;1038:6;-1:-1:-1;;;;;1038:6:14;665:10:1;1178:23:14;1170:68;;;;-1:-1:-1;;;1170:68:14;;;;;;;:::i;:::-;1662:21:::1;1680:1;1662:9;:21::i;:::-;1598:92::o:0;5638:96:4:-;5694:13;5722:7;5715:14;;;;;:::i;1937:116:12:-;1012:7:14;1038:6;-1:-1:-1;;;;;1038:6:14;665:10:1;1178:23:14;1170:68;;;;-1:-1:-1;;;1170:68:14;;;;;;;:::i;:::-;2015:12:12::1;:30:::0;1937:116::o;6349:174::-;6453:8;529:42:13;2385:45;:49;2381:221;;2455:67;;-1:-1:-1;;;2455:67:13;;2506:4;2455:67;;;8726:34:17;-1:-1:-1;;;;;8796:15:17;;8776:18;;;8769:43;529:42:13;;2455;;8661:18:17;;2455:67:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2450:142;;2549:28;;-1:-1:-1;;;2549:28:13;;-1:-1:-1;;;;;1976:32:17;;2549:28:13;;;1958:51:17;1931:18;;2549:28:13;1812:203:17;2450:142:13;6473:43:12::1;6497:8;6507;6473:23;:43::i;5319:714::-:0;1680:1:15;2259:7;;:19;2251:63;;;;-1:-1:-1;;;2251:63:15;;16540:2:17;2251:63:15;;;16522:21:17;16579:2;16559:18;;;16552:30;16618:33;16598:18;;;16591:61;16669:18;;2251:63:15;16338:355:17;2251:63:15;1680:1;2389:7;:18;5386:16:12::1;5430:3;5405:24;:21;5427:2;5405:24;:::i;:::-;:28;;;;:::i;:::-;5386:47:::0;-1:-1:-1;5454:16:12::1;5498:3;5473:24;:21;5495:2;5473:24;:::i;:::-;:28;;;;:::i;:::-;5454:47:::0;-1:-1:-1;5522:16:12::1;5566:3;5541:24;:21;5563:2;5541:24;:::i;:::-;:28;;;;:::i;:::-;5522:47:::0;-1:-1:-1;5591:16:12::1;5635:3;5610:24;:21;5632:2;5610:24;:::i;:::-;:28;;;;:::i;:::-;5591:47:::0;-1:-1:-1;5658:16:12::1;5701:3;5677:23;:21;5699:1;5677:23;:::i;:::-;:27;;;;:::i;:::-;5658:46;;5757:1;5733:21;:25;5725:49;;;::::0;-1:-1:-1;;;5725:49:12;;17157:2:17;5725:49:12::1;::::0;::::1;17139:21:17::0;17196:2;17176:18;;;17169:30;-1:-1:-1;;;17215:18:17;;;17208:41;17266:18;;5725:49:12::1;16955:335:17::0;5725:49:12::1;5801:7;::::0;5793:31:::1;::::0;-1:-1:-1;;;;;5801:7:12;;::::1;::::0;5793:31;::::1;;;::::0;5815:8;;5801:7:::1;5793:31:::0;5801:7;5793:31;5815:8;5801:7;5793:31;::::1;;;;;;5785:40;;;::::0;::::1;;5851:7;::::0;5843:31:::1;::::0;-1:-1:-1;;;;;5851:7:12;;::::1;::::0;5843:31;::::1;;;::::0;5865:8;;5851:7:::1;5843:31:::0;5851:7;5843:31;5865:8;5851:7;5843:31;::::1;;;;;;5835:40;;;::::0;::::1;;5901:7;::::0;5893:31:::1;::::0;-1:-1:-1;;;;;5901:7:12;;::::1;::::0;5893:31;::::1;;;::::0;5915:8;;5901:7:::1;5893:31:::0;5901:7;5893:31;5915:8;5901:7;5893:31;::::1;;;;;;5885:40;;;::::0;::::1;;5951:7;::::0;5943:31:::1;::::0;-1:-1:-1;;;;;5951:7:12;;::::1;::::0;5943:31;::::1;;;::::0;5965:8;;5951:7:::1;5943:31:::0;5951:7;5943:31;5965:8;5951:7;5943:31;::::1;;;;;;5935:40;;;::::0;::::1;;6001:7;::::0;5993:31:::1;::::0;-1:-1:-1;;;;;6001:7:12;;::::1;::::0;5993:31;::::1;;;::::0;6015:8;;6001:7:::1;5993:31:::0;6001:7;5993:31;6015:8;6001:7;5993:31;::::1;;;;;;5985:40;;;::::0;::::1;;-1:-1:-1::0;;1637:1:15;2562:7;:22;-1:-1:-1;;;5319:714:12:o;1692:125::-;1012:7:14;1038:6;-1:-1:-1;;;;;1038:6:14;665:10:1;1178:23:14;1170:68;;;;-1:-1:-1;;;1170:68:14;;;;;;;:::i;:::-;1774:15:12::1;:35:::0;1692:125::o;2059:128::-;1012:7:14;1038:6;-1:-1:-1;;;;;1038:6:14;665:10:1;1178:23:14;1170:68;;;;-1:-1:-1;;;1170:68:14;;;;;;;:::i;:::-;2144:15:12::1;:36:::0;2059:128::o;2193:92::-;1012:7:14;1038:6;-1:-1:-1;;;;;1038:6:14;665:10:1;1178:23:14;1170:68;;;;-1:-1:-1;;;1170:68:14;;;;;;;:::i;:::-;2259:6:12::1;:18:::0;2193:92::o;7032:222::-;7180:4;529:42:13;1656:45;:49;1652:528;;1941:10;-1:-1:-1;;;;;1933:18:13;;;1929:82;;7200:47:12::1;7223:4;7229:2;7233:7;7242:4;7200:22;:47::i;:::-;1990:7:13::0;;1929:82;2029:69;;-1:-1:-1;;;2029:69:13;;2080:4;2029:69;;;8726:34:17;2087:10:13;8776:18:17;;;8769:43;529:42:13;;2029;;8661:18:17;;2029:69:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2024:146;;2125:30;;-1:-1:-1;;;2125:30:13;;2144:10;2125:30;;;1958:51:17;1931:18;;2125:30:13;1812:203:17;2024:146:13;7200:47:12::1;7223:4;7229:2;7233:7;7242:4;7200:22;:47::i;:::-;7032:222:::0;;;;;:::o;5792:377:4:-;5885:13;5923:16;5931:7;8840:12;;-1:-1:-1;8830:22:4;8754:103;5923:16;5908:94;;;;-1:-1:-1;;;5908:94:4;;17497:2:17;5908:94:4;;;17479:21:17;17536:2;17516:18;;;17509:30;17575:34;17555:18;;;17548:62;-1:-1:-1;;;17626:18:17;;;17619:45;17681:19;;5908:94:4;17295:411:17;5908:94:4;6009:21;6033:10;:8;:10::i;:::-;6009:34;;6086:1;6068:7;6062:21;:25;:102;;;;;;;;;;;;;;;;;6122:7;6131:18;:7;:16;:18::i;:::-;6105:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6062:102;6049:115;5792:377;-1:-1:-1;;;5792:377:4:o;4502:233:12:-;4560:7;4708:20;4722:5;4708:13;:20::i;3791:705::-;1068:9;1081:10;1068:23;1060:66;;;;-1:-1:-1;;;1060:66:12;;18414:2:17;1060:66:12;;;18396:21:17;18453:2;18433:18;;;18426:30;18492:32;18472:18;;;18465:60;18542:18;;1060:66:12;18212:354:17;1060:66:12;3900:9:::1;;3913:1;3900:14;3892:55;;;::::0;-1:-1:-1;;;3892:55:12;;18773:2:17;3892:55:12::1;::::0;::::1;18755:21:17::0;18812:2;18792:18;;;18785:30;18851;18831:18;;;18824:58;18899:18;;3892:55:12::1;18571:352:17::0;3892:55:12::1;3975:9;3965:6;;:19;3957:74;;;::::0;-1:-1:-1;;;3957:74:12;;19130:2:17;3957:74:12::1;::::0;::::1;19112:21:17::0;19169:2;19149:18;;;19142:30;19208:34;19188:18;;;19181:62;-1:-1:-1;;;19259:18:17;;;19252:40;19309:19;;3957:74:12::1;18928:406:17::0;3957:74:12::1;4080:15;;4065:11;4049:13;2507:12:4::0;;;2432:92;4049:13:12::1;:27;;;;:::i;:::-;:46;;4041:79;;;::::0;-1:-1:-1;;;4041:79:12;;19541:2:17;4041:79:12::1;::::0;::::1;19523:21:17::0;19580:2;19560:18;;;19553:30;-1:-1:-1;;;19599:18:17;;;19592:48;19657:18;;4041:79:12::1;19339:342:17::0;4041:79:12::1;4225:12;::::0;4186:10:::1;4171:26;::::0;;;:14:::1;:26;::::0;;;;:36:::1;;::::0;:50:::1;::::0;4210:11;;4171:50:::1;:::i;:::-;:66;;4163:101;;;::::0;-1:-1:-1;;;4163:101:12;;19888:2:17;4163:101:12::1;::::0;::::1;19870:21:17::0;19927:2;19907:18;;;19900:30;-1:-1:-1;;;19946:18:17;;;19939:52;20008:18;;4163:101:12::1;19686:346:17::0;4163:101:12::1;4338:11;4326:9;;:23;;;;:::i;:::-;4313:9;:36;;4305:77;;;::::0;-1:-1:-1;;;4305:77:12;;20239:2:17;4305:77:12::1;::::0;::::1;20221:21:17::0;20278:2;20258:18;;;20251:30;20317;20297:18;;;20290:58;20365:18;;4305:77:12::1;20037:352:17::0;4305:77:12::1;4393:34;4403:10;4415:11;4393:9;:34::i;:::-;4452:10;4437:26;::::0;;;:14:::1;:26;::::0;;;;:36:::1;;:51:::0;;4477:11;;4437:26;:51:::1;::::0;4477:11;;4437:51:::1;:::i;:::-;::::0;;;-1:-1:-1;;;;3791:705:12:o;1839:189:14:-;1012:7;1038:6;-1:-1:-1;;;;;1038:6:14;665:10:1;1178:23:14;1170:68;;;;-1:-1:-1;;;1170:68:14;;;;;;;:::i;:::-;-1:-1:-1;;;;;1927:22:14;::::1;1919:73;;;::::0;-1:-1:-1;;;1919:73:14;;20596:2:17;1919:73:14::1;::::0;::::1;20578:21:17::0;20635:2;20615:18;;;20608:30;20674:34;20654:18;;;20647:62;-1:-1:-1;;;20725:18:17;;;20718:36;20771:19;;1919:73:14::1;20394:402:17::0;1919:73:14::1;2002:19;2012:8;2002:9;:19::i;:::-;1839:189:::0;:::o;1586:96:12:-;1012:7:14;1038:6;-1:-1:-1;;;;;1038:6:14;665:10:1;1178:23:14;1170:68;;;;-1:-1:-1;;;1170:68:14;;;;;;;:::i;:::-;1654:9:12::1;:20:::0;1586:96::o;6533:377:4:-;6609:13;6625:24;6641:7;6625:15;:24::i;:::-;6609:40;;6669:5;-1:-1:-1;;;;;6663:11:4;:2;-1:-1:-1;;;;;6663:11:4;;6655:58;;;;-1:-1:-1;;;6655:58:4;;21003:2:17;6655:58:4;;;20985:21:17;21042:2;21022:18;;;21015:30;21081:34;21061:18;;;21054:62;-1:-1:-1;;;21132:18:17;;;21125:32;21174:19;;6655:58:4;20801:398:17;6655:58:4;665:10:1;-1:-1:-1;;;;;6735:21:4;;;;:62;;-1:-1:-1;6760:37:4;6777:5;665:10:1;7565:178:4;:::i;6760:37::-;6720:150;;;;-1:-1:-1;;;6720:150:4;;21406:2:17;6720:150:4;;;21388:21:17;21445:2;21425:18;;;21418:30;21484:34;21464:18;;;21457:62;21555:27;21535:18;;;21528:55;21600:19;;6720:150:4;21204:421:17;6720:150:4;6877:28;6886:2;6890:7;6899:5;6877:8;:28::i;7797:144::-;7908:28;7918:4;7924:2;7928:7;7908:9;:28::i;8861:96::-;8925:27;8935:2;8939:8;8925:27;;;;;;;;;;;;:9;:27::i;7999:159::-;8114:39;8131:4;8137:2;8141:7;8114:39;;;;;;;;;;;;:16;:39::i;1153:184:11:-;1274:4;1326;1297:25;1310:5;1317:4;1297:12;:25::i;:::-;:33;;1153:184;-1:-1:-1;;;;1153:184:11:o;4685:586:4:-;-1:-1:-1;;;;;;;;;;;;;;;;;4797:16:4;4805:7;8840:12;;-1:-1:-1;8830:22:4;8754:103;4797:16;4789:71;;;;-1:-1:-1;;;4789:71:4;;21832:2:17;4789:71:4;;;21814:21:17;21871:2;21851:18;;;21844:30;21910:34;21890:18;;;21883:62;-1:-1:-1;;;21961:18:17;;;21954:40;22011:19;;4789:71:4;21630:406:17;4789:71:4;4867:26;4914:12;4903:7;:23;4899:91;;4957:22;4967:12;4957:7;:22;:::i;:::-;:26;;4982:1;4957:26;:::i;:::-;4936:47;;4899:91;5016:7;4996:207;5033:18;5025:4;:26;4996:207;;5069:31;5103:17;;;:11;:17;;;;;;;;;5069:51;;;;;;;;;-1:-1:-1;;;;;5069:51:4;;;;;-1:-1:-1;;;5069:51:4;;;;;;;;;;;;5132:28;5128:69;;5179:9;4685:586;-1:-1:-1;;;;4685:586:4:o;5128:69::-;-1:-1:-1;5053:6:4;;;;:::i;:::-;;;;4996:207;;;-1:-1:-1;5209:57:4;;-1:-1:-1;;;5209:57:4;;22517:2:17;5209:57:4;;;22499:21:17;22556:2;22536:18;;;22529:30;22595:34;22575:18;;;22568:62;-1:-1:-1;;;22646:18:17;;;22639:45;22701:19;;5209:57:4;22315:411:17;2034:169:14;2089:16;2108:6;;-1:-1:-1;;;;;2124:17:14;;;-1:-1:-1;;;;;;2124:17:14;;;;;;2156:40;;2108:6;;;;;;;2156:40;;2089:16;2156:40;2079:124;2034:169;:::o;7230:277:4:-;665:10:1;-1:-1:-1;;;;;7328:24:4;;;7320:63;;;;-1:-1:-1;;;7320:63:4;;22933:2:17;7320:63:4;;;22915:21:17;22972:2;22952:18;;;22945:30;23011:28;22991:18;;;22984:56;23057:18;;7320:63:4;22731:350:17;7320:63:4;665:10:1;7390:32:4;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;7390:42:4;;;;;;;;;;;;:53;;-1:-1:-1;;7390:53:4;;;;;;;;;;7454:48;;819:41:17;;;7390:42:4;;665:10:1;7454:48:4;;792:18:17;7454:48:4;;;;;;;7230:277;;:::o;8216:308::-;8355:28;8365:4;8371:2;8375:7;8355:9;:28::i;:::-;8404:48;8427:4;8433:2;8437:7;8446:5;8404:22;:48::i;:::-;8389:130;;;;-1:-1:-1;;;8389:130:4;;;;;;;:::i;1176:106:12:-;1236:13;1268:7;1261:14;;;;;:::i;275:703:16:-;331:13;548:5;557:1;548:10;544:51;;-1:-1:-1;;574:10:16;;;;;;;;;;;;-1:-1:-1;;;574:10:16;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:16;;-1:-1:-1;720:2:16;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:16;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:16;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;849:56:16;;;;;;;;-1:-1:-1;919:11:16;928:2;919:11;;:::i;:::-;;;791:150;;;964:6;275:703;-1:-1:-1;;;;275:703:16:o;4447:234:4:-;4508:7;-1:-1:-1;;;;;4538:19:4;;4523:99;;;;-1:-1:-1;;;4523:99:4;;23957:2:17;4523:99:4;;;23939:21:17;23996:2;23976:18;;;23969:30;24035:34;24015:18;;;24008:62;-1:-1:-1;;;24086:18:17;;;24079:47;24143:19;;4523:99:4;23755:413:17;4523:99:4;-1:-1:-1;;;;;;4643:19:4;;;;;:12;:19;;;;;:32;-1:-1:-1;;;4643:32:4;;-1:-1:-1;;;;;4643:32:4;;4447:234::o;12325:165::-;12417:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;12417:29:4;-1:-1:-1;;;;;12417:29:4;;;;;;;;;12457:28;;12417:24;;12457:28;;;;;;;12325:165;;;:::o;10742:1484::-;10834:35;10872:20;10884:7;10872:11;:20::i;:::-;10941:18;;10834:58;;-1:-1:-1;10899:22:4;;-1:-1:-1;;;;;10925:34:4;665:10:1;-1:-1:-1;;;;;10925:34:4;;:80;;;-1:-1:-1;665:10:1;10969:20:4;10981:7;10969:11;:20::i;:::-;-1:-1:-1;;;;;10969:36:4;;10925:80;:140;;;-1:-1:-1;11032:18:4;;11015:50;;665:10:1;7565:178:4;:::i;11015:50::-;10899:167;;11088:17;11073:98;;;;-1:-1:-1;;;11073:98:4;;24375:2:17;11073:98:4;;;24357:21:17;24414:2;24394:18;;;24387:30;24453:34;24433:18;;;24426:62;-1:-1:-1;;;24504:18:17;;;24497:48;24562:19;;11073:98:4;24173:414:17;11073:98:4;11215:4;-1:-1:-1;;;;;11193:26:4;:13;:18;;;-1:-1:-1;;;;;11193:26:4;;11178:95;;;;-1:-1:-1;;;11178:95:4;;24794:2:17;11178:95:4;;;24776:21:17;24833:2;24813:18;;;24806:30;24872:34;24852:18;;;24845:62;-1:-1:-1;;;24923:18:17;;;24916:36;24969:19;;11178:95:4;24592:402:17;11178:95:4;-1:-1:-1;;;;;11287:16:4;;11279:66;;;;-1:-1:-1;;;11279:66:4;;25201:2:17;11279:66:4;;;25183:21:17;25240:2;25220:18;;;25213:30;25279:34;25259:18;;;25252:62;-1:-1:-1;;;25330:18:17;;;25323:35;25375:19;;11279:66:4;24999:401:17;11279:66:4;11449:49;11466:1;11470:7;11479:13;:18;;;11449:8;:49::i;:::-;-1:-1:-1;;;;;11505:18:4;;;;;;:12;:18;;;;;:31;;11535:1;;11505:18;:31;;11535:1;;-1:-1:-1;;;;;11505:31:4;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;11505:31:4;;;;;;;;;;;;;;;-1:-1:-1;;;;;11542:16:4;;-1:-1:-1;11542:16:4;;;:12;:16;;;;;:29;;-1:-1:-1;;;11542:16:4;;:29;;-1:-1:-1;;11542:29:4;;:::i;:::-;;;-1:-1:-1;;;;;11542:29:4;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11600:43:4;;;;;;;;-1:-1:-1;;;;;11600:43:4;;;;;;11626:15;11600:43;;;;;;;;;-1:-1:-1;11577:20:4;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;11577:66:4;-1:-1:-1;;;;;;11577:66:4;;;;;;;;;;;11889:11;11589:7;-1:-1:-1;11889:11:4;:::i;:::-;11951:1;11910:24;;;:11;:24;;;;;:29;11867:33;;-1:-1:-1;;;;;;11910:29:4;11906:229;;11967:20;11975:11;8840:12;;-1:-1:-1;8830:22:4;8754:103;11967:20;11963:166;;;12026:94;;;;;;;;12052:18;;-1:-1:-1;;;;;12026:94:4;;;;;;12082:28;;;;12026:94;;;;;;;;;;-1:-1:-1;11999:24:4;;;:11;:24;;;;;;;:121;;;;;;;;;-1:-1:-1;;;11999:121:4;-1:-1:-1;;;;;;11999:121:4;;;;;;;;;;;;11963:166;12165:7;12161:2;-1:-1:-1;;;;;12146:27:4;12155:4;-1:-1:-1;;;;;12146:27:4;;;;;;;;;;;12179:42;10828:1398;;;10742:1484;;;:::o;9283:1239::-;9406:12;;-1:-1:-1;;;;;9432:16:4;;9424:62;;;;-1:-1:-1;;;9424:62:4;;26014:2:17;9424:62:4;;;25996:21:17;26053:2;26033:18;;;26026:30;26092:34;26072:18;;;26065:62;-1:-1:-1;;;26143:18:17;;;26136:31;26184:19;;9424:62:4;25812:397:17;9424:62:4;9621:21;9629:12;8840;;-1:-1:-1;8830:22:4;8754:103;9621:21;9620:22;9612:64;;;;-1:-1:-1;;;9612:64:4;;26416:2:17;9612:64:4;;;26398:21:17;26455:2;26435:18;;;26428:30;26494:31;26474:18;;;26467:59;26543:18;;9612:64:4;26214:353:17;9612:64:4;9702:12;9690:8;:24;;9682:71;;;;-1:-1:-1;;;9682:71:4;;26774:2:17;9682:71:4;;;26756:21:17;26813:2;26793:18;;;26786:30;26852:34;26832:18;;;26825:62;-1:-1:-1;;;26903:18:17;;;26896:32;26945:19;;9682:71:4;26572:398:17;9682:71:4;-1:-1:-1;;;;;9861:16:4;;9828:30;9861:16;;;:12;:16;;;;;;;;;9828:49;;;;;;;;;-1:-1:-1;;;;;9828:49:4;;;;;-1:-1:-1;;;9828:49:4;;;;;;;;;;;9902:116;;;;;;;;9921:19;;9828:49;;9902:116;;;9921:39;;9951:8;;9921:39;:::i;:::-;-1:-1:-1;;;;;9902:116:4;;;;;10003:8;9968:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;9902:116:4;;;;;;-1:-1:-1;;;;;9883:16:4;;;;;;;:12;:16;;;;;;;;:135;;;;;;;;-1:-1:-1;;;9883:135:4;;;;;;;;;;;;10052:43;;;;;;;;;;;10078:15;10052:43;;;;;;;;10024:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;10024:71:4;-1:-1:-1;;;;;;10024:71:4;;;;;;;;;;;;;;;;;;10036:12;;10144:274;10168:8;10164:1;:12;10144:274;;;10196:38;;10221:12;;-1:-1:-1;;;;;10196:38:4;;;10213:1;;10196:38;;10213:1;;10196:38;10259:59;10290:1;10294:2;10298:12;10312:5;10259:22;:59::i;:::-;10242:147;;;;-1:-1:-1;;;10242:147:4;;;;;;;:::i;:::-;10397:14;;;;:::i;:::-;;;;10178:3;;;;;:::i;:::-;;;;10144:274;;;-1:-1:-1;10424:12:4;:27;;;10457:60;6690:161:12;1991:290:11;2074:7;2116:4;2074:7;2130:116;2154:5;:12;2150:1;:16;2130:116;;;2202:33;2212:12;2226:5;2232:1;2226:8;;;;;;;;:::i;:::-;;;;;;;2202:9;:33::i;:::-;2187:48;-1:-1:-1;2168:3:11;;;;:::i;:::-;;;;2130:116;;;-1:-1:-1;2262:12:11;1991:290;-1:-1:-1;;;1991:290:11:o;13995:667:4:-;14127:4;-1:-1:-1;;;;;14143:13:4;;1034:20:0;1080:8;14139:519:4;;14180:72;;-1:-1:-1;;;14180:72:4;;-1:-1:-1;;;;;14180:36:4;;;;;:72;;665:10:1;;14231:4:4;;14237:7;;14246:5;;14180:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14180:72:4;;;;;;;;-1:-1:-1;;14180:72:4;;;;;;;;;;;;:::i;:::-;;;14168:452;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14407:6;:13;14424:1;14407:18;14403:209;;14439:61;;-1:-1:-1;;;14439:61:4;;;;;;;:::i;14403:209::-;14582:6;14576:13;14567:6;14563:2;14559:15;14552:38;14168:452;-1:-1:-1;;;;;;14300:55:4;-1:-1:-1;;;14300:55:4;;-1:-1:-1;14293:62:4;;14139:519;-1:-1:-1;14647:4:4;13995:667;;;;;;:::o;5518:147:11:-;5581:7;5611:1;5607;:5;:51;;5739:13;5830:15;;;5865:4;5858:15;;;5911:4;5895:21;;5607:51;;;-1:-1:-1;5739:13:11;5830:15;;;5865:4;5858:15;5911:4;5895:21;;;5518:147::o;293:131:17:-;-1:-1:-1;;;;;;367:32:17;;357:43;;347:71;;414:1;411;404:12;429:245;487:6;540:2;528:9;519:7;515:23;511:32;508:52;;;556:1;553;546:12;508:52;595:9;582:23;614:30;638:5;614:30;:::i;871:250::-;956:1;966:113;980:6;977:1;974:13;966:113;;;1056:11;;;1050:18;1037:11;;;1030:39;1002:2;995:10;966:113;;;-1:-1:-1;;1113:1:17;1095:16;;1088:27;871:250::o;1126:271::-;1168:3;1206:5;1200:12;1233:6;1228:3;1221:19;1249:76;1318:6;1311:4;1306:3;1302:14;1295:4;1288:5;1284:16;1249:76;:::i;:::-;1379:2;1358:15;-1:-1:-1;;1354:29:17;1345:39;;;;1386:4;1341:50;;1126:271;-1:-1:-1;;1126:271:17:o;1402:220::-;1551:2;1540:9;1533:21;1514:4;1571:45;1612:2;1601:9;1597:18;1589:6;1571:45;:::i;1627:180::-;1686:6;1739:2;1727:9;1718:7;1714:23;1710:32;1707:52;;;1755:1;1752;1745:12;1707:52;-1:-1:-1;1778:23:17;;1627:180;-1:-1:-1;1627:180:17:o;2020:173::-;2088:20;;-1:-1:-1;;;;;2137:31:17;;2127:42;;2117:70;;2183:1;2180;2173:12;2117:70;2020:173;;;:::o;2198:254::-;2266:6;2274;2327:2;2315:9;2306:7;2302:23;2298:32;2295:52;;;2343:1;2340;2333:12;2295:52;2366:29;2385:9;2366:29;:::i;:::-;2356:39;2442:2;2427:18;;;;2414:32;;-1:-1:-1;;;2198:254:17:o;2639:328::-;2716:6;2724;2732;2785:2;2773:9;2764:7;2760:23;2756:32;2753:52;;;2801:1;2798;2791:12;2753:52;2824:29;2843:9;2824:29;:::i;:::-;2814:39;;2872:38;2906:2;2895:9;2891:18;2872:38;:::i;:::-;2862:48;;2957:2;2946:9;2942:18;2929:32;2919:42;;2639:328;;;;;:::o;3154:127::-;3215:10;3210:3;3206:20;3203:1;3196:31;3246:4;3243:1;3236:15;3270:4;3267:1;3260:15;3286:275;3357:2;3351:9;3422:2;3403:13;;-1:-1:-1;;3399:27:17;3387:40;;3457:18;3442:34;;3478:22;;;3439:62;3436:88;;;3504:18;;:::i;:::-;3540:2;3533:22;3286:275;;-1:-1:-1;3286:275:17:o;3566:1014::-;3659:6;3667;3720:2;3708:9;3699:7;3695:23;3691:32;3688:52;;;3736:1;3733;3726:12;3688:52;3772:9;3759:23;3749:33;;3801:2;3854;3843:9;3839:18;3826:32;3877:18;3918:2;3910:6;3907:14;3904:34;;;3934:1;3931;3924:12;3904:34;3972:6;3961:9;3957:22;3947:32;;4017:7;4010:4;4006:2;4002:13;3998:27;3988:55;;4039:1;4036;4029:12;3988:55;4075:2;4062:16;4097:2;4093;4090:10;4087:36;;;4103:18;;:::i;:::-;4149:2;4146:1;4142:10;4132:20;;4172:28;4196:2;4192;4188:11;4172:28;:::i;:::-;4234:15;;;4304:11;;;4300:20;;;4265:12;;;;4332:19;;;4329:39;;;4364:1;4361;4354:12;4329:39;4388:11;;;;4408:142;4424:6;4419:3;4416:15;4408:142;;;4490:17;;4478:30;;4441:12;;;;4528;;;;4408:142;;;4569:5;4559:15;;;;;;;;3566:1014;;;;;:::o;4585:407::-;4650:5;4684:18;4676:6;4673:30;4670:56;;;4706:18;;:::i;:::-;4744:57;4789:2;4768:15;;-1:-1:-1;;4764:29:17;4795:4;4760:40;4744:57;:::i;:::-;4735:66;;4824:6;4817:5;4810:21;4864:3;4855:6;4850:3;4846:16;4843:25;4840:45;;;4881:1;4878;4871:12;4840:45;4930:6;4925:3;4918:4;4911:5;4907:16;4894:43;4984:1;4977:4;4968:6;4961:5;4957:18;4953:29;4946:40;4585:407;;;;;:::o;4997:451::-;5066:6;5119:2;5107:9;5098:7;5094:23;5090:32;5087:52;;;5135:1;5132;5125:12;5087:52;5175:9;5162:23;5208:18;5200:6;5197:30;5194:50;;;5240:1;5237;5230:12;5194:50;5263:22;;5316:4;5308:13;;5304:27;-1:-1:-1;5294:55:17;;5345:1;5342;5335:12;5294:55;5368:74;5434:7;5429:2;5416:16;5411:2;5407;5403:11;5368:74;:::i;5453:186::-;5512:6;5565:2;5553:9;5544:7;5540:23;5536:32;5533:52;;;5581:1;5578;5571:12;5533:52;5604:29;5623:9;5604:29;:::i;5897:118::-;5983:5;5976:13;5969:21;5962:5;5959:32;5949:60;;6005:1;6002;5995:12;6020:315;6085:6;6093;6146:2;6134:9;6125:7;6121:23;6117:32;6114:52;;;6162:1;6159;6152:12;6114:52;6185:29;6204:9;6185:29;:::i;:::-;6175:39;;6264:2;6253:9;6249:18;6236:32;6277:28;6299:5;6277:28;:::i;:::-;6324:5;6314:15;;;6020:315;;;;;:::o;6525:667::-;6620:6;6628;6636;6644;6697:3;6685:9;6676:7;6672:23;6668:33;6665:53;;;6714:1;6711;6704:12;6665:53;6737:29;6756:9;6737:29;:::i;:::-;6727:39;;6785:38;6819:2;6808:9;6804:18;6785:38;:::i;:::-;6775:48;;6870:2;6859:9;6855:18;6842:32;6832:42;;6925:2;6914:9;6910:18;6897:32;6952:18;6944:6;6941:30;6938:50;;;6984:1;6981;6974:12;6938:50;7007:22;;7060:4;7052:13;;7048:27;-1:-1:-1;7038:55:17;;7089:1;7086;7079:12;7038:55;7112:74;7178:7;7173:2;7160:16;7155:2;7151;7147:11;7112:74;:::i;:::-;7102:84;;;6525:667;;;;;;;:::o;7197:260::-;7265:6;7273;7326:2;7314:9;7305:7;7301:23;7297:32;7294:52;;;7342:1;7339;7332:12;7294:52;7365:29;7384:9;7365:29;:::i;:::-;7355:39;;7413:38;7447:2;7436:9;7432:18;7413:38;:::i;:::-;7403:48;;7197:260;;;;;:::o;7462:248::-;7530:6;7538;7591:2;7579:9;7570:7;7566:23;7562:32;7559:52;;;7607:1;7604;7597:12;7559:52;-1:-1:-1;;7630:23:17;;;7700:2;7685:18;;;7672:32;;-1:-1:-1;7462:248:17:o;7715:380::-;7794:1;7790:12;;;;7837;;;7858:61;;7912:4;7904:6;7900:17;7890:27;;7858:61;7965:2;7957:6;7954:14;7934:18;7931:38;7928:161;;8011:10;8006:3;8002:20;7999:1;7992:31;8046:4;8043:1;8036:15;8074:4;8071:1;8064:15;7928:161;;7715:380;;;:::o;8823:245::-;8890:6;8943:2;8931:9;8922:7;8918:23;8914:32;8911:52;;;8959:1;8956;8949:12;8911:52;8991:9;8985:16;9010:28;9032:5;9010:28;:::i;9073:356::-;9275:2;9257:21;;;9294:18;;;9287:30;9353:34;9348:2;9333:18;;9326:62;9420:2;9405:18;;9073:356::o;9837:127::-;9898:10;9893:3;9889:20;9886:1;9879:31;9929:4;9926:1;9919:15;9953:4;9950:1;9943:15;9969:135;10008:3;10029:17;;;10026:43;;10049:18;;:::i;:::-;-1:-1:-1;10096:1:17;10085:13;;9969:135::o;10524:125::-;10589:9;;;10610:10;;;10607:36;;;10623:18;;:::i;12785:168::-;12858:9;;;12889;;12906:15;;;12900:22;;12886:37;12876:71;;12927:18;;:::i;13848:545::-;13950:2;13945:3;13942:11;13939:448;;;13986:1;14011:5;14007:2;14000:17;14056:4;14052:2;14042:19;14126:2;14114:10;14110:19;14107:1;14103:27;14097:4;14093:38;14162:4;14150:10;14147:20;14144:47;;;-1:-1:-1;14185:4:17;14144:47;14240:2;14235:3;14231:12;14228:1;14224:20;14218:4;14214:31;14204:41;;14295:82;14313:2;14306:5;14303:13;14295:82;;;14358:17;;;14339:1;14328:13;14295:82;;14569:1352;14695:3;14689:10;14722:18;14714:6;14711:30;14708:56;;;14744:18;;:::i;:::-;14773:97;14863:6;14823:38;14855:4;14849:11;14823:38;:::i;:::-;14817:4;14773:97;:::i;:::-;14925:4;;14989:2;14978:14;;15006:1;15001:663;;;;15708:1;15725:6;15722:89;;;-1:-1:-1;15777:19:17;;;15771:26;15722:89;-1:-1:-1;;14526:1:17;14522:11;;;14518:24;14514:29;14504:40;14550:1;14546:11;;;14501:57;15824:81;;14971:944;;15001:663;13795:1;13788:14;;;13832:4;13819:18;;-1:-1:-1;;15037:20:17;;;15155:236;15169:7;15166:1;15163:14;15155:236;;;15258:19;;;15252:26;15237:42;;15350:27;;;;15318:1;15306:14;;;;15185:19;;15155:236;;;15159:3;15419:6;15410:7;15407:19;15404:201;;;15480:19;;;15474:26;-1:-1:-1;;15563:1:17;15559:14;;;15575:3;15555:24;15551:37;15547:42;15532:58;15517:74;;15404:201;-1:-1:-1;;;;;15651:1:17;15635:14;;;15631:22;15618:36;;-1:-1:-1;14569:1352:17:o;16698:127::-;16759:10;16754:3;16750:20;16747:1;16740:31;16790:4;16787:1;16780:15;16814:4;16811:1;16804:15;16830:120;16870:1;16896;16886:35;;16901:18;;:::i;:::-;-1:-1:-1;16935:9:17;;16830:120::o;17711:496::-;17890:3;17928:6;17922:13;17944:66;18003:6;17998:3;17991:4;17983:6;17979:17;17944:66;:::i;:::-;18073:13;;18032:16;;;;18095:70;18073:13;18032:16;18142:4;18130:17;;18095:70;:::i;:::-;18181:20;;17711:496;-1:-1:-1;;;;17711:496:17:o;22041:128::-;22108:9;;;22129:11;;;22126:37;;;22143:18;;:::i;22174:136::-;22213:3;22241:5;22231:39;;22250:18;;:::i;:::-;-1:-1:-1;;;22286:18:17;;22174:136::o;23086:415::-;23288:2;23270:21;;;23327:2;23307:18;;;23300:30;23366:34;23361:2;23346:18;;23339:62;-1:-1:-1;;;23432:2:17;23417:18;;23410:49;23491:3;23476:19;;23086:415::o;23506:112::-;23538:1;23564;23554:35;;23569:18;;:::i;:::-;-1:-1:-1;23603:9:17;;23506:112::o;23623:127::-;23684:10;23679:3;23675:20;23672:1;23665:31;23715:4;23712:1;23705:15;23739:4;23736:1;23729:15;25405:200;-1:-1:-1;;;;;25541:10:17;;;25529;;;25525:27;;25564:12;;;25561:38;;;25579:18;;:::i;:::-;25561:38;25405:200;;;;:::o;25610:197::-;-1:-1:-1;;;;;25732:10:17;;;25744;;;25728:27;;25767:11;;;25764:37;;;25781:18;;:::i;26975:489::-;-1:-1:-1;;;;;27244:15:17;;;27226:34;;27296:15;;27291:2;27276:18;;27269:43;27343:2;27328:18;;27321:34;;;27391:3;27386:2;27371:18;;27364:31;;;27169:4;;27412:46;;27438:19;;27430:6;27412:46;:::i;:::-;27404:54;26975:489;-1:-1:-1;;;;;;26975:489:17:o;27469:249::-;27538:6;27591:2;27579:9;27570:7;27566:23;27562:32;27559:52;;;27607:1;27604;27597:12;27559:52;27639:9;27633:16;27658:30;27682:5;27658:30;:::i

Swarm Source

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