ETH Price: $3,519.16 (+0.93%)
Gas: 2 Gwei

Token

Rising Asian Ape Club (RAAC)
 

Overview

Max Total Supply

175 RAAC

Holders

41

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 RAAC
0x44fbae5935520647eb98115e1c2f09a0d642e2b7
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:
RisingAsianApeClub

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-12
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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

library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

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

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

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

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

contract RisingAsianApeClub is Ownable, ERC721A, ReentrancyGuard {
    using Strings for uint256;

    mapping(uint256 => string) private _tokenURIs;
    bool public publicSaleOpen = true;
    string private baseURI = "";
    string public _extension = "";
    uint256 public price = 0.1 ether;
    address public dev_address = 0x1FfC92a1A754810EaEc08cA79fCf40505a3a6Ae2;
    uint256 public adoptionLimit = 6;
    uint256 public maxSupply = 1054;
    constructor() 
        ERC721A("Rising Asian Ape Club", "RAAC", 20, maxSupply) 
    {}

    function mintNFT(uint256 _quantity) public payable {
        require(_quantity > 0 && _quantity <= 6, "Wrong Quantity.");
        require(totalSupply() + _quantity < maxSupply, "Reaching max supply");
        require(msg.value == price * _quantity, "Needs to send more eth");
        require(publicSaleOpen, "Public Sale Not Started Yet!");
        require(getMintedCount(msg.sender) + _quantity <= adoptionLimit, "Exceed max adoption amount");

        _safeMint(msg.sender, _quantity);

    }

    function sendGifts(address[] memory _wallets) external onlyOwner{
        require(totalSupply() + _wallets.length < maxSupply, "Max Supply Reached.");
        for(uint i = 0; i < _wallets.length; i++)
            _safeMint(_wallets[i], 1);

    }
   function sendGiftsToWallet(address _wallet, uint256 _num) external onlyOwner{
               require(totalSupply() + _num < maxSupply, "Max Supply Reached.");
            _safeMint(_wallet, _num);
    }


    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI set of nonexistent token"
        );

        return string(abi.encodePacked(baseURI, _tokenId.toString(), _extension));

    }

    function setAdoptionlimit(uint256 _temp) public onlyOwner() {
        adoptionLimit = _temp;
    }
    function updateBaseURI(string memory _newBaseURI) onlyOwner public {
        baseURI = _newBaseURI;
    }
    function updateExtension(string memory _temp) onlyOwner public {
        _extension = _temp;
    }

    function getBaseURI() external view returns(string memory) {
        return baseURI;
    }

    function setPrice(uint256 _price) public onlyOwner() {
        price = _price;
    }

    function setmaxSupply(uint256 _supply) public onlyOwner() {
        require(_supply > maxSupply, "Provide a valid supply i.e. greater than current supply and less than/equal to max supply");
        maxSupply = _supply;
    }

    function toggleSale() public onlyOwner() {
        publicSaleOpen = !publicSaleOpen;
    }

    function getBalance() public view returns(uint) {
        return address(this).balance;
    }

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

    function change_dev_address(address _temp) external {
        require(msg.sender == dev_address, "You are not dev.");
        dev_address = _temp;
    } 

    function withdraw() external onlyOwner {
        uint _balance = address(this).balance;
        payable(dev_address).transfer(_balance * 5 / 100); //dev
        payable(owner()).transfer(_balance * 95 / 100); //Owner
    }

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

    receive() external payable {}

}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_extension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"adoptionLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_temp","type":"address"}],"name":"change_dev_address","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dev_address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintNFT","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":[],"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"}],"name":"sendGifts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"sendGiftsToWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_temp","type":"uint256"}],"name":"setAdoptionlimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setmaxSupply","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":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_temp","type":"string"}],"name":"updateExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

