ETH Price: $3,382.48 (-0.98%)
Gas: 11 Gwei

Token

BoomGala (GALA)
 

Overview

Max Total Supply

6,072 GALA

Holders

2,121

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
keroror50502.eth
Balance
2 GALA
0xb6827eb7e790126973a297338b71565585d832c8
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:
BoomGala

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
Yes with 200 runs

Other Settings:
istanbul EvmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-19
*/

/**
 *Submitted for verification at Etherscan.io on 2022-02-19
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.1;



// Part: OpenZeppelin/[email protected]/Address

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// Part: OpenZeppelin/[email protected]/Context

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

// Part: OpenZeppelin/[email protected]/IERC165

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

// Part: OpenZeppelin/[email protected]/IERC721Receiver

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

// Part: OpenZeppelin/[email protected]/Strings

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

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

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

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

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

// Part: OpenZeppelin/[email protected]/ERC165

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

// Part: OpenZeppelin/[email protected]/IERC721

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

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

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

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

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

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

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

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

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

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

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

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

// Part: OpenZeppelin/[email protected]/Ownable

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

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

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

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

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

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

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

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

// Part: OpenZeppelin/[email protected]/Pausable

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// Part: OpenZeppelin/[email protected]/IERC721Enumerable

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

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

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

// Part: OpenZeppelin/[email protected]/IERC721Metadata

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

// Part: ERC721A

/**
 * @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: BoomGala.sol

contract BoomGala is ERC721A, Ownable, Pausable {
    using Address for address;

    // metadata URI
    string private _baseTokenURI;

    // partner address
    address private _partner = 0x9B645675E8D64759E5c36E30Dcb766d8CEC3d34F;

    // max partner allowed mint number
    uint private _maxPartnerAllowed = 100;

    struct SaleConfig {
        bool wlSaleStarted; // whitelist sale started?
        bool publicSaleStarted; // public sale started?
        uint wlPrice; // whitelist sale price
        uint wlMaxAmount; // whitelist sale max mint amount
        uint publicPrice; // public sale price
        uint publicMaxAmount; // public sale max mint amount
        uint reservedAmount; // reserve amount for marketing and give away purpose
    }

    SaleConfig public saleConfig;

    mapping(address => bool) public allowList; // whitelist

    constructor(
        uint256 maxBatchSize_,
        uint256 collectionSize_,
        string memory baseURI_) ERC721A("BoomGala","GALA", maxBatchSize_, collectionSize_)  {
        setupSaleConfig(false, false, 0.2 ether, 2, 0.4 ether, 3, 200);
        setBaseURI(baseURI_);
    }

    function tokensOfOwner(address _owner) external view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            // Return an empty array
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }

    function mintToPartner(uint256 quantity) public whenNotPaused payable  {
        SaleConfig memory config = saleConfig;

        bool _publicSaleStarted = config.publicSaleStarted;
        bool _wlSaleStarted = config.wlSaleStarted;

        // the whitelist sale must be started
        require (
            _publicSaleStarted == false && _wlSaleStarted == true,
            "Whitelist Sale is not started yet!"
        );

        // cant exceed wallet mint limits
        require(
            numberMinted(_partner) <= _maxPartnerAllowed,
            "can not mint this many"
        );

        // cant exceed max supply
        require(totalSupply() + quantity <= collectionSize, "reached max supply");

        // the fund must be sufficient
        uint _wlPrice = config.wlPrice;
        require (
            msg.value >= _wlPrice * quantity,
            "Fund is not sufficient!"
        );

        _safeMint(_partner, quantity);
    }

    function wlSaleMint(uint256 quantity) public whenNotPaused payable  {
        SaleConfig memory config = saleConfig;

        bool _publicSaleStarted = config.publicSaleStarted;
        bool _wlSaleStarted = config.wlSaleStarted;

        // the public sale must be started
        require (
            _publicSaleStarted == false && _wlSaleStarted == true,
            "Whitelist Sale is not started yet!"
        );

        // Address must be whitelisted.
        require(allowList[msg.sender], "You are not whitelisted!");

        // cant exceed wl mint limits
        uint _wlMaxAmount = config.wlMaxAmount;
        require(
            quantity <= _wlMaxAmount,
            "can not mint this many"
        );

        // cant exceed wallet mint limits
        require(
            numberMinted(msg.sender) + quantity <= _wlMaxAmount,
            "can not mint this many"
        );

        // cant exceed max supply
        require(totalSupply() + quantity <= collectionSize, "reached max supply");

        // the fund must be sufficient
        uint _wlPrice = config.wlPrice;
        require (
            msg.value >= _wlPrice * quantity,
            "Fund is not sufficient!"
        );

        _safeMint(msg.sender, quantity);
    }

    function publicSaleMint(uint256 quantity) public whenNotPaused payable {
        SaleConfig memory config = saleConfig;

        bool _publicSaleStarted = config.publicSaleStarted;
        bool _wlSaleStarted = config.wlSaleStarted;

        // must not mint from contract
        require (
            msg.sender == tx.origin && !msg.sender.isContract(), "Are you bot?"
        );

        // the public sale must be started
        require (
            _publicSaleStarted == true && _wlSaleStarted == false,
            "Public Sale is not started yet!"
        );
        // cant exceed public mint limits
        uint _wlMaxAmount = config.wlMaxAmount;
        uint _publicMaxAmount = config.publicMaxAmount;
        require(
            quantity <= _publicMaxAmount,
            "can not mint this many"
        );
        // cant exceed wallet mint limits
        require(
            numberMinted(msg.sender) + quantity <= _wlMaxAmount + _publicMaxAmount,
            "can not mint this many"
        );
        // cant exceed max supply
        require(totalSupply() + quantity <= collectionSize, "reached max supply");

        // the fund must be sufficient
        uint _publicPrice = config.publicPrice;
        require (
            msg.value >= _publicPrice * quantity,
            "Fund is not sufficient!"
        );

        _safeMint(msg.sender, quantity);
    }

    function whitelist(address[] memory users) external onlyOwner {
        for(uint i = 0; i < users.length; i++) {
          allowList[users[i]] = true;
        }
    }

    function withdrawAll() external onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }

    /**
     * Reserve some GALAs for marketing and giveaway purpose.
     */
    function reserveGiveaway(uint256 quantity) external onlyOwner {
        SaleConfig memory config = saleConfig;
        bool _publicSaleStarted = config.publicSaleStarted;
        bool _wlSaleStarted = config.wlSaleStarted;
        uint _reserved = config.reservedAmount;

        // the sale must not be started
        require (
            _publicSaleStarted == false && _wlSaleStarted == false,
            "The Reserve phase should only happen before the sale started!"
        );

        require(totalSupply() + quantity <= _reserved, "Exceeded giveaway supply");

        _safeMint(msg.sender, quantity);
    }

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

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

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

    function setupSaleConfig(bool _wlSaleStarted, bool _publicSaleStarted, uint _wlPrice,
    uint _wlMaxAmount, uint _publicPrice, uint _publicMaxAmount, uint _reservedAmount) internal onlyOwner {
        saleConfig = SaleConfig(
            _wlSaleStarted,
            _publicSaleStarted,
            _wlPrice,
            _wlMaxAmount,
            _publicPrice,
            _publicMaxAmount,
            _reservedAmount
        );
    }

    function setWlPrice(uint _newPrice) external onlyOwner {
        saleConfig.wlPrice = _newPrice;
    }

    function setWlMaxAmount(uint _newAmt) external onlyOwner {
        saleConfig.wlMaxAmount = _newAmt;
    }

    function setPublicPrice(uint _newPrice) external onlyOwner {
        saleConfig.publicPrice = _newPrice;
    }

    function setPublicMaxAmount(uint _newAmt) external onlyOwner {
        saleConfig.publicMaxAmount = _newAmt;
    }

    function setReservedAmount(uint _newAmount) external onlyOwner {
        saleConfig.reservedAmount = _newAmount;
    }

    function setPartnerAddr(address _partnerAddr) external onlyOwner {
        _partner = _partnerAddr;
    }

    function setMaxPartnerAllowed(uint _maxPartnerAllowed_) external onlyOwner {
        _maxPartnerAllowed = _maxPartnerAllowed_;
    }

    function startWLSale() external onlyOwner {
        saleConfig.wlSaleStarted = true;
        saleConfig.publicSaleStarted = false;
    }

    function startPublicSale() external onlyOwner {
        saleConfig.wlSaleStarted = false;
        saleConfig.publicSaleStarted = true;
    }

    function pause() external onlyOwner {
        _pause();
    }

    function unpause() external onlyOwner {
        _unpause();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"string","name":"baseURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintToPartner","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reserveGiveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleConfig","outputs":[{"internalType":"bool","name":"wlSaleStarted","type":"bool"},{"internalType":"bool","name":"publicSaleStarted","type":"bool"},{"internalType":"uint256","name":"wlPrice","type":"uint256"},{"internalType":"uint256","name":"wlMaxAmount","type":"uint256"},{"internalType":"uint256","name":"publicPrice","type":"uint256"},{"internalType":"uint256","name":"publicMaxAmount","type":"uint256"},{"internalType":"uint256","name":"reservedAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPartnerAllowed_","type":"uint256"}],"name":"setMaxPartnerAllowed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_partnerAddr","type":"address"}],"name":"setPartnerAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmt","type":"uint256"}],"name":"setPublicMaxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setReservedAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmt","type":"uint256"}],"name":"setWlMaxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setWlPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startWLSale","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"}],"name":"whitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"wlSaleMint","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526000808055600755600a80546001600160a01b031916739b645675e8d64759e5c36e30dcb766d8cec3d34f1790556064600b553480156200004457600080fd5b506040516200398c3803806200398c8339810160408190526200006791620003a6565b60405180604001604052806008815260200167426f6f6d47616c6160c01b8152506040518060400160405280600481526020016347414c4160e01b815250848460008111620000d35760405162461bcd60e51b8152600401620000ca906200050f565b60405180910390fd5b60008211620000f65760405162461bcd60e51b8152600401620000ca9062000493565b83516200010b90600190602087019062000300565b5082516200012190600290602086019062000300565b5060a091909152608052506200014290506200013c62000188565b6200018c565b6008805460ff60a01b19169055620001746000806702c68af0bb140000600267058d15e176280000600360c8620001de565b6200017f8162000292565b505050620005b0565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001e862000188565b6001600160a01b0316620001fb620002f1565b6001600160a01b031614620002245760405162461bcd60e51b8152600401620000ca90620004da565b6040805160e08101825297151580895296151560208901819052908801869052606088018590526080880184905260a0880183905260c0909701819052600c805460ff191690961761ff00191661010090970296909617909455600d92909255600e55600f55601055601155565b6200029c62000188565b6001600160a01b0316620002af620002f1565b6001600160a01b031614620002d85760405162461bcd60e51b8152600401620000ca90620004da565b8051620002ed90600990602084019062000300565b5050565b6008546001600160a01b031690565b8280546200030e906200055d565b90600052602060002090601f0160209004810192826200033257600085556200037d565b82601f106200034d57805160ff19168380011785556200037d565b828001600101855582156200037d579182015b828111156200037d57825182559160200191906001019062000360565b506200038b9291506200038f565b5090565b5b808211156200038b576000815560010162000390565b600080600060608486031215620003bb578283fd5b835160208086015160408701519295509350906001600160401b0380821115620003e3578384fd5b818701915087601f830112620003f7578384fd5b8151818111156200040c576200040c6200059a565b604051601f8201601f19908116603f011681019083821181831017156200043757620004376200059a565b816040528281528a868487010111156200044f578687fd5b8693505b8284101562000472578484018601518185018701529285019262000453565b828411156200048357868684830101525b8096505050505050509250925092565b60208082526027908201527f455243373231413a206d61782062617463682073697a65206d757374206265206040820152666e6f6e7a65726f60c81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602e908201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060408201526d6e6f6e7a65726f20737570706c7960901b606082015260800190565b6002810460018216806200057257607f821691505b602082108114156200059457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160a05161339a620005f260003960008181611da101528181611dcb0152612227015260008181610b4e0152818161115301526115db015261339a6000f3fe60806040526004361061025c5760003560e01c80638456cb5911610144578063b3ab66b0116100b6578063d7224ba01161007a578063d7224ba0146106b5578063db3dda2d146106ca578063dc33e681146106ea578063e985e9c51461070a578063eb0d9ca51461072a578063f2fde38b1461074a5761025c565b8063b3ab66b014610622578063b88d4fde14610635578063bd8aa78014610655578063c627525514610675578063c87b56dd146106955761025c565b80638dd07d0f116101085780638dd07d0f1461056557806390aa0b0f1461058557806395d89b41146105ad5780639a89be2d146105c2578063a22cb465146105e2578063a40f1aa5146106025761025c565b80638456cb59146104e65780638462151c146104fb578063853828b6146105285780638a4b39901461053d5780638da5cb5b146105505761025c565b806323b872dd116101dd5780634f6ccce7116101a15780634f6ccce71461043c57806355f804b31461045c5780635c975abb1461047c5780636352211e1461049157806370a08231146104b1578063715018a6146104d15761025c565b806323b872dd146103a75780632848aeaf146103c75780632f745c59146103e75780633f4ba83a1461040757806342842e0e1461041c5761025c565b8063130a424311610224578063130a42431461031d578063170e17361461033d57806318160ddd1461035d5780631e3433171461037f5780632045b1be146103925761025c565b806301ffc9a71461026157806306fdde0314610297578063081812fc146102b9578063095ea7b3146102e65780630c1c972a14610308575b600080fd5b34801561026d57600080fd5b5061028161027c366004612775565b61076a565b60405161028e91906128fb565b60405180910390f35b3480156102a357600080fd5b506102ac6107cd565b60405161028e9190612938565b3480156102c557600080fd5b506102d96102d43660046127f3565b61085f565b60405161028e9190612866565b3480156102f257600080fd5b5061030661030136600461269e565b6108ab565b005b34801561031457600080fd5b50610306610944565b34801561032957600080fd5b506103066103383660046127f3565b610994565b34801561034957600080fd5b506103066103583660046127f3565b6109d8565b34801561036957600080fd5b50610372610a1c565b60405161028e919061317f565b61030661038d3660046127f3565b610a22565b34801561039e57600080fd5b50610306610bde565b3480156103b357600080fd5b506103066103c23660046125b0565b610c33565b3480156103d357600080fd5b506102816103e2366004612564565b610c3e565b3480156103f357600080fd5b5061037261040236600461269e565b610c53565b34801561041357600080fd5b50610306610d4f565b34801561042857600080fd5b506103066104373660046125b0565b610d98565b34801561044857600080fd5b506103726104573660046127f3565b610db3565b34801561046857600080fd5b506103066104773660046127ad565b610ddf565b34801561048857600080fd5b50610281610e35565b34801561049d57600080fd5b506102d96104ac3660046127f3565b610e45565b3480156104bd57600080fd5b506103726104cc366004612564565b610e57565b3480156104dd57600080fd5b50610306610ea4565b3480156104f257600080fd5b50610306610eed565b34801561050757600080fd5b5061051b610516366004612564565b610f34565b60405161028e91906128b7565b34801561053457600080fd5b50610306611015565b61030661054b3660046127f3565b611078565b34801561055c57600080fd5b506102d96111ee565b34801561057157600080fd5b506103066105803660046127f3565b6111fd565b34801561059157600080fd5b5061059a611241565b60405161028e9796959493929190612906565b3480156105b957600080fd5b506102ac611267565b3480156105ce57600080fd5b506103066105dd366004612564565b611276565b3480156105ee57600080fd5b506103066105fd366004612664565b6112d7565b34801561060e57600080fd5b5061030661061d3660046127f3565b6113a5565b6103066106303660046127f3565b61149d565b34801561064157600080fd5b506103066106503660046125eb565b61166c565b34801561066157600080fd5b506103066106703660046126c7565b6116a5565b34801561068157600080fd5b506103066106903660046127f3565b61175a565b3480156106a157600080fd5b506102ac6106b03660046127f3565b61179e565b3480156106c157600080fd5b50610372611821565b3480156106d657600080fd5b506103066106e53660046127f3565b611827565b3480156106f657600080fd5b50610372610705366004612564565b61186b565b34801561071657600080fd5b5061028161072536600461257e565b611876565b34801561073657600080fd5b506103066107453660046127f3565b6118a4565b34801561075657600080fd5b50610306610765366004612564565b6118e8565b60006001600160e01b031982166380ac58cd60e01b148061079b57506001600160e01b03198216635b5e139f60e01b145b806107b657506001600160e01b0319821663780e9d6360e01b145b806107c557506107c582611959565b90505b919050565b6060600180546107dc906132a8565b80601f0160208091040260200160405190810160405280929190818152602001828054610808906132a8565b80156108555780601f1061082a57610100808354040283529160200191610855565b820191906000526020600020905b81548152906001019060200180831161083857829003601f168201915b5050505050905090565b600061086a82611972565b61088f5760405162461bcd60e51b815260040161088690613093565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108b682610e45565b9050806001600160a01b0316836001600160a01b031614156108ea5760405162461bcd60e51b815260040161088690612e82565b806001600160a01b03166108fc611979565b6001600160a01b03161480610918575061091881610725611979565b6109345760405162461bcd60e51b815260040161088690612c19565b61093f83838361197d565b505050565b61094c611979565b6001600160a01b031661095d6111ee565b6001600160a01b0316146109835760405162461bcd60e51b815260040161088690612d33565b600c805461ffff1916610100179055565b61099c611979565b6001600160a01b03166109ad6111ee565b6001600160a01b0316146109d35760405162461bcd60e51b815260040161088690612d33565b601055565b6109e0611979565b6001600160a01b03166109f16111ee565b6001600160a01b031614610a175760405162461bcd60e51b815260040161088690612d33565b601155565b60005490565b610a2a610e35565b15610a475760405162461bcd60e51b815260040161088690612bef565b6040805160e081018252600c5460ff80821615158084526101009092041615801560208401819052600d5494840194909452600e546060840152600f54608084015260105460a084015260115460c084015291929182610aa957506001811515145b610ac55760405162461bcd60e51b815260040161088690612e40565b3360009081526012602052604090205460ff16610af45760405162461bcd60e51b815260040161088690612a8e565b606083015180851115610b195760405162461bcd60e51b815260040161088690612fc6565b8085610b243361186b565b610b2e91906131db565b1115610b4c5760405162461bcd60e51b815260040161088690612fc6565b7f000000000000000000000000000000000000000000000000000000000000000085610b76610a1c565b610b8091906131db565b1115610b9e5760405162461bcd60e51b815260040161088690612cc1565b6040840151610bad8682613207565b341015610bcc5760405162461bcd60e51b815260040161088690612b5b565b610bd633876119d9565b505050505050565b610be6611979565b6001600160a01b0316610bf76111ee565b6001600160a01b031614610c1d5760405162461bcd60e51b815260040161088690612d33565b600c805461ff001960ff19909116600117169055565b61093f8383836119f3565b60126020526000908152604090205460ff1681565b6000610c5e83610e57565b8210610c7c5760405162461bcd60e51b81526004016108869061294b565b6000610c86610a1c565b905060008060005b83811015610d30576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610ce157805192505b876001600160a01b0316836001600160a01b03161415610d1d5786841415610d0f57509350610d4992505050565b83610d19816132dd565b9450505b5080610d28816132dd565b915050610c8e565b5060405162461bcd60e51b815260040161088690612ff6565b92915050565b610d57611979565b6001600160a01b0316610d686111ee565b6001600160a01b031614610d8e5760405162461bcd60e51b815260040161088690612d33565b610d96611cff565b565b61093f8383836040518060200160405280600081525061166c565b6000610dbd610a1c565b8210610ddb5760405162461bcd60e51b815260040161088690612a4b565b5090565b610de7611979565b6001600160a01b0316610df86111ee565b6001600160a01b031614610e1e5760405162461bcd60e51b815260040161088690612d33565b8051610e31906009906020840190612449565b5050565b600854600160a01b900460ff1690565b6000610e5082611d70565b5192915050565b60006001600160a01b038216610e7f5760405162461bcd60e51b815260040161088690612c76565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610eac611979565b6001600160a01b0316610ebd6111ee565b6001600160a01b031614610ee35760405162461bcd60e51b815260040161088690612d33565b610d966000611e83565b610ef5611979565b6001600160a01b0316610f066111ee565b6001600160a01b031614610f2c5760405162461bcd60e51b815260040161088690612d33565b610d96611ed5565b60606000610f4183610e57565b905080610f5e5750506040805160008152602081019091526107c8565b60008167ffffffffffffffff811115610f8757634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610fb0578160200160208202803683370190505b50905060005b8281101561100557610fc88582610c53565b828281518110610fe857634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610ffd816132dd565b915050610fb6565b5091506107c89050565b50919050565b61101d611979565b6001600160a01b031661102e6111ee565b6001600160a01b0316146110545760405162461bcd60e51b815260040161088690612d33565b60405133904780156108fc02916000818181858888f19350505050610d9657600080fd5b611080610e35565b1561109d5760405162461bcd60e51b815260040161088690612bef565b6040805160e081018252600c5460ff80821615158084526101009092041615801560208401819052600d5494840194909452600e546060840152600f54608084015260105460a084015260115460c0840152919291826110ff57506001811515145b61111b5760405162461bcd60e51b815260040161088690612e40565b600b54600a54611133906001600160a01b031661186b565b11156111515760405162461bcd60e51b815260040161088690612fc6565b7f00000000000000000000000000000000000000000000000000000000000000008461117b610a1c565b61118591906131db565b11156111a35760405162461bcd60e51b815260040161088690612cc1565b60408301516111b28582613207565b3410156111d15760405162461bcd60e51b815260040161088690612b5b565b600a546111e7906001600160a01b0316866119d9565b5050505050565b6008546001600160a01b031690565b611205611979565b6001600160a01b03166112166111ee565b6001600160a01b03161461123c5760405162461bcd60e51b815260040161088690612d33565b600d55565b600c54600d54600e54600f5460105460115460ff80871696610100900416949392919087565b6060600280546107dc906132a8565b61127e611979565b6001600160a01b031661128f6111ee565b6001600160a01b0316146112b55760405162461bcd60e51b815260040161088690612d33565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6112df611979565b6001600160a01b0316826001600160a01b031614156113105760405162461bcd60e51b815260040161088690612db7565b806006600061131d611979565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611361611979565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161139991906128fb565b60405180910390a35050565b6113ad611979565b6001600160a01b03166113be6111ee565b6001600160a01b0316146113e45760405162461bcd60e51b815260040161088690612d33565b6040805160e081018252600c5460ff80821615158084526101009092041615801560208401819052600d5494840194909452600e546060840152600f54608084015260105460a084015260115460c084018190529293929083611445575081155b6114615760405162461bcd60e51b815260040161088690613122565b808561146b610a1c565b61147591906131db565b11156114935760405162461bcd60e51b815260040161088690612bb8565b6111e733866119d9565b6114a5610e35565b156114c25760405162461bcd60e51b815260040161088690612bef565b6040805160e081018252600c5460ff808216151580845261010090920416151560208301819052600d5493830193909352600e546060830152600f54608083015260105460a083015260115460c0830152909190333214801561152b575061152933611f36565b155b6115475760405162461bcd60e51b815260040161088690612b92565b6001821515148015611557575080155b6115735760405162461bcd60e51b815260040161088690612f4e565b606083015160a08401518086111561159d5760405162461bcd60e51b815260040161088690612fc6565b6115a781836131db565b866115b13361186b565b6115bb91906131db565b11156115d95760405162461bcd60e51b815260040161088690612fc6565b7f000000000000000000000000000000000000000000000000000000000000000086611603610a1c565b61160d91906131db565b111561162b5760405162461bcd60e51b815260040161088690612cc1565b608085015161163a8782613207565b3410156116595760405162461bcd60e51b815260040161088690612b5b565b61166333886119d9565b50505050505050565b6116778484846119f3565b61168384848484611f3c565b61169f5760405162461bcd60e51b815260040161088690612ec4565b50505050565b6116ad611979565b6001600160a01b03166116be6111ee565b6001600160a01b0316146116e45760405162461bcd60e51b815260040161088690612d33565b60005b8151811015610e315760016012600084848151811061171657634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580611752816132dd565b9150506116e7565b611762611979565b6001600160a01b03166117736111ee565b6001600160a01b0316146117995760405162461bcd60e51b815260040161088690612d33565b600f55565b60606117a982611972565b6117c55760405162461bcd60e51b815260040161088690612d68565b60006117cf612058565b905060008151116117ef576040518060200160405280600081525061181a565b806117f984612067565b60405160200161180a929190612837565b6040516020818303038152906040525b9392505050565b60075481565b61182f611979565b6001600160a01b03166118406111ee565b6001600160a01b0316146118665760405162461bcd60e51b815260040161088690612d33565b600b55565b60006107c582612182565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6118ac611979565b6001600160a01b03166118bd6111ee565b6001600160a01b0316146118e35760405162461bcd60e51b815260040161088690612d33565b600e55565b6118f0611979565b6001600160a01b03166119016111ee565b6001600160a01b0316146119275760405162461bcd60e51b815260040161088690612d33565b6001600160a01b03811661194d5760405162461bcd60e51b8152600401610886906129bb565b61195681611e83565b50565b6001600160e01b031981166301ffc9a760e01b14919050565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610e318282604051806020016040528060008152506121d6565b60006119fe82611d70565b9050600081600001516001600160a01b0316611a18611979565b6001600160a01b03161480611a4d5750611a30611979565b6001600160a01b0316611a428461085f565b6001600160a01b0316145b80611a6157508151611a6190610725611979565b905080611a805760405162461bcd60e51b815260040161088690612dee565b846001600160a01b031682600001516001600160a01b031614611ab55760405162461bcd60e51b815260040161088690612ced565b6001600160a01b038416611adb5760405162461bcd60e51b815260040161088690612ac5565b611ae8858585600161169f565b611af8600084846000015161197d565b6001600160a01b0385166000908152600460205260408120805460019290611b2a9084906001600160801b0316613226565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611b76918591166131b9565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b03199091161716179055611c0c8460016131db565b6000818152600360205260409020549091506001600160a01b0316611cb157611c3481611972565b15611cb15760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526003909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610bd6868686600161169f565b611d07610e35565b611d235760405162461bcd60e51b81526004016108869061298d565b6008805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611d59611979565b604051611d669190612866565b60405180910390a1565b611d786124c9565b611d8182611972565b611d9d5760405162461bcd60e51b815260040161088690612a01565b60007f00000000000000000000000000000000000000000000000000000000000000008310611dfe57611df07f00000000000000000000000000000000000000000000000000000000000000008461324e565b611dfb9060016131db565b90505b825b818110611e6a576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611e575792506107c8915050565b5080611e6281613291565b915050611e00565b5060405162461bcd60e51b815260040161088690613044565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611edd610e35565b15611efa5760405162461bcd60e51b815260040161088690612bef565b6008805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611d59611979565b3b151590565b6000611f50846001600160a01b0316611f36565b1561204c57836001600160a01b031663150b7a02611f6c611979565b8786866040518563ffffffff1660e01b8152600401611f8e949392919061287a565b602060405180830381600087803b158015611fa857600080fd5b505af1925050508015611fd8575060408051601f3d908101601f19168201909252611fd591810190612791565b60015b612032573d808015612006576040519150601f19603f3d011682016040523d82523d6000602084013e61200b565b606091505b50805161202a5760405162461bcd60e51b815260040161088690612ec4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612050565b5060015b949350505050565b6060600980546107dc906132a8565b60608161208c57506040805180820190915260018152600360fc1b60208201526107c8565b8160005b81156120b657806120a0816132dd565b91506120af9050600a836131f3565b9150612090565b60008167ffffffffffffffff8111156120df57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612109576020820181803683370190505b5090505b84156120505761211e60018361324e565b915061212b600a866132f8565b6121369060306131db565b60f81b81838151811061215957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061217b600a866131f3565b945061210d565b60006001600160a01b0382166121aa5760405162461bcd60e51b815260040161088690612b0a565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b6000546001600160a01b0384166121ff5760405162461bcd60e51b815260040161088690612f85565b61220881611972565b156122255760405162461bcd60e51b815260040161088690612f17565b7f00000000000000000000000000000000000000000000000000000000000000008311156122655760405162461bcd60e51b8152600401610886906130e0565b612272600085838661169f565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906122ce9087906131b9565b6001600160801b031681526020018583602001516122ec91906131b9565b6001600160801b039081169091526001600160a01b03808816600081815260046020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff1990991698909817909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b858110156124375760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46123fb6000888488611f3c565b6124175760405162461bcd60e51b815260040161088690612ec4565b81612421816132dd565b925050808061242f906132dd565b9150506123ae565b506000818155610bd69087858861169f565b828054612455906132a8565b90600052602060002090601f01602090048101928261247757600085556124bd565b82601f1061249057805160ff19168380011785556124bd565b828001600101855582156124bd579182015b828111156124bd5782518255916020019190600101906124a2565b50610ddb9291506124e0565b604080518082019091526000808252602082015290565b5b80821115610ddb57600081556001016124e1565b600067ffffffffffffffff83111561250f5761250f613338565b612522601f8401601f1916602001613188565b905082815283838301111561253657600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146107c857600080fd5b600060208284031215612575578081fd5b61181a8261254d565b60008060408385031215612590578081fd5b6125998361254d565b91506125a76020840161254d565b90509250929050565b6000806000606084860312156125c4578081fd5b6125cd8461254d565b92506125db6020850161254d565b9150604084013590509250925092565b60008060008060808587031215612600578081fd5b6126098561254d565b93506126176020860161254d565b925060408501359150606085013567ffffffffffffffff811115612639578182fd5b8501601f81018713612649578182fd5b612658878235602084016124f5565b91505092959194509250565b60008060408385031215612676578182fd5b61267f8361254d565b915060208301358015158114612693578182fd5b809150509250929050565b600080604083850312156126b0578182fd5b6126b98361254d565b946020939093013593505050565b600060208083850312156126d9578182fd5b823567ffffffffffffffff808211156126f0578384fd5b818501915085601f830112612703578384fd5b81358181111561271557612715613338565b8381029150612725848301613188565b8181528481019084860184860187018a101561273f578788fd5b8795505b83861015612768576127548161254d565b835260019590950194918601918601612743565b5098975050505050505050565b600060208284031215612786578081fd5b813561181a8161334e565b6000602082840312156127a2578081fd5b815161181a8161334e565b6000602082840312156127be578081fd5b813567ffffffffffffffff8111156127d4578182fd5b8201601f810184136127e4578182fd5b612050848235602084016124f5565b600060208284031215612804578081fd5b5035919050565b60008151808452612823816020860160208601613265565b601f01601f19169290920160200192915050565b60008351612849818460208801613265565b83519083019061285d818360208801613265565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128ad9083018461280b565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156128ef578351835292840192918401916001016128d3565b50909695505050505050565b901515815260200190565b9615158752941515602087015260408601939093526060850191909152608084015260a083015260c082015260e00190565b60006020825261181a602083018461280b565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526018908201527f596f7520617265206e6f742077686974656c6973746564210000000000000000604082015260600190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526031908201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260408201527020746865207a65726f206164647265737360781b606082015260800190565b60208082526017908201527f46756e64206973206e6f742073756666696369656e7421000000000000000000604082015260600190565b6020808252600c908201526b41726520796f7520626f743f60a01b604082015260600190565b60208082526018908201527f457863656564656420676976656177617920737570706c790000000000000000604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526012908201527172656163686564206d617820737570706c7960701b604082015260600190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526022908201527f57686974656c6973742053616c65206973206e6f742073746172746564207965604082015261742160f01b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b6020808252601f908201527f5075626c69632053616c65206973206e6f742073746172746564207965742100604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526016908201527563616e206e6f74206d696e742074686973206d616e7960501b604082015260600190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b6020808252603d908201527f54686520526573657276652070686173652073686f756c64206f6e6c7920686160408201527f7070656e206265666f7265207468652073616c65207374617274656421000000606082015260800190565b90815260200190565b604051601f8201601f1916810167ffffffffffffffff811182821017156131b1576131b1613338565b604052919050565b60006001600160801b0380831681851680830382111561285d5761285d61330c565b600082198211156131ee576131ee61330c565b500190565b60008261320257613202613322565b500490565b60008160001904831182151516156132215761322161330c565b500290565b60006001600160801b03838116908316818110156132465761324661330c565b039392505050565b6000828210156132605761326061330c565b500390565b60005b83811015613280578181015183820152602001613268565b8381111561169f5750506000910152565b6000816132a0576132a061330c565b506000190190565b6002810460018216806132bc57607f821691505b6020821081141561100f57634e487b7160e01b600052602260045260246000fd5b60006000198214156132f1576132f161330c565b5060010190565b60008261330757613307613322565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461195657600080fdfea26469706673582212203a0d4e46de28ea1c6f69db5a059c439a5bbab0c9d1110ea89c407a893e7e39ad64736f6c63430008010033000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000005668747470733a2f2f68656c6c6f776f726c642e6d7970696e6174612e636c6f75642f697066732f516d527857574a4e737064577758764c363362756f4c4e69465134314774695378445151524247726e327a63457a2f00000000000000000000

