ETH Price: $2,526.85 (+0.62%)

Token

Buckets Club Front Nine (Buckets Club Front Nine)
 

Overview

Max Total Supply

2,721 Buckets Club Front Nine

Holders

1,210

Market

Volume (24H)

0.06 ETH

Min Price (24H)

$151.61 @ 0.060000 ETH

Max Price (24H)

$151.61 @ 0.060000 ETH
Balance
1 Buckets Club Front Nine
0x6A88D44BfcB040B59944eaf4aAE2cb2c99E5e522
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:
BucketsClubFrontNine

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 2 of 13: BucketsClubFrontNine.sol
// SPDX-License-Identifier: MIT
// Made by: NFT Stack
//          https://nftstack.info
//

pragma solidity ^0.8.1;

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

contract BucketsClubFrontNine is ERC721A, Ownable {
  using MerkleProof for bytes32[];

  bytes32 public root;

  uint256 public mintPrice = 0.4 ether;
  uint256 public preSaleMintPrice =  0.1 ether;
  uint256 public raffleMintPrice = 0.1 ether;

  uint256 private reserveAtATime = 50;
  uint256 private reservedCount = 0;
  uint256 private maxReserveCount = 300;

  string _baseTokenURI;

  bool public isRaffleActive = false;
  bool public isMintActive = false;
  bool public isPreSaleMintActive = false;
  bool public isClosedMintForever = false;
  bool public isSellOpen = false;

  uint256 public maximumMintSupply = 9000;
  uint256 public maximumAllowedTokensPerPurchase = 10;
  uint256 public maximumAllowedTokensPerWallet = 10;
  uint256 public allowListMaxMint = 10;
  uint256 public immutable maxPerAddressDuringMint;

  address private OtherAddress1 = 0x053490B1e960AeeB1aCB2bf10d53BE7d264f35Af;
  address private OtherAddress2 = 0xAFc1229EA5fBBD814CECb0A4d402FA6450762467;

  mapping(address => bool) private _allowList;
  mapping(address => uint256) private _allowListClaimed;
  mapping(address => uint256) private _publicMintClaimed;

  event AssetMinted(uint256 tokenId, address sender);
  event SaleActivation(bool isMintActive);

  constructor(
    string memory baseURI,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) ERC721A("Buckets Club Front Nine", "Buckets Club Front Nine", maxBatchSize_, collectionSize_) {
    setBaseURI(baseURI);
    maxPerAddressDuringMint = maxBatchSize_;
  }

  modifier saleIsOpen {
    require(totalSupply() <= maximumMintSupply, "Sale has ended.");
    _;
  }

  modifier onlyAuthorized() {
    require(owner() == msg.sender);
    _;
  }

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

  function setMaximumAllowedTokens(uint256 _count) public onlyAuthorized {
    maximumAllowedTokensPerPurchase = _count;
  }

  function setMaximumAllowedTokensPerWallet(uint256 _count) public onlyAuthorized {
    maximumAllowedTokensPerWallet = _count;
  }

  function setMintActive(bool val) public onlyAuthorized {
    isMintActive = val;
    emit SaleActivation(val);
  }

  function setMaxMintSupply(uint256 maxMintSupply) external  onlyAuthorized {
    maximumMintSupply = maxMintSupply;
  }

  function setRaffleActive(bool _isRaffleActive) public onlyAuthorized {
    isRaffleActive = _isRaffleActive;
  }

  function setIsPreSaleMintActive(bool _isPreSaleMintActive) external onlyAuthorized {
    isPreSaleMintActive = _isPreSaleMintActive;
  }

  function setIsSellOpen(bool _isSellOpen) external onlyAuthorized {
    isSellOpen = _isSellOpen;
  }

  function setAllowListMaxMint(uint256 maxMint) external  onlyAuthorized {
    allowListMaxMint = maxMint;
  }

  function addToAllowList(address[] calldata addresses) external onlyAuthorized {
    for (uint256 i = 0; i < addresses.length; i++) {
      require(addresses[i] != address(0), "Can't add a null address");
      _allowList[addresses[i]] = true;
      _allowListClaimed[addresses[i]] > 0 ? _allowListClaimed[addresses[i]] : 0;
    }
  }

  function checkIfOnAllowList(address addr) external view returns (bool) {
    return _allowList[addr];
  }

  function removeFromAllowList(address[] calldata addresses) external onlyAuthorized {
    for (uint256 i = 0; i < addresses.length; i++) {
      require(addresses[i] != address(0), "Can't add a null address");
      _allowList[addresses[i]] = false;
    }
  }

  function allowListClaimedBy(address owner) external view returns (uint256){
    require(owner != address(0), 'Zero address not on Allow List');
    return _allowListClaimed[owner];
  }

  function publicMintClaimed(address owner) external view returns (uint256){
    require(owner != address(0), 'Zero address not on Allow List');
    return _publicMintClaimed[owner];
  }

  function setReserveAtATime(uint256 val) public onlyAuthorized {
    reserveAtATime = val;
  }

  function setMaxReserve(uint256 val) public onlyAuthorized {
    maxReserveCount = val;
  }

  function setMintPrice(uint256 _price) public onlyAuthorized {
    mintPrice = _price;
  }

  function setPreSaleMintPrice(uint256 _price) public onlyAuthorized {
    preSaleMintPrice = _price;
  }

  function setRaffleMintPrice(uint256 _price) public onlyAuthorized {
    raffleMintPrice = _price;
  }

  function setBaseURI(string memory baseURI) public onlyAuthorized {
    _baseTokenURI = baseURI;
  }

  function getMaximumAllowedTokens() public view onlyAuthorized returns (uint256) {
    return maximumAllowedTokensPerPurchase;
  }

  function getMintPrice() external view returns (uint256) {
    return mintPrice;
  }

  function getPreSaleMintPrice() external view returns (uint256) {
    return preSaleMintPrice;
  }

  function getRaffleMintPrice() external view returns (uint256) {
    return raffleMintPrice;
  }

  function getIsClosedMintForever() external view returns (bool) {
    return isClosedMintForever;
  }

  function setIsClosedMintForever() external onlyAuthorized {
    isClosedMintForever = true;
  }

  function setRoot(bytes32 _root) public onlyAuthorized {
    root = _root;
  }

  function getReserveAtATime() external view returns (uint256) {
    return reserveAtATime;
  }

  function getTotalSupply() external view returns (uint256) {
    return totalSupply();
  }

  function getRoot() external view returns (bytes32) {
    return root;
  }

  function getContractOwner() public view returns (address) {
    return owner();
  }

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

  function reserveNft() public onlyAuthorized {
    require(reservedCount <= maxReserveCount, "Max Reserves taken already!");
    require(totalSupply() + reserveAtATime <= maximumMintSupply, "Total supply exceeded.");
    require(totalSupply() <= maximumMintSupply, "Total supply spent.");

    reservedCount += reserveAtATime;
    _safeMint(msg.sender, reserveAtATime);
  }

  function reserveToCustomWallet(address _walletAddress, uint256 _count) public onlyAuthorized {
    require(totalSupply() + _count <= maximumMintSupply, "Total supply exceeded.");
    require(totalSupply() <= maximumMintSupply, "Total supply spent.");

    _safeMint(_walletAddress, _count);
  }

  function mint(address _to, uint256 _count) public payable saleIsOpen callerIsUser {
    if (msg.sender != owner()) {
      require(isMintActive, "Sale is not active currently.");
    }

    if(_to != owner()) {
      require(balanceOf(_to) + _count <= maximumAllowedTokensPerWallet, "Max holding cap reached.");
    }

    require(_publicMintClaimed[msg.sender] + _count <= maximumAllowedTokensPerWallet, "Purchase exceeds max allowed");
    require(totalSupply() + _count <= maximumMintSupply, "Total supply exceeded.");
    require(totalSupply() <= maximumMintSupply, "Total supply spent.");
    require(
      _count <= maximumAllowedTokensPerPurchase,
      "Exceeds maximum allowed tokens"
    );
    require(
      numberMinted(msg.sender) + _count <= maxPerAddressDuringMint,
      "can not mint this many"
    );
    require(!isClosedMintForever, "Mint Closed Forever");
    require(msg.value >= mintPrice * _count, "Insuffient ETH amount sent.");

    _publicMintClaimed[msg.sender] += _count;
    _safeMint(_to, _count);
  }

  function raffleMint(uint256 _count, bytes32[] memory _proof) public payable saleIsOpen {
    bytes32 leaf = keccak256(abi.encodePacked(msg.sender));

    require(isRaffleActive, "Raffle is not active");
    require(_proof.verify(root, leaf), "invalid proof");
    require(totalSupply() < maximumMintSupply, "All tokens have been minted");
    require(_count <= allowListMaxMint, "Cannot purchase this many tokens");
    require(_allowListClaimed[msg.sender] + _count <= allowListMaxMint, "Purchase exceeds max allowed");
    require(msg.value >= raffleMintPrice * _count, "Insuffient ETH amount sent.");
    require(!isClosedMintForever, "Mint Closed Forever");
    _allowListClaimed[msg.sender] += _count;

    _safeMint(msg.sender, _count);
  }

  function preSaleMint(uint256 _count) public payable saleIsOpen {
    require(isPreSaleMintActive, 'Pre Sale Mint is not active');
    require(_allowList[msg.sender], 'You are not on the Allow List');
    require(totalSupply() < maximumMintSupply, 'All tokens have been minted');
    require(_count <= allowListMaxMint, 'Cannot purchase this many tokens');
    require(_allowListClaimed[msg.sender] + _count <= allowListMaxMint, 'Purchase exceeds max allowed');
    require(msg.value >= preSaleMintPrice * _count, 'Insuffient ETH amount sent.');
    require(!isClosedMintForever, 'Mint Closed Forever');
    _allowListClaimed[msg.sender] += _count;

    _safeMint(msg.sender, _count);
  }

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

  function walletOfOwner(address _owner) external view returns(uint256[] memory) {
    uint tokenCount = balanceOf(_owner);
    uint256[] memory tokensId = new uint256[](tokenCount);

    for(uint i = 0; i < tokenCount; i++){
      tokensId[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokensId;
  }

  function withdraw() external onlyAuthorized {
    uint balance = address(this).balance;
    payable(OtherAddress1).transfer(balance * 9000 / 10000);
    payable(OtherAddress2).transfer(balance * 1000 / 10000);
    payable(owner()).transfer(balance * 0 / 10000);
  }
}

File 1 of 13: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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

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

pragma solidity ^0.8.0;

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

File 7 of 13: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

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`.
     *
     * 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;

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

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

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

File 8 of 13: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 9 of 13: IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

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 13: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 11 of 13: MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and 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[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

File 13 of 13: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"sender","type":"address"}],"name":"AssetMinted","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":"bool","name":"isMintActive","type":"bool"}],"name":"SaleActivation","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":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"allowListClaimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"checkIfOnAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getContractOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getIsClosedMintForever","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaximumAllowedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPreSaleMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRaffleMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReserveAtATime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"isClosedMintForever","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPreSaleMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRaffleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSellOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumAllowedTokensPerPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumAllowedTokensPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"preSaleMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"publicMintClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"raffleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"raffleMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveNft","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_walletAddress","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"reserveToCustomWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint","type":"uint256"}],"name":"setAllowListMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setIsClosedMintForever","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPreSaleMintActive","type":"bool"}],"name":"setIsPreSaleMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isSellOpen","type":"bool"}],"name":"setIsSellOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintSupply","type":"uint256"}],"name":"setMaxMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setMaxReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaximumAllowedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaximumAllowedTokensPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPreSaleMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isRaffleActive","type":"bool"}],"name":"setRaffleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setRaffleMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setReserveAtATime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e06040526000808055600781905567058d15e176280000600a90815567016345785d8a0000600b819055600c556032600d55600e9190915561012c600f556011805464ffffffffff1916905561232860125560138190556014819055601555601680546001600160a01b031990811673053490b1e960aeeb1acb2bf10d53be7d264f35af179091556017805490911673afc1229ea5fbbd814cecb0a4d402fa6450762467179055348015620000b457600080fd5b506040516200435038038062004350833981016040819052620000d79162000339565b6040518060400160405280601781526020017f4275636b65747320436c75622046726f6e74204e696e650000000000000000008152506040518060400160405280601781526020017f4275636b65747320436c75622046726f6e74204e696e65000000000000000000815250838360008111620001715760405162461bcd60e51b815260040162000168906200046a565b60405180910390fd5b60008211620001945760405162461bcd60e51b8152600401620001689062000423565b8351620001a990600190602087019062000293565b508251620001bf90600290602086019062000293565b5060a09190915260805250620001e09050620001da620001f6565b620001fa565b620001eb836200024c565b5060c052506200050b565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b336200025762000284565b6001600160a01b0316146200026b57600080fd5b80516200028090601090602084019062000293565b5050565b6008546001600160a01b031690565b828054620002a190620004b8565b90600052602060002090601f016020900481019282620002c5576000855562000310565b82601f10620002e057805160ff191683800117855562000310565b8280016001018555821562000310579182015b8281111562000310578251825591602001919060010190620002f3565b506200031e92915062000322565b5090565b5b808211156200031e576000815560010162000323565b6000806000606084860312156200034e578283fd5b83516001600160401b038082111562000365578485fd5b818601915086601f83011262000379578485fd5b8151818111156200038e576200038e620004f5565b604051601f8201601f19908116603f01168101908382118183101715620003b957620003b9620004f5565b81604052828152602093508984848701011115620003d5578788fd5b8791505b82821015620003f85784820184015181830185015290830190620003d9565b828211156200040957878484830101525b928801516040909801519299979850919695505050505050565b60208082526027908201527f455243373231413a206d61782062617463682073697a65206d757374206265206040820152666e6f6e7a65726f60c81b606082015260800190565b6020808252602e908201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060408201526d6e6f6e7a65726f20737570706c7960901b606082015260800190565b600281046001821680620004cd57607f821691505b60208210811415620004ef57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160a05160c051613e036200054d6000396000818161127b0152611c1a01526000818161256c0152818161259601526129de015260005050613e036000f3fe60806040526004361061041a5760003560e01c80637835c6351161021e578063c3ac4feb11610123578063ea6eb836116100ab578063f132dc291161007a578063f132dc2914610b4f578063f2fde38b14610b64578063f4a0a52814610b84578063f6c9d9e314610ba4578063f7cb9e5414610bc45761041a565b8063ea6eb83614610ae5578063ebf0c71714610b05578063ec7d099114610b1a578063ee1cc94414610b2f5761041a565b8063d7224ba0116100f2578063d7224ba014610a5b578063dab5f34014610a70578063dc33e68114610a90578063e7b62d9614610ab0578063e985e9c514610ac55761041a565b8063c3ac4feb146109f1578063c4e41b2214610a11578063c87b56dd14610a26578063cadf881814610a465761041a565b806398590a39116101a6578063a51312c811610175578063a51312c814610972578063a7f93ebd14610992578063ad06d758146109a7578063b88d4fde146109bc578063c3441646146109dc5761041a565b806398590a39146109085780639a3bf728146109285780639ccb0fea1461093d578063a22cb465146109525761041a565b80637f44ab2f116101ed5780637f44ab2f1461089f5780638bc35c2f146108b45780638da5cb5b146108c9578063932ecebc146108de57806395d89b41146108f35761041a565b80637835c635146108445780637890b2c9146108575780637a6685f11461086a5780637d26f4701461088a5761041a565b8063431adcb1116103245780635ca1e165116102ac578063715018a61161027b578063715018a6146107ba57806371e3500c146107cf5780637263cfe2146107e45780637389fbb71461080457806377b501b9146108245761041a565b80635ca1e165146107505780636352211e146107655780636817c76c1461078557806370a082311461079a5761041a565b80634dfea627116102f35780634dfea627146106bb5780634f6ccce7146106db57806355f804b3146106fb57806356a87caa1461071b5780635b92ac0d1461073b5761041a565b8063431adcb11461064f578063438b630014610664578063442890d5146106915780634d0550de146106a65761041a565b80632c1205f4116103a75780633ccfd60b116103765780633ccfd60b146105d25780633cfac570146105e75780633e8f09871461060757806340c10f191461061c57806342842e0e1461062f5761041a565b80632c1205f4146105525780632f57bcfe146105725780632f745c59146105925780633b9ee7e4146105b25761041a565b8063095ea7b3116103ee578063095ea7b3146104d157806318160ddd146104f357806321a911f81461050857806323b872dd1461051d5780632992b0b01461053d5761041a565b806208ffdd1461041f57806301ffc9a71461045557806306fdde0314610482578063081812fc146104a4575b600080fd5b34801561042b57600080fd5b5061043f61043a366004612db8565b610be4565b60405161044c91906131f0565b60405180910390f35b34801561046157600080fd5b50610475610470366004612fa9565b610c35565b60405161044c91906131e5565b34801561048e57600080fd5b50610497610c96565b60405161044c91906131f9565b3480156104b057600080fd5b506104c46104bf366004612f91565b610d28565b60405161044c9190613150565b3480156104dd57600080fd5b506104f16104ec366004612ee0565b610d6b565b005b3480156104ff57600080fd5b5061043f610e04565b34801561051457600080fd5b5061043f610e0a565b34801561052957600080fd5b506104f1610538366004612e04565b610e10565b34801561054957600080fd5b5061043f610e1b565b34801561055e57600080fd5b5061047561056d366004612db8565b610e21565b34801561057e57600080fd5b506104f161058d366004612f77565b610e3f565b34801561059e57600080fd5b5061043f6105ad366004612ee0565b610e6e565b3480156105be57600080fd5b506104f16105cd366004612f91565b610f63565b3480156105de57600080fd5b506104f1610f84565b3480156105f357600080fd5b506104f1610602366004612f77565b61109c565b34801561061357600080fd5b5061043f6110d4565b6104f161062a366004612ee0565b6110da565b34801561063b57600080fd5b506104f161064a366004612e04565b611352565b34801561065b57600080fd5b5061047561136d565b34801561067057600080fd5b5061068461067f366004612db8565b61137e565b60405161044c91906131a1565b34801561069d57600080fd5b506104c461143b565b3480156106b257600080fd5b5061043f61144a565b3480156106c757600080fd5b506104f16106d6366004612f91565b611450565b3480156106e757600080fd5b5061043f6106f6366004612f91565b611471565b34801561070757600080fd5b506104f1610716366004612fe1565b61149d565b34801561072757600080fd5b506104f1610736366004612f91565b6114cc565b34801561074757600080fd5b506104756114ed565b34801561075c57600080fd5b5061043f6114fb565b34801561077157600080fd5b506104c4610780366004612f91565b611501565b34801561079157600080fd5b5061043f611513565b3480156107a657600080fd5b5061043f6107b5366004612db8565b611519565b3480156107c657600080fd5b506104f1611566565b3480156107db57600080fd5b506104f161157a565b3480156107f057600080fd5b506104f16107ff366004612f09565b611640565b34801561081057600080fd5b506104f161081f366004612f91565b6117fe565b34801561083057600080fd5b506104f161083f366004612ee0565b61181f565b6104f1610852366004612f91565b6118a2565b6104f1610865366004613026565b611a31565b34801561087657600080fd5b506104f1610885366004612f91565b611be1565b34801561089657600080fd5b50610475611c02565b3480156108ab57600080fd5b5061043f611c12565b3480156108c057600080fd5b5061043f611c18565b3480156108d557600080fd5b506104c4611c3c565b3480156108ea57600080fd5b506104f1611c4b565b3480156108ff57600080fd5b50610497611c7c565b34801561091457600080fd5b506104f1610923366004612f77565b611c8b565b34801561093457600080fd5b5061043f611cc7565b34801561094957600080fd5b50610475611ccd565b34801561095e57600080fd5b506104f161096d366004612eb7565b611cdc565b34801561097e57600080fd5b506104f161098d366004612f09565b611daa565b34801561099e57600080fd5b5061043f611ea4565b3480156109b357600080fd5b5061043f611eaa565b3480156109c857600080fd5b506104f16109d7366004612e3f565b611ecf565b3480156109e857600080fd5b50610475611f08565b3480156109fd57600080fd5b506104f1610a0c366004612f91565b611f11565b348015610a1d57600080fd5b5061043f611f32565b348015610a3257600080fd5b50610497610a41366004612f91565b611f3c565b348015610a5257600080fd5b5061043f611fbf565b348015610a6757600080fd5b5061043f611fc5565b348015610a7c57600080fd5b506104f1610a8b366004612f91565b611fcb565b348015610a9c57600080fd5b5061043f610aab366004612db8565b611fec565b348015610abc57600080fd5b5061043f611ff7565b348015610ad157600080fd5b50610475610ae0366004612dd2565b611ffd565b348015610af157600080fd5b506104f1610b00366004612f91565b61202b565b348015610b1157600080fd5b5061043f61204c565b348015610b2657600080fd5b5061043f612052565b348015610b3b57600080fd5b506104f1610b4a366004612f77565b612058565b348015610b5b57600080fd5b506104756120c2565b348015610b7057600080fd5b506104f1610b7f366004612db8565b6120d2565b348015610b9057600080fd5b506104f1610b9f366004612f91565b612109565b348015610bb057600080fd5b506104f1610bbf366004612f91565b61212a565b348015610bd057600080fd5b5061043f610bdf366004612db8565b61214b565b60006001600160a01b038216610c155760405162461bcd60e51b8152600401610c0c9061367a565b60405180910390fd5b506001600160a01b0381166000908152601960205260409020545b919050565b60006001600160e01b031982166380ac58cd60e01b1480610c6657506001600160e01b03198216635b5e139f60e01b145b80610c8157506001600160e01b0319821663780e9d6360e01b145b80610c905750610c908261218f565b92915050565b606060018054610ca590613d0b565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd190613d0b565b8015610d1e5780601f10610cf357610100808354040283529160200191610d1e565b820191906000526020600020905b815481529060010190602001808311610d0157829003601f168201915b5050505050905090565b6000610d33826121a8565b610d4f5760405162461bcd60e51b8152600401610c0c90613b28565b506000908152600560205260409020546001600160a01b031690565b6000610d7682611501565b9050806001600160a01b0316836001600160a01b03161415610daa5760405162461bcd60e51b8152600401610c0c906137f0565b806001600160a01b0316610dbc6121af565b6001600160a01b03161480610dd85750610dd881610ae06121af565b610df45760405162461bcd60e51b8152600401610c0c90613520565b610dff8383836121b3565b505050565b60005490565b600b5490565b610dff83838361220f565b600c5490565b6001600160a01b031660009081526018602052604090205460ff1690565b33610e48611c3c565b6001600160a01b031614610e5b57600080fd5b6011805460ff1916911515919091179055565b6000610e7983611519565b8210610e975760405162461bcd60e51b8152600401610c0c9061320c565b6000610ea1610e04565b905060008060005b83811015610f4a576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610efb57805192505b876001600160a01b0316836001600160a01b03161415610f375786841415610f2957509350610c9092505050565b83610f3381613d46565b9450505b5080610f4281613d46565b915050610ea9565b5060405162461bcd60e51b8152600401610c0c90613a1d565b33610f6c611c3c565b6001600160a01b031614610f7f57600080fd5b600b55565b33610f8d611c3c565b6001600160a01b031614610fa057600080fd5b60165447906001600160a01b03166108fc612710610fc084612328613c6a565b610fca9190613c56565b6040518115909202916000818181858888f19350505050158015610ff2573d6000803e3d6000fd5b506017546001600160a01b03166108fc612710611011846103e8613c6a565b61101b9190613c56565b6040518115909202916000818181858888f19350505050158015611043573d6000803e3d6000fd5b5061104c611c3c565b6001600160a01b03166108fc612710611066846000613c6a565b6110709190613c56565b6040518115909202916000818181858888f19350505050158015611098573d6000803e3d6000fd5b5050565b336110a5611c3c565b6001600160a01b0316146110b857600080fd5b60118054911515620100000262ff000019909216919091179055565b600c5481565b6012546110e5610e04565b11156111035760405162461bcd60e51b8152600401610c0c9061342a565b3233146111225760405162461bcd60e51b8152600401610c0c906134e9565b61112a611c3c565b6001600160a01b0316336001600160a01b03161461116957601154610100900460ff166111695760405162461bcd60e51b8152600401610c0c906132bc565b611171611c3c565b6001600160a01b0316826001600160a01b0316146111be576014548161119684611519565b6111a09190613c3e565b11156111be5760405162461bcd60e51b8152600401610c0c906133b0565b601454336000908152601a60205260409020546111dc908390613c3e565b11156111fa5760405162461bcd60e51b8152600401610c0c90613a6b565b60125481611206610e04565b6112109190613c3e565b111561122e5760405162461bcd60e51b8152600401610c0c906137c0565b601254611239610e04565b11156112575760405162461bcd60e51b8152600401610c0c906139b9565b6013548111156112795760405162461bcd60e51b8152600401610c0c90613789565b7f0000000000000000000000000000000000000000000000000000000000000000816112a433611fec565b6112ae9190613c3e565b11156112cc5760405162461bcd60e51b8152600401610c0c90613952565b6011546301000000900460ff16156112f65760405162461bcd60e51b8152600401610c0c90613383565b80600a546113049190613c6a565b3410156113235760405162461bcd60e51b8152600401610c0c906139e6565b336000908152601a602052604081208054839290611342908490613c3e565b9091555061109890508282612521565b610dff83838360405180602001604052806000815250611ecf565b601154640100000000900460ff1681565b6060600061138b83611519565b90506000816001600160401b038111156113b557634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156113de578160200160208202803683370190505b50905060005b82811015611433576113f68582610e6e565b82828151811061141657634e487b7160e01b600052603260045260246000fd5b60209081029190910101528061142b81613d46565b9150506113e4565b509392505050565b6000611445611c3c565b905090565b60125481565b33611459611c3c565b6001600160a01b03161461146c57600080fd5b601355565b600061147b610e04565b82106114995760405162461bcd60e51b8152600401610c0c906133e7565b5090565b336114a6611c3c565b6001600160a01b0316146114b957600080fd5b8051611098906010906020840190612c8e565b336114d5611c3c565b6001600160a01b0316146114e857600080fd5b600f55565b601154610100900460ff1681565b60095490565b600061150c8261253b565b5192915050565b600a5481565b60006001600160a01b0382166115415760405162461bcd60e51b8152600401610c0c9061357d565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b61156e61264d565b611578600061268c565b565b33611583611c3c565b6001600160a01b03161461159657600080fd5b600f54600e5411156115ba5760405162461bcd60e51b8152600401610c0c9061324e565b601254600d546115c8610e04565b6115d29190613c3e565b11156115f05760405162461bcd60e51b8152600401610c0c906137c0565b6012546115fb610e04565b11156116195760405162461bcd60e51b8152600401610c0c906139b9565b600d54600e600082825461162d9190613c3e565b9250508190555061157833600d54612521565b33611649611c3c565b6001600160a01b03161461165c57600080fd5b60005b81811015610dff57600083838381811061168957634e487b7160e01b600052603260045260246000fd5b905060200201602081019061169e9190612db8565b6001600160a01b031614156116c55760405162461bcd60e51b8152600401610c0c9061360e565b6001601860008585858181106116eb57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906117009190612db8565b6001600160a01b0316815260208101919091526040016000908120805460ff19169215159290921790915560198185858581811061174e57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906117639190612db8565b6001600160a01b03166001600160a01b0316815260200190815260200160002054116117905760006117eb565b601960008484848181106117b457634e487b7160e01b600052603260045260246000fd5b90506020020160208101906117c99190612db8565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b50806117f681613d46565b91505061165f565b33611807611c3c565b6001600160a01b03161461181a57600080fd5b601255565b33611828611c3c565b6001600160a01b03161461183b57600080fd5b60125481611847610e04565b6118519190613c3e565b111561186f5760405162461bcd60e51b8152600401610c0c906137c0565b60125461187a610e04565b11156118985760405162461bcd60e51b8152600401610c0c906139b9565b6110988282612521565b6012546118ad610e04565b11156118cb5760405162461bcd60e51b8152600401610c0c9061342a565b60115462010000900460ff166118f35760405162461bcd60e51b8152600401610c0c90613982565b3360009081526018602052604090205460ff166119225760405162461bcd60e51b8152600401610c0c90613285565b60125461192d610e04565b1061194a5760405162461bcd60e51b8152600401610c0c90613af1565b60155481111561196c5760405162461bcd60e51b8152600401610c0c90613bb7565b6015543360009081526019602052604090205461198a908390613c3e565b11156119a85760405162461bcd60e51b8152600401610c0c90613a6b565b80600b546119b69190613c6a565b3410156119d55760405162461bcd60e51b8152600401610c0c906139e6565b6011546301000000900460ff16156119ff5760405162461bcd60e51b8152600401610c0c90613383565b3360009081526019602052604081208054839290611a1e908490613c3e565b90915550611a2e90503382612521565b50565b601254611a3c610e04565b1115611a5a5760405162461bcd60e51b8152600401610c0c9061342a565b600033604051602001611a6d9190613104565b60408051601f19818403018152919052805160209091012060115490915060ff16611aaa5760405162461bcd60e51b8152600401610c0c90613832565b600954611ab9908390836126de565b611ad55760405162461bcd60e51b8152600401610c0c906138ea565b601254611ae0610e04565b10611afd5760405162461bcd60e51b8152600401610c0c90613af1565b601554831115611b1f5760405162461bcd60e51b8152600401610c0c90613bb7565b60155433600090815260196020526040902054611b3d908590613c3e565b1115611b5b5760405162461bcd60e51b8152600401610c0c90613a6b565b82600c54611b699190613c6a565b341015611b885760405162461bcd60e51b8152600401610c0c906139e6565b6011546301000000900460ff1615611bb25760405162461bcd60e51b8152600401610c0c90613383565b3360009081526019602052604081208054859290611bd1908490613c3e565b90915550610dff90503384612521565b33611bea611c3c565b6001600160a01b031614611bfd57600080fd5b601555565b6011546301000000900460ff1681565b60155481565b7f000000000000000000000000000000000000000000000000000000000000000081565b6008546001600160a01b031690565b33611c54611c3c565b6001600160a01b031614611c6757600080fd5b6011805463ff00000019166301000000179055565b606060028054610ca590613d0b565b33611c94611c3c565b6001600160a01b031614611ca757600080fd5b601180549115156401000000000264ff0000000019909216919091179055565b60135481565b60115462010000900460ff1681565b611ce46121af565b6001600160a01b0316826001600160a01b03161415611d155760405162461bcd60e51b8152600401610c0c90613700565b8060066000611d226121af565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611d666121af565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d9e91906131e5565b60405180910390a35050565b33611db3611c3c565b6001600160a01b031614611dc657600080fd5b60005b81811015610dff576000838383818110611df357634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611e089190612db8565b6001600160a01b03161415611e2f5760405162461bcd60e51b8152600401610c0c9061360e565b600060186000858585818110611e5557634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611e6a9190612db8565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611e9c81613d46565b915050611dc9565b600a5490565b600033611eb5611c3c565b6001600160a01b031614611ec857600080fd5b5060135490565b611eda84848461220f565b611ee6848484846126f4565b611f025760405162461bcd60e51b8152600401610c0c90613860565b50505050565b60115460ff1681565b33611f1a611c3c565b6001600160a01b031614611f2d57600080fd5b600c55565b6000611445610e04565b6060611f47826121a8565b611f635760405162461bcd60e51b8152600401610c0c906136b1565b6000611f6d612810565b90506000815111611f8d5760405180602001604052806000815250611fb8565b80611f978461281f565b604051602001611fa8929190613121565b6040516020818303038152906040525b9392505050565b60145481565b60075481565b33611fd4611c3c565b6001600160a01b031614611fe757600080fd5b600955565b6000610c9082612939565b600d5490565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b33612034611c3c565b6001600160a01b03161461204757600080fd5b601455565b60095481565b600b5481565b33612061611c3c565b6001600160a01b03161461207457600080fd5b6011805461ff001916610100831515021790556040517f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f906120b79083906131e5565b60405180910390a150565b6011546301000000900460ff1690565b6120da61264d565b6001600160a01b0381166121005760405162461bcd60e51b8152600401610c0c906132f3565b611a2e8161268c565b33612112611c3c565b6001600160a01b03161461212557600080fd5b600a55565b33612133611c3c565b6001600160a01b03161461214657600080fd5b600d55565b60006001600160a01b0382166121735760405162461bcd60e51b8152600401610c0c9061367a565b506001600160a01b03166000908152601a602052604090205490565b6001600160e01b031981166301ffc9a760e01b14919050565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061221a8261253b565b9050600081600001516001600160a01b03166122346121af565b6001600160a01b03161480612269575061224c6121af565b6001600160a01b031661225e84610d28565b6001600160a01b0316145b8061227d5750815161227d90610ae06121af565b90508061229c5760405162461bcd60e51b8152600401610c0c90613737565b846001600160a01b031682600001516001600160a01b0316146122d15760405162461bcd60e51b8152600401610c0c906135c8565b6001600160a01b0384166122f75760405162461bcd60e51b8152600401610c0c90613453565b6123048585856001611f02565b61231460008484600001516121b3565b6001600160a01b03851660009081526004602052604081208054600192906123469084906001600160801b0316613c89565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261239291859116613c1c565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b03199091161716179055612427846001613c3e565b6000818152600360205260409020549091506001600160a01b03166124cb5761244f816121a8565b156124cb5760408051808201825284516001600160a01b0390811682526020808701516001600160401b0390811682850190815260008781526003909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125198686866001611f02565b505050505050565b61109882826040518060200160405280600081525061298d565b612543612d0e565b61254c826121a8565b6125685760405162461bcd60e51b8152600401610c0c90613339565b60007f000000000000000000000000000000000000000000000000000000000000000083106125c9576125bb7f000000000000000000000000000000000000000000000000000000000000000084613cb1565b6125c6906001613c3e565b90505b825b818110612634576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215612621579250610c30915050565b508061262c81613cf4565b9150506125cb565b5060405162461bcd60e51b8152600401610c0c90613aa2565b6126556121af565b6001600160a01b0316612666611c3c565b6001600160a01b0316146115785760405162461bcd60e51b8152600401610c0c90613645565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826126eb8584612bff565b14949350505050565b6000612708846001600160a01b0316612c52565b1561280457836001600160a01b031663150b7a026127246121af565b8786866040518563ffffffff1660e01b81526004016127469493929190613164565b602060405180830381600087803b15801561276057600080fd5b505af1925050508015612790575060408051601f3d908101601f1916820190925261278d91810190612fc5565b60015b6127ea573d8080156127be576040519150601f19603f3d011682016040523d82523d6000602084013e6127c3565b606091505b5080516127e25760405162461bcd60e51b8152600401610c0c90613860565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612808565b5060015b949350505050565b606060108054610ca590613d0b565b60608161284457506040805180820190915260018152600360fc1b6020820152610c30565b8160005b811561286e578061285881613d46565b91506128679050600a83613c56565b9150612848565b6000816001600160401b0381111561289657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156128c0576020820181803683370190505b5090505b8415612808576128d5600183613cb1565b91506128e2600a86613d61565b6128ed906030613c3e565b60f81b81838151811061291057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612932600a86613c56565b94506128c4565b60006001600160a01b0382166129615760405162461bcd60e51b8152600401610c0c90613498565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b6000546001600160a01b0384166129b65760405162461bcd60e51b8152600401610c0c90613911565b6129bf816121a8565b156129dc5760405162461bcd60e51b8152600401610c0c906138b3565b7f0000000000000000000000000000000000000000000000000000000000000000831115612a1c5760405162461bcd60e51b8152600401610c0c90613b75565b612a296000858386611f02565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612a85908790613c1c565b6001600160801b03168152602001858360200151612aa39190613c1c565b6001600160801b039081169091526001600160a01b03808816600081815260046020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff199099169890981790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b85811015612bed5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612bb160008884886126f4565b612bcd5760405162461bcd60e51b8152600401610c0c90613860565b81612bd781613d46565b9250508080612be590613d46565b915050612b64565b50600081815561251990878588611f02565b600081815b845181101561143357612c3e82868381518110612c3157634e487b7160e01b600052603260045260246000fd5b6020026020010151612c61565b915080612c4a81613d46565b915050612c04565b6001600160a01b03163b151590565b6000818310612c7957612c748284612c7f565b611fb8565b611fb883835b60009182526020526040902090565b828054612c9a90613d0b565b90600052602060002090601f016020900481019282612cbc5760008555612d02565b82601f10612cd557805160ff1916838001178555612d02565b82800160010185558215612d02579182015b82811115612d02578251825591602001919060010190612ce7565b50611499929150612d25565b604080518082019091526000808252602082015290565b5b808211156114995760008155600101612d26565b60006001600160401b03831115612d5357612d53613da1565b612d66601f8401601f1916602001613bec565b9050828152838383011115612d7a57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114610c3057600080fd5b80358015158114610c3057600080fd5b600060208284031215612dc9578081fd5b611fb882612d91565b60008060408385031215612de4578081fd5b612ded83612d91565b9150612dfb60208401612d91565b90509250929050565b600080600060608486031215612e18578081fd5b612e2184612d91565b9250612e2f60208501612d91565b9150604084013590509250925092565b60008060008060808587031215612e54578081fd5b612e5d85612d91565b9350612e6b60208601612d91565b92506040850135915060608501356001600160401b03811115612e8c578182fd5b8501601f81018713612e9c578182fd5b612eab87823560208401612d3a565b91505092959194509250565b60008060408385031215612ec9578182fd5b612ed283612d91565b9150612dfb60208401612da8565b60008060408385031215612ef2578182fd5b612efb83612d91565b946020939093013593505050565b60008060208385031215612f1b578182fd5b82356001600160401b0380821115612f31578384fd5b818501915085601f830112612f44578384fd5b813581811115612f52578485fd5b8660208083028501011115612f65578485fd5b60209290920196919550909350505050565b600060208284031215612f88578081fd5b611fb882612da8565b600060208284031215612fa2578081fd5b5035919050565b600060208284031215612fba578081fd5b8135611fb881613db7565b600060208284031215612fd6578081fd5b8151611fb881613db7565b600060208284031215612ff2578081fd5b81356001600160401b03811115613007578182fd5b8201601f81018413613017578182fd5b61280884823560208401612d3a565b60008060408385031215613038578182fd5b823591506020808401356001600160401b0380821115613056578384fd5b818601915086601f830112613069578384fd5b81358181111561307b5761307b613da1565b838102915061308b848301613bec565b8181528481019084860184860187018b10156130a5578788fd5b8795505b838610156130c75780358352600195909501949186019186016130a9565b508096505050505050509250929050565b600081518084526130f0816020860160208601613cc8565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b60008351613133818460208801613cc8565b835190830190613147818360208801613cc8565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613197908301846130d8565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156131d9578351835292840192918401916001016131bd565b50909695505050505050565b901515815260200190565b90815260200190565b600060208252611fb860208301846130d8565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252601b908201527f4d61782052657365727665732074616b656e20616c7265616479210000000000604082015260600190565b6020808252601d908201527f596f7520617265206e6f74206f6e2074686520416c6c6f77204c697374000000604082015260600190565b6020808252601d908201527f53616c65206973206e6f74206163746976652063757272656e746c792e000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526013908201527226b4b73a1021b637b9b2b2102337b932bb32b960691b604082015260600190565b60208082526018908201527f4d617820686f6c64696e672063617020726561636865642e0000000000000000604082015260600190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b6020808252600f908201526e29b0b632903430b99032b73232b21760891b604082015260600190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526031908201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260408201527020746865207a65726f206164647265737360781b606082015260800190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b60208082526018908201527f43616e2774206164642061206e756c6c20616464726573730000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601e908201527f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c6973740000604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252601e908201527f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000604082015260600190565b6020808252601690820152752a37ba30b61039bab838363c9032bc31b2b2b232b21760511b604082015260600190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b602080825260149082015273526166666c65206973206e6f742061637469766560601b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b6020808252600d908201526c34b73b30b634b210383937b7b360991b604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526016908201527563616e206e6f74206d696e742074686973206d616e7960501b604082015260600190565b6020808252601b908201527f5072652053616c65204d696e74206973206e6f74206163746976650000000000604082015260600190565b6020808252601390820152722a37ba30b61039bab838363c9039b832b73a1760691b604082015260600190565b6020808252601b908201527f496e7375666669656e742045544820616d6f756e742073656e742e0000000000604082015260600190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252601c908201527f50757263686173652065786365656473206d617820616c6c6f77656400000000604082015260600190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252601b908201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b6020808252818101527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715613c1457613c14613da1565b604052919050565b60006001600160801b0380831681851680830382111561314757613147613d75565b60008219821115613c5157613c51613d75565b500190565b600082613c6557613c65613d8b565b500490565b6000816000190483118215151615613c8457613c84613d75565b500290565b60006001600160801b0383811690831681811015613ca957613ca9613d75565b039392505050565b600082821015613cc357613cc3613d75565b500390565b60005b83811015613ce3578181015183820152602001613ccb565b83811115611f025750506000910152565b600081613d0357613d03613d75565b506000190190565b600281046001821680613d1f57607f821691505b60208210811415613d4057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613d5a57613d5a613d75565b5060010190565b600082613d7057613d70613d8b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611a2e57600080fdfea2646970667358221220a108ef957841b1d0a0befc157c65c3724e4cbd0f7517ecb0f20aa91f9a91453364736f6c63430008010033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000023280000000000000000000000000000000000000000000000000000000000002328000000000000000000000000000000000000000000000000000000000000005768747470733a2f2f6275636b657473636c75622e6d7970696e6174612e636c6f75642f697066732f516d536b486e6152345a4e7a6363717a586935625971425a4c4a68367743526553316a3337566e4c374c56596d572f000000000000000000

Deployed Bytecode

0x60806040526004361061041a5760003560e01c80637835c6351161021e578063c3ac4feb11610123578063ea6eb836116100ab578063f132dc291161007a578063f132dc2914610b4f578063f2fde38b14610b64578063f4a0a52814610b84578063f6c9d9e314610ba4578063f7cb9e5414610bc45761041a565b8063ea6eb83614610ae5578063ebf0c71714610b05578063ec7d099114610b1a578063ee1cc94414610b2f5761041a565b8063d7224ba0116100f2578063d7224ba014610a5b578063dab5f34014610a70578063dc33e68114610a90578063e7b62d9614610ab0578063e985e9c514610ac55761041a565b8063c3ac4feb146109f1578063c4e41b2214610a11578063c87b56dd14610a26578063cadf881814610a465761041a565b806398590a39116101a6578063a51312c811610175578063a51312c814610972578063a7f93ebd14610992578063ad06d758146109a7578063b88d4fde146109bc578063c3441646146109dc5761041a565b806398590a39146109085780639a3bf728146109285780639ccb0fea1461093d578063a22cb465146109525761041a565b80637f44ab2f116101ed5780637f44ab2f1461089f5780638bc35c2f146108b45780638da5cb5b146108c9578063932ecebc146108de57806395d89b41146108f35761041a565b80637835c635146108445780637890b2c9146108575780637a6685f11461086a5780637d26f4701461088a5761041a565b8063431adcb1116103245780635ca1e165116102ac578063715018a61161027b578063715018a6146107ba57806371e3500c146107cf5780637263cfe2146107e45780637389fbb71461080457806377b501b9146108245761041a565b80635ca1e165146107505780636352211e146107655780636817c76c1461078557806370a082311461079a5761041a565b80634dfea627116102f35780634dfea627146106bb5780634f6ccce7146106db57806355f804b3146106fb57806356a87caa1461071b5780635b92ac0d1461073b5761041a565b8063431adcb11461064f578063438b630014610664578063442890d5146106915780634d0550de146106a65761041a565b80632c1205f4116103a75780633ccfd60b116103765780633ccfd60b146105d25780633cfac570146105e75780633e8f09871461060757806340c10f191461061c57806342842e0e1461062f5761041a565b80632c1205f4146105525780632f57bcfe146105725780632f745c59146105925780633b9ee7e4146105b25761041a565b8063095ea7b3116103ee578063095ea7b3146104d157806318160ddd146104f357806321a911f81461050857806323b872dd1461051d5780632992b0b01461053d5761041a565b806208ffdd1461041f57806301ffc9a71461045557806306fdde0314610482578063081812fc146104a4575b600080fd5b34801561042b57600080fd5b5061043f61043a366004612db8565b610be4565b60405161044c91906131f0565b60405180910390f35b34801561046157600080fd5b50610475610470366004612fa9565b610c35565b60405161044c91906131e5565b34801561048e57600080fd5b50610497610c96565b60405161044c91906131f9565b3480156104b057600080fd5b506104c46104bf366004612f91565b610d28565b60405161044c9190613150565b3480156104dd57600080fd5b506104f16104ec366004612ee0565b610d6b565b005b3480156104ff57600080fd5b5061043f610e04565b34801561051457600080fd5b5061043f610e0a565b34801561052957600080fd5b506104f1610538366004612e04565b610e10565b34801561054957600080fd5b5061043f610e1b565b34801561055e57600080fd5b5061047561056d366004612db8565b610e21565b34801561057e57600080fd5b506104f161058d366004612f77565b610e3f565b34801561059e57600080fd5b5061043f6105ad366004612ee0565b610e6e565b3480156105be57600080fd5b506104f16105cd366004612f91565b610f63565b3480156105de57600080fd5b506104f1610f84565b3480156105f357600080fd5b506104f1610602366004612f77565b61109c565b34801561061357600080fd5b5061043f6110d4565b6104f161062a366004612ee0565b6110da565b34801561063b57600080fd5b506104f161064a366004612e04565b611352565b34801561065b57600080fd5b5061047561136d565b34801561067057600080fd5b5061068461067f366004612db8565b61137e565b60405161044c91906131a1565b34801561069d57600080fd5b506104c461143b565b3480156106b257600080fd5b5061043f61144a565b3480156106c757600080fd5b506104f16106d6366004612f91565b611450565b3480156106e757600080fd5b5061043f6106f6366004612f91565b611471565b34801561070757600080fd5b506104f1610716366004612fe1565b61149d565b34801561072757600080fd5b506104f1610736366004612f91565b6114cc565b34801561074757600080fd5b506104756114ed565b34801561075c57600080fd5b5061043f6114fb565b34801561077157600080fd5b506104c4610780366004612f91565b611501565b34801561079157600080fd5b5061043f611513565b3480156107a657600080fd5b5061043f6107b5366004612db8565b611519565b3480156107c657600080fd5b506104f1611566565b3480156107db57600080fd5b506104f161157a565b3480156107f057600080fd5b506104f16107ff366004612f09565b611640565b34801561081057600080fd5b506104f161081f366004612f91565b6117fe565b34801561083057600080fd5b506104f161083f366004612ee0565b61181f565b6104f1610852366004612f91565b6118a2565b6104f1610865366004613026565b611a31565b34801561087657600080fd5b506104f1610885366004612f91565b611be1565b34801561089657600080fd5b50610475611c02565b3480156108ab57600080fd5b5061043f611c12565b3480156108c057600080fd5b5061043f611c18565b3480156108d557600080fd5b506104c4611c3c565b3480156108ea57600080fd5b506104f1611c4b565b3480156108ff57600080fd5b50610497611c7c565b34801561091457600080fd5b506104f1610923366004612f77565b611c8b565b34801561093457600080fd5b5061043f611cc7565b34801561094957600080fd5b50610475611ccd565b34801561095e57600080fd5b506104f161096d366004612eb7565b611cdc565b34801561097e57600080fd5b506104f161098d366004612f09565b611daa565b34801561099e57600080fd5b5061043f611ea4565b3480156109b357600080fd5b5061043f611eaa565b3480156109c857600080fd5b506104f16109d7366004612e3f565b611ecf565b3480156109e857600080fd5b50610475611f08565b3480156109fd57600080fd5b506104f1610a0c366004612f91565b611f11565b348015610a1d57600080fd5b5061043f611f32565b348015610a3257600080fd5b50610497610a41366004612f91565b611f3c565b348015610a5257600080fd5b5061043f611fbf565b348015610a6757600080fd5b5061043f611fc5565b348015610a7c57600080fd5b506104f1610a8b366004612f91565b611fcb565b348015610a9c57600080fd5b5061043f610aab366004612db8565b611fec565b348015610abc57600080fd5b5061043f611ff7565b348015610ad157600080fd5b50610475610ae0366004612dd2565b611ffd565b348015610af157600080fd5b506104f1610b00366004612f91565b61202b565b348015610b1157600080fd5b5061043f61204c565b348015610b2657600080fd5b5061043f612052565b348015610b3b57600080fd5b506104f1610b4a366004612f77565b612058565b348015610b5b57600080fd5b506104756120c2565b348015610b7057600080fd5b506104f1610b7f366004612db8565b6120d2565b348015610b9057600080fd5b506104f1610b9f366004612f91565b612109565b348015610bb057600080fd5b506104f1610bbf366004612f91565b61212a565b348015610bd057600080fd5b5061043f610bdf366004612db8565b61214b565b60006001600160a01b038216610c155760405162461bcd60e51b8152600401610c0c9061367a565b60405180910390fd5b506001600160a01b0381166000908152601960205260409020545b919050565b60006001600160e01b031982166380ac58cd60e01b1480610c6657506001600160e01b03198216635b5e139f60e01b145b80610c8157506001600160e01b0319821663780e9d6360e01b145b80610c905750610c908261218f565b92915050565b606060018054610ca590613d0b565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd190613d0b565b8015610d1e5780601f10610cf357610100808354040283529160200191610d1e565b820191906000526020600020905b815481529060010190602001808311610d0157829003601f168201915b5050505050905090565b6000610d33826121a8565b610d4f5760405162461bcd60e51b8152600401610c0c90613b28565b506000908152600560205260409020546001600160a01b031690565b6000610d7682611501565b9050806001600160a01b0316836001600160a01b03161415610daa5760405162461bcd60e51b8152600401610c0c906137f0565b806001600160a01b0316610dbc6121af565b6001600160a01b03161480610dd85750610dd881610ae06121af565b610df45760405162461bcd60e51b8152600401610c0c90613520565b610dff8383836121b3565b505050565b60005490565b600b5490565b610dff83838361220f565b600c5490565b6001600160a01b031660009081526018602052604090205460ff1690565b33610e48611c3c565b6001600160a01b031614610e5b57600080fd5b6011805460ff1916911515919091179055565b6000610e7983611519565b8210610e975760405162461bcd60e51b8152600401610c0c9061320c565b6000610ea1610e04565b905060008060005b83811015610f4a576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610efb57805192505b876001600160a01b0316836001600160a01b03161415610f375786841415610f2957509350610c9092505050565b83610f3381613d46565b9450505b5080610f4281613d46565b915050610ea9565b5060405162461bcd60e51b8152600401610c0c90613a1d565b33610f6c611c3c565b6001600160a01b031614610f7f57600080fd5b600b55565b33610f8d611c3c565b6001600160a01b031614610fa057600080fd5b60165447906001600160a01b03166108fc612710610fc084612328613c6a565b610fca9190613c56565b6040518115909202916000818181858888f19350505050158015610ff2573d6000803e3d6000fd5b506017546001600160a01b03166108fc612710611011846103e8613c6a565b61101b9190613c56565b6040518115909202916000818181858888f19350505050158015611043573d6000803e3d6000fd5b5061104c611c3c565b6001600160a01b03166108fc612710611066846000613c6a565b6110709190613c56565b6040518115909202916000818181858888f19350505050158015611098573d6000803e3d6000fd5b5050565b336110a5611c3c565b6001600160a01b0316146110b857600080fd5b60118054911515620100000262ff000019909216919091179055565b600c5481565b6012546110e5610e04565b11156111035760405162461bcd60e51b8152600401610c0c9061342a565b3233146111225760405162461bcd60e51b8152600401610c0c906134e9565b61112a611c3c565b6001600160a01b0316336001600160a01b03161461116957601154610100900460ff166111695760405162461bcd60e51b8152600401610c0c906132bc565b611171611c3c565b6001600160a01b0316826001600160a01b0316146111be576014548161119684611519565b6111a09190613c3e565b11156111be5760405162461bcd60e51b8152600401610c0c906133b0565b601454336000908152601a60205260409020546111dc908390613c3e565b11156111fa5760405162461bcd60e51b8152600401610c0c90613a6b565b60125481611206610e04565b6112109190613c3e565b111561122e5760405162461bcd60e51b8152600401610c0c906137c0565b601254611239610e04565b11156112575760405162461bcd60e51b8152600401610c0c906139b9565b6013548111156112795760405162461bcd60e51b8152600401610c0c90613789565b7f0000000000000000000000000000000000000000000000000000000000002328816112a433611fec565b6112ae9190613c3e565b11156112cc5760405162461bcd60e51b8152600401610c0c90613952565b6011546301000000900460ff16156112f65760405162461bcd60e51b8152600401610c0c90613383565b80600a546113049190613c6a565b3410156113235760405162461bcd60e51b8152600401610c0c906139e6565b336000908152601a602052604081208054839290611342908490613c3e565b9091555061109890508282612521565b610dff83838360405180602001604052806000815250611ecf565b601154640100000000900460ff1681565b6060600061138b83611519565b90506000816001600160401b038111156113b557634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156113de578160200160208202803683370190505b50905060005b82811015611433576113f68582610e6e565b82828151811061141657634e487b7160e01b600052603260045260246000fd5b60209081029190910101528061142b81613d46565b9150506113e4565b509392505050565b6000611445611c3c565b905090565b60125481565b33611459611c3c565b6001600160a01b03161461146c57600080fd5b601355565b600061147b610e04565b82106114995760405162461bcd60e51b8152600401610c0c906133e7565b5090565b336114a6611c3c565b6001600160a01b0316146114b957600080fd5b8051611098906010906020840190612c8e565b336114d5611c3c565b6001600160a01b0316146114e857600080fd5b600f55565b601154610100900460ff1681565b60095490565b600061150c8261253b565b5192915050565b600a5481565b60006001600160a01b0382166115415760405162461bcd60e51b8152600401610c0c9061357d565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b61156e61264d565b611578600061268c565b565b33611583611c3c565b6001600160a01b03161461159657600080fd5b600f54600e5411156115ba5760405162461bcd60e51b8152600401610c0c9061324e565b601254600d546115c8610e04565b6115d29190613c3e565b11156115f05760405162461bcd60e51b8152600401610c0c906137c0565b6012546115fb610e04565b11156116195760405162461bcd60e51b8152600401610c0c906139b9565b600d54600e600082825461162d9190613c3e565b9250508190555061157833600d54612521565b33611649611c3c565b6001600160a01b03161461165c57600080fd5b60005b81811015610dff57600083838381811061168957634e487b7160e01b600052603260045260246000fd5b905060200201602081019061169e9190612db8565b6001600160a01b031614156116c55760405162461bcd60e51b8152600401610c0c9061360e565b6001601860008585858181106116eb57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906117009190612db8565b6001600160a01b0316815260208101919091526040016000908120805460ff19169215159290921790915560198185858581811061174e57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906117639190612db8565b6001600160a01b03166001600160a01b0316815260200190815260200160002054116117905760006117eb565b601960008484848181106117b457634e487b7160e01b600052603260045260246000fd5b90506020020160208101906117c99190612db8565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b50806117f681613d46565b91505061165f565b33611807611c3c565b6001600160a01b03161461181a57600080fd5b601255565b33611828611c3c565b6001600160a01b03161461183b57600080fd5b60125481611847610e04565b6118519190613c3e565b111561186f5760405162461bcd60e51b8152600401610c0c906137c0565b60125461187a610e04565b11156118985760405162461bcd60e51b8152600401610c0c906139b9565b6110988282612521565b6012546118ad610e04565b11156118cb5760405162461bcd60e51b8152600401610c0c9061342a565b60115462010000900460ff166118f35760405162461bcd60e51b8152600401610c0c90613982565b3360009081526018602052604090205460ff166119225760405162461bcd60e51b8152600401610c0c90613285565b60125461192d610e04565b1061194a5760405162461bcd60e51b8152600401610c0c90613af1565b60155481111561196c5760405162461bcd60e51b8152600401610c0c90613bb7565b6015543360009081526019602052604090205461198a908390613c3e565b11156119a85760405162461bcd60e51b8152600401610c0c90613a6b565b80600b546119b69190613c6a565b3410156119d55760405162461bcd60e51b8152600401610c0c906139e6565b6011546301000000900460ff16156119ff5760405162461bcd60e51b8152600401610c0c90613383565b3360009081526019602052604081208054839290611a1e908490613c3e565b90915550611a2e90503382612521565b50565b601254611a3c610e04565b1115611a5a5760405162461bcd60e51b8152600401610c0c9061342a565b600033604051602001611a6d9190613104565b60408051601f19818403018152919052805160209091012060115490915060ff16611aaa5760405162461bcd60e51b8152600401610c0c90613832565b600954611ab9908390836126de565b611ad55760405162461bcd60e51b8152600401610c0c906138ea565b601254611ae0610e04565b10611afd5760405162461bcd60e51b8152600401610c0c90613af1565b601554831115611b1f5760405162461bcd60e51b8152600401610c0c90613bb7565b60155433600090815260196020526040902054611b3d908590613c3e565b1115611b5b5760405162461bcd60e51b8152600401610c0c90613a6b565b82600c54611b699190613c6a565b341015611b885760405162461bcd60e51b8152600401610c0c906139e6565b6011546301000000900460ff1615611bb25760405162461bcd60e51b8152600401610c0c90613383565b3360009081526019602052604081208054859290611bd1908490613c3e565b90915550610dff90503384612521565b33611bea611c3c565b6001600160a01b031614611bfd57600080fd5b601555565b6011546301000000900460ff1681565b60155481565b7f000000000000000000000000000000000000000000000000000000000000232881565b6008546001600160a01b031690565b33611c54611c3c565b6001600160a01b031614611c6757600080fd5b6011805463ff00000019166301000000179055565b606060028054610ca590613d0b565b33611c94611c3c565b6001600160a01b031614611ca757600080fd5b601180549115156401000000000264ff0000000019909216919091179055565b60135481565b60115462010000900460ff1681565b611ce46121af565b6001600160a01b0316826001600160a01b03161415611d155760405162461bcd60e51b8152600401610c0c90613700565b8060066000611d226121af565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611d666121af565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d9e91906131e5565b60405180910390a35050565b33611db3611c3c565b6001600160a01b031614611dc657600080fd5b60005b81811015610dff576000838383818110611df357634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611e089190612db8565b6001600160a01b03161415611e2f5760405162461bcd60e51b8152600401610c0c9061360e565b600060186000858585818110611e5557634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611e6a9190612db8565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611e9c81613d46565b915050611dc9565b600a5490565b600033611eb5611c3c565b6001600160a01b031614611ec857600080fd5b5060135490565b611eda84848461220f565b611ee6848484846126f4565b611f025760405162461bcd60e51b8152600401610c0c90613860565b50505050565b60115460ff1681565b33611f1a611c3c565b6001600160a01b031614611f2d57600080fd5b600c55565b6000611445610e04565b6060611f47826121a8565b611f635760405162461bcd60e51b8152600401610c0c906136b1565b6000611f6d612810565b90506000815111611f8d5760405180602001604052806000815250611fb8565b80611f978461281f565b604051602001611fa8929190613121565b6040516020818303038152906040525b9392505050565b60145481565b60075481565b33611fd4611c3c565b6001600160a01b031614611fe757600080fd5b600955565b6000610c9082612939565b600d5490565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b33612034611c3c565b6001600160a01b03161461204757600080fd5b601455565b60095481565b600b5481565b33612061611c3c565b6001600160a01b03161461207457600080fd5b6011805461ff001916610100831515021790556040517f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f906120b79083906131e5565b60405180910390a150565b6011546301000000900460ff1690565b6120da61264d565b6001600160a01b0381166121005760405162461bcd60e51b8152600401610c0c906132f3565b611a2e8161268c565b33612112611c3c565b6001600160a01b03161461212557600080fd5b600a55565b33612133611c3c565b6001600160a01b03161461214657600080fd5b600d55565b60006001600160a01b0382166121735760405162461bcd60e51b8152600401610c0c9061367a565b506001600160a01b03166000908152601a602052604090205490565b6001600160e01b031981166301ffc9a760e01b14919050565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061221a8261253b565b9050600081600001516001600160a01b03166122346121af565b6001600160a01b03161480612269575061224c6121af565b6001600160a01b031661225e84610d28565b6001600160a01b0316145b8061227d5750815161227d90610ae06121af565b90508061229c5760405162461bcd60e51b8152600401610c0c90613737565b846001600160a01b031682600001516001600160a01b0316146122d15760405162461bcd60e51b8152600401610c0c906135c8565b6001600160a01b0384166122f75760405162461bcd60e51b8152600401610c0c90613453565b6123048585856001611f02565b61231460008484600001516121b3565b6001600160a01b03851660009081526004602052604081208054600192906123469084906001600160801b0316613c89565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261239291859116613c1c565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b03199091161716179055612427846001613c3e565b6000818152600360205260409020549091506001600160a01b03166124cb5761244f816121a8565b156124cb5760408051808201825284516001600160a01b0390811682526020808701516001600160401b0390811682850190815260008781526003909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125198686866001611f02565b505050505050565b61109882826040518060200160405280600081525061298d565b612543612d0e565b61254c826121a8565b6125685760405162461bcd60e51b8152600401610c0c90613339565b60007f000000000000000000000000000000000000000000000000000000000000232883106125c9576125bb7f000000000000000000000000000000000000000000000000000000000000232884613cb1565b6125c6906001613c3e565b90505b825b818110612634576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215612621579250610c30915050565b508061262c81613cf4565b9150506125cb565b5060405162461bcd60e51b8152600401610c0c90613aa2565b6126556121af565b6001600160a01b0316612666611c3c565b6001600160a01b0316146115785760405162461bcd60e51b8152600401610c0c90613645565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826126eb8584612bff565b14949350505050565b6000612708846001600160a01b0316612c52565b1561280457836001600160a01b031663150b7a026127246121af565b8786866040518563ffffffff1660e01b81526004016127469493929190613164565b602060405180830381600087803b15801561276057600080fd5b505af1925050508015612790575060408051601f3d908101601f1916820190925261278d91810190612fc5565b60015b6127ea573d8080156127be576040519150601f19603f3d011682016040523d82523d6000602084013e6127c3565b606091505b5080516127e25760405162461bcd60e51b8152600401610c0c90613860565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612808565b5060015b949350505050565b606060108054610ca590613d0b565b60608161284457506040805180820190915260018152600360fc1b6020820152610c30565b8160005b811561286e578061285881613d46565b91506128679050600a83613c56565b9150612848565b6000816001600160401b0381111561289657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156128c0576020820181803683370190505b5090505b8415612808576128d5600183613cb1565b91506128e2600a86613d61565b6128ed906030613c3e565b60f81b81838151811061291057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612932600a86613c56565b94506128c4565b60006001600160a01b0382166129615760405162461bcd60e51b8152600401610c0c90613498565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b6000546001600160a01b0384166129b65760405162461bcd60e51b8152600401610c0c90613911565b6129bf816121a8565b156129dc5760405162461bcd60e51b8152600401610c0c906138b3565b7f0000000000000000000000000000000000000000000000000000000000002328831115612a1c5760405162461bcd60e51b8152600401610c0c90613b75565b612a296000858386611f02565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612a85908790613c1c565b6001600160801b03168152602001858360200151612aa39190613c1c565b6001600160801b039081169091526001600160a01b03808816600081815260046020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff199099169890981790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b85811015612bed5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612bb160008884886126f4565b612bcd5760405162461bcd60e51b8152600401610c0c90613860565b81612bd781613d46565b9250508080612be590613d46565b915050612b64565b50600081815561251990878588611f02565b600081815b845181101561143357612c3e82868381518110612c3157634e487b7160e01b600052603260045260246000fd5b6020026020010151612c61565b915080612c4a81613d46565b915050612c04565b6001600160a01b03163b151590565b6000818310612c7957612c748284612c7f565b611fb8565b611fb883835b60009182526020526040902090565b828054612c9a90613d0b565b90600052602060002090601f016020900481019282612cbc5760008555612d02565b82601f10612cd557805160ff1916838001178555612d02565b82800160010185558215612d02579182015b82811115612d02578251825591602001919060010190612ce7565b50611499929150612d25565b604080518082019091526000808252602082015290565b5b808211156114995760008155600101612d26565b60006001600160401b03831115612d5357612d53613da1565b612d66601f8401601f1916602001613bec565b9050828152838383011115612d7a57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114610c3057600080fd5b80358015158114610c3057600080fd5b600060208284031215612dc9578081fd5b611fb882612d91565b60008060408385031215612de4578081fd5b612ded83612d91565b9150612dfb60208401612d91565b90509250929050565b600080600060608486031215612e18578081fd5b612e2184612d91565b9250612e2f60208501612d91565b9150604084013590509250925092565b60008060008060808587031215612e54578081fd5b612e5d85612d91565b9350612e6b60208601612d91565b92506040850135915060608501356001600160401b03811115612e8c578182fd5b8501601f81018713612e9c578182fd5b612eab87823560208401612d3a565b91505092959194509250565b60008060408385031215612ec9578182fd5b612ed283612d91565b9150612dfb60208401612da8565b60008060408385031215612ef2578182fd5b612efb83612d91565b946020939093013593505050565b60008060208385031215612f1b578182fd5b82356001600160401b0380821115612f31578384fd5b818501915085601f830112612f44578384fd5b813581811115612f52578485fd5b8660208083028501011115612f65578485fd5b60209290920196919550909350505050565b600060208284031215612f88578081fd5b611fb882612da8565b600060208284031215612fa2578081fd5b5035919050565b600060208284031215612fba578081fd5b8135611fb881613db7565b600060208284031215612fd6578081fd5b8151611fb881613db7565b600060208284031215612ff2578081fd5b81356001600160401b03811115613007578182fd5b8201601f81018413613017578182fd5b61280884823560208401612d3a565b60008060408385031215613038578182fd5b823591506020808401356001600160401b0380821115613056578384fd5b818601915086601f830112613069578384fd5b81358181111561307b5761307b613da1565b838102915061308b848301613bec565b8181528481019084860184860187018b10156130a5578788fd5b8795505b838610156130c75780358352600195909501949186019186016130a9565b508096505050505050509250929050565b600081518084526130f0816020860160208601613cc8565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b60008351613133818460208801613cc8565b835190830190613147818360208801613cc8565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613197908301846130d8565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156131d9578351835292840192918401916001016131bd565b50909695505050505050565b901515815260200190565b90815260200190565b600060208252611fb860208301846130d8565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252601b908201527f4d61782052657365727665732074616b656e20616c7265616479210000000000604082015260600190565b6020808252601d908201527f596f7520617265206e6f74206f6e2074686520416c6c6f77204c697374000000604082015260600190565b6020808252601d908201527f53616c65206973206e6f74206163746976652063757272656e746c792e000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526013908201527226b4b73a1021b637b9b2b2102337b932bb32b960691b604082015260600190565b60208082526018908201527f4d617820686f6c64696e672063617020726561636865642e0000000000000000604082015260600190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b6020808252600f908201526e29b0b632903430b99032b73232b21760891b604082015260600190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526031908201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260408201527020746865207a65726f206164647265737360781b606082015260800190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b60208082526018908201527f43616e2774206164642061206e756c6c20616464726573730000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601e908201527f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c6973740000604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252601e908201527f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000604082015260600190565b6020808252601690820152752a37ba30b61039bab838363c9032bc31b2b2b232b21760511b604082015260600190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b602080825260149082015273526166666c65206973206e6f742061637469766560601b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b6020808252600d908201526c34b73b30b634b210383937b7b360991b604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526016908201527563616e206e6f74206d696e742074686973206d616e7960501b604082015260600190565b6020808252601b908201527f5072652053616c65204d696e74206973206e6f74206163746976650000000000604082015260600190565b6020808252601390820152722a37ba30b61039bab838363c9039b832b73a1760691b604082015260600190565b6020808252601b908201527f496e7375666669656e742045544820616d6f756e742073656e742e0000000000604082015260600190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252601c908201527f50757263686173652065786365656473206d617820616c6c6f77656400000000604082015260600190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252601b908201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b6020808252818101527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715613c1457613c14613da1565b604052919050565b60006001600160801b0380831681851680830382111561314757613147613d75565b60008219821115613c5157613c51613d75565b500190565b600082613c6557613c65613d8b565b500490565b6000816000190483118215151615613c8457613c84613d75565b500290565b60006001600160801b0383811690831681811015613ca957613ca9613d75565b039392505050565b600082821015613cc357613cc3613d75565b500390565b60005b83811015613ce3578181015183820152602001613ccb565b83811115611f025750506000910152565b600081613d0357613d03613d75565b506000190190565b600281046001821680613d1f57607f821691505b60208210811415613d4057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613d5a57613d5a613d75565b5060010190565b600082613d7057613d70613d8b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611a2e57600080fdfea2646970667358221220a108ef957841b1d0a0befc157c65c3724e4cbd0f7517ecb0f20aa91f9a91453364736f6c63430008010033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000023280000000000000000000000000000000000000000000000000000000000002328000000000000000000000000000000000000000000000000000000000000005768747470733a2f2f6275636b657473636c75622e6d7970696e6174612e636c6f75642f697066732f516d536b486e6152345a4e7a6363717a586935625971425a4c4a68367743526553316a3337566e4c374c56596d572f000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://bucketsclub.mypinata.cloud/ipfs/QmSkHnaR4ZNzccqzXi5bYqBZLJh6wCReS1j37VnL7LVYmW/
Arg [1] : maxBatchSize_ (uint256): 9000
Arg [2] : collectionSize_ (uint256): 9000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 0000000000000000000000000000000000000000000000000000000000002328
Arg [2] : 0000000000000000000000000000000000000000000000000000000000002328
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000057
Arg [4] : 68747470733a2f2f6275636b657473636c75622e6d7970696e6174612e636c6f
Arg [5] : 75642f697066732f516d536b486e6152345a4e7a6363717a586935625971425a
Arg [6] : 4c4a68367743526553316a3337566e4c374c56596d572f000000000000000000


Deployed Bytecode Sourcemap

194:9476:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3688:184;;;;;;;;;;-1:-1:-1;3688:184:1;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3826:358:4;;;;;;;;;;-1:-1:-1;3826:358:4;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;5490:92::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;6955:200::-;;;;;;;;;;-1:-1:-1;6955:200:4;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;6533:369::-;;;;;;;;;;-1:-1:-1;6533:369:4;;;;;:::i;:::-;;:::i;:::-;;2432:92;;;;;;;;;;;;;:::i;4883:97:1:-;;;;;;;;;;;;;:::i;7773:136:4:-;;;;;;;;;;-1:-1:-1;7773:136:4;;;;;:::i;:::-;;:::i;4984:95:1:-;;;;;;;;;;;;;:::i;3317:105::-;;;;;;;;;;-1:-1:-1;3317:105:1;;;;;:::i;:::-;;:::i;2508:112::-;;;;;;;;;;-1:-1:-1;2508:112:1;;;;;:::i;:::-;;:::i;3046:721:4:-;;;;;;;;;;-1:-1:-1;3046:721:4;;;;;:::i;:::-;;:::i;4348:103:1:-;;;;;;;;;;-1:-1:-1;4348:103:1;;;;;:::i;:::-;;:::i;9403:265::-;;;;;;;;;;;;;:::i;2624:136::-;;;;;;;;;;-1:-1:-1;2624:136:1;;;;;:::i;:::-;;:::i;396:42::-;;;;;;;;;;;;;:::i;6505:1034::-;;;;;;:::i;:::-;;:::i;7967:151:4:-;;;;;;;;;;-1:-1:-1;7967:151:4;;;;;:::i;:::-;;:::i;746:30:1:-;;;;;;;;;;;;;:::i;9093:306::-;;;;;;;;;;-1:-1:-1;9093:306:1;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;5634:83::-;;;;;;;;;;;;;:::i;781:39::-;;;;;;;;;;;;;:::i;2009:122::-;;;;;;;;;;-1:-1:-1;2009:122:1;;;;;:::i;:::-;;:::i;2588:174:4:-;;;;;;;;;;-1:-1:-1;2588:174:4;;;;;:::i;:::-;;:::i;4560:99:1:-;;;;;;;;;;-1:-1:-1;4560:99:1;;;;;:::i;:::-;;:::i;4161:90::-;;;;;;;;;;-1:-1:-1;4161:90:1;;;;;:::i;:::-;;:::i;624:32::-;;;;;;;;;;;;;:::i;5557:73::-;;;;;;;;;;;;;:::i;5320:116:4:-;;;;;;;;;;-1:-1:-1;5320:116:4;;;;;:::i;:::-;;:::i;308:36:1:-;;;;;;;;;;;;;:::i;4235:208:4:-;;;;;;;;;;-1:-1:-1;4235:208:4;;;;;:::i;:::-;;:::i;1824:101:11:-;;;;;;;;;;;;;:::i;5831:372:1:-;;;;;;;;;;;;;:::i;2980:333::-;;;;;;;;;;-1:-1:-1;2980:333:1;;;;;:::i;:::-;;:::i;2386:118::-;;;;;;;;;;-1:-1:-1;2386:118:1;;;;;:::i;:::-;;:::i;6207:294::-;;;;;;;;;;-1:-1:-1;6207:294:1;;;;;:::i;:::-;;:::i;8293:687::-;;;;;;:::i;:::-;;:::i;7543:746::-;;;;;;:::i;:::-;;:::i;2868:108::-;;;;;;;;;;-1:-1:-1;2868:108:1;;;;;:::i;:::-;;:::i;703:39::-;;;;;;;;;;;;;:::i;932:36::-;;;;;;;;;;;;;:::i;972:48::-;;;;;;;;;;;;;:::i;1194:85:11:-;;;;;;;;;;;;;:::i;5187:95:1:-;;;;;;;;;;;;;:::i;5638:96:4:-;;;;;;;;;;;;;:::i;2764:100:1:-;;;;;;;;;;-1:-1:-1;2764:100:1;;;;;:::i;:::-;;:::i;824:51::-;;;;;;;;;;;;;:::i;660:39::-;;;;;;;;;;;;;:::i;7214:269:4:-;;;;;;;;;;-1:-1:-1;7214:269:4;;;;;:::i;:::-;;:::i;3426:258:1:-;;;;;;;;;;-1:-1:-1;3426:258:1;;;;;:::i;:::-;;:::i;4796:83::-;;;;;;;;;;;;;:::i;4663:129::-;;;;;;;;;;;;;:::i;8176:300:4:-;;;;;;;;;;-1:-1:-1;8176:300:4;;;;;:::i;:::-;;:::i;586:34:1:-;;;;;;;;;;;;;:::i;4455:101::-;;;;;;;;;;-1:-1:-1;4455:101:1;;;;;:::i;:::-;;:::i;5464:89::-;;;;;;;;;;;;;:::i;5792:377:4:-;;;;;;;;;;-1:-1:-1;5792:377:4;;;;;:::i;:::-;;:::i;879:49:1:-;;;;;;;;;;;;;:::i;12446:43:4:-;;;;;;;;;;;;;:::i;5286:77:1:-;;;;;;;;;;-1:-1:-1;5286:77:1;;;;;:::i;:::-;;:::i;8984:105::-;;;;;;;;;;-1:-1:-1;8984:105:1;;;;;:::i;:::-;;:::i;5367:93::-;;;;;;;;;;;;;:::i;7541:178:4:-;;;;;;;;;;-1:-1:-1;7541:178:4;;;;;:::i;:::-;;:::i;2135:129:1:-;;;;;;;;;;-1:-1:-1;2135:129:1;;;;;:::i;:::-;;:::i;284:19::-;;;;;;;;;;;;;:::i;348:44::-;;;;;;;;;;;;;:::i;2268:114::-;;;;;;;;;;-1:-1:-1;2268:114:1;;;;;:::i;:::-;;:::i;5083:100::-;;;;;;;;;;;;;:::i;2074:198:11:-;;;;;;;;;;-1:-1:-1;2074:198:11;;;;;:::i;:::-;;:::i;4255:89:1:-;;;;;;;;;;-1:-1:-1;4255:89:1;;;;;:::i;:::-;;:::i;4064:93::-;;;;;;;;;;-1:-1:-1;4064:93:1;;;;;:::i;:::-;;:::i;3876:184::-;;;;;;;;;;-1:-1:-1;3876:184:1;;;;;:::i;:::-;;:::i;3688:::-;3754:7;-1:-1:-1;;;;;3776:19:1;;3768:62;;;;-1:-1:-1;;;3768:62:1;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;;3843:24:1;;;;;;:17;:24;;;;;;3688:184;;;;:::o;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;;;;4143:36;4167:11;4143:23;:36::i;:::-;3962:217;3826:358;-1:-1:-1;;3826:358:4:o;5490:92::-;5544:13;5572:5;5565:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5490:92;:::o;6955:200::-;7023:7;7046:16;7054:7;7046;:16::i;:::-;7038:74;;;;-1:-1:-1;;;7038:74:4;;;;;;;:::i;:::-;-1:-1:-1;7126:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;7126:24:4;;6955:200::o;6533:369::-;6601:13;6617:24;6633:7;6617:15;:24::i;:::-;6601:40;;6661:5;-1:-1:-1;;;;;6655:11:4;:2;-1:-1:-1;;;;;6655:11:4;;;6647:58;;;;-1:-1:-1;;;6647:58:4;;;;;;;:::i;:::-;6743:5;-1:-1:-1;;;;;6727:21:4;:12;:10;:12::i;:::-;-1:-1:-1;;;;;6727:21:4;;:62;;;;6752:37;6769:5;6776:12;:10;:12::i;6752:37::-;6712:150;;;;-1:-1:-1;;;6712:150:4;;;;;;;:::i;:::-;6869:28;6878:2;6882:7;6891:5;6869:8;:28::i;:::-;6533:369;;;:::o;2432:92::-;2485:7;2507:12;2432:92;:::o;4883:97:1:-;4959:16;;4883:97;:::o;7773:136:4:-;7876:28;7886:4;7892:2;7896:7;7876:9;:28::i;4984:95:1:-;5059:15;;4984:95;:::o;3317:105::-;-1:-1:-1;;;;;3401:16:1;3382:4;3401:16;;;:10;:16;;;;;;;;;3317:105::o;2508:112::-;1870:10;1859:7;:5;:7::i;:::-;-1:-1:-1;;;;;1859:21:1;;1851:30;;;;;;2583:14:::1;:32:::0;;-1:-1:-1;;2583:32:1::1;::::0;::::1;;::::0;;;::::1;::::0;;2508:112::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;;;;;;;:::i;:::-;3245:22;3270:13;:11;:13::i;:::-;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;;;-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;;;;3706:56;;-1:-1:-1;;;3706:56:4;;;;;;;:::i;4348:103:1:-;1870:10;1859:7;:5;:7::i;:::-;-1:-1:-1;;;;;1859:21:1;;1851:30;;;;;;4421:16:::1;:25:::0;4348:103::o;9403:265::-;1870:10;1859:7;:5;:7::i;:::-;-1:-1:-1;;;;;1859:21:1;;1851:30;;;;;;9503:13:::1;::::0;9468:21:::1;::::0;-1:-1:-1;;;;;9503:13:1::1;9495:55;9544:5;9527:14;9468:21:::0;9537:4:::1;9527:14;:::i;:::-;:22;;;;:::i;:::-;9495:55;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;9564:13:1::1;::::0;-1:-1:-1;;;;;9564:13:1::1;9556:55;9605:5;9588:14;:7:::0;9598:4:::1;9588:14;:::i;:::-;:22;;;;:::i;:::-;9556:55;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;9625:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;9617:25:1::1;:46;9657:5;9643:11;:7:::0;9653:1:::1;9643:11;:::i;:::-;:19;;;;:::i;:::-;9617:46;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;1887:1;9403:265::o:0;2624:136::-;1870:10;1859:7;:5;:7::i;:::-;-1:-1:-1;;;;;1859:21:1;;1851:30;;;;;;2713:19:::1;:42:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;2713:42:1;;::::1;::::0;;;::::1;::::0;;2624:136::o;396:42::-;;;;:::o;6505:1034::-;1766:17;;1749:13;:11;:13::i;:::-;:34;;1741:62;;;;-1:-1:-1;;;1741:62:1;;;;;;;:::i;:::-;1935:9:::1;1948:10;1935:23;1927:66;;;;-1:-1:-1::0;;;1927:66:1::1;;;;;;;:::i;:::-;6611:7:::2;:5;:7::i;:::-;-1:-1:-1::0;;;;;6597:21:1::2;:10;-1:-1:-1::0;;;;;6597:21:1::2;;6593:96;;6636:12;::::0;::::2;::::0;::::2;;;6628:54;;;;-1:-1:-1::0;;;6628:54:1::2;;;;;;;:::i;:::-;6705:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;6698:14:1::2;:3;-1:-1:-1::0;;;;;6698:14:1::2;;6695:127;;6757:29;;6747:6;6730:14;6740:3;6730:9;:14::i;:::-;:23;;;;:::i;:::-;:56;;6722:93;;;;-1:-1:-1::0;;;6722:93:1::2;;;;;;;:::i;:::-;6879:29;::::0;6855:10:::2;6836:30;::::0;;;:18:::2;:30;::::0;;;;;:39:::2;::::0;6869:6;;6836:39:::2;:::i;:::-;:72;;6828:113;;;;-1:-1:-1::0;;;6828:113:1::2;;;;;;;:::i;:::-;6981:17;;6971:6;6955:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:43;;6947:78;;;;-1:-1:-1::0;;;6947:78:1::2;;;;;;;:::i;:::-;7056:17;;7039:13;:11;:13::i;:::-;:34;;7031:66;;;;-1:-1:-1::0;;;7031:66:1::2;;;;;;;:::i;:::-;7128:31;;7118:6;:41;;7103:102;;;;-1:-1:-1::0;;;7103:102:1::2;;;;;;;:::i;:::-;7263:23;7253:6;7226:24;7239:10;7226:12;:24::i;:::-;:33;;;;:::i;:::-;:60;;7211:113;;;;-1:-1:-1::0;;;7211:113:1::2;;;;;;;:::i;:::-;7339:19;::::0;;;::::2;;;7338:20;7330:52;;;;-1:-1:-1::0;;;7330:52:1::2;;;;;;;:::i;:::-;7421:6;7409:9;;:18;;;;:::i;:::-;7396:9;:31;;7388:71;;;;-1:-1:-1::0;;;7388:71:1::2;;;;;;;:::i;:::-;7485:10;7466:30;::::0;;;:18:::2;:30;::::0;;;;:40;;7500:6;;7466:30;:40:::2;::::0;7500:6;;7466:40:::2;:::i;:::-;::::0;;;-1:-1:-1;7512:22:1::2;::::0;-1:-1:-1;7522:3:1;7527:6;7512:9:::2;:22::i;7967:151:4:-:0;8074:39;8091:4;8097:2;8101:7;8074:39;;;;;;;;;;;;:16;:39::i;746:30:1:-;;;;;;;;;:::o;9093:306::-;9154:16;9178:15;9196:17;9206:6;9196:9;:17::i;:::-;9178:35;;9219:25;9261:10;-1:-1:-1;;;;;9247:25:1;;;;;-1:-1:-1;;;9247:25:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9247:25:1;;9219:53;;9283:6;9279:95;9299:10;9295:1;:14;9279:95;;;9337:30;9357:6;9365:1;9337:19;:30::i;:::-;9323:8;9332:1;9323:11;;;;;;-1:-1:-1;;;9323:11:1;;;;;;;;;;;;;;;;;;:44;9311:3;;;;:::i;:::-;;;;9279:95;;;-1:-1:-1;9386:8:1;9093:306;-1:-1:-1;;;9093:306:1:o;5634:83::-;5683:7;5705;:5;:7::i;:::-;5698:14;;5634:83;:::o;781:39::-;;;;:::o;2009:122::-;1870:10;1859:7;:5;:7::i;:::-;-1:-1:-1;;;;;1859:21:1;;1851:30;;;;;;2086:31:::1;:40:::0;2009:122::o;2588:174:4:-;2655:7;2686:13;:11;:13::i;:::-;2678:5;:21;2670:69;;;;-1:-1:-1;;;2670:69:4;;;;;;;:::i;:::-;-1:-1:-1;2752:5:4;2588:174::o;4560:99:1:-;1870:10;1859:7;:5;:7::i;:::-;-1:-1:-1;;;;;1859:21:1;;1851:30;;;;;;4631:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;4161:90::-:0;1870:10;1859:7;:5;:7::i;:::-;-1:-1:-1;;;;;1859:21:1;;1851:30;;;;;;4225:15:::1;:21:::0;4161:90::o;624:32::-;;;;;;;;;:::o;5557:73::-;5621:4;;5557:73;:::o;5320:116:4:-;5384:7;5406:20;5418:7;5406:11;:20::i;:::-;:25;;5320:116;-1:-1:-1;;5320:116:4:o;308:36:1:-;;;;:::o;4235:208:4:-;4299:7;-1:-1:-1;;;;;4322:19:4;;4314:75;;;;-1:-1:-1;;;4314:75:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;;4410:19:4;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;4410:27:4;;4235:208::o;1824:101:11:-;1087:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;:::-;1824:101::o:0;5831:372:1:-;1870:10;1859:7;:5;:7::i;:::-;-1:-1:-1;;;;;1859:21:1;;1851:30;;;;;;5906:15:::1;;5889:13;;:32;;5881:72;;;;-1:-1:-1::0;;;5881:72:1::1;;;;;;;:::i;:::-;6001:17;;5983:14;;5967:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:51;;5959:86;;;;-1:-1:-1::0;;;5959:86:1::1;;;;;;;:::i;:::-;6076:17;;6059:13;:11;:13::i;:::-;:34;;6051:66;;;;-1:-1:-1::0;;;6051:66:1::1;;;;;;;:::i;:::-;6141:14;;6124:13;;:31;;;;;;;:::i;:::-;;;;;;;;6161:37;6171:10;6183:14;;6161:9;:37::i;2980:333::-:0;1870:10;1859:7;:5;:7::i;:::-;-1:-1:-1;;;;;1859:21:1;;1851:30;;;;;;3069:9:::1;3064:245;3084:20:::0;;::::1;3064:245;;;3151:1;3127:9:::0;;3137:1;3127:12;;::::1;;;-1:-1:-1::0;;;3127:12:1::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3127:26:1::1;;;3119:63;;;;-1:-1:-1::0;;;3119:63:1::1;;;;;;;:::i;:::-;3217:4;3190:10;:24;3201:9;;3211:1;3201:12;;;;;-1:-1:-1::0;;;3201:12:1::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3190:24:1::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;3190:24:1;;;:31;;-1:-1:-1;;3190:31:1::1;::::0;::::1;;::::0;;;::::1;::::0;;;3229:17:::1;-1:-1:-1::0;3247:9:1;;3257:1;3247:12;;::::1;;;-1:-1:-1::0;;;3247:12:1::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3229:31:1::1;-1:-1:-1::0;;;;;3229:31:1::1;;;;;;;;;;;;;:35;:73;;3301:1;3229:73;;;3267:17;:31;3285:9;;3295:1;3285:12;;;;;-1:-1:-1::0;;;3285:12:1::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3267:31:1::1;-1:-1:-1::0;;;;;3267:31:1::1;;;;;;;;;;;;;3229:73;-1:-1:-1::0;3106:3:1;::::1;::::0;::::1;:::i;:::-;;;;3064:245;;2386:118:::0;1870:10;1859:7;:5;:7::i;:::-;-1:-1:-1;;;;;1859:21:1;;1851:30;;;;;;2466:17:::1;:33:::0;2386:118::o;6207:294::-;1870:10;1859:7;:5;:7::i;:::-;-1:-1:-1;;;;;1859:21:1;;1851:30;;;;;;6340:17:::1;;6330:6;6314:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:43;;6306:78;;;;-1:-1:-1::0;;;6306:78:1::1;;;;;;;:::i;:::-;6415:17;;6398:13;:11;:13::i;:::-;:34;;6390:66;;;;-1:-1:-1::0;;;6390:66:1::1;;;;;;;:::i;:::-;6463:33;6473:14;6489:6;6463:9;:33::i;8293:687::-:0;1766:17;;1749:13;:11;:13::i;:::-;:34;;1741:62;;;;-1:-1:-1;;;1741:62:1;;;;;;;:::i;:::-;8370:19:::1;::::0;;;::::1;;;8362:59;;;;-1:-1:-1::0;;;8362:59:1::1;;;;;;;:::i;:::-;8446:10;8435:22;::::0;;;:10:::1;:22;::::0;;;;;::::1;;8427:64;;;;-1:-1:-1::0;;;8427:64:1::1;;;;;;;:::i;:::-;8521:17;;8505:13;:11;:13::i;:::-;:33;8497:73;;;;-1:-1:-1::0;;;8497:73:1::1;;;;;;;:::i;:::-;8594:16;;8584:6;:26;;8576:71;;;;-1:-1:-1::0;;;8576:71:1::1;;;;;;;:::i;:::-;8703:16;::::0;8679:10:::1;8661:29;::::0;;;:17:::1;:29;::::0;;;;;:38:::1;::::0;8693:6;;8661:38:::1;:::i;:::-;:58;;8653:99;;;;-1:-1:-1::0;;;8653:99:1::1;;;;;;;:::i;:::-;8798:6;8779:16;;:25;;;;:::i;:::-;8766:9;:38;;8758:78;;;;-1:-1:-1::0;;;8758:78:1::1;;;;;;;:::i;:::-;8851:19;::::0;;;::::1;;;8850:20;8842:52;;;;-1:-1:-1::0;;;8842:52:1::1;;;;;;;:::i;:::-;8918:10;8900:29;::::0;;;:17:::1;:29;::::0;;;;:39;;8933:6;;8900:29;:39:::1;::::0;8933:6;;8900:39:::1;:::i;:::-;::::0;;;-1:-1:-1;8946:29:1::1;::::0;-1:-1:-1;8956:10:1::1;8968:6:::0;8946:9:::1;:29::i;:::-;8293:687:::0;:::o;7543:746::-;1766:17;;1749:13;:11;:13::i;:::-;:34;;1741:62;;;;-1:-1:-1;;;1741:62:1;;;;;;;:::i;:::-;7636:12:::1;7678:10;7661:28;;;;;;;;:::i;:::-;;::::0;;-1:-1:-1;;7661:28:1;;::::1;::::0;;;;;;7651:39;;7661:28:::1;7651:39:::0;;::::1;::::0;7705:14:::1;::::0;7651:39;;-1:-1:-1;7705:14:1::1;;7697:47;;;;-1:-1:-1::0;;;7697:47:1::1;;;;;;;:::i;:::-;7772:4;::::0;7758:25:::1;::::0;:6;;7778:4;7758:13:::1;:25::i;:::-;7750:51;;;;-1:-1:-1::0;;;7750:51:1::1;;;;;;;:::i;:::-;7831:17;;7815:13;:11;:13::i;:::-;:33;7807:73;;;;-1:-1:-1::0;;;7807:73:1::1;;;;;;;:::i;:::-;7904:16;;7894:6;:26;;7886:71;;;;-1:-1:-1::0;;;7886:71:1::1;;;;;;;:::i;:::-;8013:16;::::0;7989:10:::1;7971:29;::::0;;;:17:::1;:29;::::0;;;;;:38:::1;::::0;8003:6;;7971:38:::1;:::i;:::-;:58;;7963:99;;;;-1:-1:-1::0;;;7963:99:1::1;;;;;;;:::i;:::-;8107:6;8089:15;;:24;;;;:::i;:::-;8076:9;:37;;8068:77;;;;-1:-1:-1::0;;;8068:77:1::1;;;;;;;:::i;:::-;8160:19;::::0;;;::::1;;;8159:20;8151:52;;;;-1:-1:-1::0;;;8151:52:1::1;;;;;;;:::i;:::-;8227:10;8209:29;::::0;;;:17:::1;:29;::::0;;;;:39;;8242:6;;8209:29;:39:::1;::::0;8242:6;;8209:39:::1;:::i;:::-;::::0;;;-1:-1:-1;8255:29:1::1;::::0;-1:-1:-1;8265:10:1::1;8277:6:::0;8255:9:::1;:29::i;2868:108::-:0;1870:10;1859:7;:5;:7::i;:::-;-1:-1:-1;;;;;1859:21:1;;1851:30;;;;;;2945:16:::1;:26:::0;2868:108::o;703:39::-;;;;;;;;;:::o;932:36::-;;;;:::o;972:48::-;;;:::o;1194:85:11:-;1266:6;;-1:-1:-1;;;;;1266:6:11;1194:85;:::o;5187:95:1:-;1870:10;1859:7;:5;:7::i;:::-;-1:-1:-1;;;;;1859:21:1;;1851:30;;;;;;5251:19:::1;:26:::0;;-1:-1:-1;;5251:26:1::1;::::0;::::1;::::0;;5187:95::o;5638:96:4:-;5694:13;5722:7;5715:14;;;;;:::i;2764:100:1:-;1870:10;1859:7;:5;:7::i;:::-;-1:-1:-1;;;;;1859:21:1;;1851:30;;;;;;2835:10:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;2835:24:1;;::::1;::::0;;;::::1;::::0;;2764:100::o;824:51::-;;;;:::o;660:39::-;;;;;;;;;:::o;7214:269:4:-;7316:12;:10;:12::i;:::-;-1:-1:-1;;;;;7304:24:4;:8;-1:-1:-1;;;;;7304:24:4;;;7296:63;;;;-1:-1:-1;;;7296:63:4;;;;;;;:::i;:::-;7411:8;7366:18;:32;7385:12;:10;:12::i;:::-;-1:-1:-1;;;;;7366:32:4;;;;;;;;;;;;;;;;;-1:-1:-1;7366:32:4;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;7366:53:4;;;;;;;;;;;7445:12;:10;:12::i;:::-;-1:-1:-1;;;;;7430:48:4;;7469:8;7430:48;;;;;;:::i;:::-;;;;;;;;7214:269;;:::o;3426:258:1:-;1870:10;1859:7;:5;:7::i;:::-;-1:-1:-1;;;;;1859:21:1;;1851:30;;;;;;3520:9:::1;3515:165;3535:20:::0;;::::1;3515:165;;;3602:1;3578:9:::0;;3588:1;3578:12;;::::1;;;-1:-1:-1::0;;;3578:12:1::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3578:26:1::1;;;3570:63;;;;-1:-1:-1::0;;;3570:63:1::1;;;;;;;:::i;:::-;3668:5;3641:10;:24;3652:9;;3662:1;3652:12;;;;;-1:-1:-1::0;;;3652:12:1::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3641:24:1::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;3641:24:1;:32;;-1:-1:-1;;3641:32:1::1;::::0;::::1;;::::0;;;::::1;::::0;;3557:3;::::1;::::0;::::1;:::i;:::-;;;;3515:165;;4796:83:::0;4865:9;;4796:83;:::o;4663:129::-;4734:7;1870:10;1859:7;:5;:7::i;:::-;-1:-1:-1;;;;;1859:21:1;;1851:30;;;;;;-1:-1:-1;4756:31:1::1;::::0;4663:129;:::o;8176:300:4:-;8307:28;8317:4;8323:2;8327:7;8307:9;:28::i;:::-;8356:48;8379:4;8385:2;8389:7;8398:5;8356:22;:48::i;:::-;8341:130;;;;-1:-1:-1;;;8341:130:4;;;;;;;:::i;:::-;8176:300;;;;:::o;586:34:1:-;;;;;;:::o;4455:101::-;1870:10;1859:7;:5;:7::i;:::-;-1:-1:-1;;;;;1859:21:1;;1851:30;;;;;;4527:15:::1;:24:::0;4455:101::o;5464:89::-;5513:7;5535:13;:11;:13::i;5792:377:4:-;5885:13;5923:16;5931:7;5923;:16::i;:::-;5908:94;;;;-1:-1:-1;;;5908:94:4;;;;;;;:::i;:::-;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;879:49:1:-;;;;:::o;12446:43:4:-;;;;:::o;5286:77:1:-;1870:10;1859:7;:5;:7::i;:::-;-1:-1:-1;;;;;1859:21:1;;1851:30;;;;;;5346:4:::1;:12:::0;5286:77::o;8984:105::-;9042:7;9064:20;9078:5;9064:13;:20::i;5367:93::-;5441:14;;5367:93;:::o;7541:178:4:-;-1:-1:-1;;;;;7679:25:4;;;7658:4;7679:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;7541:178::o;2135:129:1:-;1870:10;1859:7;:5;:7::i;:::-;-1:-1:-1;;;;;1859:21:1;;1851:30;;;;;;2221:29:::1;:38:::0;2135:129::o;284:19::-;;;;:::o;348:44::-;;;;:::o;2268:114::-;1870:10;1859:7;:5;:7::i;:::-;-1:-1:-1;;;;;1859:21:1;;1851:30;;;;;;2329:12:::1;:18:::0;;-1:-1:-1;;2329:18:1::1;;::::0;::::1;;;;::::0;;2358:19:::1;::::0;::::1;::::0;::::1;::::0;2329:18;;2358:19:::1;:::i;:::-;;;;;;;;2268:114:::0;:::o;5083:100::-;5159:19;;;;;;;;5083:100::o;2074:198:11:-;1087:13;:11;:13::i;:::-;-1:-1:-1;;;;;2162:22:11;::::1;2154:73;;;;-1:-1:-1::0;;;2154:73:11::1;;;;;;;:::i;:::-;2237:28;2256:8;2237:18;:28::i;4255:89:1:-:0;1870:10;1859:7;:5;:7::i;:::-;-1:-1:-1;;;;;1859:21:1;;1851:30;;;;;;4321:9:::1;:18:::0;4255:89::o;4064:93::-;1870:10;1859:7;:5;:7::i;:::-;-1:-1:-1;;;;;1859:21:1;;1851:30;;;;;;4132:14:::1;:20:::0;4064:93::o;3876:184::-;3941:7;-1:-1:-1;;;;;3963:19:1;;3955:62;;;;-1:-1:-1;;;3955:62:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;;4030:25:1;;;;;:18;:25;;;;;;;3876:184::o;829:155:3:-;-1:-1:-1;;;;;;937:40:3;;-1:-1:-1;;;937:40:3;829:155;;;:::o;8706:103:4:-;8763:4;8792:12;-1:-1:-1;8782:22:4;8706:103::o;640:96:2:-;719:10;640:96;:::o;12277:165:4:-;12369:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;12369:29:4;-1:-1:-1;;;;;12369:29:4;;;;;;;;;12409:28;;12369:24;;12409:28;;;;;;;12277:165;;;:::o;10694:1484::-;10786:35;10824:20;10836:7;10824:11;:20::i;:::-;10786:58;;10851:22;10893:13;:18;;;-1:-1:-1;;;;;10877:34:4;:12;:10;:12::i;:::-;-1:-1:-1;;;;;10877:34:4;;:80;;;;10945:12;:10;:12::i;:::-;-1:-1:-1;;;;;10921:36:4;:20;10933:7;10921:11;:20::i;:::-;-1:-1:-1;;;;;10921:36:4;;10877:80;:140;;;-1:-1:-1;10984:18:4;;10967:50;;11004:12;:10;:12::i;10967:50::-;10851:167;;11040:17;11025:98;;;;-1:-1:-1;;;11025:98:4;;;;;;;:::i;:::-;11167:4;-1:-1:-1;;;;;11145:26:4;:13;:18;;;-1:-1:-1;;;;;11145:26:4;;11130:95;;;;-1:-1:-1;;;11130:95:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;11239:16:4;;11231:66;;;;-1:-1:-1;;;11231:66:4;;;;;;;:::i;:::-;11304:43;11326:4;11332:2;11336:7;11345:1;11304:21;:43::i;:::-;11401:49;11418:1;11422:7;11431:13;:18;;;11401:8;:49::i;:::-;-1:-1:-1;;;;;11457:18:4;;;;;;:12;:18;;;;;:31;;11487:1;;11457:18;:31;;11487:1;;-1:-1:-1;;;;;11457:31:4;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;11457:31:4;;;;;;;;;;;;;;;-1:-1:-1;;;;;11494:16:4;;-1:-1:-1;11494:16:4;;;:12;:16;;;;;:29;;-1:-1:-1;;;11494:16:4;;:29;;-1:-1:-1;;11494:29:4;;:::i;:::-;;;-1:-1:-1;;;;;11494:29:4;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11552:43:4;;;;;;;;-1:-1:-1;;;;;11552:43:4;;;;;-1:-1:-1;;;;;11578:15:4;11552:43;;;;;;;;;-1:-1:-1;11529:20:4;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;11529:66:4;-1:-1:-1;;;;11529:66:4;;;;-1:-1:-1;;;;;;11529:66:4;;;;;;;;11841:11;11541:7;-1:-1:-1;11841:11:4;:::i;:::-;11903:1;11862:24;;;:11;:24;;;;;:29;11819:33;;-1:-1:-1;;;;;;11862:29:4;11858:229;;11919:20;11927:11;11919:7;:20::i;:::-;11915:166;;;11978:94;;;;;;;;12004:18;;-1:-1:-1;;;;;11978:94:4;;;;;;12034:28;;;;-1:-1:-1;;;;;11978:94:4;;;;;;;;;-1:-1:-1;11951:24:4;;;:11;:24;;;;;;;:121;;;;;;-1:-1:-1;;;;;;11951:121:4;;;;;;;;;-1:-1:-1;;;;11951:121:4;-1:-1:-1;;;11951:121:4;;;;;;;;;;;;;;11915:166;12117:7;12113:2;-1:-1:-1;;;;;12098:27:4;12107:4;-1:-1:-1;;;;;12098:27:4;;;;;;;;;;;12131:42;12152:4;12158:2;12162:7;12171:1;12131:20;:42::i;:::-;10694:1484;;;;;;:::o;8813:96::-;8877:27;8887:2;8891:8;8877:27;;;;;;;;;;;;:9;:27::i;4685:586::-;4758:21;;:::i;:::-;4797:16;4805:7;4797;:16::i;:::-;4789:71;;;;-1:-1:-1;;;4789:71:4;;;;;;;:::i;:::-;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;;;-1:-1:-1;;;;;5069:51:4;;;;;;;;5132:28;5128:69;;5179:9;-1:-1:-1;5172:16:4;;-1:-1:-1;;5172:16:4;5128:69;-1:-1:-1;5053:6:4;;;;:::i;:::-;;;;4996:207;;;;5209:57;;-1:-1:-1;;;5209:57:4;;;;;;;:::i;1352:130:11:-;1426:12;:10;:12::i;:::-;-1:-1:-1;;;;;1415:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1415:23:11;;1407:68;;;;-1:-1:-1;;;1407:68:11;;;;;;;:::i;2426:187::-;2518:6;;;-1:-1:-1;;;;;2534:17:11;;;-1:-1:-1;;;;;;2534:17:11;;;;;;;2566:40;;2518:6;;;2534:17;2518:6;;2566:40;;2499:16;;2566:40;2426:187;;:::o;1153:184:10:-;1274:4;1326;1297:25;1310:5;1317:4;1297:12;:25::i;:::-;:33;;1153:184;-1:-1:-1;;;;1153:184:10:o;13947:667:4:-;14079:4;14095:15;:2;-1:-1:-1;;;;;14095:13:4;;:15::i;:::-;14091:519;;;14148:2;-1:-1:-1;;;;;14132:36:4;;14169:12;:10;:12::i;:::-;14183:4;14189:7;14198:5;14132:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14132:72:4;;;;;;;;-1:-1:-1;;14132:72:4;;;;;;;;;;;;:::i;:::-;;;14120:452;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14359:13:4;;14355:209;;14391:61;;-1:-1:-1;;;14391:61:4;;;;;;;:::i;14355:209::-;14534:6;14528:13;14519:6;14515:2;14511:15;14504:38;14120:452;-1:-1:-1;;;;;;14252:55:4;-1:-1:-1;;;14252:55:4;;-1:-1:-1;14245:62:4;;14091:519;-1:-1:-1;14599:4:4;14091:519;13947:667;;;;;;:::o;5721:106:1:-;5781:13;5809;5802:20;;;;;:::i;392:703:12:-;448:13;665:10;661:51;;-1:-1:-1;691:10:12;;;;;;;;;;;;-1:-1:-1;;;691:10:12;;;;;;661:51;736:5;721:12;775:75;782:9;;775:75;;807:8;;;;:::i;:::-;;-1:-1:-1;829:10:12;;-1:-1:-1;837:2:12;829:10;;:::i;:::-;;;775:75;;;859:19;891:6;-1:-1:-1;;;;;881:17:12;;;;;-1:-1:-1;;;881:17:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;881:17:12;;859:39;;908:150;915:10;;908:150;;941:11;951:1;941:11;;:::i;:::-;;-1:-1:-1;1009:10:12;1017:2;1009:5;:10;:::i;:::-;996:24;;:2;:24;:::i;:::-;983:39;;966:6;973;966:14;;;;;;-1:-1:-1;;;966:14:12;;;;;;;;;;;;:56;-1:-1:-1;;;;;966:56:12;;;;;;;;-1:-1:-1;1036:11:12;1045:2;1036:11;;:::i;:::-;;;908:150;;4447:234:4;4508:7;-1:-1:-1;;;;;4538:19:4;;4523:99;;;;-1:-1:-1;;;4523:99:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;;4643:19:4;;;;;:12;:19;;;;;:32;-1:-1:-1;;;4643:32:4;;-1:-1:-1;;;;;4643:32:4;;4447:234::o;9235:1239::-;9335:20;9358:12;-1:-1:-1;;;;;9384:16:4;;9376:62;;;;-1:-1:-1;;;9376:62:4;;;;;;;:::i;:::-;9573:21;9581:12;9573:7;:21::i;:::-;9572:22;9564:64;;;;-1:-1:-1;;;9564:64:4;;;;;;;:::i;:::-;9654:12;9642:8;:24;;9634:71;;;;-1:-1:-1;;;9634:71:4;;;;;;;:::i;:::-;9712:61;9742:1;9746:2;9750:12;9764:8;9712:21;:61::i;:::-;-1:-1:-1;;;;;9813:16:4;;9780:30;9813:16;;;:12;:16;;;;;;;;;9780:49;;;;;;;;;-1:-1:-1;;;;;9780:49:4;;;;;-1:-1:-1;;;9780:49:4;;;;;;;;;;;9854:116;;;;;;;;9873:19;;9780:49;;9854:116;;;9873:39;;9903:8;;9873:39;:::i;:::-;-1:-1:-1;;;;;9854:116:4;;;;;9955:8;9920:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;9854:116:4;;;;;;-1:-1:-1;;;;;9835:16:4;;;;;;;:12;:16;;;;;;;;:135;;;;;;;;;;-1:-1:-1;;;9835:135:4;;;;-1:-1:-1;;9835:135:4;;;;;;;;;;;;;;;;;10004:43;;;;;;;;;;-1:-1:-1;;;;;10030:15:4;10004:43;;;;;;;;9976:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;9976:71:4;-1:-1:-1;;;;9976:71:4;;;;-1:-1:-1;;;;;;9976:71:4;;;;;;;;;;;;;;;9988:12;;10096:274;10120:8;10116:1;:12;10096:274;;;10148:38;;10173:12;;-1:-1:-1;;;;;10148:38:4;;;10165:1;;10148:38;;10165:1;;10148:38;10211:59;10242:1;10246:2;10250:12;10264:5;10211:22;:59::i;:::-;10194:147;;;;-1:-1:-1;;;10194:147:4;;;;;;;:::i;:::-;10349:14;;;;:::i;:::-;;;;10130:3;;;;;:::i;:::-;;;;10096:274;;;-1:-1:-1;10376:12:4;:27;;;10409:60;;10442:2;10446:12;10460:8;10409:20;:60::i;1991:290:10:-;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;;;;;;-1:-1:-1;;;2226:8:10;;;;;;;;;;;;;;;2202:9;:33::i;:::-;2187:48;-1:-1:-1;2168:3:10;;;;:::i;:::-;;;;2130:116;;1175:320:0;-1:-1:-1;;;;;1465:19:0;;:23;;;1175:320::o;8054:147:10:-;8117:7;8147:1;8143;:5;:51;;8174:20;8189:1;8192;8174:14;:20::i;:::-;8143:51;;;8151:20;8166:1;8169;8207:261;8275:13;8366:15;;;8401:4;8394:15;8447:4;8431:21;;;8352:110::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:408:13;;-1:-1:-1;;;;;106:6:13;103:30;100:2;;;136:18;;:::i;:::-;174:57;219:2;198:15;;-1:-1:-1;;194:29:13;225:4;190:40;174:57;:::i;:::-;165:66;;254:6;247:5;240:21;294:3;285:6;280:3;276:16;273:25;270:2;;;311:1;308;301:12;270:2;360:6;355:3;348:4;341:5;337:16;324:43;414:1;407:4;398:6;391:5;387:18;383:29;376:40;90:332;;;;;:::o;427:175::-;497:20;;-1:-1:-1;;;;;546:31:13;;536:42;;526:2;;592:1;589;582:12;607:162;674:20;;730:13;;723:21;713:32;;703:2;;759:1;756;749:12;774:198;;886:2;874:9;865:7;861:23;857:32;854:2;;;907:6;899;892:22;854:2;935:31;956:9;935:31;:::i;977:274::-;;;1106:2;1094:9;1085:7;1081:23;1077:32;1074:2;;;1127:6;1119;1112:22;1074:2;1155:31;1176:9;1155:31;:::i;:::-;1145:41;;1205:40;1241:2;1230:9;1226:18;1205:40;:::i;:::-;1195:50;;1064:187;;;;;:::o;1256:342::-;;;;1402:2;1390:9;1381:7;1377:23;1373:32;1370:2;;;1423:6;1415;1408:22;1370:2;1451:31;1472:9;1451:31;:::i;:::-;1441:41;;1501:40;1537:2;1526:9;1522:18;1501:40;:::i;:::-;1491:50;;1588:2;1577:9;1573:18;1560:32;1550:42;;1360:238;;;;;:::o;1603:702::-;;;;;1775:3;1763:9;1754:7;1750:23;1746:33;1743:2;;;1797:6;1789;1782:22;1743:2;1825:31;1846:9;1825:31;:::i;:::-;1815:41;;1875:40;1911:2;1900:9;1896:18;1875:40;:::i;:::-;1865:50;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;-1:-1:-1;;;;;2036:6:13;2033:30;2030:2;;;2081:6;2073;2066:22;2030:2;2109:22;;2162:4;2154:13;;2150:27;-1:-1:-1;2140:2:13;;2196:6;2188;2181:22;2140:2;2224:75;2291:7;2286:2;2273:16;2268:2;2264;2260:11;2224:75;:::i;:::-;2214:85;;;1733:572;;;;;;;:::o;2310:268::-;;;2436:2;2424:9;2415:7;2411:23;2407:32;2404:2;;;2457:6;2449;2442:22;2404:2;2485:31;2506:9;2485:31;:::i;:::-;2475:41;;2535:37;2568:2;2557:9;2553:18;2535:37;:::i;2583:266::-;;;2712:2;2700:9;2691:7;2687:23;2683:32;2680:2;;;2733:6;2725;2718:22;2680:2;2761:31;2782:9;2761:31;:::i;:::-;2751:41;2839:2;2824:18;;;;2811:32;;-1:-1:-1;;;2670:179:13:o;2854:666::-;;;3001:2;2989:9;2980:7;2976:23;2972:32;2969:2;;;3022:6;3014;3007:22;2969:2;3067:9;3054:23;-1:-1:-1;;;;;3137:2:13;3129:6;3126:14;3123:2;;;3158:6;3150;3143:22;3123:2;3201:6;3190:9;3186:22;3176:32;;3246:7;3239:4;3235:2;3231:13;3227:27;3217:2;;3273:6;3265;3258:22;3217:2;3318;3305:16;3344:2;3336:6;3333:14;3330:2;;;3365:6;3357;3350:22;3330:2;3424:7;3419:2;3413;3405:6;3401:15;3397:2;3393:24;3389:33;3386:46;3383:2;;;3450:6;3442;3435:22;3383:2;3486;3478:11;;;;;3508:6;;-1:-1:-1;2959:561:13;;-1:-1:-1;;;;2959:561:13:o;3525:192::-;;3634:2;3622:9;3613:7;3609:23;3605:32;3602:2;;;3655:6;3647;3640:22;3602:2;3683:28;3701:9;3683:28;:::i;3722:190::-;;3834:2;3822:9;3813:7;3809:23;3805:32;3802:2;;;3855:6;3847;3840:22;3802:2;-1:-1:-1;3883:23:13;;3792:120;-1:-1:-1;3792:120:13:o;3917:257::-;;4028:2;4016:9;4007:7;4003:23;3999:32;3996:2;;;4049:6;4041;4034:22;3996:2;4093:9;4080:23;4112:32;4138:5;4112:32;:::i;4179:261::-;;4301:2;4289:9;4280:7;4276:23;4272:32;4269:2;;;4322:6;4314;4307:22;4269:2;4359:9;4353:16;4378:32;4404:5;4378:32;:::i;4445:482::-;;4567:2;4555:9;4546:7;4542:23;4538:32;4535:2;;;4588:6;4580;4573:22;4535:2;4633:9;4620:23;-1:-1:-1;;;;;4658:6:13;4655:30;4652:2;;;4703:6;4695;4688:22;4652:2;4731:22;;4784:4;4776:13;;4772:27;-1:-1:-1;4762:2:13;;4818:6;4810;4803:22;4762:2;4846:75;4913:7;4908:2;4895:16;4890:2;4886;4882:11;4846:75;:::i;5127:1071::-;;;5281:2;5269:9;5260:7;5256:23;5252:32;5249:2;;;5302:6;5294;5287:22;5249:2;5343:9;5330:23;5320:33;;5372:2;5425;5414:9;5410:18;5397:32;-1:-1:-1;;;;;5489:2:13;5481:6;5478:14;5475:2;;;5510:6;5502;5495:22;5475:2;5553:6;5542:9;5538:22;5528:32;;5598:7;5591:4;5587:2;5583:13;5579:27;5569:2;;5625:6;5617;5610:22;5569:2;5666;5653:16;5688:2;5684;5681:10;5678:2;;;5694:18;;:::i;:::-;5741:2;5737;5733:11;5723:21;;5764:28;5788:2;5784;5780:11;5764:28;:::i;:::-;5826:15;;;5857:12;;;;5889:11;;;5919;;;5915:20;;5912:33;-1:-1:-1;5909:2:13;;;5963:6;5955;5948:22;5909:2;5990:6;5981:15;;6005:163;6019:2;6016:1;6013:9;6005:163;;;6076:17;;6064:30;;6037:1;6030:9;;;;;6114:12;;;;6146;;6005:163;;;6009:3;6187:5;6177:15;;;;;;;;5239:959;;;;;:::o;6203:259::-;;6284:5;6278:12;6311:6;6306:3;6299:19;6327:63;6383:6;6376:4;6371:3;6367:14;6360:4;6353:5;6349:16;6327:63;:::i;:::-;6444:2;6423:15;-1:-1:-1;;6419:29:13;6410:39;;;;6451:4;6406:50;;6254:208;-1:-1:-1;;6254:208:13:o;6467:229::-;6616:2;6612:15;;;;-1:-1:-1;;6608:53:13;6596:66;;6687:2;6678:12;;6586:110::o;6701:470::-;;6918:6;6912:13;6934:53;6980:6;6975:3;6968:4;6960:6;6956:17;6934:53;:::i;:::-;7050:13;;7009:16;;;;7072:57;7050:13;7009:16;7106:4;7094:17;;7072:57;:::i;:::-;7145:20;;6888:283;-1:-1:-1;;;;6888:283:13:o;7176:203::-;-1:-1:-1;;;;;7340:32:13;;;;7322:51;;7310:2;7295:18;;7277:102::o;7384:490::-;-1:-1:-1;;;;;7653:15:13;;;7635:34;;7705:15;;7700:2;7685:18;;7678:43;7752:2;7737:18;;7730:34;;;7800:3;7795:2;7780:18;;7773:31;;;7384:490;;7821:47;;7848:19;;7840:6;7821:47;:::i;:::-;7813:55;7587:287;-1:-1:-1;;;;;;7587:287:13:o;7879:635::-;8050:2;8102:21;;;8172:13;;8075:18;;;8194:22;;;7879:635;;8050:2;8273:15;;;;8247:2;8232:18;;;7879:635;8319:169;8333:6;8330:1;8327:13;8319:169;;;8394:13;;8382:26;;8463:15;;;;8428:12;;;;8355:1;8348:9;8319:169;;;-1:-1:-1;8505:3:13;;8030:484;-1:-1:-1;;;;;;8030:484:13:o;8519:187::-;8684:14;;8677:22;8659:41;;8647:2;8632:18;;8614:92::o;8711:177::-;8857:25;;;8845:2;8830:18;;8812:76::o;8893:221::-;;9042:2;9031:9;9024:21;9062:46;9104:2;9093:9;9089:18;9081:6;9062:46;:::i;9119:398::-;9321:2;9303:21;;;9360:2;9340:18;;;9333:30;9399:34;9394:2;9379:18;;9372:62;-1:-1:-1;;;9465:2:13;9450:18;;9443:32;9507:3;9492:19;;9293:224::o;9522:351::-;9724:2;9706:21;;;9763:2;9743:18;;;9736:30;9802:29;9797:2;9782:18;;9775:57;9864:2;9849:18;;9696:177::o;9878:353::-;10080:2;10062:21;;;10119:2;10099:18;;;10092:30;10158:31;10153:2;10138:18;;10131:59;10222:2;10207:18;;10052:179::o;10236:353::-;10438:2;10420:21;;;10477:2;10457:18;;;10450:30;10516:31;10511:2;10496:18;;10489:59;10580:2;10565:18;;10410:179::o;10594:402::-;10796:2;10778:21;;;10835:2;10815:18;;;10808:30;10874:34;10869:2;10854:18;;10847:62;-1:-1:-1;;;10940:2:13;10925:18;;10918:36;10986:3;10971:19;;10768:228::o;11001:406::-;11203:2;11185:21;;;11242:2;11222:18;;;11215:30;11281:34;11276:2;11261:18;;11254:62;-1:-1:-1;;;11347:2:13;11332:18;;11325:40;11397:3;11382:19;;11175:232::o;11412:343::-;11614:2;11596:21;;;11653:2;11633:18;;;11626:30;-1:-1:-1;;;11687:2:13;11672:18;;11665:49;11746:2;11731:18;;11586:169::o;11760:348::-;11962:2;11944:21;;;12001:2;11981:18;;;11974:30;12040:26;12035:2;12020:18;;12013:54;12099:2;12084:18;;11934:174::o;12113:399::-;12315:2;12297:21;;;12354:2;12334:18;;;12327:30;12393:34;12388:2;12373:18;;12366:62;-1:-1:-1;;;12459:2:13;12444:18;;12437:33;12502:3;12487:19;;12287:225::o;12517:339::-;12719:2;12701:21;;;12758:2;12738:18;;;12731:30;-1:-1:-1;;;12792:2:13;12777:18;;12770:45;12847:2;12832:18;;12691:165::o;12861:401::-;13063:2;13045:21;;;13102:2;13082:18;;;13075:30;13141:34;13136:2;13121:18;;13114:62;-1:-1:-1;;;13207:2:13;13192:18;;13185:35;13252:3;13237:19;;13035:227::o;13267:413::-;13469:2;13451:21;;;13508:2;13488:18;;;13481:30;13547:34;13542:2;13527:18;;13520:62;-1:-1:-1;;;13613:2:13;13598:18;;13591:47;13670:3;13655:19;;13441:239::o;13685:354::-;13887:2;13869:21;;;13926:2;13906:18;;;13899:30;13965:32;13960:2;13945:18;;13938:60;14030:2;14015:18;;13859:180::o;14044:421::-;14246:2;14228:21;;;14285:2;14265:18;;;14258:30;14324:34;14319:2;14304:18;;14297:62;14395:27;14390:2;14375:18;;14368:55;14455:3;14440:19;;14218:247::o;14470:407::-;14672:2;14654:21;;;14711:2;14691:18;;;14684:30;14750:34;14745:2;14730:18;;14723:62;-1:-1:-1;;;14816:2:13;14801:18;;14794:41;14867:3;14852:19;;14644:233::o;14882:402::-;15084:2;15066:21;;;15123:2;15103:18;;;15096:30;15162:34;15157:2;15142:18;;15135:62;-1:-1:-1;;;15228:2:13;15213:18;;15206:36;15274:3;15259:19;;15056:228::o;15289:348::-;15491:2;15473:21;;;15530:2;15510:18;;;15503:30;15569:26;15564:2;15549:18;;15542:54;15628:2;15613:18;;15463:174::o;15642:356::-;15844:2;15826:21;;;15863:18;;;15856:30;15922:34;15917:2;15902:18;;15895:62;15989:2;15974:18;;15816:182::o;16003:354::-;16205:2;16187:21;;;16244:2;16224:18;;;16217:30;16283:32;16278:2;16263:18;;16256:60;16348:2;16333:18;;16177:180::o;16362:411::-;16564:2;16546:21;;;16603:2;16583:18;;;16576:30;16642:34;16637:2;16622:18;;16615:62;-1:-1:-1;;;16708:2:13;16693:18;;16686:45;16763:3;16748:19;;16536:237::o;16778:350::-;16980:2;16962:21;;;17019:2;16999:18;;;16992:30;17058:28;17053:2;17038:18;;17031:56;17119:2;17104:18;;16952:176::o;17133:414::-;17335:2;17317:21;;;17374:2;17354:18;;;17347:30;17413:34;17408:2;17393:18;;17386:62;-1:-1:-1;;;17479:2:13;17464:18;;17457:48;17537:3;17522:19;;17307:240::o;17552:354::-;17754:2;17736:21;;;17793:2;17773:18;;;17766:30;17832:32;17827:2;17812:18;;17805:60;17897:2;17882:18;;17726:180::o;17911:346::-;18113:2;18095:21;;;18152:2;18132:18;;;18125:30;-1:-1:-1;;;18186:2:13;18171:18;;18164:52;18248:2;18233:18;;18085:172::o;18262:398::-;18464:2;18446:21;;;18503:2;18483:18;;;18476:30;18542:34;18537:2;18522:18;;18515:62;-1:-1:-1;;;18608:2:13;18593:18;;18586:32;18650:3;18635:19;;18436:224::o;18665:344::-;18867:2;18849:21;;;18906:2;18886:18;;;18879:30;-1:-1:-1;;;18940:2:13;18925:18;;18918:50;19000:2;18985:18;;18839:170::o;19014:415::-;19216:2;19198:21;;;19255:2;19235:18;;;19228:30;19294:34;19289:2;19274:18;;19267:62;-1:-1:-1;;;19360:2:13;19345:18;;19338:49;19419:3;19404:19;;19188:241::o;19434:353::-;19636:2;19618:21;;;19675:2;19655:18;;;19648:30;19714:31;19709:2;19694:18;;19687:59;19778:2;19763:18;;19608:179::o;19792:337::-;19994:2;19976:21;;;20033:2;20013:18;;;20006:30;-1:-1:-1;;;20067:2:13;20052:18;;20045:43;20120:2;20105:18;;19966:163::o;20134:397::-;20336:2;20318:21;;;20375:2;20355:18;;;20348:30;20414:34;20409:2;20394:18;;20387:62;-1:-1:-1;;;20480:2:13;20465:18;;20458:31;20521:3;20506:19;;20308:223::o;20536:346::-;20738:2;20720:21;;;20777:2;20757:18;;;20750:30;-1:-1:-1;;;20811:2:13;20796:18;;20789:52;20873:2;20858:18;;20710:172::o;20887:351::-;21089:2;21071:21;;;21128:2;21108:18;;;21101:30;21167:29;21162:2;21147:18;;21140:57;21229:2;21214:18;;21061:177::o;21243:343::-;21445:2;21427:21;;;21484:2;21464:18;;;21457:30;-1:-1:-1;;;21518:2:13;21503:18;;21496:49;21577:2;21562:18;;21417:169::o;21591:351::-;21793:2;21775:21;;;21832:2;21812:18;;;21805:30;21871:29;21866:2;21851:18;;21844:57;21933:2;21918:18;;21765:177::o;21947:410::-;22149:2;22131:21;;;22188:2;22168:18;;;22161:30;22227:34;22222:2;22207:18;;22200:62;-1:-1:-1;;;22293:2:13;22278:18;;22271:44;22347:3;22332:19;;22121:236::o;22362:352::-;22564:2;22546:21;;;22603:2;22583:18;;;22576:30;22642;22637:2;22622:18;;22615:58;22705:2;22690:18;;22536:178::o;22719:411::-;22921:2;22903:21;;;22960:2;22940:18;;;22933:30;22999:34;22994:2;22979:18;;22972:62;-1:-1:-1;;;23065:2:13;23050:18;;23043:45;23120:3;23105:19;;22893:237::o;23135:351::-;23337:2;23319:21;;;23376:2;23356:18;;;23349:30;23415:29;23410:2;23395:18;;23388:57;23477:2;23462:18;;23309:177::o;23491:409::-;23693:2;23675:21;;;23732:2;23712:18;;;23705:30;23771:34;23766:2;23751:18;;23744:62;-1:-1:-1;;;23837:2:13;23822:18;;23815:43;23890:3;23875:19;;23665:235::o;23905:398::-;24107:2;24089:21;;;24146:2;24126:18;;;24119:30;24185:34;24180:2;24165:18;;24158:62;-1:-1:-1;;;24251:2:13;24236:18;;24229:32;24293:3;24278:19;;24079:224::o;24308:356::-;24510:2;24492:21;;;24529:18;;;24522:30;24588:34;24583:2;24568:18;;24561:62;24655:2;24640:18;;24482:182::o;24851:275::-;24922:2;24916:9;24987:2;24968:13;;-1:-1:-1;;24964:27:13;24952:40;;-1:-1:-1;;;;;25007:34:13;;25043:22;;;25004:62;25001:2;;;25069:18;;:::i;:::-;25105:2;25098:22;24896:230;;-1:-1:-1;24896:230:13:o;25131:253::-;;-1:-1:-1;;;;;25260:2:13;25257:1;25253:10;25290:2;25287:1;25283:10;25321:3;25317:2;25313:12;25308:3;25305:21;25302:2;;;25329:18;;:::i;25389:128::-;;25460:1;25456:6;25453:1;25450:13;25447:2;;;25466:18;;:::i;:::-;-1:-1:-1;25502:9:13;;25437:80::o;25522:120::-;;25588:1;25578:2;;25593:18;;:::i;:::-;-1:-1:-1;25627:9:13;;25568:74::o;25647:168::-;;25753:1;25749;25745:6;25741:14;25738:1;25735:21;25730:1;25723:9;25716:17;25712:45;25709:2;;;25760:18;;:::i;:::-;-1:-1:-1;25800:9:13;;25699:116::o;25820:246::-;;-1:-1:-1;;;;;25973:10:13;;;;25943;;25995:12;;;25992:2;;;26010:18;;:::i;:::-;26047:13;;25869:197;-1:-1:-1;;;25869:197:13:o;26071:125::-;;26139:1;26136;26133:8;26130:2;;;26144:18;;:::i;:::-;-1:-1:-1;26181:9:13;;26120:76::o;26201:258::-;26273:1;26283:113;26297:6;26294:1;26291:13;26283:113;;;26373:11;;;26367:18;26354:11;;;26347:39;26319:2;26312:10;26283:113;;;26414:6;26411:1;26408:13;26405:2;;;-1:-1:-1;;26449:1:13;26431:16;;26424:27;26254:205::o;26464:136::-;;26531:5;26521:2;;26540:18;;:::i;:::-;-1:-1:-1;;;26576:18:13;;26511:89::o;26605:380::-;26690:1;26680:12;;26737:1;26727:12;;;26748:2;;26802:4;26794:6;26790:17;26780:27;;26748:2;26855;26847:6;26844:14;26824:18;26821:38;26818:2;;;26901:10;26896:3;26892:20;26889:1;26882:31;26936:4;26933:1;26926:15;26964:4;26961:1;26954:15;26818:2;;26660:325;;;:::o;26990:135::-;;-1:-1:-1;;27050:17:13;;27047:2;;;27070:18;;:::i;:::-;-1:-1:-1;27117:1:13;27106:13;;27037:88::o;27130:112::-;;27188:1;27178:2;;27193:18;;:::i;:::-;-1:-1:-1;27227:9:13;;27168:74::o;27247:127::-;27308:10;27303:3;27299:20;27296:1;27289:31;27339:4;27336:1;27329:15;27363:4;27360:1;27353:15;27379:127;27440:10;27435:3;27431:20;27428:1;27421:31;27471:4;27468:1;27461:15;27495:4;27492:1;27485:15;27511:127;27572:10;27567:3;27563:20;27560:1;27553:31;27603:4;27600:1;27593:15;27627:4;27624:1;27617:15;27643:133;-1:-1:-1;;;;;;27719:32:13;;27709:43;;27699:2;;27766:1;27763;27756:12

Swarm Source

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