600060018181556008829055600b805460ff1916909117905560e0604081905260c08290526200003391600c919062000277565b506040805160208101918290526000908190526200005491600d9162000277565b5067016345785d8a0000600e55600f80546001600160a01b031916731ffc92a1a754810eaec08ca79fcf40505a3a6ae2179055600660105561041e6011553480156200009f57600080fd5b506040518060400160405280601581526020017f526973696e6720417369616e2041706520436c75620000000000000000000000815250604051806040016040528060048152602001635241414360e01b8152506014601154620001126200010c6200022360201b60201c565b62000227565b600081116200017f5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001e15760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000176565b8351620001f690600290602087019062000277565b5082516200020c90600390602086019062000277565b5060a091909152608052505060016009556200035a565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b82805462000285906200031d565b90600052602060002090601f016020900481019282620002a95760008555620002f4565b82601f10620002c457805160ff1916838001178555620002f4565b82800160010185558215620002f4579182015b82811115620002f4578251825591602001919060010190620002d7565b506200030292915062000306565b5090565b5b8082111562000302576000815560010162000307565b600181811c908216806200033257607f821691505b602082108114156200035457634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516129816200038b60003960008181611a9b01528181611ac50152611f940152600050506129816000f3fe60806040526004361061024a5760003560e01c80637e6182d911610139578063a22cb465116100b6578063d7224ba01161007a578063d7224ba0146106a2578063e198efdc146106b8578063e917a28c146106d8578063e985e9c5146106ee578063f2fde38b14610737578063f9e237991461075757600080fd5b8063a22cb4651461060c578063b88d4fde1461062c578063c87b56dd1461064c578063d1f919ed1461066c578063d5abeb011461068c57600080fd5b806392642744116100fd578063926427441461058e578063931688cb146105a157806395d89b41146105c157806397d6696b146105d6578063a035b1fe146105f657600080fd5b80637e6182d9146104c2578063876f2390146104e25780638da5cb5b1461050257806391b7f5ed146105205780639231ab2a1461054057600080fd5b80633ccfd60b116101c7578063714c53981161018b578063714c539814610443578063715018a6146104585780637abb8efb1461046d5780637c8255db1461048d5780637d8966e4146104ad57600080fd5b80633ccfd60b146103ae57806342842e0e146103c35780634f6ccce7146103e35780636352211e1461040357806370a082311461042357600080fd5b806318160ddd1161020e57806318160ddd14610324578063228025e81461033957806323b872dd146103595780632f745c59146103795780633ae1dd9d1461039957600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e557806312065fe01461030757600080fd5b3661025157005b600080fd5b34801561026257600080fd5b506102766102713660046124dd565b610771565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06107de565b60405161028291906126af565b3480156102b957600080fd5b506102cd6102c8366004612560565b610870565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b506103056103003660046123ff565b610900565b005b34801561031357600080fd5b50475b604051908152602001610282565b34801561033057600080fd5b50600154610316565b34801561034557600080fd5b50610305610354366004612560565b610a18565b34801561036557600080fd5b5061030561037436600461230b565b610ae4565b34801561038557600080fd5b506103166103943660046123ff565b610aef565b3480156103a557600080fd5b506102a0610c68565b3480156103ba57600080fd5b50610305610cf6565b3480156103cf57600080fd5b506103056103de36600461230b565b610dc3565b3480156103ef57600080fd5b506103166103fe366004612560565b610dde565b34801561040f57600080fd5b506102cd61041e366004612560565b610e47565b34801561042f57600080fd5b5061031661043e3660046122b6565b610e59565b34801561044f57600080fd5b506102a0610eea565b34801561046457600080fd5b50610305610ef9565b34801561047957600080fd5b50600f546102cd906001600160a01b031681565b34801561049957600080fd5b506103056104a8366004612429565b610f2f565b3480156104b957600080fd5b50610305610ff0565b3480156104ce57600080fd5b506103056104dd366004612517565b61102e565b3480156104ee57600080fd5b506103056104fd366004612560565b61106b565b34801561050e57600080fd5b506000546001600160a01b03166102cd565b34801561052c57600080fd5b5061030561053b366004612560565b61109a565b34801561054c57600080fd5b5061056061055b366004612560565b6110c9565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610282565b61030561059c366004612560565b6110e6565b3480156105ad57600080fd5b506103056105bc366004612517565b6112a8565b3480156105cd57600080fd5b506102a06112e5565b3480156105e257600080fd5b506103166105f13660046122b6565b6112f4565b34801561060257600080fd5b50610316600e5481565b34801561061857600080fd5b506103056106273660046123c3565b6112ff565b34801561063857600080fd5b50610305610647366004612347565b6113c4565b34801561065857600080fd5b506102a0610667366004612560565b6113fd565b34801561067857600080fd5b506103056106873660046123ff565b6114a0565b34801561069857600080fd5b5061031660115481565b3480156106ae57600080fd5b5061031660085481565b3480156106c457600080fd5b506103056106d33660046122b6565b61152e565b3480156106e457600080fd5b5061031660105481565b3480156106fa57600080fd5b506102766107093660046122d8565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561074357600080fd5b506103056107523660046122b6565b61159d565b34801561076357600080fd5b50600b546102769060ff1681565b60006001600160e01b031982166380ac58cd60e01b14806107a257506001600160e01b03198216635b5e139f60e01b145b806107bd57506001600160e01b0319821663780e9d6360e01b145b806107d857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107ed90612873565b80601f016020809104026020016040519081016040528092919081815260200182805461081990612873565b80156108665780601f1061083b57610100808354040283529160200191610866565b820191906000526020600020905b81548152906001019060200180831161084957829003601f168201915b5050505050905090565b600061087d826001541190565b6108e45760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061090b82610e47565b9050806001600160a01b0316836001600160a01b0316141561097a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108db565b336001600160a01b038216148061099657506109968133610709565b610a085760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108db565b610a13838383611635565b505050565b6000546001600160a01b03163314610a425760405162461bcd60e51b81526004016108db906126c2565b6011548111610adf5760405162461bcd60e51b815260206004820152605960248201527f50726f7669646520612076616c696420737570706c7920692e652e206772656160448201527f746572207468616e2063757272656e7420737570706c7920616e64206c65737360648201527f207468616e2f657175616c20746f206d617820737570706c7900000000000000608482015260a4016108db565b601155565b610a13838383611691565b6000610afa83610e59565b8210610b535760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108db565b6000610b5e60015490565b905060008060005b83811015610c08576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610bb957805192505b876001600160a01b0316836001600160a01b03161415610bf55786841415610be7575093506107d892505050565b83610bf1816128ae565b9450505b5080610c00816128ae565b915050610b66565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108db565b600d8054610c7590612873565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca190612873565b8015610cee5780601f10610cc357610100808354040283529160200191610cee565b820191906000526020600020905b815481529060010190602001808311610cd157829003601f168201915b505050505081565b6000546001600160a01b03163314610d205760405162461bcd60e51b81526004016108db906126c2565b600f5447906001600160a01b03166108fc6064610d3e8460056127d2565b610d4891906127be565b6040518115909202916000818181858888f19350505050158015610d70573d6000803e3d6000fd5b506000546001600160a01b03166108fc6064610d8d84605f6127d2565b610d9791906127be565b6040518115909202916000818181858888f19350505050158015610dbf573d6000803e3d6000fd5b5050565b610a13838383604051806020016040528060008152506113c4565b6000610de960015490565b8210610e435760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108db565b5090565b6000610e5282611a19565b5192915050565b60006001600160a01b038216610ec55760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108db565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6060600c80546107ed90612873565b6000546001600160a01b03163314610f235760405162461bcd60e51b81526004016108db906126c2565b610f2d6000611bc3565b565b6000546001600160a01b03163314610f595760405162461bcd60e51b81526004016108db906126c2565b6011548151600154610f6b91906127a6565b10610fae5760405162461bcd60e51b815260206004820152601360248201527226b0bc1029bab838363c902932b0b1b432b21760691b60448201526064016108db565b60005b8151811015610dbf57610fde828281518110610fcf57610fcf612909565b60200260200101516001611c13565b80610fe8816128ae565b915050610fb1565b6000546001600160a01b0316331461101a5760405162461bcd60e51b81526004016108db906126c2565b600b805460ff19811660ff90911615179055565b6000546001600160a01b031633146110585760405162461bcd60e51b81526004016108db906126c2565b8051610dbf90600d9060208401906121b2565b6000546001600160a01b031633146110955760405162461bcd60e51b81526004016108db906126c2565b601055565b6000546001600160a01b031633146110c45760405162461bcd60e51b81526004016108db906126c2565b600e55565b60408051808201909152600080825260208201526107d882611a19565b6000811180156110f7575060068111155b6111355760405162461bcd60e51b815260206004820152600f60248201526e2bb937b7339028bab0b73a34ba3c9760891b60448201526064016108db565b6011548161114260015490565b61114c91906127a6565b1061118f5760405162461bcd60e51b81526020600482015260136024820152725265616368696e67206d617820737570706c7960681b60448201526064016108db565b80600e5461119d91906127d2565b34146111e45760405162461bcd60e51b815260206004820152601660248201527509ccacac8e640e8de40e6cadcc840dadee4ca40cae8d60531b60448201526064016108db565b600b5460ff166112365760405162461bcd60e51b815260206004820152601c60248201527f5075626c69632053616c65204e6f74205374617274656420596574210000000060448201526064016108db565b60105481611243336112f4565b61124d91906127a6565b111561129b5760405162461bcd60e51b815260206004820152601a60248201527f457863656564206d61782061646f7074696f6e20616d6f756e7400000000000060448201526064016108db565b6112a53382611c13565b50565b6000546001600160a01b031633146112d25760405162461bcd60e51b81526004016108db906126c2565b8051610dbf90600c9060208401906121b2565b6060600380546107ed90612873565b60006107d882611c2d565b6001600160a01b0382163314156113585760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108db565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113cf848484611691565b6113db84848484611ccb565b6113f75760405162461bcd60e51b81526004016108db906126f7565b50505050565b606061140a826001541190565b61146b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108db565b600c61147683611dd9565b600d60405160200161148a9392919061263f565b6040516020818303038152906040529050919050565b6000546001600160a01b031633146114ca5760405162461bcd60e51b81526004016108db906126c2565b601154816114d760015490565b6114e191906127a6565b106115245760405162461bcd60e51b815260206004820152601360248201527226b0bc1029bab838363c902932b0b1b432b21760691b60448201526064016108db565b610dbf8282611c13565b600f546001600160a01b0316331461157b5760405162461bcd60e51b815260206004820152601060248201526f2cb7ba9030b932903737ba103232bb1760811b60448201526064016108db565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146115c75760405162461bcd60e51b81526004016108db906126c2565b6001600160a01b03811661162c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108db565b6112a581611bc3565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061169c82611a19565b80519091506000906001600160a01b0316336001600160a01b031614806116d35750336116c884610870565b6001600160a01b0316145b806116e5575081516116e59033610709565b90508061174f5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108db565b846001600160a01b031682600001516001600160a01b0316146117c35760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108db565b6001600160a01b0384166118275760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108db565b6118376000848460000151611635565b6001600160a01b03851660009081526005602052604081208054600192906118699084906001600160801b03166127f1565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260056020526040812080546001945090926118b59185911661277b565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561193d8460016127a6565b6000818152600460205260409020549091506001600160a01b03166119cf57611967816001541190565b156119cf5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611a38826001541190565b611a975760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108db565b60007f00000000000000000000000000000000000000000000000000000000000000008310611af857611aea7f000000000000000000000000000000000000000000000000000000000000000084612819565b611af59060016127a6565b90505b825b818110611b62576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b4f57949350505050565b5080611b5a8161285c565b915050611afa565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016108db565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610dbf828260405180602001604052806000815250611ed7565b60006001600160a01b038216611c9f5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016108db565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b60006001600160a01b0384163b15611dcd57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d0f903390899088908890600401612672565b602060405180830381600087803b158015611d2957600080fd5b505af1925050508015611d59575060408051601f3d908101601f19168201909252611d56918101906124fa565b60015b611db3573d808015611d87576040519150601f19603f3d011682016040523d82523d6000602084013e611d8c565b606091505b508051611dab5760405162461bcd60e51b81526004016108db906126f7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611dd1565b5060015b949350505050565b606081611dfd5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e275780611e11816128ae565b9150611e209050600a836127be565b9150611e01565b60008167ffffffffffffffff811115611e4257611e4261291f565b6040519080825280601f01601f191660200182016040528015611e6c576020820181803683370190505b5090505b8415611dd157611e81600183612819565b9150611e8e600a866128c9565b611e999060306127a6565b60f81b818381518110611eae57611eae612909565b60200101906001600160f81b031916908160001a905350611ed0600a866127be565b9450611e70565b6001546001600160a01b038416611f3a5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108db565b611f45816001541190565b15611f925760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108db565b7f000000000000000000000000000000000000000000000000000000000000000083111561200d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016108db565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061206990879061277b565b6001600160801b03168152602001858360200151612087919061277b565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156121a75760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461216b6000888488611ccb565b6121875760405162461bcd60e51b81526004016108db906126f7565b81612191816128ae565b925050808061219f906128ae565b91505061211e565b506001819055611a11565b8280546121be90612873565b90600052602060002090601f0160209004810192826121e05760008555612226565b82601f106121f957805160ff1916838001178555612226565b82800160010185558215612226579182015b8281111561222657825182559160200191906001019061220b565b50610e439291505b80821115610e43576000815560010161222e565b600067ffffffffffffffff83111561225c5761225c61291f565b61226f601f8401601f191660200161274a565b905082815283838301111561228357600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146122b157600080fd5b919050565b6000602082840312156122c857600080fd5b6122d18261229a565b9392505050565b600080604083850312156122eb57600080fd5b6122f48361229a565b91506123026020840161229a565b90509250929050565b60008060006060848603121561232057600080fd5b6123298461229a565b92506123376020850161229a565b9150604084013590509250925092565b6000806000806080858703121561235d57600080fd5b6123668561229a565b93506123746020860161229a565b925060408501359150606085013567ffffffffffffffff81111561239757600080fd5b8501601f810187136123a857600080fd5b6123b787823560208401612242565b91505092959194509250565b600080604083850312156123d657600080fd5b6123df8361229a565b9150602083013580151581146123f457600080fd5b809150509250929050565b6000806040838503121561241257600080fd5b61241b8361229a565b946020939093013593505050565b6000602080838503121561243c57600080fd5b823567ffffffffffffffff8082111561245457600080fd5b818501915085601f83011261246857600080fd5b81358181111561247a5761247a61291f565b8060051b915061248b84830161274a565b8181528481019084860184860187018a10156124a657600080fd5b600095505b838610156124d0576124bc8161229a565b8352600195909501949186019186016124ab565b5098975050505050505050565b6000602082840312156124ef57600080fd5b81356122d181612935565b60006020828403121561250c57600080fd5b81516122d181612935565b60006020828403121561252957600080fd5b813567ffffffffffffffff81111561254057600080fd5b8201601f8101841361255157600080fd5b611dd184823560208401612242565b60006020828403121561257257600080fd5b5035919050565b60008151808452612591816020860160208601612830565b601f01601f19169290920160200192915050565b8054600090600181811c90808316806125bf57607f831692505b60208084108214156125e157634e487b7160e01b600052602260045260246000fd5b8180156125f5576001811461260657612633565b60ff19861689528489019650612633565b60008881526020902060005b8681101561262b5781548b820152908501908301612612565b505084890196505b50505050505092915050565b600061264b82866125a5565b845161265b818360208901612830565b612667818301866125a5565b979650505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126a590830184612579565b9695505050505050565b6020815260006122d16020830184612579565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156127735761277361291f565b604052919050565b60006001600160801b0380831681851680830382111561279d5761279d6128dd565b01949350505050565b600082198211156127b9576127b96128dd565b500190565b6000826127cd576127cd6128f3565b500490565b60008160001904831182151516156127ec576127ec6128dd565b500290565b60006001600160801b0383811690831681811015612811576128116128dd565b039392505050565b60008282101561282b5761282b6128dd565b500390565b60005b8381101561284b578181015183820152602001612833565b838111156113f75750506000910152565b60008161286b5761286b6128dd565b506000190190565b600181811c9082168061288757607f821691505b602082108114156128a857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128c2576128c26128dd565b5060010190565b6000826128d8576128d86128f3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146112a557600080fdfea2646970667358221220aa04d7ad634faa23783c26800f6eaee46c9b1576105689e9578c23f245fee08464736f6c63430008070033