Deployed Bytecode

0x60806040526004361061025c5760003560e01c80638456cb5911610144578063b3ab66b0116100b6578063d7224ba01161007a578063d7224ba0146106b5578063db3dda2d146106ca578063dc33e681146106ea578063e985e9c51461070a578063eb0d9ca51461072a578063f2fde38b1461074a5761025c565b8063b3ab66b014610622578063b88d4fde14610635578063bd8aa78014610655578063c627525514610675578063c87b56dd146106955761025c565b80638dd07d0f116101085780638dd07d0f1461056557806390aa0b0f1461058557806395d89b41146105ad5780639a89be2d146105c2578063a22cb465146105e2578063a40f1aa5146106025761025c565b80638456cb59146104e65780638462151c146104fb578063853828b6146105285780638a4b39901461053d5780638da5cb5b146105505761025c565b806323b872dd116101dd5780634f6ccce7116101a15780634f6ccce71461043c57806355f804b31461045c5780635c975abb1461047c5780636352211e1461049157806370a08231146104b1578063715018a6146104d15761025c565b806323b872dd146103a75780632848aeaf146103c75780632f745c59146103e75780633f4ba83a1461040757806342842e0e1461041c5761025c565b8063130a424311610224578063130a42431461031d578063170e17361461033d57806318160ddd1461035d5780631e3433171461037f5780632045b1be146103925761025c565b806301ffc9a71461026157806306fdde0314610297578063081812fc146102b9578063095ea7b3146102e65780630c1c972a14610308575b600080fd5b34801561026d57600080fd5b5061028161027c366004612775565b61076a565b60405161028e91906128fb565b60405180910390f35b3480156102a357600080fd5b506102ac6107cd565b60405161028e9190612938565b3480156102c557600080fd5b506102d96102d43660046127f3565b61085f565b60405161028e9190612866565b3480156102f257600080fd5b5061030661030136600461269e565b6108ab565b005b34801561031457600080fd5b50610306610944565b34801561032957600080fd5b506103066103383660046127f3565b610994565b34801561034957600080fd5b506103066103583660046127f3565b6109d8565b34801561036957600080fd5b50610372610a1c565b60405161028e919061317f565b61030661038d3660046127f3565b610a22565b34801561039e57600080fd5b50610306610bde565b3480156103b357600080fd5b506103066103c23660046125b0565b610c33565b3480156103d357600080fd5b506102816103e2366004612564565b610c3e565b3480156103f357600080fd5b5061037261040236600461269e565b610c53565b34801561041357600080fd5b50610306610d4f565b34801561042857600080fd5b506103066104373660046125b0565b610d98565b34801561044857600080fd5b506103726104573660046127f3565b610db3565b34801561046857600080fd5b506103066104773660046127ad565b610ddf565b34801561048857600080fd5b50610281610e35565b34801561049d57600080fd5b506102d96104ac3660046127f3565b610e45565b3480156104bd57600080fd5b506103726104cc366004612564565b610e57565b3480156104dd57600080fd5b50610306610ea4565b3480156104f257600080fd5b50610306610eed565b34801561050757600080fd5b5061051b610516366004612564565b610f34565b60405161028e91906128b7565b34801561053457600080fd5b50610306611015565b61030661054b3660046127f3565b611078565b34801561055c57600080fd5b506102d96111ee565b34801561057157600080fd5b506103066105803660046127f3565b6111fd565b34801561059157600080fd5b5061059a611241565b60405161028e9796959493929190612906565b3480156105b957600080fd5b506102ac611267565b3480156105ce57600080fd5b506103066105dd366004612564565b611276565b3480156105ee57600080fd5b506103066105fd366004612664565b6112d7565b34801561060e57600080fd5b5061030661061d3660046127f3565b6113a5565b6103066106303660046127f3565b61149d565b34801561064157600080fd5b506103066106503660046125eb565b61166c565b34801561066157600080fd5b506103066106703660046126c7565b6116a5565b34801561068157600080fd5b506103066106903660046127f3565b61175a565b3480156106a157600080fd5b506102ac6106b03660046127f3565b61179e565b3480156106c157600080fd5b50610372611821565b3480156106d657600080fd5b506103066106e53660046127f3565b611827565b3480156106f657600080fd5b50610372610705366004612564565b61186b565b34801561071657600080fd5b5061028161072536600461257e565b611876565b34801561073657600080fd5b506103066107453660046127f3565b6118a4565b34801561075657600080fd5b50610306610765366004612564565b6118e8565b60006001600160e01b031982166380ac58cd60e01b148061079b57506001600160e01b03198216635b5e139f60e01b145b806107b657506001600160e01b0319821663780e9d6360e01b145b806107c557506107c582611959565b90505b919050565b6060600180546107dc906132a8565b80601f0160208091040260200160405190810160405280929190818152602001828054610808906132a8565b80156108555780601f1061082a57610100808354040283529160200191610855565b820191906000526020600020905b81548152906001019060200180831161083857829003601f168201915b5050505050905090565b600061086a82611972565b61088f5760405162461bcd60e51b815260040161088690613093565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108b682610e45565b9050806001600160a01b0316836001600160a01b031614156108ea5760405162461bcd60e51b815260040161088690612e82565b806001600160a01b03166108fc611979565b6001600160a01b03161480610918575061091881610725611979565b6109345760405162461bcd60e51b815260040161088690612c19565b61093f83838361197d565b505050565b61094c611979565b6001600160a01b031661095d6111ee565b6001600160a01b0316146109835760405162461bcd60e51b815260040161088690612d33565b600c805461ffff1916610100179055565b61099c611979565b6001600160a01b03166109ad6111ee565b6001600160a01b0316146109d35760405162461bcd60e51b815260040161088690612d33565b601055565b6109e0611979565b6001600160a01b03166109f16111ee565b6001600160a01b031614610a175760405162461bcd60e51b815260040161088690612d33565b601155565b60005490565b610a2a610e35565b15610a475760405162461bcd60e51b815260040161088690612bef565b6040805160e081018252600c5460ff80821615158084526101009092041615801560208401819052600d5494840194909452600e546060840152600f54608084015260105460a084015260115460c084015291929182610aa957506001811515145b610ac55760405162461bcd60e51b815260040161088690612e40565b3360009081526012602052604090205460ff16610af45760405162461bcd60e51b815260040161088690612a8e565b606083015180851115610b195760405162461bcd60e51b815260040161088690612fc6565b8085610b243361186b565b610b2e91906131db565b1115610b4c5760405162461bcd60e51b815260040161088690612fc6565b7f000000000000000000000000000000000000000000000000000000000000271085610b76610a1c565b610b8091906131db565b1115610b9e5760405162461bcd60e51b815260040161088690612cc1565b6040840151610bad8682613207565b341015610bcc5760405162461bcd60e51b815260040161088690612b5b565b610bd633876119d9565b505050505050565b610be6611979565b6001600160a01b0316610bf76111ee565b6001600160a01b031614610c1d5760405162461bcd60e51b815260040161088690612d33565b600c805461ff001960ff19909116600117169055565b61093f8383836119f3565b60126020526000908152604090205460ff1681565b6000610c5e83610e57565b8210610c7c5760405162461bcd60e51b81526004016108869061294b565b6000610c86610a1c565b905060008060005b83811015610d30576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610ce157805192505b876001600160a01b0316836001600160a01b03161415610d1d5786841415610d0f57509350610d4992505050565b83610d19816132dd565b9450505b5080610d28816132dd565b915050610c8e565b5060405162461bcd60e51b815260040161088690612ff6565b92915050565b610d57611979565b6001600160a01b0316610d686111ee565b6001600160a01b031614610d8e5760405162461bcd60e51b815260040161088690612d33565b610d96611cff565b565b61093f8383836040518060200160405280600081525061166c565b6000610dbd610a1c565b8210610ddb5760405162461bcd60e51b815260040161088690612a4b565b5090565b610de7611979565b6001600160a01b0316610df86111ee565b6001600160a01b031614610e1e5760405162461bcd60e51b815260040161088690612d33565b8051610e31906009906020840190612449565b5050565b600854600160a01b900460ff1690565b6000610e5082611d70565b5192915050565b60006001600160a01b038216610e7f5760405162461bcd60e51b815260040161088690612c76565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610eac611979565b6001600160a01b0316610ebd6111ee565b6001600160a01b031614610ee35760405162461bcd60e51b815260040161088690612d33565b610d966000611e83565b610ef5611979565b6001600160a01b0316610f066111ee565b6001600160a01b031614610f2c5760405162461bcd60e51b815260040161088690612d33565b610d96611ed5565b60606000610f4183610e57565b905080610f5e5750506040805160008152602081019091526107c8565b60008167ffffffffffffffff811115610f8757634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610fb0578160200160208202803683370190505b50905060005b8281101561100557610fc88582610c53565b828281518110610fe857634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610ffd816132dd565b915050610fb6565b5091506107c89050565b50919050565b61101d611979565b6001600160a01b031661102e6111ee565b6001600160a01b0316146110545760405162461bcd60e51b815260040161088690612d33565b60405133904780156108fc02916000818181858888f19350505050610d9657600080fd5b611080610e35565b1561109d5760405162461bcd60e51b815260040161088690612bef565b6040805160e081018252600c5460ff80821615158084526101009092041615801560208401819052600d5494840194909452600e546060840152600f54608084015260105460a084015260115460c0840152919291826110ff57506001811515145b61111b5760405162461bcd60e51b815260040161088690612e40565b600b54600a54611133906001600160a01b031661186b565b11156111515760405162461bcd60e51b815260040161088690612fc6565b7f00000000000000000000000000000000000000000000000000000000000027108461117b610a1c565b61118591906131db565b11156111a35760405162461bcd60e51b815260040161088690612cc1565b60408301516111b28582613207565b3410156111d15760405162461bcd60e51b815260040161088690612b5b565b600a546111e7906001600160a01b0316866119d9565b5050505050565b6008546001600160a01b031690565b611205611979565b6001600160a01b03166112166111ee565b6001600160a01b03161461123c5760405162461bcd60e51b815260040161088690612d33565b600d55565b600c54600d54600e54600f5460105460115460ff80871696610100900416949392919087565b6060600280546107dc906132a8565b61127e611979565b6001600160a01b031661128f6111ee565b6001600160a01b0316146112b55760405162461bcd60e51b815260040161088690612d33565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6112df611979565b6001600160a01b0316826001600160a01b031614156113105760405162461bcd60e51b815260040161088690612db7565b806006600061131d611979565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611361611979565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161139991906128fb565b60405180910390a35050565b6113ad611979565b6001600160a01b03166113be6111ee565b6001600160a01b0316146113e45760405162461bcd60e51b815260040161088690612d33565b6040805160e081018252600c5460ff80821615158084526101009092041615801560208401819052600d5494840194909452600e546060840152600f54608084015260105460a084015260115460c084018190529293929083611445575081155b6114615760405162461bcd60e51b815260040161088690613122565b808561146b610a1c565b61147591906131db565b11156114935760405162461bcd60e51b815260040161088690612bb8565b6111e733866119d9565b6114a5610e35565b156114c25760405162461bcd60e51b815260040161088690612bef565b6040805160e081018252600c5460ff808216151580845261010090920416151560208301819052600d5493830193909352600e546060830152600f54608083015260105460a083015260115460c0830152909190333214801561152b575061152933611f36565b155b6115475760405162461bcd60e51b815260040161088690612b92565b6001821515148015611557575080155b6115735760405162461bcd60e51b815260040161088690612f4e565b606083015160a08401518086111561159d5760405162461bcd60e51b815260040161088690612fc6565b6115a781836131db565b866115b13361186b565b6115bb91906131db565b11156115d95760405162461bcd60e51b815260040161088690612fc6565b7f000000000000000000000000000000000000000000000000000000000000271086611603610a1c565b61160d91906131db565b111561162b5760405162461bcd60e51b815260040161088690612cc1565b608085015161163a8782613207565b3410156116595760405162461bcd60e51b815260040161088690612b5b565b61166333886119d9565b50505050505050565b6116778484846119f3565b61168384848484611f3c565b61169f5760405162461bcd60e51b815260040161088690612ec4565b50505050565b6116ad611979565b6001600160a01b03166116be6111ee565b6001600160a01b0316146116e45760405162461bcd60e51b815260040161088690612d33565b60005b8151811015610e315760016012600084848151811061171657634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580611752816132dd565b9150506116e7565b611762611979565b6001600160a01b03166117736111ee565b6001600160a01b0316146117995760405162461bcd60e51b815260040161088690612d33565b600f55565b60606117a982611972565b6117c55760405162461bcd60e51b815260040161088690612d68565b60006117cf612058565b905060008151116117ef576040518060200160405280600081525061181a565b806117f984612067565b60405160200161180a929190612837565b6040516020818303038152906040525b9392505050565b60075481565b61182f611979565b6001600160a01b03166118406111ee565b6001600160a01b0316146118665760405162461bcd60e51b815260040161088690612d33565b600b55565b60006107c582612182565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6118ac611979565b6001600160a01b03166118bd6111ee565b6001600160a01b0316146118e35760405162461bcd60e51b815260040161088690612d33565b600e55565b6118f0611979565b6001600160a01b03166119016111ee565b6001600160a01b0316146119275760405162461bcd60e51b815260040161088690612d33565b6001600160a01b03811661194d5760405162461bcd60e51b8152600401610886906129bb565b61195681611e83565b50565b6001600160e01b031981166301ffc9a760e01b14919050565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610e318282604051806020016040528060008152506121d6565b60006119fe82611d70565b9050600081600001516001600160a01b0316611a18611979565b6001600160a01b03161480611a4d5750611a30611979565b6001600160a01b0316611a428461085f565b6001600160a01b0316145b80611a6157508151611a6190610725611979565b905080611a805760405162461bcd60e51b815260040161088690612dee565b846001600160a01b031682600001516001600160a01b031614611ab55760405162461bcd60e51b815260040161088690612ced565b6001600160a01b038416611adb5760405162461bcd60e51b815260040161088690612ac5565b611ae8858585600161169f565b611af8600084846000015161197d565b6001600160a01b0385166000908152600460205260408120805460019290611b2a9084906001600160801b0316613226565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611b76918591166131b9565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b03199091161716179055611c0c8460016131db565b6000818152600360205260409020549091506001600160a01b0316611cb157611c3481611972565b15611cb15760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526003909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610bd6868686600161169f565b611d07610e35565b611d235760405162461bcd60e51b81526004016108869061298d565b6008805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611d59611979565b604051611d669190612866565b60405180910390a1565b611d786124c9565b611d8182611972565b611d9d5760405162461bcd60e51b815260040161088690612a01565b60007f00000000000000000000000000000000000000000000000000000000000000648310611dfe57611df07f00000000000000000000000000000000000000000000000000000000000000648461324e565b611dfb9060016131db565b90505b825b818110611e6a576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611e575792506107c8915050565b5080611e6281613291565b915050611e00565b5060405162461bcd60e51b815260040161088690613044565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611edd610e35565b15611efa5760405162461bcd60e51b815260040161088690612bef565b6008805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611d59611979565b3b151590565b6000611f50846001600160a01b0316611f36565b1561204c57836001600160a01b031663150b7a02611f6c611979565b8786866040518563ffffffff1660e01b8152600401611f8e949392919061287a565b602060405180830381600087803b158015611fa857600080fd5b505af1925050508015611fd8575060408051601f3d908101601f19168201909252611fd591810190612791565b60015b612032573d808015612006576040519150601f19603f3d011682016040523d82523d6000602084013e61200b565b606091505b50805161202a5760405162461bcd60e51b815260040161088690612ec4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612050565b5060015b949350505050565b6060600980546107dc906132a8565b60608161208c57506040805180820190915260018152600360fc1b60208201526107c8565b8160005b81156120b657806120a0816132dd565b91506120af9050600a836131f3565b9150612090565b60008167ffffffffffffffff8111156120df57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612109576020820181803683370190505b5090505b84156120505761211e60018361324e565b915061212b600a866132f8565b6121369060306131db565b60f81b81838151811061215957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061217b600a866131f3565b945061210d565b60006001600160a01b0382166121aa5760405162461bcd60e51b815260040161088690612b0a565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b6000546001600160a01b0384166121ff5760405162461bcd60e51b815260040161088690612f85565b61220881611972565b156122255760405162461bcd60e51b815260040161088690612f17565b7f00000000000000000000000000000000000000000000000000000000000000648311156122655760405162461bcd60e51b8152600401610886906130e0565b612272600085838661169f565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906122ce9087906131b9565b6001600160801b031681526020018583602001516122ec91906131b9565b6001600160801b039081169091526001600160a01b03808816600081815260046020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff1990991698909817909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b858110156124375760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46123fb6000888488611f3c565b6124175760405162461bcd60e51b815260040161088690612ec4565b81612421816132dd565b925050808061242f906132dd565b9150506123ae565b506000818155610bd69087858861169f565b828054612455906132a8565b90600052602060002090601f01602090048101928261247757600085556124bd565b82601f1061249057805160ff19168380011785556124bd565b828001600101855582156124bd579182015b828111156124bd5782518255916020019190600101906124a2565b50610ddb9291506124e0565b604080518082019091526000808252602082015290565b5b80821115610ddb57600081556001016124e1565b600067ffffffffffffffff83111561250f5761250f613338565b612522601f8401601f1916602001613188565b905082815283838301111561253657600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146107c857600080fd5b600060208284031215612575578081fd5b61181a8261254d565b60008060408385031215612590578081fd5b6125998361254d565b91506125a76020840161254d565b90509250929050565b6000806000606084860312156125c4578081fd5b6125cd8461254d565b92506125db6020850161254d565b9150604084013590509250925092565b60008060008060808587031215612600578081fd5b6126098561254d565b93506126176020860161254d565b925060408501359150606085013567ffffffffffffffff811115612639578182fd5b8501601f81018713612649578182fd5b612658878235602084016124f5565b91505092959194509250565b60008060408385031215612676578182fd5b61267f8361254d565b915060208301358015158114612693578182fd5b809150509250929050565b600080604083850312156126b0578182fd5b6126b98361254d565b946020939093013593505050565b600060208083850312156126d9578182fd5b823567ffffffffffffffff808211156126f0578384fd5b818501915085601f830112612703578384fd5b81358181111561271557612715613338565b8381029150612725848301613188565b8181528481019084860184860187018a101561273f578788fd5b8795505b83861015612768576127548161254d565b835260019590950194918601918601612743565b5098975050505050505050565b600060208284031215612786578081fd5b813561181a8161334e565b6000602082840312156127a2578081fd5b815161181a8161334e565b6000602082840312156127be578081fd5b813567ffffffffffffffff8111156127d4578182fd5b8201601f810184136127e4578182fd5b612050848235602084016124f5565b600060208284031215612804578081fd5b5035919050565b60008151808452612823816020860160208601613265565b601f01601f19169290920160200192915050565b60008351612849818460208801613265565b83519083019061285d818360208801613265565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128ad9083018461280b565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156128ef578351835292840192918401916001016128d3565b50909695505050505050565b901515815260200190565b9615158752941515602087015260408601939093526060850191909152608084015260a083015260c082015260e00190565b60006020825261181a602083018461280b565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526018908201527f596f7520617265206e6f742077686974656c6973746564210000000000000000604082015260600190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526031908201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260408201527020746865207a65726f206164647265737360781b606082015260800190565b60208082526017908201527f46756e64206973206e6f742073756666696369656e7421000000000000000000604082015260600190565b6020808252600c908201526b41726520796f7520626f743f60a01b604082015260600190565b60208082526018908201527f457863656564656420676976656177617920737570706c790000000000000000604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526012908201527172656163686564206d617820737570706c7960701b604082015260600190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526022908201527f57686974656c6973742053616c65206973206e6f742073746172746564207965604082015261742160f01b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b6020808252601f908201527f5075626c69632053616c65206973206e6f742073746172746564207965742100604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526016908201527563616e206e6f74206d696e742074686973206d616e7960501b604082015260600190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b6020808252603d908201527f54686520526573657276652070686173652073686f756c64206f6e6c7920686160408201527f7070656e206265666f7265207468652073616c65207374617274656421000000606082015260800190565b90815260200190565b604051601f8201601f1916810167ffffffffffffffff811182821017156131b1576131b1613338565b604052919050565b60006001600160801b0380831681851680830382111561285d5761285d61330c565b600082198211156131ee576131ee61330c565b500190565b60008261320257613202613322565b500490565b60008160001904831182151516156132215761322161330c565b500290565b60006001600160801b03838116908316818110156132465761324661330c565b039392505050565b6000828210156132605761326061330c565b500390565b60005b83811015613280578181015183820152602001613268565b8381111561169f5750506000910152565b6000816132a0576132a061330c565b506000190190565b6002810460018216806132bc57607f821691505b6020821081141561100f57634e487b7160e01b600052602260045260246000fd5b60006000198214156132f1576132f161330c565b5060010190565b60008261330757613307613322565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461195657600080fdfea26469706673582212203a0d4e46de28ea1c6f69db5a059c439a5bbab0c9d1110ea89c407a893e7e39ad64736f6c63430008010033

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