Deployed Bytecode

0x60806040526004361061024a5760003560e01c80637e6182d911610139578063a22cb465116100b6578063d7224ba01161007a578063d7224ba0146106a2578063e198efdc146106b8578063e917a28c146106d8578063e985e9c5146106ee578063f2fde38b14610737578063f9e237991461075757600080fd5b8063a22cb4651461060c578063b88d4fde1461062c578063c87b56dd1461064c578063d1f919ed1461066c578063d5abeb011461068c57600080fd5b806392642744116100fd578063926427441461058e578063931688cb146105a157806395d89b41146105c157806397d6696b146105d6578063a035b1fe146105f657600080fd5b80637e6182d9146104c2578063876f2390146104e25780638da5cb5b1461050257806391b7f5ed146105205780639231ab2a1461054057600080fd5b80633ccfd60b116101c7578063714c53981161018b578063714c539814610443578063715018a6146104585780637abb8efb1461046d5780637c8255db1461048d5780637d8966e4146104ad57600080fd5b80633ccfd60b146103ae57806342842e0e146103c35780634f6ccce7146103e35780636352211e1461040357806370a082311461042357600080fd5b806318160ddd1161020e57806318160ddd14610324578063228025e81461033957806323b872dd146103595780632f745c59146103795780633ae1dd9d1461039957600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e557806312065fe01461030757600080fd5b3661025157005b600080fd5b34801561026257600080fd5b506102766102713660046124dd565b610771565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06107de565b60405161028291906126af565b3480156102b957600080fd5b506102cd6102c8366004612560565b610870565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b506103056103003660046123ff565b610900565b005b34801561031357600080fd5b50475b604051908152602001610282565b34801561033057600080fd5b50600154610316565b34801561034557600080fd5b50610305610354366004612560565b610a18565b34801561036557600080fd5b5061030561037436600461230b565b610ae4565b34801561038557600080fd5b506103166103943660046123ff565b610aef565b3480156103a557600080fd5b506102a0610c68565b3480156103ba57600080fd5b50610305610cf6565b3480156103cf57600080fd5b506103056103de36600461230b565b610dc3565b3480156103ef57600080fd5b506103166103fe366004612560565b610dde565b34801561040f57600080fd5b506102cd61041e366004612560565b610e47565b34801561042f57600080fd5b5061031661043e3660046122b6565b610e59565b34801561044f57600080fd5b506102a0610eea565b34801561046457600080fd5b50610305610ef9565b34801561047957600080fd5b50600f546102cd906001600160a01b031681565b34801561049957600080fd5b506103056104a8366004612429565b610f2f565b3480156104b957600080fd5b50610305610ff0565b3480156104ce57600080fd5b506103056104dd366004612517565b61102e565b3480156104ee57600080fd5b506103056104fd366004612560565b61106b565b34801561050e57600080fd5b506000546001600160a01b03166102cd565b34801561052c57600080fd5b5061030561053b366004612560565b61109a565b34801561054c57600080fd5b5061056061055b366004612560565b6110c9565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610282565b61030561059c366004612560565b6110e6565b3480156105ad57600080fd5b506103056105bc366004612517565b6112a8565b3480156105cd57600080fd5b506102a06112e5565b3480156105e257600080fd5b506103166105f13660046122b6565b6112f4565b34801561060257600080fd5b50610316600e5481565b34801561061857600080fd5b506103056106273660046123c3565b6112ff565b34801561063857600080fd5b50610305610647366004612347565b6113c4565b34801561065857600080fd5b506102a0610667366004612560565b6113fd565b34801561067857600080fd5b506103056106873660046123ff565b6114a0565b34801561069857600080fd5b5061031660115481565b3480156106ae57600080fd5b5061031660085481565b3480156106c457600080fd5b506103056106d33660046122b6565b61152e565b3480156106e457600080fd5b5061031660105481565b3480156106fa57600080fd5b506102766107093660046122d8565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561074357600080fd5b506103056107523660046122b6565b61159d565b34801561076357600080fd5b50600b546102769060ff1681565b60006001600160e01b031982166380ac58cd60e01b14806107a257506001600160e01b03198216635b5e139f60e01b145b806107bd57506001600160e01b0319821663780e9d6360e01b145b806107d857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107ed90612873565b80601f016020809104026020016040519081016040528092919081815260200182805461081990612873565b80156108665780601f1061083b57610100808354040283529160200191610866565b820191906000526020600020905b81548152906001019060200180831161084957829003601f168201915b5050505050905090565b600061087d826001541190565b6108e45760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061090b82610e47565b9050806001600160a01b0316836001600160a01b0316141561097a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108db565b336001600160a01b038216148061099657506109968133610709565b610a085760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108db565b610a13838383611635565b505050565b6000546001600160a01b03163314610a425760405162461bcd60e51b81526004016108db906126c2565b6011548111610adf5760405162461bcd60e51b815260206004820152605960248201527f50726f7669646520612076616c696420737570706c7920692e652e206772656160448201527f746572207468616e2063757272656e7420737570706c7920616e64206c65737360648201527f207468616e2f657175616c20746f206d617820737570706c7900000000000000608482015260a4016108db565b601155565b610a13838383611691565b6000610afa83610e59565b8210610b535760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108db565b6000610b5e60015490565b905060008060005b83811015610c08576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610bb957805192505b876001600160a01b0316836001600160a01b03161415610bf55786841415610be7575093506107d892505050565b83610bf1816128ae565b9450505b5080610c00816128ae565b915050610b66565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108db565b600d8054610c7590612873565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca190612873565b8015610cee5780601f10610cc357610100808354040283529160200191610cee565b820191906000526020600020905b815481529060010190602001808311610cd157829003601f168201915b505050505081565b6000546001600160a01b03163314610d205760405162461bcd60e51b81526004016108db906126c2565b600f5447906001600160a01b03166108fc6064610d3e8460056127d2565b610d4891906127be565b6040518115909202916000818181858888f19350505050158015610d70573d6000803e3d6000fd5b506000546001600160a01b03166108fc6064610d8d84605f6127d2565b610d9791906127be565b6040518115909202916000818181858888f19350505050158015610dbf573d6000803e3d6000fd5b5050565b610a13838383604051806020016040528060008152506113c4565b6000610de960015490565b8210610e435760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108db565b5090565b6000610e5282611a19565b5192915050565b60006001600160a01b038216610ec55760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108db565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6060600c80546107ed90612873565b6000546001600160a01b03163314610f235760405162461bcd60e51b81526004016108db906126c2565b610f2d6000611bc3565b565b6000546001600160a01b03163314610f595760405162461bcd60e51b81526004016108db906126c2565b6011548151600154610f6b91906127a6565b10610fae5760405162461bcd60e51b815260206004820152601360248201527226b0bc1029bab838363c902932b0b1b432b21760691b60448201526064016108db565b60005b8151811015610dbf57610fde828281518110610fcf57610fcf612909565b60200260200101516001611c13565b80610fe8816128ae565b915050610fb1565b6000546001600160a01b0316331461101a5760405162461bcd60e51b81526004016108db906126c2565b600b805460ff19811660ff90911615179055565b6000546001600160a01b031633146110585760405162461bcd60e51b81526004016108db906126c2565b8051610dbf90600d9060208401906121b2565b6000546001600160a01b031633146110955760405162461bcd60e51b81526004016108db906126c2565b601055565b6000546001600160a01b031633146110c45760405162461bcd60e51b81526004016108db906126c2565b600e55565b60408051808201909152600080825260208201526107d882611a19565b6000811180156110f7575060068111155b6111355760405162461bcd60e51b815260206004820152600f60248201526e2bb937b7339028bab0b73a34ba3c9760891b60448201526064016108db565b6011548161114260015490565b61114c91906127a6565b1061118f5760405162461bcd60e51b81526020600482015260136024820152725265616368696e67206d617820737570706c7960681b60448201526064016108db565b80600e5461119d91906127d2565b34146111e45760405162461bcd60e51b815260206004820152601660248201527509ccacac8e640e8de40e6cadcc840dadee4ca40cae8d60531b60448201526064016108db565b600b5460ff166112365760405162461bcd60e51b815260206004820152601c60248201527f5075626c69632053616c65204e6f74205374617274656420596574210000000060448201526064016108db565b60105481611243336112f4565b61124d91906127a6565b111561129b5760405162461bcd60e51b815260206004820152601a60248201527f457863656564206d61782061646f7074696f6e20616d6f756e7400000000000060448201526064016108db565b6112a53382611c13565b50565b6000546001600160a01b031633146112d25760405162461bcd60e51b81526004016108db906126c2565b8051610dbf90600c9060208401906121b2565b6060600380546107ed90612873565b60006107d882611c2d565b6001600160a01b0382163314156113585760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108db565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113cf848484611691565b6113db84848484611ccb565b6113f75760405162461bcd60e51b81526004016108db906126f7565b50505050565b606061140a826001541190565b61146b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108db565b600c61147683611dd9565b600d60405160200161148a9392919061263f565b6040516020818303038152906040529050919050565b6000546001600160a01b031633146114ca5760405162461bcd60e51b81526004016108db906126c2565b601154816114d760015490565b6114e191906127a6565b106115245760405162461bcd60e51b815260206004820152601360248201527226b0bc1029bab838363c902932b0b1b432b21760691b60448201526064016108db565b610dbf8282611c13565b600f546001600160a01b0316331461157b5760405162461bcd60e51b815260206004820152601060248201526f2cb7ba9030b932903737ba103232bb1760811b60448201526064016108db565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146115c75760405162461bcd60e51b81526004016108db906126c2565b6001600160a01b03811661162c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108db565b6112a581611bc3565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061169c82611a19565b80519091506000906001600160a01b0316336001600160a01b031614806116d35750336116c884610870565b6001600160a01b0316145b806116e5575081516116e59033610709565b90508061174f5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108db565b846001600160a01b031682600001516001600160a01b0316146117c35760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108db565b6001600160a01b0384166118275760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108db565b6118376000848460000151611635565b6001600160a01b03851660009081526005602052604081208054600192906118699084906001600160801b03166127f1565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260056020526040812080546001945090926118b59185911661277b565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561193d8460016127a6565b6000818152600460205260409020549091506001600160a01b03166119cf57611967816001541190565b156119cf5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611a38826001541190565b611a975760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108db565b60007f00000000000000000000000000000000000000000000000000000000000000148310611af857611aea7f000000000000000000000000000000000000000000000000000000000000001484612819565b611af59060016127a6565b90505b825b818110611b62576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b4f57949350505050565b5080611b5a8161285c565b915050611afa565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016108db565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610dbf828260405180602001604052806000815250611ed7565b60006001600160a01b038216611c9f5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016108db565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b60006001600160a01b0384163b15611dcd57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d0f903390899088908890600401612672565b602060405180830381600087803b158015611d2957600080fd5b505af1925050508015611d59575060408051601f3d908101601f19168201909252611d56918101906124fa565b60015b611db3573d808015611d87576040519150601f19603f3d011682016040523d82523d6000602084013e611d8c565b606091505b508051611dab5760405162461bcd60e51b81526004016108db906126f7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611dd1565b5060015b949350505050565b606081611dfd5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e275780611e11816128ae565b9150611e209050600a836127be565b9150611e01565b60008167ffffffffffffffff811115611e4257611e4261291f565b6040519080825280601f01601f191660200182016040528015611e6c576020820181803683370190505b5090505b8415611dd157611e81600183612819565b9150611e8e600a866128c9565b611e999060306127a6565b60f81b818381518110611eae57611eae612909565b60200101906001600160f81b031916908160001a905350611ed0600a866127be565b9450611e70565b6001546001600160a01b038416611f3a5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108db565b611f45816001541190565b15611f925760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108db565b7f000000000000000000000000000000000000000000000000000000000000001483111561200d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016108db565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061206990879061277b565b6001600160801b03168152602001858360200151612087919061277b565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156121a75760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461216b6000888488611ccb565b6121875760405162461bcd60e51b81526004016108db906126f7565b81612191816128ae565b925050808061219f906128ae565b91505061211e565b506001819055611a11565b8280546121be90612873565b90600052602060002090601f0160209004810192826121e05760008555612226565b82601f106121f957805160ff1916838001178555612226565b82800160010185558215612226579182015b8281111561222657825182559160200191906001019061220b565b50610e439291505b80821115610e43576000815560010161222e565b600067ffffffffffffffff83111561225c5761225c61291f565b61226f601f8401601f191660200161274a565b905082815283838301111561228357600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146122b157600080fd5b919050565b6000602082840312156122c857600080fd5b6122d18261229a565b9392505050565b600080604083850312156122eb57600080fd5b6122f48361229a565b91506123026020840161229a565b90509250929050565b60008060006060848603121561232057600080fd5b6123298461229a565b92506123376020850161229a565b9150604084013590509250925092565b6000806000806080858703121561235d57600080fd5b6123668561229a565b93506123746020860161229a565b925060408501359150606085013567ffffffffffffffff81111561239757600080fd5b8501601f810187136123a857600080fd5b6123b787823560208401612242565b91505092959194509250565b600080604083850312156123d657600080fd5b6123df8361229a565b9150602083013580151581146123f457600080fd5b809150509250929050565b6000806040838503121561241257600080fd5b61241b8361229a565b946020939093013593505050565b6000602080838503121561243c57600080fd5b823567ffffffffffffffff8082111561245457600080fd5b818501915085601f83011261246857600080fd5b81358181111561247a5761247a61291f565b8060051b915061248b84830161274a565b8181528481019084860184860187018a10156124a657600080fd5b600095505b838610156124d0576124bc8161229a565b8352600195909501949186019186016124ab565b5098975050505050505050565b6000602082840312156124ef57600080fd5b81356122d181612935565b60006020828403121561250c57600080fd5b81516122d181612935565b60006020828403121561252957600080fd5b813567ffffffffffffffff81111561254057600080fd5b8201601f8101841361255157600080fd5b611dd184823560208401612242565b60006020828403121561257257600080fd5b5035919050565b60008151808452612591816020860160208601612830565b601f01601f19169290920160200192915050565b8054600090600181811c90808316806125bf57607f831692505b60208084108214156125e157634e487b7160e01b600052602260045260246000fd5b8180156125f5576001811461260657612633565b60ff19861689528489019650612633565b60008881526020902060005b8681101561262b5781548b820152908501908301612612565b505084890196505b50505050505092915050565b600061264b82866125a5565b845161265b818360208901612830565b612667818301866125a5565b979650505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126a590830184612579565b9695505050505050565b6020815260006122d16020830184612579565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156127735761277361291f565b604052919050565b60006001600160801b0380831681851680830382111561279d5761279d6128dd565b01949350505050565b600082198211156127b9576127b96128dd565b500190565b6000826127cd576127cd6128f3565b500490565b60008160001904831182151516156127ec576127ec6128dd565b500290565b60006001600160801b0383811690831681811015612811576128116128dd565b039392505050565b60008282101561282b5761282b6128dd565b500390565b60005b8381101561284b578181015183820152602001612833565b838111156113f75750506000910152565b60008161286b5761286b6128dd565b506000190190565b600181811c9082168061288757607f821691505b602082108114156128a857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128c2576128c26128dd565b5060010190565b6000826128d8576128d86128f3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146112a557600080fdfea2646970667358221220aa04d7ad634faa23783c26800f6eaee46c9b1576105689e9578c23f245fee08464736f6c63430008070033