000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000005668747470733a2f2f68656c6c6f776f726c642e6d7970696e6174612e636c6f75642f697066732f516d527857574a4e737064577758764c363362756f4c4e69465134314774695378445151524247726e327a63457a2f00000000000000000000

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 100
Arg [1] : collectionSize_ (uint256): 10000
Arg [2] : baseURI_ (string): https://helloworld.mypinata.cloud/ipfs/QmRxWWJNspdWwXvL63buoLNiFQ41GtiSxDQQRBGrn2zcEz/

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [1] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000056
Arg [4] : 68747470733a2f2f68656c6c6f776f726c642e6d7970696e6174612e636c6f75
Arg [5] : 642f697066732f516d527857574a4e737064577758764c363362756f4c4e6946
Arg [6] : 5134314774695378445151524247726e327a63457a2f00000000000000000000


Deployed Bytecode Sourcemap

40851:8558:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28522:370;;;;;;;;;;-1:-1:-1;28522:370:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30248:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31773:204::-;;;;;;;;;;-1:-1:-1;31773:204:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;31336:379::-;;;;;;;;;;-1:-1:-1;31336:379:0;;;;;:::i;:::-;;:::i;:::-;;49117:143;;;;;;;;;;;;;:::i;48461:116::-;;;;;;;;;;-1:-1:-1;48461:116:0;;;;;:::i;:::-;;:::i;48585:120::-;;;;;;;;;;-1:-1:-1;48585:120:0;;;;;:::i;:::-;;:::i;27083:94::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;43558:1288::-;;;;;;:::i;:::-;;:::i;48970:139::-;;;;;;;;;;;;;:::i;32623:142::-;;;;;;;;;;-1:-1:-1;32623:142:0;;;;;:::i;:::-;;:::i;41672:41::-;;;;;;;;;;-1:-1:-1;41672:41:0;;;;;:::i;:::-;;:::i;27714:744::-;;;;;;;;;;-1:-1:-1;27714:744:0;;;;;:::i;:::-;;:::i;49339:67::-;;;;;;;;;;;;;:::i;32828:157::-;;;;;;;;;;-1:-1:-1;32828:157:0;;;;;:::i;:::-;;:::i;27246:177::-;;;;;;;;;;-1:-1:-1;27246:177:0;;;;;:::i;:::-;;:::i;47549:102::-;;;;;;;;;;-1:-1:-1;47549:102:0;;;;;:::i;:::-;;:::i;22004:86::-;;;;;;;;;;;;;:::i;30071:118::-;;;;;;;;;;-1:-1:-1;30071:118:0;;;;;:::i;:::-;;:::i;28948:211::-;;;;;;;;;;-1:-1:-1;28948:211:0;;;;;:::i;:::-;;:::i;20141:103::-;;;;;;;;;;;;;:::i;49268:63::-;;;;;;;;;;;;;:::i;42027:539::-;;;;;;;;;;-1:-1:-1;42027:539:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46460:117::-;;;;;;;;;;;;;:::i;42574:976::-;;;;;;:::i;:::-;;:::i;19490:87::-;;;;;;;;;;;;;:::i;48113:104::-;;;;;;;;;;-1:-1:-1;48113:104:0;;;;;:::i;:::-;;:::i;41635:28::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;:::i;30403:98::-;;;;;;;;;;;;;:::i;48713:107::-;;;;;;;;;;-1:-1:-1;48713:107:0;;;;;:::i;:::-;;:::i;32041:274::-;;;;;;;;;;-1:-1:-1;32041:274:0;;;;;:::i;:::-;;:::i;46666:632::-;;;;;;;;;;-1:-1:-1;46666:632:0;;;;;:::i;:::-;;:::i;44854:1420::-;;;;;;:::i;:::-;;:::i;33048:311::-;;;;;;;;;;-1:-1:-1;33048:311:0;;;;;:::i;:::-;;:::i;46282:170::-;;;;;;;;;;-1:-1:-1;46282:170:0;;;;;:::i;:::-;;:::i;48341:112::-;;;;;;;;;;-1:-1:-1;48341:112:0;;;;;:::i;:::-;;:::i;30564:394::-;;;;;;;;;;-1:-1:-1;30564:394:0;;;;;:::i;:::-;;:::i;37463:43::-;;;;;;;;;;;;;:::i;48828:134::-;;;;;;;;;;-1:-1:-1;48828:134:0;;;;;:::i;:::-;;:::i;47306:113::-;;;;;;;;;;-1:-1:-1;47306:113:0;;;;;:::i;:::-;;:::i;32378:186::-;;;;;;;;;;-1:-1:-1;32378:186:0;;;;;:::i;:::-;;:::i;48225:108::-;;;;;;;;;;-1:-1:-1;48225:108:0;;;;;:::i;:::-;;:::i;20399:201::-;;;;;;;;;;-1:-1:-1;20399:201:0;;;;;:::i;:::-;;:::i;28522:370::-;28649:4;-1:-1:-1;;;;;;28679:40:0;;-1:-1:-1;;;28679:40:0;;:99;;-1:-1:-1;;;;;;;28730:48:0;;-1:-1:-1;;;28730:48:0;28679:99;:160;;;-1:-1:-1;;;;;;;28789:50:0;;-1:-1:-1;;;28789:50:0;28679:160;:207;;;;28850:36;28874:11;28850:23;:36::i;:::-;28665:221;;28522:370;;;;:::o;30248:94::-;30302:13;30331:5;30324:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30248:94;:::o;31773:204::-;31841:7;31865:16;31873:7;31865;:16::i;:::-;31857:74;;;;-1:-1:-1;;;31857:74:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;31947:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31947:24:0;;31773:204::o;31336:379::-;31405:13;31421:24;31437:7;31421:15;:24::i;:::-;31405:40;;31466:5;-1:-1:-1;;;;;31460:11:0;:2;-1:-1:-1;;;;;31460:11:0;;;31452:58;;;;-1:-1:-1;;;31452:58:0;;;;;;;:::i;:::-;31551:5;-1:-1:-1;;;;;31535:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;31535:21:0;;:62;;;;31560:37;31577:5;31584:12;:10;:12::i;31560:37::-;31519:153;;;;-1:-1:-1;;;31519:153:0;;;;;;;:::i;:::-;31681:28;31690:2;31694:7;31703:5;31681:8;:28::i;:::-;31336:379;;;:::o;49117:143::-;19721:12;:10;:12::i;:::-;-1:-1:-1;;;;;19710:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;19710:23:0;;19702:68;;;;-1:-1:-1;;;19702:68:0;;;;;;;:::i;:::-;49174:10:::1;:32:::0;;-1:-1:-1;;49217:35:0;49174:32:::1;49217:35;::::0;;49117:143::o;48461:116::-;19721:12;:10;:12::i;:::-;-1:-1:-1;;;;;19710:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;19710:23:0;;19702:68;;;;-1:-1:-1;;;19702:68:0;;;;;;;:::i;:::-;48533:26;:36;48461:116::o;48585:120::-;19721:12;:10;:12::i;:::-;-1:-1:-1;;;;;19710:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;19710:23:0;;19702:68;;;;-1:-1:-1;;;19702:68:0;;;;;;;:::i;:::-;48659:25;:38;48585:120::o;27083:94::-;27136:7;27159:12;27083:94;:::o;43558:1288::-;22330:8;:6;:8::i;:::-;22329:9;22321:38;;;;-1:-1:-1;;;22321:38:0;;;;;;;:::i;:::-;43637:37:::1;::::0;;::::1;::::0;::::1;::::0;;43664:10:::1;43637:37:::0;::::1;::::0;;::::1;;;::::0;;;::::1;::::0;;::::1;;;::::0;::::1;;::::0;::::1;::::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43870:53:::1;;-1:-1:-1::0;43919:4:0::1;43901:22:::0;::::1;;;43870:53;43847:138;;;;-1:-1:-1::0;;;43847:138:0::1;;;;;;;:::i;:::-;44057:10;44047:21;::::0;;;:9:::1;:21;::::0;;;;;::::1;;44039:58;;;;-1:-1:-1::0;;;44039:58:0::1;;;;;;;:::i;:::-;44169:18;::::0;::::1;::::0;44220:24;;::::1;;44198:96;;;;-1:-1:-1::0;;;44198:96:0::1;;;;;;;:::i;:::-;44411:12;44399:8;44372:24;44385:10;44372:12;:24::i;:::-;:35;;;;:::i;:::-;:51;;44350:123;;;;-1:-1:-1::0;;;44350:123:0::1;;;;;;;:::i;:::-;44557:14;44545:8;44529:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;44521:73;;;;-1:-1:-1::0;;;44521:73:0::1;;;;;;;:::i;:::-;44663:14;::::0;::::1;::::0;44724:19:::1;44735:8:::0;44663:14;44724:19:::1;:::i;:::-;44711:9;:32;;44688:106;;;;-1:-1:-1::0;;;44688:106:0::1;;;;;;;:::i;:::-;44807:31;44817:10;44829:8;44807:9;:31::i;:::-;22370:1;;;;;43558:1288:::0;:::o;48970:139::-;19721:12;:10;:12::i;:::-;-1:-1:-1;;;;;19710:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;19710:23:0;;19702:68;;;;-1:-1:-1;;;19702:68:0;;;;;;;:::i;:::-;49023:10:::1;:31:::0;;-1:-1:-1;;;;49023:31:0;;::::1;49050:4;49023:31;49065:36;::::0;;48970:139::o;32623:142::-;32731:28;32741:4;32747:2;32751:7;32731:9;:28::i;41672:41::-;;;;;;;;;;;;;;;:::o;27714:744::-;27823:7;27858:16;27868:5;27858:9;:16::i;:::-;27850:5;:24;27842:71;;;;-1:-1:-1;;;27842:71:0;;;;;;;:::i;:::-;27920:22;27945:13;:11;:13::i;:::-;27920:38;;27965:19;27995:25;28045:9;28040:350;28064:14;28060:1;:18;28040:350;;;28094:31;28128:14;;;:11;:14;;;;;;;;;28094:48;;;;;;;;;-1:-1:-1;;;;;28094:48:0;;;;;-1:-1:-1;;;28094:48:0;;;;;;;;;;;;28155:28;28151:89;;28216:14;;;-1:-1:-1;28151:89:0;28273:5;-1:-1:-1;;;;;28252:26:0;:17;-1:-1:-1;;;;;28252:26:0;;28248:135;;;28310:5;28295:11;:20;28291:59;;;-1:-1:-1;28337:1:0;-1:-1:-1;28330:8:0;;-1:-1:-1;;;28330:8:0;28291:59;28360:13;;;;:::i;:::-;;;;28248:135;-1:-1:-1;28080:3:0;;;;:::i;:::-;;;;28040:350;;;;28396:56;;-1:-1:-1;;;28396:56:0;;;;;;;:::i;27714:744::-;;;;;:::o;49339:67::-;19721:12;:10;:12::i;:::-;-1:-1:-1;;;;;19710:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;19710:23:0;;19702:68;;;;-1:-1:-1;;;19702:68:0;;;;;;;:::i;:::-;49388:10:::1;:8;:10::i;:::-;49339:67::o:0;32828:157::-;32940:39;32957:4;32963:2;32967:7;32940:39;;;;;;;;;;;;:16;:39::i;27246:177::-;27313:7;27345:13;:11;:13::i;:::-;27337:5;:21;27329:69;;;;-1:-1:-1;;;27329:69:0;;;;;;;:::i;:::-;-1:-1:-1;27412:5:0;27246:177::o;47549:102::-;19721:12;:10;:12::i;:::-;-1:-1:-1;;;;;19710:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;19710:23:0;;19702:68;;;;-1:-1:-1;;;19702:68:0;;;;;;;:::i;:::-;47620:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47549:102:::0;:::o;22004:86::-;22075:7;;-1:-1:-1;;;22075:7:0;;;;;22004:86::o;30071:118::-;30135:7;30158:20;30170:7;30158:11;:20::i;:::-;:25;;30071:118;-1:-1:-1;;30071:118:0:o;28948:211::-;29012:7;-1:-1:-1;;;;;29036:19:0;;29028:75;;;;-1:-1:-1;;;29028:75:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;29125:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;29125:27:0;;28948:211::o;20141:103::-;19721:12;:10;:12::i;:::-;-1:-1:-1;;;;;19710:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;19710:23:0;;19702:68;;;;-1:-1:-1;;;19702:68:0;;;;;;;:::i;:::-;20206:30:::1;20233:1;20206:18;:30::i;49268:63::-:0;19721:12;:10;:12::i;:::-;-1:-1:-1;;;;;19710:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;19710:23:0;;19702:68;;;;-1:-1:-1;;;19702:68:0;;;;;;;:::i;:::-;49315:8:::1;:6;:8::i;42027:539::-:0;42088:16;42117:18;42138:17;42148:6;42138:9;:17::i;:::-;42117:38;-1:-1:-1;42170:15:0;42166:393;;-1:-1:-1;;42247:16:0;;;42261:1;42247:16;;;;;;;;42240:23;;42166:393;42296:23;42336:10;42322:25;;;;;;-1:-1:-1;;;42322:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42322:25:0;;42296:51;;42362:13;42390:130;42414:10;42406:5;:18;42390:130;;;42470:34;42490:6;42498:5;42470:19;:34::i;:::-;42454:6;42461:5;42454:13;;;;;;-1:-1:-1;;;42454:13:0;;;;;;;;;;;;;;;;;;:50;42426:7;;;;:::i;:::-;;;;42390:130;;;-1:-1:-1;42541:6:0;-1:-1:-1;42534:13:0;;-1:-1:-1;42534:13:0;42166:393;42027:539;;;;:::o;46460:117::-;19721:12;:10;:12::i;:::-;-1:-1:-1;;;;;19710:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;19710:23:0;;19702:68;;;;-1:-1:-1;;;19702:68:0;;;;;;;:::i;:::-;46521:47:::1;::::0;46529:10:::1;::::0;46546:21:::1;46521:47:::0;::::1;;;::::0;::::1;::::0;;;46546:21;46529:10;46521:47;::::1;;;;;;46513:56;;;::::0;::::1;42574:976:::0;22330:8;:6;:8::i;:::-;22329:9;22321:38;;;;-1:-1:-1;;;22321:38:0;;;;;;;:::i;:::-;42656:37:::1;::::0;;::::1;::::0;::::1;::::0;;42683:10:::1;42656:37:::0;::::1;::::0;;::::1;;;::::0;;;::::1;::::0;;::::1;;;::::0;::::1;;::::0;::::1;::::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42892:53:::1;;-1:-1:-1::0;42941:4:0::1;42923:22:::0;::::1;;;42892:53;42869:138;;;;-1:-1:-1::0;;;42869:138:0::1;;;;;;;:::i;:::-;43111:18;::::0;43098:8:::1;::::0;43085:22:::1;::::0;-1:-1:-1;;;;;43098:8:0::1;43085:12;:22::i;:::-;:44;;43063:116;;;;-1:-1:-1::0;;;43063:116:0::1;;;;;;;:::i;:::-;43263:14;43251:8;43235:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;43227:73;;;;-1:-1:-1::0;;;43227:73:0::1;;;;;;;:::i;:::-;43369:14;::::0;::::1;::::0;43430:19:::1;43441:8:::0;43369:14;43430:19:::1;:::i;:::-;43417:9;:32;;43394:106;;;;-1:-1:-1::0;;;43394:106:0::1;;;;;;;:::i;:::-;43523:8;::::0;43513:29:::1;::::0;-1:-1:-1;;;;;43523:8:0::1;43533::::0;43513:9:::1;:29::i;:::-;22370:1;;;;42574:976:::0;:::o;19490:87::-;19563:6;;-1:-1:-1;;;;;19563:6:0;19490:87;:::o;48113:104::-;19721:12;:10;:12::i;:::-;-1:-1:-1;;;;;19710:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;19710:23:0;;19702:68;;;;-1:-1:-1;;;19702:68:0;;;;;;;:::i;:::-;48179:18;:30;48113:104::o;41635:28::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30403:98::-;30459:13;30488:7;30481:14;;;;;:::i;48713:107::-;19721:12;:10;:12::i;:::-;-1:-1:-1;;;;;19710:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;19710:23:0;;19702:68;;;;-1:-1:-1;;;19702:68:0;;;;;;;:::i;:::-;48789:8:::1;:23:::0;;-1:-1:-1;;;;;;48789:23:0::1;-1:-1:-1::0;;;;;48789:23:0;;;::::1;::::0;;;::::1;::::0;;48713:107::o;32041:274::-;32144:12;:10;:12::i;:::-;-1:-1:-1;;;;;32132:24:0;:8;-1:-1:-1;;;;;32132:24:0;;;32124:63;;;;-1:-1:-1;;;32124:63:0;;;;;;;:::i;:::-;32241:8;32196:18;:32;32215:12;:10;:12::i;:::-;-1:-1:-1;;;;;32196:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;32196:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;32196:53:0;;;;;;;;;;;32276:12;:10;:12::i;:::-;-1:-1:-1;;;;;32261:48:0;;32300:8;32261:48;;;;;;:::i;:::-;;;;;;;;32041:274;;:::o;46666:632::-;19721:12;:10;:12::i;:::-;-1:-1:-1;;;;;19710:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;19710:23:0;;19702:68;;;;-1:-1:-1;;;19702:68:0;;;;;;;:::i;:::-;46739:37:::1;::::0;;::::1;::::0;::::1;::::0;;46766:10:::1;46739:37:::0;::::1;::::0;;::::1;;;::::0;;;::::1;::::0;;::::1;;;::::0;::::1;;::::0;::::1;::::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47016:54:::1;;-1:-1:-1::0;47047:23:0;::::1;47016:54;46993:166;;;;-1:-1:-1::0;;;46993:166:0::1;;;;;;;:::i;:::-;47208:9;47196:8;47180:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;47172:74;;;;-1:-1:-1::0;;;47172:74:0::1;;;;;;;:::i;:::-;47259:31;47269:10;47281:8;47259:9;:31::i;44854:1420::-:0;22330:8;:6;:8::i;:::-;22329:9;22321:38;;;;-1:-1:-1;;;22321:38:0;;;;;;;:::i;:::-;44936:37:::1;::::0;;::::1;::::0;::::1;::::0;;44963:10:::1;44936:37:::0;::::1;::::0;;::::1;;;::::0;;;::::1;::::0;;::::1;;;;;::::0;::::1;::::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45165:10:::1;45179:9;45165:23;:51:::0;::::1;;;-1:-1:-1::0;45193:23:0::1;:10;:21;:23::i;:::-;45192:24;45165:51;45142:101;;;;-1:-1:-1::0;;;45142:101:0::1;;;;;;;:::i;:::-;45345:4;45323:26:::0;::::1;;;:53:::0;::::1;;;-1:-1:-1::0;45353:23:0;::::1;45323:53;45300:135;;;;-1:-1:-1::0;;;45300:135:0::1;;;;;;;:::i;:::-;45509:18;::::0;::::1;::::0;45562:22:::1;::::0;::::1;::::0;45617:28;;::::1;;45595:100;;;;-1:-1:-1::0;;;45595:100:0::1;;;;;;;:::i;:::-;45810:31;45825:16:::0;45810:12;:31:::1;:::i;:::-;45798:8;45771:24;45784:10;45771:12;:24::i;:::-;:35;;;;:::i;:::-;:70;;45749:142;;;;-1:-1:-1::0;;;45749:142:0::1;;;;;;;:::i;:::-;45973:14;45961:8;45945:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;45937:73;;;;-1:-1:-1::0;;;45937:73:0::1;;;;;;;:::i;:::-;46083:18;::::0;::::1;::::0;46148:23:::1;46163:8:::0;46083:18;46148:23:::1;:::i;:::-;46135:9;:36;;46112:110;;;;-1:-1:-1::0;;;46112:110:0::1;;;;;;;:::i;:::-;46235:31;46245:10;46257:8;46235:9;:31::i;:::-;22370:1;;;;;;44854:1420:::0;:::o;33048:311::-;33185:28;33195:4;33201:2;33205:7;33185:9;:28::i;:::-;33236:48;33259:4;33265:2;33269:7;33278:5;33236:22;:48::i;:::-;33220:133;;;;-1:-1:-1;;;33220:133:0;;;;;;;:::i;:::-;33048:311;;;;:::o;46282:170::-;19721:12;:10;:12::i;:::-;-1:-1:-1;;;;;19710:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;19710:23:0;;19702:68;;;;-1:-1:-1;;;19702:68:0;;;;;;;:::i;:::-;46359:6:::1;46355:90;46375:5;:12;46371:1;:16;46355:90;;;46429:4;46407:9;:19;46417:5;46423:1;46417:8;;;;;;-1:-1:-1::0;;;46417:8:0::1;;;;;;;;;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;46407:19:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;46407:19:0;:26;;-1:-1:-1;;46407:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46389:3;::::1;::::0;::::1;:::i;:::-;;;;46355:90;;48341:112:::0;19721:12;:10;:12::i;:::-;-1:-1:-1;;;;;19710:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;19710:23:0;;19702:68;;;;-1:-1:-1;;;19702:68:0;;;;;;;:::i;:::-;48411:22;:34;48341:112::o;30564:394::-;30662:13;30703:16;30711:7;30703;:16::i;:::-;30687:97;;;;-1:-1:-1;;;30687:97:0;;;;;;;:::i;:::-;30793:21;30817:10;:8;:10::i;:::-;30793:34;;30872:1;30854:7;30848:21;:25;:104;;;;;;;;;;;;;;;;;30909:7;30918:18;:7;:16;:18::i;:::-;30892:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30848:104;30834:118;30564:394;-1:-1:-1;;;30564:394:0:o;37463:43::-;;;;:::o;48828:134::-;19721:12;:10;:12::i;:::-;-1:-1:-1;;;;;19710:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;19710:23:0;;19702:68;;;;-1:-1:-1;;;19702:68:0;;;;;;;:::i;:::-;48914:18:::1;:40:::0;48828:134::o;47306:113::-;47364:7;47391:20;47405:5;47391:13;:20::i;32378:186::-;-1:-1:-1;;;;;32523:25:0;;;32500:4;32523:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32378:186::o;48225:108::-;19721:12;:10;:12::i;:::-;-1:-1:-1;;;;;19710:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;19710:23:0;;19702:68;;;;-1:-1:-1;;;19702:68:0;;;;;;;:::i;:::-;48293:22;:32;48225:108::o;20399:201::-;19721:12;:10;:12::i;:::-;-1:-1:-1;;;;;19710:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;19710:23:0;;19702:68;;;;-1:-1:-1;;;19702:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20488:22:0;::::1;20480:73;;;;-1:-1:-1::0;;;20480:73:0::1;;;;;;;:::i;:::-;20564:28;20583:8;20564:18;:28::i;:::-;20399:201:::0;:::o;13576:157::-;-1:-1:-1;;;;;;13685:40:0;;-1:-1:-1;;;13685:40:0;13576:157;;;:::o;33598:105::-;33655:4;33685:12;-1:-1:-1;33675:22:0;33598:105::o;8812:98::-;8892:10;8812:98;:::o;37285:172::-;37382:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;37382:29:0;-1:-1:-1;;;;;37382:29:0;;;;;;;;;37423:28;;37382:24;;37423:28;;;;;;;37285:172;;;:::o;33709:98::-;33774:27;33784:2;33788:8;33774:27;;;;;;;;;;;;:9;:27::i;35650:1529::-;35747:35;35785:20;35797:7;35785:11;:20::i;:::-;35747:58;;35814:22;35856:13;:18;;;-1:-1:-1;;;;;35840:34:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;35840:34:0;;:81;;;;35909:12;:10;:12::i;:::-;-1:-1:-1;;;;;35885:36:0;:20;35897:7;35885:11;:20::i;:::-;-1:-1:-1;;;;;35885:36:0;;35840:81;:142;;;-1:-1:-1;35949:18:0;;35932:50;;35969:12;:10;:12::i;35932:50::-;35814:169;;36008:17;35992:101;;;;-1:-1:-1;;;35992:101:0;;;;;;;:::i;:::-;36140:4;-1:-1:-1;;;;;36118:26:0;:13;:18;;;-1:-1:-1;;;;;36118:26:0;;36102:98;;;;-1:-1:-1;;;36102:98:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36215:16:0;;36207:66;;;;-1:-1:-1;;;36207:66:0;;;;;;;:::i;:::-;36282:43;36304:4;36310:2;36314:7;36323:1;36282:21;:43::i;:::-;36382:49;36399:1;36403:7;36412:13;:18;;;36382:8;:49::i;:::-;-1:-1:-1;;;;;36440:18:0;;;;;;:12;:18;;;;;:31;;36470:1;;36440:18;:31;;36470:1;;-1:-1:-1;;;;;36440:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;36440:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;36478:16:0;;-1:-1:-1;36478:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;36478:16:0;;:29;;-1:-1:-1;;36478:29:0;;:::i;:::-;;;-1:-1:-1;;;;;36478:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36537:43:0;;;;;;;;-1:-1:-1;;;;;36537:43:0;;;;;;36563:15;36537:43;;;;;;;;;-1:-1:-1;36514:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;36514:66:0;-1:-1:-1;;;;36514:66:0;;;;-1:-1:-1;;;;;;36514:66:0;;;;;;;;36830:11;36526:7;-1:-1:-1;36830:11:0;:::i;:::-;36893:1;36852:24;;;:11;:24;;;;;:29;36808:33;;-1:-1:-1;;;;;;36852:29:0;36848:236;;36910:20;36918:11;36910:7;:20::i;:::-;36906:171;;;36970:97;;;;;;;;36997:18;;-1:-1:-1;;;;;36970:97:0;;;;;;37028:28;;;;36970:97;;;;;;;;;;-1:-1:-1;36943:24:0;;;:11;:24;;;;;;;:124;;;;;;-1:-1:-1;;;;;;36943:124:0;;;;;;;;;-1:-1:-1;;;;36943:124:0;-1:-1:-1;;;36943:124:0;;;;;;;;;;;;;;36906:171;37116:7;37112:2;-1:-1:-1;;;;;37097:27:0;37106:4;-1:-1:-1;;;;;37097:27:0;;;;;;;;;;;37131:42;37152:4;37158:2;37162:7;37171:1;37131:20;:42::i;23063:120::-;22607:8;:6;:8::i;:::-;22599:41;;;;-1:-1:-1;;;22599:41:0;;;;;;;:::i;:::-;23122:7:::1;:15:::0;;-1:-1:-1;;;;23122:15:0::1;::::0;;23153:22:::1;23162:12;:10;:12::i;:::-;23153:22;;;;;;:::i;:::-;;;;;;;;23063:120::o:0;29411:606::-;29487:21;;:::i;:::-;29528:16;29536:7;29528;:16::i;:::-;29520:71;;;;-1:-1:-1;;;29520:71:0;;;;;;;:::i;:::-;29600:26;29648:12;29637:7;:23;29633:93;;29692:22;29702:12;29692:7;:22;:::i;:::-;:26;;29717:1;29692:26;:::i;:::-;29671:47;;29633:93;29754:7;29734:212;29771:18;29763:4;:26;29734:212;;29808:31;29842:17;;;:11;:17;;;;;;;;;29808:51;;;;;;;;;-1:-1:-1;;;;;29808:51:0;;;;;-1:-1:-1;;;29808:51:0;;;;;;;;;;;;29872:28;29868:71;;29920:9;-1:-1:-1;29913:16:0;;-1:-1:-1;;29913:16:0;29868:71;-1:-1:-1;29791:6:0;;;;:::i;:::-;;;;29734:212;;;;29954:57;;-1:-1:-1;;;29954:57:0;;;;;;;:::i;20760:191::-;20853:6;;;-1:-1:-1;;;;;20870:17:0;;;-1:-1:-1;;;;;;20870:17:0;;;;;;;20903:40;;20853:6;;;20870:17;20853:6;;20903:40;;20834:16;;20903:40;20760:191;;:::o;22804:118::-;22330:8;:6;:8::i;:::-;22329:9;22321:38;;;;-1:-1:-1;;;22321:38:0;;;;;;;:::i;:::-;22864:7:::1;:14:::0;;-1:-1:-1;;;;22864:14:0::1;-1:-1:-1::0;;;22864:14:0::1;::::0;;22894:20:::1;22901:12;:10;:12::i;879:387::-:0;1202:20;1250:8;;;879:387::o;39000:690::-;39137:4;39154:15;:2;-1:-1:-1;;;;;39154:13:0;;:15::i;:::-;39150:535;;;39209:2;-1:-1:-1;;;;;39193:36:0;;39230:12;:10;:12::i;:::-;39244:4;39250:7;39259:5;39193:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39193:72:0;;;;;;;;-1:-1:-1;;39193:72:0;;;;;;;;;;;;:::i;:::-;;;39180:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39424:13:0;;39420:215;;39457:61;;-1:-1:-1;;;39457:61:0;;;;;;;:::i;39420:215::-;39603:6;39597:13;39588:6;39584:2;39580:15;39573:38;39180:464;-1:-1:-1;;;;;;39315:55:0;-1:-1:-1;;;39315:55:0;;-1:-1:-1;39308:62:0;;39150:535;-1:-1:-1;39673:4:0;39150:535;39000:690;;;;;;:::o;47427:114::-;47487:13;47520;47513:20;;;;;:::i;11058:723::-;11114:13;11335:10;11331:53;;-1:-1:-1;11362:10:0;;;;;;;;;;;;-1:-1:-1;;;11362:10:0;;;;;;11331:53;11409:5;11394:12;11450:78;11457:9;;11450:78;;11483:8;;;;:::i;:::-;;-1:-1:-1;11506:10:0;;-1:-1:-1;11514:2:0;11506:10;;:::i;:::-;;;11450:78;;;11538:19;11570:6;11560:17;;;;;;-1:-1:-1;;;11560:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11560:17:0;;11538:39;;11588:154;11595:10;;11588:154;;11622:11;11632:1;11622:11;;:::i;:::-;;-1:-1:-1;11691:10:0;11699:2;11691:5;:10;:::i;:::-;11678:24;;:2;:24;:::i;:::-;11665:39;;11648:6;11655;11648:14;;;;;;-1:-1:-1;;;11648:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;11648:56:0;;;;;;;;-1:-1:-1;11719:11:0;11728:2;11719:11;;:::i;:::-;;;11588:154;;29165:240;29226:7;-1:-1:-1;;;;;29258:19:0;;29242:102;;;;-1:-1:-1;;;29242:102:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;29366:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;29366:32:0;;-1:-1:-1;;;;;29366:32:0;;29165:240::o;34146:1272::-;34251:20;34274:12;-1:-1:-1;;;;;34301:16:0;;34293:62;;;;-1:-1:-1;;;34293:62:0;;;;;;;:::i;:::-;34492:21;34500:12;34492:7;:21::i;:::-;34491:22;34483:64;;;;-1:-1:-1;;;34483:64:0;;;;;;;:::i;:::-;34574:12;34562:8;:24;;34554:71;;;;-1:-1:-1;;;34554:71:0;;;;;;;:::i;:::-;34634:61;34664:1;34668:2;34672:12;34686:8;34634:21;:61::i;:::-;-1:-1:-1;;;;;34737:16:0;;34704:30;34737:16;;;:12;:16;;;;;;;;;34704:49;;;;;;;;;-1:-1:-1;;;;;34704:49:0;;;;;-1:-1:-1;;;34704:49:0;;;;;;;;;;;34779:119;;;;;;;;34799:19;;34704:49;;34779:119;;;34799:39;;34829:8;;34799:39;:::i;:::-;-1:-1:-1;;;;;34779:119:0;;;;;34882:8;34847:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;34779:119:0;;;;;;-1:-1:-1;;;;;34760:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;;;-1:-1:-1;;;34760:138:0;;;;-1:-1:-1;;34760:138:0;;;;;;;;;;;;;;;;;34933:43;;;;;;;;;;;34959:15;34933:43;;;;;;;;34905:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;34905:71:0;-1:-1:-1;;;;34905:71:0;;;;-1:-1:-1;;;;;;34905:71:0;;;;;;;;;;;;;;;34917:12;;35029:281;35053:8;35049:1;:12;35029:281;;;35082:38;;35107:12;;-1:-1:-1;;;;;35082:38:0;;;35099:1;;35082:38;;35099:1;;35082:38;35147:59;35178:1;35182:2;35186:12;35200:5;35147:22;:59::i;:::-;35129:150;;;;-1:-1:-1;;;35129:150:0;;;;;;;:::i;:::-;35288:14;;;;:::i;:::-;;;;35063:3;;;;;:::i;:::-;;;;35029:281;;;-1:-1:-1;35318:12:0;:27;;;35352:60;;35385:2;35389:12;35403:8;35352:20;:60::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:408:1;;114:18;106:6;103:30;100:2;;;136:18;;:::i;:::-;174:57;219:2;198:15;;-1:-1:-1;;194:29:1;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:1;;536:42;;526:2;;592:1;589;582:12;607:198;;719:2;707:9;698:7;694:23;690:32;687:2;;;740:6;732;725:22;687:2;768:31;789:9;768:31;:::i;810:274::-;;;939:2;927:9;918:7;914:23;910:32;907:2;;;960:6;952;945:22;907:2;988:31;1009:9;988:31;:::i;:::-;978:41;;1038:40;1074:2;1063:9;1059:18;1038:40;:::i;:::-;1028:50;;897:187;;;;;:::o;1089:342::-;;;;1235:2;1223:9;1214:7;1210:23;1206:32;1203:2;;;1256:6;1248;1241:22;1203:2;1284:31;1305:9;1284:31;:::i;:::-;1274:41;;1334:40;1370:2;1359:9;1355:18;1334:40;:::i;:::-;1324:50;;1421:2;1410:9;1406:18;1393:32;1383:42;;1193:238;;;;;:::o;1436:702::-;;;;;1608:3;1596:9;1587:7;1583:23;1579:33;1576:2;;;1630:6;1622;1615:22;1576:2;1658:31;1679:9;1658:31;:::i;:::-;1648:41;;1708:40;1744:2;1733:9;1729:18;1708:40;:::i;:::-;1698:50;;1795:2;1784:9;1780:18;1767:32;1757:42;;1850:2;1839:9;1835:18;1822:32;1877:18;1869:6;1866:30;1863:2;;;1914:6;1906;1899:22;1863:2;1942:22;;1995:4;1987:13;;1983:27;-1:-1:-1;1973:2:1;;2029:6;2021;2014:22;1973:2;2057:75;2124:7;2119:2;2106:16;2101:2;2097;2093:11;2057:75;:::i;:::-;2047:85;;;1566:572;;;;;;;:::o;2143:369::-;;;2269:2;2257:9;2248:7;2244:23;2240:32;2237:2;;;2290:6;2282;2275:22;2237:2;2318:31;2339:9;2318:31;:::i;:::-;2308:41;;2399:2;2388:9;2384:18;2371:32;2446:5;2439:13;2432:21;2425:5;2422:32;2412:2;;2473:6;2465;2458:22;2412:2;2501:5;2491:15;;;2227:285;;;;;:::o;2517:266::-;;;2646:2;2634:9;2625:7;2621:23;2617:32;2614:2;;;2667:6;2659;2652:22;2614:2;2695:31;2716:9;2695:31;:::i;:::-;2685:41;2773:2;2758:18;;;;2745:32;;-1:-1:-1;;;2604:179:1:o;2788:1011::-;;2903:2;2946;2934:9;2925:7;2921:23;2917:32;2914:2;;;2967:6;2959;2952:22;2914:2;3012:9;2999:23;3041:18;3082:2;3074:6;3071:14;3068:2;;;3103:6;3095;3088:22;3068:2;3146:6;3135:9;3131:22;3121:32;;3191:7;3184:4;3180:2;3176:13;3172:27;3162:2;;3218:6;3210;3203:22;3162:2;3259;3246:16;3281:2;3277;3274:10;3271:2;;;3287:18;;:::i;:::-;3334:2;3330;3326:11;3316:21;;3357:28;3381:2;3377;3373:11;3357:28;:::i;:::-;3419:15;;;3450:12;;;;3482:11;;;3512;;;3508:20;;3505:33;-1:-1:-1;3502:2:1;;;3556:6;3548;3541:22;3502:2;3583:6;3574:15;;3598:171;3612:2;3609:1;3606:9;3598:171;;;3669:25;3690:3;3669:25;:::i;:::-;3657:38;;3630:1;3623:9;;;;;3715:12;;;;3747;;3598:171;;;-1:-1:-1;3788:5:1;2883:916;-1:-1:-1;;;;;;;;2883:916:1:o;3804:257::-;;3915:2;3903:9;3894:7;3890:23;3886:32;3883:2;;;3936:6;3928;3921:22;3883:2;3980:9;3967:23;3999:32;4025:5;3999:32;:::i;4066:261::-;;4188:2;4176:9;4167:7;4163:23;4159:32;4156:2;;;4209:6;4201;4194:22;4156:2;4246:9;4240:16;4265:32;4291:5;4265:32;:::i;4332:482::-;;4454:2;4442:9;4433:7;4429:23;4425:32;4422:2;;;4475:6;4467;4460:22;4422:2;4520:9;4507:23;4553:18;4545:6;4542:30;4539:2;;;4590:6;4582;4575:22;4539:2;4618:22;;4671:4;4663:13;;4659:27;-1:-1:-1;4649:2:1;;4705:6;4697;4690:22;4649:2;4733:75;4800:7;4795:2;4782:16;4777:2;4773;4769:11;4733:75;:::i;4819:190::-;;4931:2;4919:9;4910:7;4906:23;4902:32;4899:2;;;4952:6;4944;4937:22;4899:2;-1:-1:-1;4980:23:1;;4889:120;-1:-1:-1;4889:120:1:o;5014:259::-;;5095:5;5089:12;5122:6;5117:3;5110:19;5138:63;5194:6;5187:4;5182:3;5178:14;5171:4;5164:5;5160:16;5138:63;:::i;:::-;5255:2;5234:15;-1:-1:-1;;5230:29:1;5221:39;;;;5262:4;5217:50;;5065:208;-1:-1:-1;;5065:208:1:o;5278:470::-;;5495:6;5489:13;5511:53;5557:6;5552:3;5545:4;5537:6;5533:17;5511:53;:::i;:::-;5627:13;;5586:16;;;;5649:57;5627:13;5586:16;5683:4;5671:17;;5649:57;:::i;:::-;5722:20;;5465:283;-1:-1:-1;;;;5465:283:1:o;5753:203::-;-1:-1:-1;;;;;5917:32:1;;;;5899:51;;5887:2;5872:18;;5854:102::o;5961:490::-;-1:-1:-1;;;;;6230:15:1;;;6212:34;;6282:15;;6277:2;6262:18;;6255:43;6329:2;6314:18;;6307:34;;;6377:3;6372:2;6357:18;;6350:31;;;5961:490;;6398:47;;6425:19;;6417:6;6398:47;:::i;:::-;6390:55;6164:287;-1:-1:-1;;;;;;6164:287:1:o;6456:635::-;6627:2;6679:21;;;6749:13;;6652:18;;;6771:22;;;6456:635;;6627:2;6850:15;;;;6824:2;6809:18;;;6456:635;6896:169;6910:6;6907:1;6904:13;6896:169;;;6971:13;;6959:26;;7040:15;;;;7005:12;;;;6932:1;6925:9;6896:169;;;-1:-1:-1;7082:3:1;;6607:484;-1:-1:-1;;;;;;6607:484:1:o;7096:187::-;7261:14;;7254:22;7236:41;;7224:2;7209:18;;7191:92::o;7288:627::-;7616:14;;7609:22;7591:41;;7675:14;;7668:22;7663:2;7648:18;;7641:50;7722:2;7707:18;;7700:34;;;;7765:2;7750:18;;7743:34;;;;7808:3;7793:19;;7786:35;7852:3;7837:19;;7830:35;7896:3;7881:19;;7874:35;7578:3;7563:19;;7545:370::o;7920:221::-;;8069:2;8058:9;8051:21;8089:46;8131:2;8120:9;8116:18;8108:6;8089:46;:::i;8146:398::-;8348:2;8330:21;;;8387:2;8367:18;;;8360:30;8426:34;8421:2;8406:18;;8399:62;-1:-1:-1;;;8492:2:1;8477:18;;8470:32;8534:3;8519:19;;8320:224::o;8549:344::-;8751:2;8733:21;;;8790:2;8770:18;;;8763:30;-1:-1:-1;;;8824:2:1;8809:18;;8802:50;8884:2;8869:18;;8723:170::o;8898:402::-;9100:2;9082:21;;;9139:2;9119:18;;;9112:30;9178:34;9173:2;9158:18;;9151:62;-1:-1:-1;;;9244:2:1;9229:18;;9222:36;9290:3;9275:19;;9072:228::o;9305:406::-;9507:2;9489:21;;;9546:2;9526:18;;;9519:30;9585:34;9580:2;9565:18;;9558:62;-1:-1:-1;;;9651:2:1;9636:18;;9629:40;9701:3;9686:19;;9479:232::o;9716:399::-;9918:2;9900:21;;;9957:2;9937:18;;;9930:30;9996:34;9991:2;9976:18;;9969:62;-1:-1:-1;;;10062:2:1;10047:18;;10040:33;10105:3;10090:19;;9890:225::o;10120:348::-;10322:2;10304:21;;;10361:2;10341:18;;;10334:30;10400:26;10395:2;10380:18;;10373:54;10459:2;10444:18;;10294:174::o;10473:401::-;10675:2;10657:21;;;10714:2;10694:18;;;10687:30;10753:34;10748:2;10733:18;;10726:62;-1:-1:-1;;;10819:2:1;10804:18;;10797:35;10864:3;10849:19;;10647:227::o;10879:413::-;11081:2;11063:21;;;11120:2;11100:18;;;11093:30;11159:34;11154:2;11139:18;;11132:62;-1:-1:-1;;;11225:2:1;11210:18;;11203:47;11282:3;11267:19;;11053:239::o;11297:347::-;11499:2;11481:21;;;11538:2;11518:18;;;11511:30;11577:25;11572:2;11557:18;;11550:53;11635:2;11620:18;;11471:173::o;11649:336::-;11851:2;11833:21;;;11890:2;11870:18;;;11863:30;-1:-1:-1;;;11924:2:1;11909:18;;11902:42;11976:2;11961:18;;11823:162::o;11990:348::-;12192:2;12174:21;;;12231:2;12211:18;;;12204:30;12270:26;12265:2;12250:18;;12243:54;12329:2;12314:18;;12164:174::o;12343:340::-;12545:2;12527:21;;;12584:2;12564:18;;;12557:30;-1:-1:-1;;;12618:2:1;12603:18;;12596:46;12674:2;12659:18;;12517:166::o;12688:421::-;12890:2;12872:21;;;12929:2;12909:18;;;12902:30;12968:34;12963:2;12948:18;;12941:62;13039:27;13034:2;13019:18;;13012:55;13099:3;13084:19;;12862:247::o;13114:407::-;13316:2;13298:21;;;13355:2;13335:18;;;13328:30;13394:34;13389:2;13374:18;;13367:62;-1:-1:-1;;;13460:2:1;13445:18;;13438:41;13511:3;13496:19;;13288:233::o;13526:342::-;13728:2;13710:21;;;13767:2;13747:18;;;13740:30;-1:-1:-1;;;13801:2:1;13786:18;;13779:48;13859:2;13844:18;;13700:168::o;13873:402::-;14075:2;14057:21;;;14114:2;14094:18;;;14087:30;14153:34;14148:2;14133:18;;14126:62;-1:-1:-1;;;14219:2:1;14204:18;;14197:36;14265:3;14250:19;;14047:228::o;14280:356::-;14482:2;14464:21;;;14501:18;;;14494:30;14560:34;14555:2;14540:18;;14533:62;14627:2;14612:18;;14454:182::o;14641:411::-;14843:2;14825:21;;;14882:2;14862:18;;;14855:30;14921:34;14916:2;14901:18;;14894:62;-1:-1:-1;;;14987:2:1;14972:18;;14965:45;15042:3;15027:19;;14815:237::o;15057:350::-;15259:2;15241:21;;;15298:2;15278:18;;;15271:30;15337:28;15332:2;15317:18;;15310:56;15398:2;15383:18;;15231:176::o;15412:414::-;15614:2;15596:21;;;15653:2;15633:18;;;15626:30;15692:34;15687:2;15672:18;;15665:62;-1:-1:-1;;;15758:2:1;15743:18;;15736:48;15816:3;15801:19;;15586:240::o;15831:398::-;16033:2;16015:21;;;16072:2;16052:18;;;16045:30;16111:34;16106:2;16091:18;;16084:62;-1:-1:-1;;;16177:2:1;16162:18;;16155:32;16219:3;16204:19;;16005:224::o;16234:398::-;16436:2;16418:21;;;16475:2;16455:18;;;16448:30;16514:34;16509:2;16494:18;;16487:62;-1:-1:-1;;;16580:2:1;16565:18;;16558:32;16622:3;16607:19;;16408:224::o;16637:415::-;16839:2;16821:21;;;16878:2;16858:18;;;16851:30;16917:34;16912:2;16897:18;;16890:62;-1:-1:-1;;;16983:2:1;16968:18;;16961:49;17042:3;17027:19;;16811:241::o;17057:353::-;17259:2;17241:21;;;17298:2;17278:18;;;17271:30;17337:31;17332:2;17317:18;;17310:59;17401:2;17386:18;;17231:179::o;17415:355::-;17617:2;17599:21;;;17656:2;17636:18;;;17629:30;17695:33;17690:2;17675:18;;17668:61;17761:2;17746:18;;17589:181::o;17775:397::-;17977:2;17959:21;;;18016:2;17996:18;;;17989:30;18055:34;18050:2;18035:18;;18028:62;-1:-1:-1;;;18121:2:1;18106:18;;18099:31;18162:3;18147:19;;17949:223::o;18177:346::-;18379:2;18361:21;;;18418:2;18398:18;;;18391:30;-1:-1:-1;;;18452:2:1;18437:18;;18430:52;18514:2;18499:18;;18351:172::o;18528:410::-;18730:2;18712:21;;;18769:2;18749:18;;;18742:30;18808:34;18803:2;18788:18;;18781:62;-1:-1:-1;;;18874:2:1;18859:18;;18852:44;18928:3;18913:19;;18702:236::o;18943:411::-;19145:2;19127:21;;;19184:2;19164:18;;;19157:30;19223:34;19218:2;19203:18;;19196:62;-1:-1:-1;;;19289:2:1;19274:18;;19267:45;19344:3;19329:19;;19117:237::o;19359:409::-;19561:2;19543:21;;;19600:2;19580:18;;;19573:30;19639:34;19634:2;19619:18;;19612:62;-1:-1:-1;;;19705:2:1;19690:18;;19683:43;19758:3;19743:19;;19533:235::o;19773:398::-;19975:2;19957:21;;;20014:2;19994:18;;;19987:30;20053:34;20048:2;20033:18;;20026:62;-1:-1:-1;;;20119:2:1;20104:18;;20097:32;20161:3;20146:19;;19947:224::o;20176:425::-;20378:2;20360:21;;;20417:2;20397:18;;;20390:30;20456:34;20451:2;20436:18;;20429:62;20527:31;20522:2;20507:18;;20500:59;20591:3;20576:19;;20350:251::o;20606:177::-;20752:25;;;20740:2;20725:18;;20707:76::o;20788:275::-;20859:2;20853:9;20924:2;20905:13;;-1:-1:-1;;20901:27:1;20889:40;;20959:18;20944:34;;20980:22;;;20941:62;20938:2;;;21006:18;;:::i;:::-;21042:2;21035:22;20833:230;;-1:-1:-1;20833:230:1:o;21068:253::-;;-1:-1:-1;;;;;21197:2:1;21194:1;21190:10;21227:2;21224:1;21220:10;21258:3;21254:2;21250:12;21245:3;21242:21;21239:2;;;21266:18;;:::i;21326:128::-;;21397:1;21393:6;21390:1;21387:13;21384:2;;;21403:18;;:::i;:::-;-1:-1:-1;21439:9:1;;21374:80::o;21459:120::-;;21525:1;21515:2;;21530:18;;:::i;:::-;-1:-1:-1;21564:9:1;;21505:74::o;21584:168::-;;21690:1;21686;21682:6;21678:14;21675:1;21672:21;21667:1;21660:9;21653:17;21649:45;21646:2;;;21697:18;;:::i;:::-;-1:-1:-1;21737:9:1;;21636:116::o;21757:246::-;;-1:-1:-1;;;;;21910:10:1;;;;21880;;21932:12;;;21929:2;;;21947:18;;:::i;:::-;21984:13;;21806:197;-1:-1:-1;;;21806:197:1:o;22008:125::-;;22076:1;22073;22070:8;22067:2;;;22081:18;;:::i;:::-;-1:-1:-1;22118:9:1;;22057:76::o;22138:258::-;22210:1;22220:113;22234:6;22231:1;22228:13;22220:113;;;22310:11;;;22304:18;22291:11;;;22284:39;22256:2;22249:10;22220:113;;;22351:6;22348:1;22345:13;22342:2;;;-1:-1:-1;;22386:1:1;22368:16;;22361:27;22191:205::o;22401:136::-;;22468:5;22458:2;;22477:18;;:::i;:::-;-1:-1:-1;;;22513:18:1;;22448:89::o;22542:380::-;22627:1;22617:12;;22674:1;22664:12;;;22685:2;;22739:4;22731:6;22727:17;22717:27;;22685:2;22792;22784:6;22781:14;22761:18;22758:38;22755:2;;;22838:10;22833:3;22829:20;22826:1;22819:31;22873:4;22870:1;22863:15;22901:4;22898:1;22891:15;22927:135;;-1:-1:-1;;22987:17:1;;22984:2;;;23007:18;;:::i;:::-;-1:-1:-1;23054:1:1;23043:13;;22974:88::o;23067:112::-;;23125:1;23115:2;;23130:18;;:::i;:::-;-1:-1:-1;23164:9:1;;23105:74::o;23184:127::-;23245:10;23240:3;23236:20;23233:1;23226:31;23276:4;23273:1;23266:15;23300:4;23297:1;23290:15;23316:127;23377:10;23372:3;23368:20;23365:1;23358:31;23408:4;23405:1;23398:15;23432:4;23429:1;23422:15;23448:127;23509:10;23504:3;23500:20;23497:1;23490:31;23540:4;23537:1;23530:15;23564:4;23561:1;23554:15;23580:133;-1:-1:-1;;;;;;23656:32:1;;23646:43;;23636:2;;23703:1;23700;23693:12

Swarm Source

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