Deployed Bytecode Sourcemap

36300:3519:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22049:370;;;;;;;;;;-1:-1:-1;22049:370:0;;;;;:::i;:::-;;:::i;:::-;;;7353:14:1;;7346:22;7328:41;;7316:2;7301:18;22049:370:0;;;;;;;;23775:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25300:204::-;;;;;;;;;;-1:-1:-1;25300:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6651:32:1;;;6633:51;;6621:2;6606:18;25300:204:0;6487:203:1;24863:379:0;;;;;;;;;;-1:-1:-1;24863:379:0;;;;;:::i;:::-;;:::i;:::-;;39012:95;;;;;;;;;;-1:-1:-1;39078:21:0;39012:95;;;19534:25:1;;;19522:2;19507:18;39012:95:0;19388:177:1;20610:94:0;;;;;;;;;;-1:-1:-1;20686:12:0;;20610:94;;38676:228;;;;;;;;;;-1:-1:-1;38676:228:0;;;;;:::i;:::-;;:::i;26150:142::-;;;;;;;;;;-1:-1:-1;26150:142:0;;;;;:::i;:::-;;:::i;21241:744::-;;;;;;;;;;-1:-1:-1;21241:744:0;;;;;:::i;:::-;;:::i;36532:29::-;;;;;;;;;;;;;:::i;39396:226::-;;;;;;;;;;;;;:::i;26355:157::-;;;;;;;;;;-1:-1:-1;26355:157:0;;;;;:::i;:::-;;:::i;20773:177::-;;;;;;;;;;-1:-1:-1;20773:177:0;;;;;:::i;:::-;;:::i;23598:118::-;;;;;;;;;;-1:-1:-1;23598:118:0;;;;;:::i;:::-;;:::i;22475:211::-;;;;;;;;;;-1:-1:-1;22475:211:0;;;;;:::i;:::-;;:::i;38482:92::-;;;;;;;;;;;;;:::i;1363:94::-;;;;;;;;;;;;;:::i;36607:71::-;;;;;;;;;;-1:-1:-1;36607:71:0;;;;-1:-1:-1;;;;;36607:71:0;;;37369:251;;;;;;;;;;-1:-1:-1;37369:251:0;;;;;:::i;:::-;;:::i;38912:92::-;;;;;;;;;;;;;:::i;38374:100::-;;;;;;;;;;-1:-1:-1;38374:100:0;;;;;:::i;:::-;;:::i;38155:::-;;;;;;;;;;-1:-1:-1;38155:100:0;;;;;:::i;:::-;;:::i;712:87::-;;;;;;;;;;-1:-1:-1;758:7:0;785:6;-1:-1:-1;;;;;785:6:0;712:87;;38582:86;;;;;;;;;;-1:-1:-1;38582:86:0;;;;;:::i;:::-;;:::i;39630:147::-;;;;;;;;;;-1:-1:-1;39630:147:0;;;;;:::i;:::-;;:::i;:::-;;;;19253:13:1;;-1:-1:-1;;;;;19249:39:1;19231:58;;19349:4;19337:17;;;19331:24;19357:18;19327:49;19305:20;;;19298:79;;;;19204:18;39630:147:0;19023:360:1;36858:503:0;;;;;;:::i;:::-;;:::i;38261:107::-;;;;;;;;;;-1:-1:-1;38261:107:0;;;;;:::i;:::-;;:::i;23930:98::-;;;;;;;;;;;;;:::i;39115:109::-;;;;;;;;;;-1:-1:-1;39115:109:0;;;;;:::i;:::-;;:::i;36568:32::-;;;;;;;;;;;;;;;;25568:274;;;;;;;;;;-1:-1:-1;25568:274:0;;;;;:::i;:::-;;:::i;26575:311::-;;;;;;;;;;-1:-1:-1;26575:311:0;;;;;:::i;:::-;;:::i;37840:307::-;;;;;;;;;;-1:-1:-1;37840:307:0;;;;;:::i;:::-;;:::i;37625:205::-;;;;;;;;;;-1:-1:-1;37625:205:0;;;;;:::i;:::-;;:::i;36724:31::-;;;;;;;;;;;;;;;;30990:43;;;;;;;;;;;;;;;;39232:155;;;;;;;;;;-1:-1:-1;39232:155:0;;;;;:::i;:::-;;:::i;36685:32::-;;;;;;;;;;;;;;;;25905:186;;;;;;;;;;-1:-1:-1;25905:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;26050:25:0;;;26027:4;26050:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25905:186;1612:192;;;;;;;;;;-1:-1:-1;1612:192:0;;;;;:::i;:::-;;:::i;36458:33::-;;;;;;;;;;-1:-1:-1;36458:33:0;;;;;;;;22049:370;22176:4;-1:-1:-1;;;;;;22206:40:0;;-1:-1:-1;;;22206:40:0;;:99;;-1:-1:-1;;;;;;;22257:48:0;;-1:-1:-1;;;22257:48:0;22206:99;:160;;;-1:-1:-1;;;;;;;22316:50:0;;-1:-1:-1;;;22316:50:0;22206:160;:207;;;-1:-1:-1;;;;;;;;;;18775:40:0;;;22377:36;22192:221;22049:370;-1:-1:-1;;22049:370:0:o;23775:94::-;23829:13;23858:5;23851:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23775:94;:::o;25300:204::-;25368:7;25392:16;25400:7;27212:12;;-1:-1:-1;27202:22:0;27125:105;25392:16;25384:74;;;;-1:-1:-1;;;25384:74:0;;18408:2:1;25384:74:0;;;18390:21:1;18447:2;18427:18;;;18420:30;18486:34;18466:18;;;18459:62;-1:-1:-1;;;18537:18:1;;;18530:43;18590:19;;25384:74:0;;;;;;;;;-1:-1:-1;25474:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25474:24:0;;25300:204::o;24863:379::-;24932:13;24948:24;24964:7;24948:15;:24::i;:::-;24932:40;;24993:5;-1:-1:-1;;;;;24987:11:0;:2;-1:-1:-1;;;;;24987:11:0;;;24979:58;;;;-1:-1:-1;;;24979:58:0;;14590:2:1;24979:58:0;;;14572:21:1;14629:2;14609:18;;;14602:30;14668:34;14648:18;;;14641:62;-1:-1:-1;;;14719:18:1;;;14712:32;14761:19;;24979:58:0;14388:398:1;24979:58:0;175:10;-1:-1:-1;;;;;25062:21:0;;;;:62;;-1:-1:-1;25087:37:0;25104:5;175:10;25905:186;:::i;25087:37::-;25046:153;;;;-1:-1:-1;;;25046:153:0;;11797:2:1;25046:153:0;;;11779:21:1;11836:2;11816:18;;;11809:30;11875:34;11855:18;;;11848:62;11946:27;11926:18;;;11919:55;11991:19;;25046:153:0;11595:421:1;25046:153:0;25208:28;25217:2;25221:7;25230:5;25208:8;:28::i;:::-;24925:317;24863:379;;:::o;38676:228::-;758:7;785:6;-1:-1:-1;;;;;785:6:0;175:10;932:23;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;38763:9:::1;;38753:7;:19;38745:121;;;::::0;-1:-1:-1;;;38745:121:0;;8209:2:1;38745:121:0::1;::::0;::::1;8191:21:1::0;8248:2;8228:18;;;8221:30;8287:34;8267:18;;;8260:62;8358:34;8338:18;;;8331:62;8430:27;8409:19;;;8402:56;8475:19;;38745:121:0::1;8007:493:1::0;38745:121:0::1;38877:9;:19:::0;38676:228::o;26150:142::-;26258:28;26268:4;26274:2;26278:7;26258:9;:28::i;21241:744::-;21350:7;21385:16;21395:5;21385:9;:16::i;:::-;21377:5;:24;21369:71;;;;-1:-1:-1;;;21369:71:0;;7806:2:1;21369:71:0;;;7788:21:1;7845:2;7825:18;;;7818:30;7884:34;7864:18;;;7857:62;-1:-1:-1;;;7935:18:1;;;7928:32;7977:19;;21369:71:0;7604:398:1;21369:71:0;21447:22;21472:13;20686:12;;;20610:94;21472:13;21447:38;;21492:19;21522:25;21572:9;21567:350;21591:14;21587:1;:18;21567:350;;;21621:31;21655:14;;;:11;:14;;;;;;;;;21621:48;;;;;;;;;-1:-1:-1;;;;;21621:48:0;;;;;-1:-1:-1;;;21621:48:0;;;;;;;;;;;;21682:28;21678:89;;21743:14;;;-1:-1:-1;21678:89:0;21800:5;-1:-1:-1;;;;;21779:26:0;:17;-1:-1:-1;;;;;21779:26:0;;21775:135;;;21837:5;21822:11;:20;21818:59;;;-1:-1:-1;21864:1:0;-1:-1:-1;21857:8:0;;-1:-1:-1;;;21857:8:0;21818:59;21887:13;;;;:::i;:::-;;;;21775:135;-1:-1:-1;21607:3:0;;;;:::i;:::-;;;;21567:350;;;-1:-1:-1;21923:56:0;;-1:-1:-1;;;21923:56:0;;17229:2:1;21923:56:0;;;17211:21:1;17268:2;17248:18;;;17241:30;17307:34;17287:18;;;17280:62;-1:-1:-1;;;17358:18:1;;;17351:44;17412:19;;21923:56:0;17027:410:1;36532:29:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39396:226::-;758:7;785:6;-1:-1:-1;;;;;785:6:0;175:10;932:23;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;39502:11:::1;::::0;39462:21:::1;::::0;-1:-1:-1;;;;;39502:11:0::1;39494:49;39539:3;39524:12;39462:21:::0;39535:1:::1;39524:12;:::i;:::-;:18;;;;:::i;:::-;39494:49;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;758:7:0;785:6;-1:-1:-1;;;;;785:6:0;39560:46:::1;39602:3;39586:13;:8:::0;39597:2:::1;39586:13;:::i;:::-;:19;;;;:::i;:::-;39560:46;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;39435:187;39396:226::o:0;26355:157::-;26467:39;26484:4;26490:2;26494:7;26467:39;;;;;;;;;;;;:16;:39::i;20773:177::-;20840:7;20872:13;20686:12;;;20610:94;20872:13;20864:5;:21;20856:69;;;;-1:-1:-1;;;20856:69:0;;9525:2:1;20856:69:0;;;9507:21:1;9564:2;9544:18;;;9537:30;9603:34;9583:18;;;9576:62;-1:-1:-1;;;9654:18:1;;;9647:33;9697:19;;20856:69:0;9323:399:1;20856:69:0;-1:-1:-1;20939:5:0;20773:177::o;23598:118::-;23662:7;23685:20;23697:7;23685:11;:20::i;:::-;:25;;23598:118;-1:-1:-1;;23598:118:0:o;22475:211::-;22539:7;-1:-1:-1;;;;;22563:19:0;;22555:75;;;;-1:-1:-1;;;22555:75:0;;12223:2:1;22555:75:0;;;12205:21:1;12262:2;12242:18;;;12235:30;12301:34;12281:18;;;12274:62;-1:-1:-1;;;12352:18:1;;;12345:41;12403:19;;22555:75:0;12021:407:1;22555:75:0;-1:-1:-1;;;;;;22652:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;22652:27:0;;22475:211::o;38482:92::-;38526:13;38559:7;38552:14;;;;;:::i;1363:94::-;758:7;785:6;-1:-1:-1;;;;;785:6:0;175:10;932:23;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;1428:21:::1;1446:1;1428:9;:21::i;:::-;1363:94::o:0;37369:251::-;758:7;785:6;-1:-1:-1;;;;;785:6:0;175:10;932:23;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;37486:9:::1;::::0;37468:15;;20686:12;;37452:31:::1;;;;:::i;:::-;:43;37444:75;;;::::0;-1:-1:-1;;;37444:75:0;;16881:2:1;37444:75:0::1;::::0;::::1;16863:21:1::0;16920:2;16900:18;;;16893:30;-1:-1:-1;;;16939:18:1;;;16932:49;16998:18;;37444:75:0::1;16679:343:1::0;37444:75:0::1;37534:6;37530:80;37550:8;:15;37546:1;:19;37530:80;;;37585:25;37595:8;37604:1;37595:11;;;;;;;;:::i;:::-;;;;;;;37608:1;37585:9;:25::i;:::-;37567:3:::0;::::1;::::0;::::1;:::i;:::-;;;;37530:80;;38912:92:::0;758:7;785:6;-1:-1:-1;;;;;785:6:0;175:10;932:23;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;38982:14:::1;::::0;;-1:-1:-1;;38964:32:0;::::1;38982:14;::::0;;::::1;38981:15;38964:32;::::0;;38912:92::o;38374:100::-;758:7;785:6;-1:-1:-1;;;;;785:6:0;175:10;932:23;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;38448:18;;::::1;::::0;:10:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;38155:100::-:0;758:7;785:6;-1:-1:-1;;;;;785:6:0;175:10;932:23;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;38226:13:::1;:21:::0;38155:100::o;38582:86::-;758:7;785:6;-1:-1:-1;;;;;785:6:0;175:10;932:23;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;38646:5:::1;:14:::0;38582:86::o;39630:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;39751:20:0;39763:7;39751:11;:20::i;36858:503::-;36940:1;36928:9;:13;:31;;;;;36958:1;36945:9;:14;;36928:31;36920:59;;;;-1:-1:-1;;;36920:59:0;;11098:2:1;36920:59:0;;;11080:21:1;11137:2;11117:18;;;11110:30;-1:-1:-1;;;11156:18:1;;;11149:45;11211:18;;36920:59:0;10896:339:1;36920:59:0;37026:9;;37014;36998:13;20686:12;;;20610:94;36998:13;:25;;;;:::i;:::-;:37;36990:69;;;;-1:-1:-1;;;36990:69:0;;17644:2:1;36990:69:0;;;17626:21:1;17683:2;17663:18;;;17656:30;-1:-1:-1;;;17702:18:1;;;17695:49;17761:18;;36990:69:0;17442:343:1;36990:69:0;37099:9;37091:5;;:17;;;;:::i;:::-;37078:9;:30;37070:65;;;;-1:-1:-1;;;37070:65:0;;15771:2:1;37070:65:0;;;15753:21:1;15810:2;15790:18;;;15783:30;-1:-1:-1;;;15829:18:1;;;15822:52;15891:18;;37070:65:0;15569:346:1;37070:65:0;37154:14;;;;37146:55;;;;-1:-1:-1;;;37146:55:0;;16524:2:1;37146:55:0;;;16506:21:1;16563:2;16543:18;;;16536:30;16602;16582:18;;;16575:58;16650:18;;37146:55:0;16322:352:1;37146:55:0;37262:13;;37249:9;37220:26;37235:10;37220:14;:26::i;:::-;:38;;;;:::i;:::-;:55;;37212:94;;;;-1:-1:-1;;;37212:94:0;;11442:2:1;37212:94:0;;;11424:21:1;11481:2;11461:18;;;11454:30;11520:28;11500:18;;;11493:56;11566:18;;37212:94:0;11240:350:1;37212:94:0;37319:32;37329:10;37341:9;37319;:32::i;:::-;36858:503;:::o;38261:107::-;758:7;785:6;-1:-1:-1;;;;;785:6:0;175:10;932:23;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;38339:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;23930:98::-:0;23986:13;24015:7;24008:14;;;;;:::i;39115:109::-;39175:7;39198:20;39212:5;39198:13;:20::i;25568:274::-;-1:-1:-1;;;;;25659:24:0;;175:10;25659:24;;25651:63;;;;-1:-1:-1;;;25651:63:0;;13816:2:1;25651:63:0;;;13798:21:1;13855:2;13835:18;;;13828:30;13894:28;13874:18;;;13867:56;13940:18;;25651:63:0;13614:350:1;25651:63:0;175:10;25723:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25723:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25723:53:0;;;;;;;;;;25788:48;;7328:41:1;;;25723:42:0;;175:10;25788:48;;7301:18:1;25788:48:0;;;;;;;25568:274;;:::o;26575:311::-;26712:28;26722:4;26728:2;26732:7;26712:9;:28::i;:::-;26763:48;26786:4;26792:2;26796:7;26805:5;26763:22;:48::i;:::-;26747:133;;;;-1:-1:-1;;;26747:133:0;;;;;;;:::i;:::-;26575:311;;;;:::o;37840:307::-;37914:13;37962:17;37970:8;27212:12;;-1:-1:-1;27202:22:0;27125:105;37962:17;37940:111;;;;-1:-1:-1;;;37940:111:0;;13042:2:1;37940:111:0;;;13024:21:1;13081:2;13061:18;;;13054:30;13120:34;13100:18;;;13093:62;-1:-1:-1;;;13171:18:1;;;13164:42;13223:19;;37940:111:0;12840:408:1;37940:111:0;38095:7;38104:19;:8;:17;:19::i;:::-;38125:10;38078:58;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38064:73;;37840:307;;;:::o;37625:205::-;758:7;785:6;-1:-1:-1;;;;;785:6:0;175:10;932:23;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;37750:9:::1;;37743:4;37727:13;20686:12:::0;;;20610:94;37727:13:::1;:20;;;;:::i;:::-;:32;37719:64;;;::::0;-1:-1:-1;;;37719:64:0;;16881:2:1;37719:64:0::1;::::0;::::1;16863:21:1::0;16920:2;16900:18;;;16893:30;-1:-1:-1;;;16939:18:1;;;16932:49;16998:18;;37719:64:0::1;16679:343:1::0;37719:64:0::1;37798:24;37808:7;37817:4;37798:9;:24::i;39232:155::-:0;39317:11;;-1:-1:-1;;;;;39317:11:0;39303:10;:25;39295:54;;;;-1:-1:-1;;;39295:54:0;;10753:2:1;39295:54:0;;;10735:21:1;10792:2;10772:18;;;10765:30;-1:-1:-1;;;10811:18:1;;;10804:46;10867:18;;39295:54:0;10551:340:1;39295:54:0;39360:11;:19;;-1:-1:-1;;;;;;39360:19:0;-1:-1:-1;;;;;39360:19:0;;;;;;;;;;39232:155::o;1612:192::-;758:7;785:6;-1:-1:-1;;;;;785:6:0;175:10;932:23;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;1701:22:0;::::1;1693:73;;;::::0;-1:-1:-1;;;1693:73:0;;8707:2:1;1693:73:0::1;::::0;::::1;8689:21:1::0;8746:2;8726:18;;;8719:30;8785:34;8765:18;;;8758:62;-1:-1:-1;;;8836:18:1;;;8829:36;8882:19;;1693:73:0::1;8505:402:1::0;1693:73:0::1;1777:19;1787:8;1777:9;:19::i;30812:172::-:0;30909:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;30909:29:0;-1:-1:-1;;;;;30909:29:0;;;;;;;;;30950:28;;30909:24;;30950:28;;;;;;;30812:172;;;:::o;29177:1529::-;29274:35;29312:20;29324:7;29312:11;:20::i;:::-;29383:18;;29274:58;;-1:-1:-1;29341:22:0;;-1:-1:-1;;;;;29367:34:0;175:10;-1:-1:-1;;;;;29367:34:0;;:81;;;-1:-1:-1;175:10:0;29412:20;29424:7;29412:11;:20::i;:::-;-1:-1:-1;;;;;29412:36:0;;29367:81;:142;;;-1:-1:-1;29476:18:0;;29459:50;;175:10;25905:186;:::i;29459:50::-;29341:169;;29535:17;29519:101;;;;-1:-1:-1;;;29519:101:0;;14171:2:1;29519:101:0;;;14153:21:1;14210:2;14190:18;;;14183:30;14249:34;14229:18;;;14222:62;-1:-1:-1;;;14300:18:1;;;14293:48;14358:19;;29519:101:0;13969:414:1;29519:101:0;29667:4;-1:-1:-1;;;;;29645:26:0;:13;:18;;;-1:-1:-1;;;;;29645:26:0;;29629:98;;;;-1:-1:-1;;;29629:98:0;;12635:2:1;29629:98:0;;;12617:21:1;12674:2;12654:18;;;12647:30;12713:34;12693:18;;;12686:62;-1:-1:-1;;;12764:18:1;;;12757:36;12810:19;;29629:98:0;12433:402:1;29629:98:0;-1:-1:-1;;;;;29742:16:0;;29734:66;;;;-1:-1:-1;;;29734:66:0;;9929:2:1;29734:66:0;;;9911:21:1;9968:2;9948:18;;;9941:30;10007:34;9987:18;;;9980:62;-1:-1:-1;;;10058:18:1;;;10051:35;10103:19;;29734:66:0;9727:401:1;29734:66:0;29909:49;29926:1;29930:7;29939:13;:18;;;29909:8;:49::i;:::-;-1:-1:-1;;;;;29967:18:0;;;;;;:12;:18;;;;;:31;;29997:1;;29967:18;:31;;29997:1;;-1:-1:-1;;;;;29967:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;29967:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;30005:16:0;;-1:-1:-1;30005:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;30005:16:0;;:29;;-1:-1:-1;;30005:29:0;;:::i;:::-;;;-1:-1:-1;;;;;30005:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30064:43:0;;;;;;;;-1:-1:-1;;;;;30064:43:0;;;;;;30090:15;30064:43;;;;;;;;;-1:-1:-1;30041:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;30041:66:0;-1:-1:-1;;;;;;30041:66:0;;;;;;;;;;;30357:11;30053:7;-1:-1:-1;30357:11:0;:::i;:::-;30420:1;30379:24;;;:11;:24;;;;;:29;30335:33;;-1:-1:-1;;;;;;30379:29:0;30375:236;;30437:20;30445:11;27212:12;;-1:-1:-1;27202:22:0;27125:105;30437:20;30433:171;;;30497:97;;;;;;;;30524:18;;-1:-1:-1;;;;;30497:97:0;;;;;;30555:28;;;;30497:97;;;;;;;;;;-1:-1:-1;30470:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;30470:124:0;-1:-1:-1;;;;;;30470:124:0;;;;;;;;;;;;30433:171;30643:7;30639:2;-1:-1:-1;;;;;30624:27:0;30633:4;-1:-1:-1;;;;;30624:27:0;;;;;;;;;;;30658:42;29267:1439;;;29177:1529;;;:::o;22938:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;23055:16:0;23063:7;27212:12;;-1:-1:-1;27202:22:0;27125:105;23055:16;23047:71;;;;-1:-1:-1;;;23047:71:0;;9114:2:1;23047:71:0;;;9096:21:1;9153:2;9133:18;;;9126:30;9192:34;9172:18;;;9165:62;-1:-1:-1;;;9243:18:1;;;9236:40;9293:19;;23047:71:0;8912:406:1;23047:71:0;23127:26;23175:12;23164:7;:23;23160:93;;23219:22;23229:12;23219:7;:22;:::i;:::-;:26;;23244:1;23219:26;:::i;:::-;23198:47;;23160:93;23281:7;23261:212;23298:18;23290:4;:26;23261:212;;23335:31;23369:17;;;:11;:17;;;;;;;;;23335:51;;;;;;;;;-1:-1:-1;;;;;23335:51:0;;;;;-1:-1:-1;;;23335:51:0;;;;;;;;;;;;23399:28;23395:71;;23447:9;22938:606;-1:-1:-1;;;;22938:606:0:o;23395:71::-;-1:-1:-1;23318:6:0;;;;:::i;:::-;;;;23261:212;;;-1:-1:-1;23481:57:0;;-1:-1:-1;;;23481:57:0;;17992:2:1;23481:57:0;;;17974:21:1;18031:2;18011:18;;;18004:30;18070:34;18050:18;;;18043:62;-1:-1:-1;;;18121:18:1;;;18114:45;18176:19;;23481:57:0;17790:411:1;1812:173:0;1868:16;1887:6;;-1:-1:-1;;;;;1904:17:0;;;-1:-1:-1;;;;;;1904:17:0;;;;;;1937:40;;1887:6;;;;;;;1937:40;;1868:16;1937:40;1857:128;1812:173;:::o;27236:98::-;27301:27;27311:2;27315:8;27301:27;;;;;;;;;;;;:9;:27::i;22692:240::-;22753:7;-1:-1:-1;;;;;22785:19:0;;22769:102;;;;-1:-1:-1;;;22769:102:0;;10335:2:1;22769:102:0;;;10317:21:1;10374:2;10354:18;;;10347:30;10413:34;10393:18;;;10386:62;-1:-1:-1;;;10464:18:1;;;10457:47;10521:19;;22769:102:0;10133:413:1;22769:102:0;-1:-1:-1;;;;;;22893:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;22893:32:0;;-1:-1:-1;;;;;22893:32:0;;22692:240::o;32527:690::-;32664:4;-1:-1:-1;;;;;32681:13:0;;11770:20;11818:8;32677:535;;32720:72;;-1:-1:-1;;;32720:72:0;;-1:-1:-1;;;;;32720:36:0;;;;;:72;;175:10;;32771:4;;32777:7;;32786:5;;32720:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32720:72:0;;;;;;;;-1:-1:-1;;32720:72:0;;;;;;;;;;;;:::i;:::-;;;32707:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32951:13:0;;32947:215;;32984:61;;-1:-1:-1;;;32984:61:0;;;;;;;:::i;32947:215::-;33130:6;33124:13;33115:6;33111:2;33107:15;33100:38;32707:464;-1:-1:-1;;;;;;32842:55:0;-1:-1:-1;;;32842:55:0;;-1:-1:-1;32835:62:0;;32677:535;-1:-1:-1;33200:4:0;32677:535;32527:690;;;;;;:::o;34541:723::-;34597:13;34818:10;34814:53;;-1:-1:-1;;34845:10:0;;;;;;;;;;;;-1:-1:-1;;;34845:10:0;;;;;34541:723::o;34814:53::-;34892:5;34877:12;34933:78;34940:9;;34933:78;;34966:8;;;;:::i;:::-;;-1:-1:-1;34989:10:0;;-1:-1:-1;34997:2:0;34989:10;;:::i;:::-;;;34933:78;;;35021:19;35053:6;35043:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35043:17:0;;35021:39;;35071:154;35078:10;;35071:154;;35105:11;35115:1;35105:11;;:::i;:::-;;-1:-1:-1;35174:10:0;35182:2;35174:5;:10;:::i;:::-;35161:24;;:2;:24;:::i;:::-;35148:39;;35131:6;35138;35131:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;35131:56:0;;;;;;;;-1:-1:-1;35202:11:0;35211:2;35202:11;;:::i;:::-;;;35071:154;;27673:1272;27801:12;;-1:-1:-1;;;;;27828:16:0;;27820:62;;;;-1:-1:-1;;;27820:62:0;;16122:2:1;27820:62:0;;;16104:21:1;16161:2;16141:18;;;16134:30;16200:34;16180:18;;;16173:62;-1:-1:-1;;;16251:18:1;;;16244:31;16292:19;;27820:62:0;15920:397:1;27820:62:0;28019:21;28027:12;27212;;-1:-1:-1;27202:22:0;27125:105;28019:21;28018:22;28010:64;;;;-1:-1:-1;;;28010:64:0;;15413:2:1;28010:64:0;;;15395:21:1;15452:2;15432:18;;;15425:30;15491:31;15471:18;;;15464:59;15540:18;;28010:64:0;15211:353:1;28010:64:0;28101:12;28089:8;:24;;28081:71;;;;-1:-1:-1;;;28081:71:0;;18822:2:1;28081:71:0;;;18804:21:1;18861:2;18841:18;;;18834:30;18900:34;18880:18;;;18873:62;-1:-1:-1;;;18951:18:1;;;18944:32;18993:19;;28081:71:0;18620:398:1;28081:71:0;-1:-1:-1;;;;;28264:16:0;;28231:30;28264:16;;;:12;:16;;;;;;;;;28231:49;;;;;;;;;-1:-1:-1;;;;;28231:49:0;;;;;-1:-1:-1;;;28231:49:0;;;;;;;;;;;28306:119;;;;;;;;28326:19;;28231:49;;28306:119;;;28326:39;;28356:8;;28326:39;:::i;:::-;-1:-1:-1;;;;;28306:119:0;;;;;28409:8;28374:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;28306:119:0;;;;;;-1:-1:-1;;;;;28287:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;28287:138:0;;;;;;;;;;;;28460:43;;;;;;;;;;;28486:15;28460:43;;;;;;;;28432:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;28432:71:0;-1:-1:-1;;;;;;28432:71:0;;;;;;;;;;;;;;;;;;28444:12;;28556:281;28580:8;28576:1;:12;28556:281;;;28609:38;;28634:12;;-1:-1:-1;;;;;28609:38:0;;;28626:1;;28609:38;;28626:1;;28609:38;28674:59;28705:1;28709:2;28713:12;28727:5;28674:22;:59::i;:::-;28656:150;;;;-1:-1:-1;;;28656:150:0;;;;;;;:::i;:::-;28815:14;;;;:::i;:::-;;;;28590:3;;;;;:::i;:::-;;;;28556:281;;;-1:-1:-1;28845:12:0;:27;;;28879:60;26575:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:186::-;662:6;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;:::-;744:39;603:186;-1:-1:-1;;;603:186:1:o;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;794:260;;;;;:::o;1059:328::-;1136:6;1144;1152;1205:2;1193:9;1184:7;1180:23;1176:32;1173:52;;;1221:1;1218;1211:12;1173:52;1244:29;1263:9;1244:29;:::i;:::-;1234:39;;1292:38;1326:2;1315:9;1311:18;1292:38;:::i;:::-;1282:48;;1377:2;1366:9;1362:18;1349:32;1339:42;;1059:328;;;;;:::o;1392:666::-;1487:6;1495;1503;1511;1564:3;1552:9;1543:7;1539:23;1535:33;1532:53;;;1581:1;1578;1571:12;1532:53;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1652:38;1686:2;1675:9;1671:18;1652:38;:::i;:::-;1642:48;;1737:2;1726:9;1722:18;1709:32;1699:42;;1792:2;1781:9;1777:18;1764:32;1819:18;1811:6;1808:30;1805:50;;;1851:1;1848;1841:12;1805:50;1874:22;;1927:4;1919:13;;1915:27;-1:-1:-1;1905:55:1;;1956:1;1953;1946:12;1905:55;1979:73;2044:7;2039:2;2026:16;2021:2;2017;2013:11;1979:73;:::i;:::-;1969:83;;;1392:666;;;;;;;:::o;2063:347::-;2128:6;2136;2189:2;2177:9;2168:7;2164:23;2160:32;2157:52;;;2205:1;2202;2195:12;2157:52;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2307:2;2296:9;2292:18;2279:32;2354:5;2347:13;2340:21;2333:5;2330:32;2320:60;;2376:1;2373;2366:12;2320:60;2399:5;2389:15;;;2063:347;;;;;:::o;2415:254::-;2483:6;2491;2544:2;2532:9;2523:7;2519:23;2515:32;2512:52;;;2560:1;2557;2550:12;2512:52;2583:29;2602:9;2583:29;:::i;:::-;2573:39;2659:2;2644:18;;;;2631:32;;-1:-1:-1;;;2415:254:1:o;2674:963::-;2758:6;2789:2;2832;2820:9;2811:7;2807:23;2803:32;2800:52;;;2848:1;2845;2838:12;2800:52;2888:9;2875:23;2917:18;2958:2;2950:6;2947:14;2944:34;;;2974:1;2971;2964:12;2944:34;3012:6;3001:9;2997:22;2987:32;;3057:7;3050:4;3046:2;3042:13;3038:27;3028:55;;3079:1;3076;3069:12;3028:55;3115:2;3102:16;3137:2;3133;3130:10;3127:36;;;3143:18;;:::i;:::-;3189:2;3186:1;3182:10;3172:20;;3212:28;3236:2;3232;3228:11;3212:28;:::i;:::-;3274:15;;;3305:12;;;;3337:11;;;3367;;;3363:20;;3360:33;-1:-1:-1;3357:53:1;;;3406:1;3403;3396:12;3357:53;3428:1;3419:10;;3438:169;3452:2;3449:1;3446:9;3438:169;;;3509:23;3528:3;3509:23;:::i;:::-;3497:36;;3470:1;3463:9;;;;;3553:12;;;;3585;;3438:169;;;-1:-1:-1;3626:5:1;2674:963;-1:-1:-1;;;;;;;;2674:963:1:o;3642:245::-;3700:6;3753:2;3741:9;3732:7;3728:23;3724:32;3721:52;;;3769:1;3766;3759:12;3721:52;3808:9;3795:23;3827:30;3851:5;3827:30;:::i;3892:249::-;3961:6;4014:2;4002:9;3993:7;3989:23;3985:32;3982:52;;;4030:1;4027;4020:12;3982:52;4062:9;4056:16;4081:30;4105:5;4081:30;:::i;4146:450::-;4215:6;4268:2;4256:9;4247:7;4243:23;4239:32;4236:52;;;4284:1;4281;4274:12;4236:52;4324:9;4311:23;4357:18;4349:6;4346:30;4343:50;;;4389:1;4386;4379:12;4343:50;4412:22;;4465:4;4457:13;;4453:27;-1:-1:-1;4443:55:1;;4494:1;4491;4484:12;4443:55;4517:73;4582:7;4577:2;4564:16;4559:2;4555;4551:11;4517:73;:::i;4601:180::-;4660:6;4713:2;4701:9;4692:7;4688:23;4684:32;4681:52;;;4729:1;4726;4719:12;4681:52;-1:-1:-1;4752:23:1;;4601:180;-1:-1:-1;4601:180:1:o;4786:257::-;4827:3;4865:5;4859:12;4892:6;4887:3;4880:19;4908:63;4964:6;4957:4;4952:3;4948:14;4941:4;4934:5;4930:16;4908:63;:::i;:::-;5025:2;5004:15;-1:-1:-1;;5000:29:1;4991:39;;;;5032:4;4987:50;;4786:257;-1:-1:-1;;4786:257:1:o;5048:973::-;5133:12;;5098:3;;5188:1;5208:18;;;;5261;;;;5288:61;;5342:4;5334:6;5330:17;5320:27;;5288:61;5368:2;5416;5408:6;5405:14;5385:18;5382:38;5379:161;;;5462:10;5457:3;5453:20;5450:1;5443:31;5497:4;5494:1;5487:15;5525:4;5522:1;5515:15;5379:161;5556:18;5583:104;;;;5701:1;5696:319;;;;5549:466;;5583:104;-1:-1:-1;;5616:24:1;;5604:37;;5661:16;;;;-1:-1:-1;5583:104:1;;5696:319;19923:1;19916:14;;;19960:4;19947:18;;5790:1;5804:165;5818:6;5815:1;5812:13;5804:165;;;5896:14;;5883:11;;;5876:35;5939:16;;;;5833:10;;5804:165;;;5808:3;;5998:6;5993:3;5989:16;5982:23;;5549:466;;;;;;;5048:973;;;;:::o;6026:456::-;6247:3;6275:38;6309:3;6301:6;6275:38;:::i;:::-;6342:6;6336:13;6358:52;6403:6;6399:2;6392:4;6384:6;6380:17;6358:52;:::i;:::-;6426:50;6468:6;6464:2;6460:15;6452:6;6426:50;:::i;:::-;6419:57;6026:456;-1:-1:-1;;;;;;;6026:456:1:o;6695:488::-;-1:-1:-1;;;;;6964:15:1;;;6946:34;;7016:15;;7011:2;6996:18;;6989:43;7063:2;7048:18;;7041:34;;;7111:3;7106:2;7091:18;;7084:31;;;6889:4;;7132:45;;7157:19;;7149:6;7132:45;:::i;:::-;7124:53;6695:488;-1:-1:-1;;;;;;6695:488:1:o;7380:219::-;7529:2;7518:9;7511:21;7492:4;7549:44;7589:2;7578:9;7574:18;7566:6;7549:44;:::i;13253:356::-;13455:2;13437:21;;;13474:18;;;13467:30;13533:34;13528:2;13513:18;;13506:62;13600:2;13585:18;;13253:356::o;14791:415::-;14993:2;14975:21;;;15032:2;15012:18;;;15005:30;15071:34;15066:2;15051:18;;15044:62;-1:-1:-1;;;15137:2:1;15122:18;;15115:49;15196:3;15181:19;;14791:415::o;19570:275::-;19641:2;19635:9;19706:2;19687:13;;-1:-1:-1;;19683:27:1;19671:40;;19741:18;19726:34;;19762:22;;;19723:62;19720:88;;;19788:18;;:::i;:::-;19824:2;19817:22;19570:275;;-1:-1:-1;19570:275:1:o;19976:253::-;20016:3;-1:-1:-1;;;;;20105:2:1;20102:1;20098:10;20135:2;20132:1;20128:10;20166:3;20162:2;20158:12;20153:3;20150:21;20147:47;;;20174:18;;:::i;:::-;20210:13;;19976:253;-1:-1:-1;;;;19976:253:1:o;20234:128::-;20274:3;20305:1;20301:6;20298:1;20295:13;20292:39;;;20311:18;;:::i;:::-;-1:-1:-1;20347:9:1;;20234:128::o;20367:120::-;20407:1;20433;20423:35;;20438:18;;:::i;:::-;-1:-1:-1;20472:9:1;;20367:120::o;20492:168::-;20532:7;20598:1;20594;20590:6;20586:14;20583:1;20580:21;20575:1;20568:9;20561:17;20557:45;20554:71;;;20605:18;;:::i;:::-;-1:-1:-1;20645:9:1;;20492:168::o;20665:246::-;20705:4;-1:-1:-1;;;;;20818:10:1;;;;20788;;20840:12;;;20837:38;;;20855:18;;:::i;:::-;20892:13;;20665:246;-1:-1:-1;;;20665:246:1:o;20916:125::-;20956:4;20984:1;20981;20978:8;20975:34;;;20989:18;;:::i;:::-;-1:-1:-1;21026:9:1;;20916:125::o;21046:258::-;21118:1;21128:113;21142:6;21139:1;21136:13;21128:113;;;21218:11;;;21212:18;21199:11;;;21192:39;21164:2;21157:10;21128:113;;;21259:6;21256:1;21253:13;21250:48;;;-1:-1:-1;;21294:1:1;21276:16;;21269:27;21046:258::o;21309:136::-;21348:3;21376:5;21366:39;;21385:18;;:::i;:::-;-1:-1:-1;;;21421:18:1;;21309:136::o;21450:380::-;21529:1;21525:12;;;;21572;;;21593:61;;21647:4;21639:6;21635:17;21625:27;;21593:61;21700:2;21692:6;21689:14;21669:18;21666:38;21663:161;;;21746:10;21741:3;21737:20;21734:1;21727:31;21781:4;21778:1;21771:15;21809:4;21806:1;21799:15;21663:161;;21450:380;;;:::o;21835:135::-;21874:3;-1:-1:-1;;21895:17:1;;21892:43;;;21915:18;;:::i;:::-;-1:-1:-1;21962:1:1;21951:13;;21835:135::o;21975:112::-;22007:1;22033;22023:35;;22038:18;;:::i;:::-;-1:-1:-1;22072:9:1;;21975:112::o;22092:127::-;22153:10;22148:3;22144:20;22141:1;22134:31;22184:4;22181:1;22174:15;22208:4;22205:1;22198:15;22224:127;22285:10;22280:3;22276:20;22273:1;22266:31;22316:4;22313:1;22306:15;22340:4;22337:1;22330:15;22356:127;22417:10;22412:3;22408:20;22405:1;22398:31;22448:4;22445:1;22438:15;22472:4;22469:1;22462:15;22488:127;22549:10;22544:3;22540:20;22537:1;22530:31;22580:4;22577:1;22570:15;22604:4;22601:1;22594:15;22620:131;-1:-1:-1;;;;;;22694:32:1;;22684:43;;22674:71;;22741:1;22738;22731:12

Swarm Source

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