ETH Price: $3,064.11 (+2.81%)
Gas: 1 Gwei

Token

DANKBOTS ALL STARS (DBAS)
 

Overview

Max Total Supply

500 DBAS

Holders

190

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
hazeynft.eth
Balance
3 DBAS
0x38a03b0046cc20a21ec6d96507741317d418ede0
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:
DankbotsFanArt

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-20
*/

// SPDX-License-Identifier: MIT

/**
    ____  ___    _   ____ __ ____  ____  ___________ _________    _   _____    ____  ______
   / __ \/   |  / | / / //_// __ )/ __ \/_  __/ ___// ____/   |  / | / /   |  / __ \/_  __/
  / / / / /| | /  |/ / ,<  / __  / / / / / /  \__ \/ /_  / /| | /  |/ / /| | / /_/ / / /   
 / /_/ / ___ |/ /|  / /| |/ /_/ / /_/ / / /  ___/ / __/ / ___ |/ /|  / ___ |/ _, _/ / /    
/_____/_/  |_/_/ |_/_/ |_/_____/\____/ /_/  /____/_/   /_/  |_/_/ |_/_/  |_/_/ |_| /_/     
                                                                                              
by 0xd3ad
*/


pragma solidity ^0.8.0;
/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` fo
r some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */

library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}



// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Strings.sol
/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

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

// File: contracts/DankbotsFanArt.sol
// Creator: Chiru Labs

pragma solidity ^0.8.4;

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _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;

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

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

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @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 ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

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

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

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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 _startTokenId() <= tokenId && tokenId < _currentIndex &&
            !_ownerships[tokenId].burned;
    }

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _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);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = 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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        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 TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

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



contract DankbotsFanArt is ERC721A, Ownable {
	using Strings for uint256;

	event eventSetCost(uint256 _newCost );
	event eventMint(uint256 _mintAmount);
	event eventSetMaxMintAmount(uint256 _newMaxMintAmount);
	event eventSetMaxSupply(uint256 _newmaxSupply);
	event eventSetNotRevealedURI(string _notRevealedURI);
	event eventSetBaseURI(string _newBaseURI);
	event eventSetBaseExtension(string _newBaseExtension);
	event eventPause(bool _state);
	event eventReveal(bool _state);
	event eventSetWithdrawalAddress( address _newAddress );
	event eventWithdraw();
	event eventSetWhitelistCost(uint256 _newCost );
	event eventPauseWhitelist(bool _state);
	event eventSetWhitelistRoot( bytes32 _newWhitelistRoot );
	event eventMintWhitelist( bytes32[] _merkleProof, uint256 _mintAmount);

	address public withdrawal_address = 0x405874F1Ce5778d5FFDf66f7aba14DA446564B6a;
	string baseURI = "";
	string public notRevealedUri = "";
	string public baseExtension = ".json";

	uint256 public cost = 0.01 ether;		// mint cost
	bool public paused = true;			// paused at release
	uint256 public maxSupply = 750;			// max supply
	uint256 public maxMintAmount = 10;		// max amount anyone can mint

	uint256 public whitelistCost = 0.0069 ether;	// whitelist mint cost
	bool public whitelistPaused = true;		// paused at release
	bytes32 public whitelistRoot = "";		// merkle root for whitelist
	mapping( address => bool ) public whitelistClaimed;

	bool public revealed = false;			// reveal images at purchase

	string _name = "DANKBOTS ALL STARS";
	string _symbol = "DBAS";

	constructor() ERC721A(_name, _symbol) {
	}

	// set mint cost
	function setCost(uint256 _newCost ) public onlyOwner {
		cost = _newCost;
		emit eventSetCost( _newCost );
	}

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

	// public
	// minting functions
	function mint(uint256 _mintAmount) 
	public 
	payable {
		require(!paused, "Cannot mint while paused" );
		require(_mintAmount > 0);
		require(totalSupply() + _mintAmount <= maxSupply);

		if (msg.sender != owner()) {
			require(_mintAmount + _numberMinted( msg.sender ) <= maxMintAmount, "Exceeds max mint amount" );
			require(msg.value >= cost * _mintAmount);
		}

		_safeMint(msg.sender, _mintAmount);
		emit eventMint( _mintAmount );
	}

	function tokenURI(uint256 tokenId)
	public
	view
	virtual
	override
	returns (string memory)
	{
		require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

		if(revealed == false) {
			return notRevealedUri;
		}

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

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

	// whitelist functions
	// set whitelist mint cost
	function setWhitelistCost(uint256 _newCost ) public onlyOwner {
		whitelistCost = _newCost;
		emit eventSetWhitelistCost( _newCost );
	}

	// whitelistPaused functions
	function pauseWhitelist(bool _state) public onlyOwner {
		whitelistPaused = _state;
		emit eventPauseWhitelist( _state );
	}

	// set whitelistRoot
	function setWhitelistRoot( bytes32 _newWhitelistRoot ) 
	public 
	onlyOwner {
		whitelistRoot = _newWhitelistRoot;
		emit eventSetWhitelistRoot( _newWhitelistRoot );
	}

	function mintWhitelist( bytes32[] calldata _merkleProof, uint256 _mintAmount) 
	public 
	payable {
		require(!whitelistPaused, "Cannot mint while whitelist is paused" );
		require(_mintAmount > 0);
		require(totalSupply() + _mintAmount <= maxSupply);
		require( ! whitelistClaimed[ msg.sender ], "Address has already claimed whitelist!" );

		if (msg.sender != owner()) {
			require(_mintAmount + _numberMinted( msg.sender ) <= maxMintAmount, "Exceeds max mint amount" );
			bytes32 leaf = keccak256( abi.encodePacked( msg.sender ) );
			require( MerkleProof.verify( _merkleProof, whitelistRoot, leaf ), "Invalid proof" );
			require(msg.value >= whitelistCost * _mintAmount);
			whitelistClaimed[ msg.sender ] = true;
		}

		_safeMint(msg.sender, _mintAmount);
		emit eventMintWhitelist( _merkleProof, _mintAmount );
	}


	function setMaxMintAmount(uint256 _newMaxMintAmount) 
	public 
	onlyOwner {
		maxMintAmount = _newMaxMintAmount;
		emit eventSetMaxMintAmount( _newMaxMintAmount );
	}

	function setMaxSupply(uint256 _newmaxSupply) 
	public 
	onlyOwner {
		maxSupply = _newmaxSupply;
		emit eventSetMaxSupply(_newmaxSupply);
	}

	function setNotRevealedURI(string memory _notRevealedURI) 
	public 
	onlyOwner {
		notRevealedUri = _notRevealedURI;
		emit eventSetNotRevealedURI(_notRevealedURI);
	}

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

	function setBaseExtension(string memory _newBaseExtension) 
	public 
	onlyOwner {
		baseExtension = _newBaseExtension;
		emit eventSetBaseExtension(_newBaseExtension);
	}

	function pause(bool _state) 
	public 
	onlyOwner {
		paused = _state;
		emit eventPause(_state);
	}

	function setWithdrawalAddress( address _newAddress ) 
	public 
	onlyOwner {
		withdrawal_address = _newAddress;
		emit eventSetWithdrawalAddress(_newAddress );
	}

	function withdraw() 
	public 
	payable 
	onlyOwner {
		//(bool os, ) = payable(owner()).call{value: address(this).balance}("");
		(bool os, ) = payable( withdrawal_address ).call{value: address(this).balance}("");
		require(os);
		emit eventWithdraw();
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"eventMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"indexed":false,"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"eventMintWhitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_state","type":"bool"}],"name":"eventPause","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_state","type":"bool"}],"name":"eventPauseWhitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_state","type":"bool"}],"name":"eventReveal","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"eventSetBaseExtension","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"eventSetBaseURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"eventSetCost","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"eventSetMaxMintAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_newmaxSupply","type":"uint256"}],"name":"eventSetMaxSupply","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"eventSetNotRevealedURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"eventSetWhitelistCost","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"_newWhitelistRoot","type":"bytes32"}],"name":"eventSetWhitelistRoot","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_newAddress","type":"address"}],"name":"eventSetWithdrawalAddress","type":"event"},{"anonymous":false,"inputs":[],"name":"eventWithdraw","type":"event"},{"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":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pauseWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setWhitelistCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newWhitelistRoot","type":"bytes32"}],"name":"setWhitelistRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"setWithdrawalAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawal_address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

600980546001600160a01b03191673405874f1ce5778d5ffdf66f7aba14da446564b6a17905560a06040819052600060808190526200004191600a916200030f565b506040805160208101918290526000908190526200006291600b916200030f565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200009191600c916200030f565b50662386f26fc10000600d55600e8054600160ff1991821681179092556102ee600f55600a6010556618838370f3400060115560128054821690921782556000601355601580549091169055604080518082019091528181527144414e4b424f545320414c4c20535441525360701b60209091019081526200011791601691906200030f565b50604080518082019091526004808252634442415360e01b602090920191825262000145916017916200030f565b503480156200015357600080fd5b50601680546200016390620003b5565b80601f01602080910402602001604051908101604052809291908181526020018280546200019190620003b5565b8015620001e25780601f10620001b657610100808354040283529160200191620001e2565b820191906000526020600020905b815481529060010190602001808311620001c457829003601f168201915b505050505060178054620001f690620003b5565b80601f01602080910402602001604051908101604052809291908181526020018280546200022490620003b5565b8015620002755780601f10620002495761010080835404028352916020019162000275565b820191906000526020600020905b8154815290600101906020018083116200025757829003601f168201915b505084516200028f9350600292506020860191506200030f565b508051620002a59060039060208401906200030f565b50506000805550620002b733620002bd565b620003f2565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200031d90620003b5565b90600052602060002090601f0160209004810192826200034157600085556200038c565b82601f106200035c57805160ff19168380011785556200038c565b828001600101855582156200038c579182015b828111156200038c5782518255916020019190600101906200036f565b506200039a9291506200039e565b5090565b5b808211156200039a57600081556001016200039f565b600181811c90821680620003ca57607f821691505b60208210811415620003ec57634e487b7160e01b600052602260045260246000fd5b50919050565b6126fb80620004026000396000f3fe6080604052600436106102675760003560e01c806366cb24a511610144578063c6682862116100b6578063db4bec441161007a578063db4bec44146106ca578063e7b99ec7146106fa578063e985e9c514610710578063f2c4ce1e14610759578063f2fde38b14610779578063f5aa406d1461079957600080fd5b8063c66828621461063f578063c87b56dd14610654578063d49479eb14610674578063d5abeb0114610694578063da3ef23f146106aa57600080fd5b8063940cd05b11610108578063940cd05b146105a457806395d89b41146105c4578063a0712d68146105d9578063a22cb465146105ec578063a6d612f91461060c578063b88d4fde1461061f57600080fd5b806366cb24a5146105115780636f8b44b01461053157806370a0823114610551578063715018a6146105715780638da5cb5b1461058657600080fd5b806323b872dd116101dd578063488caa73116101a1578063488caa7314610463578063518302271461048357806355f804b31461049d5780635c975abb146104bd57806361e61a25146104d75780636352211e146104f157600080fd5b806323b872dd146103e5578063386bfc98146104055780633ccfd60b1461041b57806342842e0e1461042357806344a0d68a1461044357600080fd5b8063088a4ed01161022f578063088a4ed014610332578063095ea7b31461035257806313faede61461037257806318160ddd1461039657806321b8092e146103af578063239c70ae146103cf57600080fd5b806301ffc9a71461026c57806302329a29146102a157806306fdde03146102c3578063081812fc146102e5578063081c8c441461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004612344565b6107b9565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102c16102bc366004612312565b61080b565b005b3480156102cf57600080fd5b506102d8610886565b604051610298919061252d565b3480156102f157600080fd5b5061030561030036600461232c565b610918565b6040516001600160a01b039091168152602001610298565b34801561032957600080fd5b506102d861095c565b34801561033e57600080fd5b506102c161034d36600461232c565b6109ea565b34801561035e57600080fd5b506102c161036d366004612274565b610a49565b34801561037e57600080fd5b50610388600d5481565b604051908152602001610298565b3480156103a257600080fd5b5060015460005403610388565b3480156103bb57600080fd5b506102c16103ca36600461214c565b610ad7565b3480156103db57600080fd5b5061038860105481565b3480156103f157600080fd5b506102c1610400366004612198565b610b4f565b34801561041157600080fd5b5061038860135481565b6102c1610b5a565b34801561042f57600080fd5b506102c161043e366004612198565b610c10565b34801561044f57600080fd5b506102c161045e36600461232c565b610c2b565b34801561046f57600080fd5b50600954610305906001600160a01b031681565b34801561048f57600080fd5b5060155461028c9060ff1681565b3480156104a957600080fd5b506102c16104b836600461237c565b610c8a565b3480156104c957600080fd5b50600e5461028c9060ff1681565b3480156104e357600080fd5b5060125461028c9060ff1681565b3480156104fd57600080fd5b5061030561050c36600461232c565b610cf7565b34801561051d57600080fd5b506102c161052c366004612312565b610d09565b34801561053d57600080fd5b506102c161054c36600461232c565b610d74565b34801561055d57600080fd5b5061038861056c36600461214c565b610dd3565b34801561057d57600080fd5b506102c1610e21565b34801561059257600080fd5b506008546001600160a01b0316610305565b3480156105b057600080fd5b506102c16105bf366004612312565b610e57565b3480156105d057600080fd5b506102d8610ec2565b6102c16105e736600461232c565b610ed1565b3480156105f857600080fd5b506102c161060736600461224b565b611032565b6102c161061a36600461229d565b6110c8565b34801561062b57600080fd5b506102c161063a3660046121d3565b611388565b34801561064b57600080fd5b506102d86113d9565b34801561066057600080fd5b506102d861066f36600461232c565b6113e6565b34801561068057600080fd5b506102c161068f36600461232c565b611550565b3480156106a057600080fd5b50610388600f5481565b3480156106b657600080fd5b506102c16106c536600461237c565b6115af565b3480156106d657600080fd5b5061028c6106e536600461214c565b60146020526000908152604090205460ff1681565b34801561070657600080fd5b5061038860115481565b34801561071c57600080fd5b5061028c61072b366004612166565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561076557600080fd5b506102c161077436600461237c565b61161c565b34801561078557600080fd5b506102c161079436600461214c565b611689565b3480156107a557600080fd5b506102c16107b436600461232c565b611724565b60006001600160e01b031982166380ac58cd60e01b14806107ea57506001600160e01b03198216635b5e139f60e01b145b8061080557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461083e5760405162461bcd60e51b815260040161083590612540565b60405180910390fd5b600e805460ff19168215159081179091556040519081527f67f4224f6117d25310ef3a7c494aef25faf1a438799b4218af7abebb19acdb14906020015b60405180910390a150565b60606002805461089590612603565b80601f01602080910402602001604051908101604052809291908181526020018280546108c190612603565b801561090e5780601f106108e35761010080835404028352916020019161090e565b820191906000526020600020905b8154815290600101906020018083116108f157829003601f168201915b5050505050905090565b600061092382611783565b610940576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600b805461096990612603565b80601f016020809104026020016040519081016040528092919081815260200182805461099590612603565b80156109e25780601f106109b7576101008083540402835291602001916109e2565b820191906000526020600020905b8154815290600101906020018083116109c557829003601f168201915b505050505081565b6008546001600160a01b03163314610a145760405162461bcd60e51b815260040161083590612540565b60108190556040518181527fb505c02ee160e3ad6f9faf50a528b2aded2d886d3d71eaf4aa118d7a4ddf0bc59060200161087b565b6000610a5482610cf7565b9050806001600160a01b0316836001600160a01b03161415610a895760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610aa95750610aa7813361072b565b155b15610ac7576040516367d9dca160e11b815260040160405180910390fd5b610ad28383836117ae565b505050565b6008546001600160a01b03163314610b015760405162461bcd60e51b815260040161083590612540565b600980546001600160a01b0319166001600160a01b0383169081179091556040519081527f7b3f26f5735eda85390123a65f4b4bfb898d595d98e2f96fea39a94f27331dae9060200161087b565b610ad283838361180a565b6008546001600160a01b03163314610b845760405162461bcd60e51b815260040161083590612540565b6009546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610bd1576040519150601f19603f3d011682016040523d82523d6000602084013e610bd6565b606091505b5050905080610be457600080fd5b6040517fb88755970a5171e2e6cd3a4629e010611aa1096c3f742ec5705c564fe23d8a8190600090a150565b610ad283838360405180602001604052806000815250611388565b6008546001600160a01b03163314610c555760405162461bcd60e51b815260040161083590612540565b600d8190556040518181527f4dd2a5ec13f6b592d27f09b567c7f5764b967191000d6ea870a1bdfc8a8a191d9060200161087b565b6008546001600160a01b03163314610cb45760405162461bcd60e51b815260040161083590612540565b8051610cc790600a906020840190612012565b507fa93e7bffe1d9cf216fa67e24bb04fdd93b54c49932cb707eb79047ea23bcc7478160405161087b919061252d565b6000610d02826119f8565b5192915050565b6008546001600160a01b03163314610d335760405162461bcd60e51b815260040161083590612540565b6012805460ff19168215159081179091556040519081527ffde4f90d2b5f1d77636cd64052d52ac613d963642bce08723be1d1c1b902bcc69060200161087b565b6008546001600160a01b03163314610d9e5760405162461bcd60e51b815260040161083590612540565b600f8190556040518181527fa0d24607d8715449afeaea245a9dc03c9e5fae94f159423c1e6a3957532d20729060200161087b565b60006001600160a01b038216610dfc576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610e4b5760405162461bcd60e51b815260040161083590612540565b610e556000611b12565b565b6008546001600160a01b03163314610e815760405162461bcd60e51b815260040161083590612540565b6015805460ff19168215159081179091556040519081527f067225b113261bc0d9511cc3ae674ea4ad4f4853016c8c3dff9c00885918c69a9060200161087b565b60606003805461089590612603565b600e5460ff1615610f245760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f74206d696e74207768696c652070617573656400000000000000006044820152606401610835565b60008111610f3157600080fd5b600f5481610f426001546000540390565b610f4c9190612575565b1115610f5757600080fd5b6008546001600160a01b03163314610ff85760105433600090815260056020526040902054600160401b90046001600160401b0316610f969083612575565b1115610fde5760405162461bcd60e51b8152602060048201526017602482015276115e18d959591cc81b585e081b5a5b9d08185b5bdd5b9d604a1b6044820152606401610835565b80600d54610fec91906125a1565b341015610ff857600080fd5b6110023382611b64565b6040518181527f9031977345c66c78aecb300307e08dbf054962392ef18f89c9f88c9cc6c6cff19060200161087b565b6001600160a01b03821633141561105c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60125460ff16156111295760405162461bcd60e51b815260206004820152602560248201527f43616e6e6f74206d696e74207768696c652077686974656c6973742069732070604482015264185d5cd95960da1b6064820152608401610835565b6000811161113657600080fd5b600f54816111476001546000540390565b6111519190612575565b111561115c57600080fd5b3360009081526014602052604090205460ff16156111cb5760405162461bcd60e51b815260206004820152602660248201527f416464726573732068617320616c726561647920636c61696d65642077686974604482015265656c6973742160d01b6064820152608401610835565b6008546001600160a01b0316331461133e5760105433600090815260056020526040902054600160401b90046001600160401b031661120a9083612575565b11156112525760405162461bcd60e51b8152602060048201526017602482015276115e18d959591cc81b585e081b5a5b9d08185b5bdd5b9d604a1b6044820152606401610835565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506112cc848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506013549150849050611b82565b6113085760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b6044820152606401610835565b8160115461131691906125a1565b34101561132257600080fd5b50336000908152601460205260409020805460ff191660011790555b6113483382611b64565b7f47a9c0a8ed1b7177348fb273591983301b2e05e8a60dc203a381b7c675ec347e83838360405161137b939291906124ec565b60405180910390a1505050565b61139384848461180a565b6001600160a01b0383163b151580156113b557506113b384848484611b98565b155b156113d3576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600c805461096990612603565b60606113f182611783565b6114555760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610835565b60155460ff166114f157600b805461146c90612603565b80601f016020809104026020016040519081016040528092919081815260200182805461149890612603565b80156114e55780601f106114ba576101008083540402835291602001916114e5565b820191906000526020600020905b8154815290600101906020018083116114c857829003601f168201915b50505050509050919050565b60006114fb611c90565b9050600081511161151b5760405180602001604052806000815250611549565b8061152584611c9f565b600c604051602001611539939291906123ed565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461157a5760405162461bcd60e51b815260040161083590612540565b60118190556040518181527f5ccb0df1801c19d17cf8f5045e08ba452b5aaedec608843c8fc713c8405e00c39060200161087b565b6008546001600160a01b031633146115d95760405162461bcd60e51b815260040161083590612540565b80516115ec90600c906020840190612012565b507fbd636f157872a97a1e701d2df5503442cdff3bc35bc4bea76c95e5e53cad00448160405161087b919061252d565b6008546001600160a01b031633146116465760405162461bcd60e51b815260040161083590612540565b805161165990600b906020840190612012565b507fcd77469b86bd5e6ccb68fdbdd51d21940e64ca5b5241ab0f9c56bcef4f3973778160405161087b919061252d565b6008546001600160a01b031633146116b35760405162461bcd60e51b815260040161083590612540565b6001600160a01b0381166117185760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610835565b61172181611b12565b50565b6008546001600160a01b0316331461174e5760405162461bcd60e51b815260040161083590612540565b60138190556040518181527f0dfd4d63e939364962f32ed5481bf6e523e3b4918c6c413fe7a8876751803d659060200161087b565b6000805482108015610805575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611815826119f8565b9050836001600160a01b031681600001516001600160a01b03161461184c5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061186a575061186a853361072b565b8061188557503361187a84610918565b6001600160a01b0316145b9050806118a557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166118cc57604051633a954ecd60e21b815260040160405180910390fd5b6118d8600084876117ae565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166119ac5760005482146119ac57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281600054811015611af957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611af75780516001600160a01b031615611a8e579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611af2579392505050565b611a8e565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611b7e828260405180602001604052806000815250611db8565b5050565b600082611b8f8584611dc5565b14949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611bcd9033908990889088906004016124af565b602060405180830381600087803b158015611be757600080fd5b505af1925050508015611c17575060408051601f3d908101601f19168201909252611c1491810190612360565b60015b611c72573d808015611c45576040519150601f19603f3d011682016040523d82523d6000602084013e611c4a565b606091505b508051611c6a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461089590612603565b606081611cc35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ced5780611cd78161263e565b9150611ce69050600a8361258d565b9150611cc7565b6000816001600160401b03811115611d1557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611d3f576020820181803683370190505b5090505b8415611c8857611d546001836125c0565b9150611d61600a86612659565b611d6c906030612575565b60f81b818381518110611d8f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611db1600a8661258d565b9450611d43565b610ad28383836001611e47565b600081815b8451811015611e3f576000858281518110611df557634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611e1b5760008381526020829052604090209250611e2c565b600081815260208490526040902092505b5080611e378161263e565b915050611dca565b509392505050565b6000546001600160a01b038516611e7057604051622e076360e81b815260040160405180910390fd5b83611e8e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611f3a57506001600160a01b0387163b15155b15611fc3575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611f8b6000888480600101955088611b98565b611fa8576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611f40578260005414611fbe57600080fd5b612009565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611fc4575b506000556119f1565b82805461201e90612603565b90600052602060002090601f0160209004810192826120405760008555612086565b82601f1061205957805160ff1916838001178555612086565b82800160010185558215612086579182015b8281111561208657825182559160200191906001019061206b565b50612092929150612096565b5090565b5b808211156120925760008155600101612097565b60006001600160401b03808411156120c5576120c5612699565b604051601f8501601f19908116603f011681019082821181831017156120ed576120ed612699565b8160405280935085815286868601111561210657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461213757600080fd5b919050565b8035801515811461213757600080fd5b60006020828403121561215d578081fd5b61154982612120565b60008060408385031215612178578081fd5b61218183612120565b915061218f60208401612120565b90509250929050565b6000806000606084860312156121ac578081fd5b6121b584612120565b92506121c360208501612120565b9150604084013590509250925092565b600080600080608085870312156121e8578081fd5b6121f185612120565b93506121ff60208601612120565b92506040850135915060608501356001600160401b03811115612220578182fd5b8501601f81018713612230578182fd5b61223f878235602084016120ab565b91505092959194509250565b6000806040838503121561225d578182fd5b61226683612120565b915061218f6020840161213c565b60008060408385031215612286578182fd5b61228f83612120565b946020939093013593505050565b6000806000604084860312156122b1578283fd5b83356001600160401b03808211156122c7578485fd5b818601915086601f8301126122da578485fd5b8135818111156122e8578586fd5b8760208260051b85010111156122fc578586fd5b6020928301989097509590910135949350505050565b600060208284031215612323578081fd5b6115498261213c565b60006020828403121561233d578081fd5b5035919050565b600060208284031215612355578081fd5b8135611549816126af565b600060208284031215612371578081fd5b8151611549816126af565b60006020828403121561238d578081fd5b81356001600160401b038111156123a2578182fd5b8201601f810184136123b2578182fd5b611c88848235602084016120ab565b600081518084526123d98160208601602086016125d7565b601f01601f19169290920160200192915050565b6000845160206124008285838a016125d7565b8551918401916124138184848a016125d7565b85549201918390600181811c908083168061242f57607f831692505b85831081141561244d57634e487b7160e01b88526022600452602488fd5b80801561246157600181146124725761249e565b60ff1985168852838801955061249e565b60008b815260209020895b858110156124965781548a82015290840190880161247d565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124e2908301846123c1565b9695505050505050565b6040808252810183905260006001600160fb1b0384111561250b578081fd5b8360051b80866060850137820160600190815260209091019190915292915050565b60208152600061154960208301846123c1565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156125885761258861266d565b500190565b60008261259c5761259c612683565b500490565b60008160001904831182151516156125bb576125bb61266d565b500290565b6000828210156125d2576125d261266d565b500390565b60005b838110156125f25781810151838201526020016125da565b838111156113d35750506000910152565b600181811c9082168061261757607f821691505b6020821081141561263857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126525761265261266d565b5060010190565b60008261266857612668612683565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461172157600080fdfea2646970667358221220f6a0259560a416b18f0353610188f37c6e30baee63c3c26623f96eed7944c93764736f6c63430008040033

Deployed Bytecode

0x6080604052600436106102675760003560e01c806366cb24a511610144578063c6682862116100b6578063db4bec441161007a578063db4bec44146106ca578063e7b99ec7146106fa578063e985e9c514610710578063f2c4ce1e14610759578063f2fde38b14610779578063f5aa406d1461079957600080fd5b8063c66828621461063f578063c87b56dd14610654578063d49479eb14610674578063d5abeb0114610694578063da3ef23f146106aa57600080fd5b8063940cd05b11610108578063940cd05b146105a457806395d89b41146105c4578063a0712d68146105d9578063a22cb465146105ec578063a6d612f91461060c578063b88d4fde1461061f57600080fd5b806366cb24a5146105115780636f8b44b01461053157806370a0823114610551578063715018a6146105715780638da5cb5b1461058657600080fd5b806323b872dd116101dd578063488caa73116101a1578063488caa7314610463578063518302271461048357806355f804b31461049d5780635c975abb146104bd57806361e61a25146104d75780636352211e146104f157600080fd5b806323b872dd146103e5578063386bfc98146104055780633ccfd60b1461041b57806342842e0e1461042357806344a0d68a1461044357600080fd5b8063088a4ed01161022f578063088a4ed014610332578063095ea7b31461035257806313faede61461037257806318160ddd1461039657806321b8092e146103af578063239c70ae146103cf57600080fd5b806301ffc9a71461026c57806302329a29146102a157806306fdde03146102c3578063081812fc146102e5578063081c8c441461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004612344565b6107b9565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102c16102bc366004612312565b61080b565b005b3480156102cf57600080fd5b506102d8610886565b604051610298919061252d565b3480156102f157600080fd5b5061030561030036600461232c565b610918565b6040516001600160a01b039091168152602001610298565b34801561032957600080fd5b506102d861095c565b34801561033e57600080fd5b506102c161034d36600461232c565b6109ea565b34801561035e57600080fd5b506102c161036d366004612274565b610a49565b34801561037e57600080fd5b50610388600d5481565b604051908152602001610298565b3480156103a257600080fd5b5060015460005403610388565b3480156103bb57600080fd5b506102c16103ca36600461214c565b610ad7565b3480156103db57600080fd5b5061038860105481565b3480156103f157600080fd5b506102c1610400366004612198565b610b4f565b34801561041157600080fd5b5061038860135481565b6102c1610b5a565b34801561042f57600080fd5b506102c161043e366004612198565b610c10565b34801561044f57600080fd5b506102c161045e36600461232c565b610c2b565b34801561046f57600080fd5b50600954610305906001600160a01b031681565b34801561048f57600080fd5b5060155461028c9060ff1681565b3480156104a957600080fd5b506102c16104b836600461237c565b610c8a565b3480156104c957600080fd5b50600e5461028c9060ff1681565b3480156104e357600080fd5b5060125461028c9060ff1681565b3480156104fd57600080fd5b5061030561050c36600461232c565b610cf7565b34801561051d57600080fd5b506102c161052c366004612312565b610d09565b34801561053d57600080fd5b506102c161054c36600461232c565b610d74565b34801561055d57600080fd5b5061038861056c36600461214c565b610dd3565b34801561057d57600080fd5b506102c1610e21565b34801561059257600080fd5b506008546001600160a01b0316610305565b3480156105b057600080fd5b506102c16105bf366004612312565b610e57565b3480156105d057600080fd5b506102d8610ec2565b6102c16105e736600461232c565b610ed1565b3480156105f857600080fd5b506102c161060736600461224b565b611032565b6102c161061a36600461229d565b6110c8565b34801561062b57600080fd5b506102c161063a3660046121d3565b611388565b34801561064b57600080fd5b506102d86113d9565b34801561066057600080fd5b506102d861066f36600461232c565b6113e6565b34801561068057600080fd5b506102c161068f36600461232c565b611550565b3480156106a057600080fd5b50610388600f5481565b3480156106b657600080fd5b506102c16106c536600461237c565b6115af565b3480156106d657600080fd5b5061028c6106e536600461214c565b60146020526000908152604090205460ff1681565b34801561070657600080fd5b5061038860115481565b34801561071c57600080fd5b5061028c61072b366004612166565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561076557600080fd5b506102c161077436600461237c565b61161c565b34801561078557600080fd5b506102c161079436600461214c565b611689565b3480156107a557600080fd5b506102c16107b436600461232c565b611724565b60006001600160e01b031982166380ac58cd60e01b14806107ea57506001600160e01b03198216635b5e139f60e01b145b8061080557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461083e5760405162461bcd60e51b815260040161083590612540565b60405180910390fd5b600e805460ff19168215159081179091556040519081527f67f4224f6117d25310ef3a7c494aef25faf1a438799b4218af7abebb19acdb14906020015b60405180910390a150565b60606002805461089590612603565b80601f01602080910402602001604051908101604052809291908181526020018280546108c190612603565b801561090e5780601f106108e35761010080835404028352916020019161090e565b820191906000526020600020905b8154815290600101906020018083116108f157829003601f168201915b5050505050905090565b600061092382611783565b610940576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600b805461096990612603565b80601f016020809104026020016040519081016040528092919081815260200182805461099590612603565b80156109e25780601f106109b7576101008083540402835291602001916109e2565b820191906000526020600020905b8154815290600101906020018083116109c557829003601f168201915b505050505081565b6008546001600160a01b03163314610a145760405162461bcd60e51b815260040161083590612540565b60108190556040518181527fb505c02ee160e3ad6f9faf50a528b2aded2d886d3d71eaf4aa118d7a4ddf0bc59060200161087b565b6000610a5482610cf7565b9050806001600160a01b0316836001600160a01b03161415610a895760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610aa95750610aa7813361072b565b155b15610ac7576040516367d9dca160e11b815260040160405180910390fd5b610ad28383836117ae565b505050565b6008546001600160a01b03163314610b015760405162461bcd60e51b815260040161083590612540565b600980546001600160a01b0319166001600160a01b0383169081179091556040519081527f7b3f26f5735eda85390123a65f4b4bfb898d595d98e2f96fea39a94f27331dae9060200161087b565b610ad283838361180a565b6008546001600160a01b03163314610b845760405162461bcd60e51b815260040161083590612540565b6009546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610bd1576040519150601f19603f3d011682016040523d82523d6000602084013e610bd6565b606091505b5050905080610be457600080fd5b6040517fb88755970a5171e2e6cd3a4629e010611aa1096c3f742ec5705c564fe23d8a8190600090a150565b610ad283838360405180602001604052806000815250611388565b6008546001600160a01b03163314610c555760405162461bcd60e51b815260040161083590612540565b600d8190556040518181527f4dd2a5ec13f6b592d27f09b567c7f5764b967191000d6ea870a1bdfc8a8a191d9060200161087b565b6008546001600160a01b03163314610cb45760405162461bcd60e51b815260040161083590612540565b8051610cc790600a906020840190612012565b507fa93e7bffe1d9cf216fa67e24bb04fdd93b54c49932cb707eb79047ea23bcc7478160405161087b919061252d565b6000610d02826119f8565b5192915050565b6008546001600160a01b03163314610d335760405162461bcd60e51b815260040161083590612540565b6012805460ff19168215159081179091556040519081527ffde4f90d2b5f1d77636cd64052d52ac613d963642bce08723be1d1c1b902bcc69060200161087b565b6008546001600160a01b03163314610d9e5760405162461bcd60e51b815260040161083590612540565b600f8190556040518181527fa0d24607d8715449afeaea245a9dc03c9e5fae94f159423c1e6a3957532d20729060200161087b565b60006001600160a01b038216610dfc576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610e4b5760405162461bcd60e51b815260040161083590612540565b610e556000611b12565b565b6008546001600160a01b03163314610e815760405162461bcd60e51b815260040161083590612540565b6015805460ff19168215159081179091556040519081527f067225b113261bc0d9511cc3ae674ea4ad4f4853016c8c3dff9c00885918c69a9060200161087b565b60606003805461089590612603565b600e5460ff1615610f245760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f74206d696e74207768696c652070617573656400000000000000006044820152606401610835565b60008111610f3157600080fd5b600f5481610f426001546000540390565b610f4c9190612575565b1115610f5757600080fd5b6008546001600160a01b03163314610ff85760105433600090815260056020526040902054600160401b90046001600160401b0316610f969083612575565b1115610fde5760405162461bcd60e51b8152602060048201526017602482015276115e18d959591cc81b585e081b5a5b9d08185b5bdd5b9d604a1b6044820152606401610835565b80600d54610fec91906125a1565b341015610ff857600080fd5b6110023382611b64565b6040518181527f9031977345c66c78aecb300307e08dbf054962392ef18f89c9f88c9cc6c6cff19060200161087b565b6001600160a01b03821633141561105c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60125460ff16156111295760405162461bcd60e51b815260206004820152602560248201527f43616e6e6f74206d696e74207768696c652077686974656c6973742069732070604482015264185d5cd95960da1b6064820152608401610835565b6000811161113657600080fd5b600f54816111476001546000540390565b6111519190612575565b111561115c57600080fd5b3360009081526014602052604090205460ff16156111cb5760405162461bcd60e51b815260206004820152602660248201527f416464726573732068617320616c726561647920636c61696d65642077686974604482015265656c6973742160d01b6064820152608401610835565b6008546001600160a01b0316331461133e5760105433600090815260056020526040902054600160401b90046001600160401b031661120a9083612575565b11156112525760405162461bcd60e51b8152602060048201526017602482015276115e18d959591cc81b585e081b5a5b9d08185b5bdd5b9d604a1b6044820152606401610835565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506112cc848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506013549150849050611b82565b6113085760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b6044820152606401610835565b8160115461131691906125a1565b34101561132257600080fd5b50336000908152601460205260409020805460ff191660011790555b6113483382611b64565b7f47a9c0a8ed1b7177348fb273591983301b2e05e8a60dc203a381b7c675ec347e83838360405161137b939291906124ec565b60405180910390a1505050565b61139384848461180a565b6001600160a01b0383163b151580156113b557506113b384848484611b98565b155b156113d3576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600c805461096990612603565b60606113f182611783565b6114555760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610835565b60155460ff166114f157600b805461146c90612603565b80601f016020809104026020016040519081016040528092919081815260200182805461149890612603565b80156114e55780601f106114ba576101008083540402835291602001916114e5565b820191906000526020600020905b8154815290600101906020018083116114c857829003601f168201915b50505050509050919050565b60006114fb611c90565b9050600081511161151b5760405180602001604052806000815250611549565b8061152584611c9f565b600c604051602001611539939291906123ed565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461157a5760405162461bcd60e51b815260040161083590612540565b60118190556040518181527f5ccb0df1801c19d17cf8f5045e08ba452b5aaedec608843c8fc713c8405e00c39060200161087b565b6008546001600160a01b031633146115d95760405162461bcd60e51b815260040161083590612540565b80516115ec90600c906020840190612012565b507fbd636f157872a97a1e701d2df5503442cdff3bc35bc4bea76c95e5e53cad00448160405161087b919061252d565b6008546001600160a01b031633146116465760405162461bcd60e51b815260040161083590612540565b805161165990600b906020840190612012565b507fcd77469b86bd5e6ccb68fdbdd51d21940e64ca5b5241ab0f9c56bcef4f3973778160405161087b919061252d565b6008546001600160a01b031633146116b35760405162461bcd60e51b815260040161083590612540565b6001600160a01b0381166117185760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610835565b61172181611b12565b50565b6008546001600160a01b0316331461174e5760405162461bcd60e51b815260040161083590612540565b60138190556040518181527f0dfd4d63e939364962f32ed5481bf6e523e3b4918c6c413fe7a8876751803d659060200161087b565b6000805482108015610805575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611815826119f8565b9050836001600160a01b031681600001516001600160a01b03161461184c5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061186a575061186a853361072b565b8061188557503361187a84610918565b6001600160a01b0316145b9050806118a557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166118cc57604051633a954ecd60e21b815260040160405180910390fd5b6118d8600084876117ae565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166119ac5760005482146119ac57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281600054811015611af957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611af75780516001600160a01b031615611a8e579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611af2579392505050565b611a8e565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611b7e828260405180602001604052806000815250611db8565b5050565b600082611b8f8584611dc5565b14949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611bcd9033908990889088906004016124af565b602060405180830381600087803b158015611be757600080fd5b505af1925050508015611c17575060408051601f3d908101601f19168201909252611c1491810190612360565b60015b611c72573d808015611c45576040519150601f19603f3d011682016040523d82523d6000602084013e611c4a565b606091505b508051611c6a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461089590612603565b606081611cc35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ced5780611cd78161263e565b9150611ce69050600a8361258d565b9150611cc7565b6000816001600160401b03811115611d1557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611d3f576020820181803683370190505b5090505b8415611c8857611d546001836125c0565b9150611d61600a86612659565b611d6c906030612575565b60f81b818381518110611d8f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611db1600a8661258d565b9450611d43565b610ad28383836001611e47565b600081815b8451811015611e3f576000858281518110611df557634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611e1b5760008381526020829052604090209250611e2c565b600081815260208490526040902092505b5080611e378161263e565b915050611dca565b509392505050565b6000546001600160a01b038516611e7057604051622e076360e81b815260040160405180910390fd5b83611e8e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611f3a57506001600160a01b0387163b15155b15611fc3575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611f8b6000888480600101955088611b98565b611fa8576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611f40578260005414611fbe57600080fd5b612009565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611fc4575b506000556119f1565b82805461201e90612603565b90600052602060002090601f0160209004810192826120405760008555612086565b82601f1061205957805160ff1916838001178555612086565b82800160010185558215612086579182015b8281111561208657825182559160200191906001019061206b565b50612092929150612096565b5090565b5b808211156120925760008155600101612097565b60006001600160401b03808411156120c5576120c5612699565b604051601f8501601f19908116603f011681019082821181831017156120ed576120ed612699565b8160405280935085815286868601111561210657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461213757600080fd5b919050565b8035801515811461213757600080fd5b60006020828403121561215d578081fd5b61154982612120565b60008060408385031215612178578081fd5b61218183612120565b915061218f60208401612120565b90509250929050565b6000806000606084860312156121ac578081fd5b6121b584612120565b92506121c360208501612120565b9150604084013590509250925092565b600080600080608085870312156121e8578081fd5b6121f185612120565b93506121ff60208601612120565b92506040850135915060608501356001600160401b03811115612220578182fd5b8501601f81018713612230578182fd5b61223f878235602084016120ab565b91505092959194509250565b6000806040838503121561225d578182fd5b61226683612120565b915061218f6020840161213c565b60008060408385031215612286578182fd5b61228f83612120565b946020939093013593505050565b6000806000604084860312156122b1578283fd5b83356001600160401b03808211156122c7578485fd5b818601915086601f8301126122da578485fd5b8135818111156122e8578586fd5b8760208260051b85010111156122fc578586fd5b6020928301989097509590910135949350505050565b600060208284031215612323578081fd5b6115498261213c565b60006020828403121561233d578081fd5b5035919050565b600060208284031215612355578081fd5b8135611549816126af565b600060208284031215612371578081fd5b8151611549816126af565b60006020828403121561238d578081fd5b81356001600160401b038111156123a2578182fd5b8201601f810184136123b2578182fd5b611c88848235602084016120ab565b600081518084526123d98160208601602086016125d7565b601f01601f19169290920160200192915050565b6000845160206124008285838a016125d7565b8551918401916124138184848a016125d7565b85549201918390600181811c908083168061242f57607f831692505b85831081141561244d57634e487b7160e01b88526022600452602488fd5b80801561246157600181146124725761249e565b60ff1985168852838801955061249e565b60008b815260209020895b858110156124965781548a82015290840190880161247d565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124e2908301846123c1565b9695505050505050565b6040808252810183905260006001600160fb1b0384111561250b578081fd5b8360051b80866060850137820160600190815260209091019190915292915050565b60208152600061154960208301846123c1565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156125885761258861266d565b500190565b60008261259c5761259c612683565b500490565b60008160001904831182151516156125bb576125bb61266d565b500290565b6000828210156125d2576125d261266d565b500390565b60005b838110156125f25781810151838201526020016125da565b838111156113d35750506000910152565b600181811c9082168061261757607f821691505b6020821081141561263857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126525761265261266d565b5060010190565b60008261266857612668612683565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461172157600080fdfea2646970667358221220f6a0259560a416b18f0353610188f37c6e30baee63c3c26623f96eed7944c93764736f6c63430008040033

Deployed Bytecode Sourcemap

46537:5758:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28775:305;;;;;;;;;;-1:-1:-1;28775:305:0;;;;;:::i;:::-;;:::i;:::-;;;9070:14:1;;9063:22;9045:41;;9033:2;9018:18;28775:305:0;;;;;;;;51748:104;;;;;;;;;;-1:-1:-1;51748:104:0;;;;;:::i;:::-;;:::i;:::-;;31888:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33391:204::-;;;;;;;;;;-1:-1:-1;33391:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7795:32:1;;;7777:51;;7765:2;7750:18;33391:204:0;7732:102:1;47446:33:0;;;;;;;;;;;;;:::i;50921:171::-;;;;;;;;;;-1:-1:-1;50921:171:0;;;;;:::i;:::-;;:::i;32954:371::-;;;;;;;;;;-1:-1:-1;32954:371:0;;;;;:::i;:::-;;:::i;47526:32::-;;;;;;;;;;;;;;;;;;;9243:25:1;;;9231:2;9216:18;47526:32:0;9198:76:1;28024:303:0;;;;;;;;;;-1:-1:-1;28278:12:0;;28068:7;28262:13;:28;28024:303;;51857:167;;;;;;;;;;-1:-1:-1;51857:167:0;;;;;:::i;:::-;;:::i;47678:33::-;;;;;;;;;;;;;;;;34256:170;;;;;;;;;;-1:-1:-1;34256:170:0;;;;;:::i;:::-;;:::i;47878:33::-;;;;;;;;;;;;;;;;52029:263;;;:::i;34497:185::-;;;;;;;;;;-1:-1:-1;34497:185:0;;;;;:::i;:::-;;:::i;48201:112::-;;;;;;;;;;-1:-1:-1;48201:112:0;;;;;:::i;:::-;;:::i;47341:78::-;;;;;;;;;;-1:-1:-1;47341:78:0;;;;-1:-1:-1;;;;;47341:78:0;;;48001:28;;;;;;;;;;-1:-1:-1;48001:28:0;;;;;;;;51424:139;;;;;;;;;;-1:-1:-1;51424:139:0;;;;;:::i;:::-;;:::i;47576:25::-;;;;;;;;;;-1:-1:-1;47576:25:0;;;;;;;;47818:34;;;;;;;;;;-1:-1:-1;47818:34:0;;;;;;;;31696:125;;;;;;;;;;-1:-1:-1;31696:125:0;;;;;:::i;:::-;;:::i;49743:127::-;;;;;;;;;;-1:-1:-1;49743:127:0;;;;;:::i;:::-;;:::i;51097:145::-;;;;;;;;;;-1:-1:-1;51097:145:0;;;;;:::i;:::-;;:::i;29144:206::-;;;;;;;;;;-1:-1:-1;29144:206:0;;;;;:::i;:::-;;:::i;20749:103::-;;;;;;;;;;;;;:::i;20098:87::-;;;;;;;;;;-1:-1:-1;20171:6:0;;-1:-1:-1;;;;;20171:6:0;20098:87;;49397:112;;;;;;;;;;-1:-1:-1;49397:112:0;;;;;:::i;:::-;;:::i;32057:104::-;;;;;;;;;;;;;:::i;48486:455::-;;;;;;:::i;:::-;;:::i;33667:287::-;;;;;;;;;;-1:-1:-1;33667:287:0;;;;;:::i;:::-;;:::i;50076:838::-;;;;;;:::i;:::-;;:::i;34753:369::-;;;;;;;;;;-1:-1:-1;34753:369:0;;;;;:::i;:::-;;:::i;47483:37::-;;;;;;;;;;;;;:::i;48946:431::-;;;;;;;;;;-1:-1:-1;48946:431:0;;;;;:::i;:::-;;:::i;49568:139::-;;;;;;;;;;-1:-1:-1;49568:139:0;;;;;:::i;:::-;;:::i;47628:30::-;;;;;;;;;;;;;;;;51568:175;;;;;;;;;;-1:-1:-1;51568:175:0;;;;;:::i;:::-;;:::i;47945:50::-;;;;;;;;;;-1:-1:-1;47945:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;47748:43;;;;;;;;;;;;;;;;34025:164;;;;;;;;;;-1:-1:-1;34025:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34146:25:0;;;34122:4;34146:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34025:164;51247:172;;;;;;;;;;-1:-1:-1;51247:172:0;;;;;:::i;:::-;;:::i;21007:201::-;;;;;;;;;;-1:-1:-1;21007:201:0;;;;;:::i;:::-;;:::i;49898:173::-;;;;;;;;;;-1:-1:-1;49898:173:0;;;;;:::i;:::-;;:::i;28775:305::-;28877:4;-1:-1:-1;;;;;;28914:40:0;;-1:-1:-1;;;28914:40:0;;:105;;-1:-1:-1;;;;;;;28971:48:0;;-1:-1:-1;;;28971:48:0;28914:105;:158;;;-1:-1:-1;;;;;;;;;;24469:40:0;;;29036:36;28894:178;28775:305;-1:-1:-1;;28775:305:0:o;51748:104::-;20171:6;;-1:-1:-1;;;;;20171:6:0;18911:10;20318:23;20310:68;;;;-1:-1:-1;;;20310:68:0;;;;;;;:::i;:::-;;;;;;;;;51804:6:::1;:15:::0;;-1:-1:-1;;51804:15:0::1;::::0;::::1;;::::0;;::::1;::::0;;;51829:18:::1;::::0;9045:41:1;;;51829:18:0::1;::::0;9033:2:1;9018:18;51829::0::1;;;;;;;;51748:104:::0;:::o;31888:100::-;31942:13;31975:5;31968:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31888:100;:::o;33391:204::-;33459:7;33484:16;33492:7;33484;:16::i;:::-;33479:64;;33509:34;;-1:-1:-1;;;33509:34:0;;;;;;;;;;;33479:64;-1:-1:-1;33563:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33563:24:0;;33391:204::o;47446:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50921:171::-;20171:6;;-1:-1:-1;;;;;20171:6:0;18911:10;20318:23;20310:68;;;;-1:-1:-1;;;20310:68:0;;;;;;;:::i;:::-;51002:13:::1;:33:::0;;;51045:42:::1;::::0;9243:25:1;;;51045:42:0::1;::::0;9231:2:1;9216:18;51045:42:0::1;9198:76:1::0;32954:371:0;33027:13;33043:24;33059:7;33043:15;:24::i;:::-;33027:40;;33088:5;-1:-1:-1;;;;;33082:11:0;:2;-1:-1:-1;;;;;33082:11:0;;33078:48;;;33102:24;;-1:-1:-1;;;33102:24:0;;;;;;;;;;;33078:48;18911:10;-1:-1:-1;;;;;33143:21:0;;;;;;:63;;-1:-1:-1;33169:37:0;33186:5;18911:10;34025:164;:::i;33169:37::-;33168:38;33143:63;33139:138;;;33230:35;;-1:-1:-1;;;33230:35:0;;;;;;;;;;;33139:138;33289:28;33298:2;33302:7;33311:5;33289:8;:28::i;:::-;32954:371;;;:::o;51857:167::-;20171:6;;-1:-1:-1;;;;;20171:6:0;18911:10;20318:23;20310:68;;;;-1:-1:-1;;;20310:68:0;;;;;;;:::i;:::-;51938:18:::1;:32:::0;;-1:-1:-1;;;;;;51938:32:0::1;-1:-1:-1::0;;;;;51938:32:0;::::1;::::0;;::::1;::::0;;;51980:39:::1;::::0;7777:51:1;;;51980:39:0::1;::::0;7765:2:1;7750:18;51980:39:0::1;7732:102:1::0;34256:170:0;34390:28;34400:4;34406:2;34410:7;34390:9;:28::i;52029:263::-;20171:6;;-1:-1:-1;;;;;20171:6:0;18911:10;20318:23;20310:68;;;;-1:-1:-1;;;20310:68:0;;;;;;;:::i;:::-;52187:18:::1;::::0;52178:68:::1;::::0;52165:7:::1;::::0;-1:-1:-1;;;;;52187:18:0::1;::::0;52220:21:::1;::::0;52165:7;52178:68;52165:7;52178:68;52220:21;52187:18;52178:68:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52164:82;;;52259:2;52251:11;;;::::0;::::1;;52272:15;::::0;::::1;::::0;;;::::1;20389:1;52029:263::o:0;34497:185::-;34635:39;34652:4;34658:2;34662:7;34635:39;;;;;;;;;;;;:16;:39::i;48201:112::-;20171:6;;-1:-1:-1;;;;;20171:6:0;18911:10;20318:23;20310:68;;;;-1:-1:-1;;;20310:68:0;;;;;;;:::i;:::-;48259:4:::1;:15:::0;;;48284:24:::1;::::0;9243:25:1;;;48284:24:0::1;::::0;9231:2:1;9216:18;48284:24:0::1;9198:76:1::0;51424:139:0;20171:6;;-1:-1:-1;;;;;20171:6:0;18911:10;20318:23;20310:68;;;;-1:-1:-1;;;20310:68:0;;;;;;;:::i;:::-;51499:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51530:28;51546:11;51530:28;;;;;;:::i;31696:125::-:0;31760:7;31787:21;31800:7;31787:12;:21::i;:::-;:26;;31696:125;-1:-1:-1;;31696:125:0:o;49743:127::-;20171:6;;-1:-1:-1;;;;;20171:6:0;18911:10;20318:23;20310:68;;;;-1:-1:-1;;;20310:68:0;;;;;;;:::i;:::-;49802:15:::1;:24:::0;;-1:-1:-1;;49802:24:0::1;::::0;::::1;;::::0;;::::1;::::0;;;49836:29:::1;::::0;9045:41:1;;;49836:29:0::1;::::0;9033:2:1;9018:18;49836:29:0::1;9000:92:1::0;51097:145:0;20171:6;;-1:-1:-1;;;;;20171:6:0;18911:10;20318:23;20310:68;;;;-1:-1:-1;;;20310:68:0;;;;;;;:::i;:::-;51170:9:::1;:25:::0;;;51205:32:::1;::::0;9243:25:1;;;51205:32:0::1;::::0;9231:2:1;9216:18;51205:32:0::1;9198:76:1::0;29144:206:0;29208:7;-1:-1:-1;;;;;29232:19:0;;29228:60;;29260:28;;-1:-1:-1;;;29260:28:0;;;;;;;;;;;29228:60;-1:-1:-1;;;;;;29314:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;29314:27:0;;29144:206::o;20749:103::-;20171:6;;-1:-1:-1;;;;;20171:6:0;18911:10;20318:23;20310:68;;;;-1:-1:-1;;;20310:68:0;;;;;;;:::i;:::-;20814:30:::1;20841:1;20814:18;:30::i;:::-;20749:103::o:0;49397:112::-;20171:6;;-1:-1:-1;;;;;20171:6:0;18911:10;20318:23;20310:68;;;;-1:-1:-1;;;20310:68:0;;;;;;;:::i;:::-;49456:8:::1;:17:::0;;-1:-1:-1;;49456:17:0::1;::::0;::::1;;::::0;;::::1;::::0;;;49483:21:::1;::::0;9045:41:1;;;49483:21:0::1;::::0;9033:2:1;9018:18;49483:21:0::1;9000:92:1::0;32057:104:0;32113:13;32146:7;32139:14;;;;;:::i;48486:455::-;48556:6;;;;48555:7;48547:45;;;;-1:-1:-1;;;48547:45:0;;10112:2:1;48547:45:0;;;10094:21:1;10151:2;10131:18;;;10124:30;10190:26;10170:18;;;10163:54;10234:18;;48547:45:0;10084:174:1;48547:45:0;48619:1;48605:11;:15;48597:24;;;;;;48665:9;;48650:11;48634:13;28278:12;;28068:7;28262:13;:28;;28024:303;48634:13;:27;;;;:::i;:::-;:40;;48626:49;;;;;;20171:6;;-1:-1:-1;;;;;20171:6:0;48686:10;:21;48682:180;;48768:13;;48752:10;29493:7;29528:19;;;:12;:19;;;;;:32;-1:-1:-1;;;29528:32:0;;-1:-1:-1;;;;;29528:32:0;48723:41;;:11;:41;:::i;:::-;:58;;48715:95;;;;-1:-1:-1;;;48715:95:0;;11990:2:1;48715:95:0;;;11972:21:1;12029:2;12009:18;;;12002:30;-1:-1:-1;;;12048:18:1;;;12041:53;12111:18;;48715:95:0;11962:173:1;48715:95:0;48844:11;48837:4;;:18;;;;:::i;:::-;48824:9;:31;;48816:40;;;;;;48868:34;48878:10;48890:11;48868:9;:34::i;:::-;48912:24;;9243:25:1;;;48912:24:0;;9231:2:1;9216:18;48912:24:0;9198:76:1;33667:287:0;-1:-1:-1;;;;;33766:24:0;;18911:10;33766:24;33762:54;;;33799:17;;-1:-1:-1;;;33799:17:0;;;;;;;;;;;33762:54;18911:10;33829:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33829:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33829:53:0;;;;;;;;;;33898:48;;9045:41:1;;;33829:42:0;;18911:10;33898:48;;9018:18:1;33898:48:0;;;;;;;33667:287;;:::o;50076:838::-;50189:15;;;;50188:16;50180:67;;;;-1:-1:-1;;;50180:67:0;;11584:2:1;50180:67:0;;;11566:21:1;11623:2;11603:18;;;11596:30;11662:34;11642:18;;;11635:62;-1:-1:-1;;;11713:18:1;;;11706:35;11758:19;;50180:67:0;11556:227:1;50180:67:0;50274:1;50260:11;:15;50252:24;;;;;;50320:9;;50305:11;50289:13;28278:12;;28068:7;28262:13;:28;;28024:303;50289:13;:27;;;;:::i;:::-;:40;;50281:49;;;;;;50364:10;50346:30;;;;:16;:30;;;;;;;;50344:32;50335:85;;;;-1:-1:-1;;;50335:85:0;;12342:2:1;50335:85:0;;;12324:21:1;12381:2;12361:18;;;12354:30;12420:34;12400:18;;;12393:62;-1:-1:-1;;;12471:18:1;;;12464:36;12517:19;;50335:85:0;12314:228:1;50335:85:0;20171:6;;-1:-1:-1;;;;;20171:6:0;50431:10;:21;50427:385;;50513:13;;50497:10;29493:7;29528:19;;;:12;:19;;;;;:32;-1:-1:-1;;;29528:32:0;;-1:-1:-1;;;;;29528:32:0;50468:41;;:11;:41;:::i;:::-;:58;;50460:95;;;;-1:-1:-1;;;50460:95:0;;11990:2:1;50460:95:0;;;11972:21:1;12029:2;12009:18;;;12002:30;-1:-1:-1;;;12048:18:1;;;12041:53;12111:18;;50460:95:0;11962:173:1;50460:95:0;50587:30;;-1:-1:-1;;50605:10:0;5800:2:1;5796:15;5792:53;50587:30:0;;;5780:66:1;50561:12:0;;5862::1;;50587:30:0;;;;;;;;;;;;50576:43;;;;;;50561:58;;50634:55;50654:12;;50634:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50668:13:0;;;-1:-1:-1;50683:4:0;;-1:-1:-1;50634:18:0;:55::i;:::-;50625:83;;;;-1:-1:-1;;;50625:83:0;;11242:2:1;50625:83:0;;;11224:21:1;11281:2;11261:18;;;11254:30;-1:-1:-1;;;11300:18:1;;;11293:43;11353:18;;50625:83:0;11214:163:1;50625:83:0;50751:11;50735:13;;:27;;;;:::i;:::-;50722:9;:40;;50714:49;;;;;;-1:-1:-1;50787:10:0;50769:30;;;;:16;:30;;;;;:37;;-1:-1:-1;;50769:37:0;50802:4;50769:37;;;50427:385;50818:34;50828:10;50840:11;50818:9;:34::i;:::-;50862:47;50882:12;;50896:11;50862:47;;;;;;;;:::i;:::-;;;;;;;;50076:838;;;:::o;34753:369::-;34920:28;34930:4;34936:2;34940:7;34920:9;:28::i;:::-;-1:-1:-1;;;;;34963:13:0;;11348:20;11387:8;;34963:76;;;;;34983:56;35014:4;35020:2;35024:7;35033:5;34983:30;:56::i;:::-;34982:57;34963:76;34959:156;;;35063:40;;-1:-1:-1;;;35063:40:0;;;;;;;;;;;34959:156;34753:369;;;;:::o;47483:37::-;;;;;;;:::i;48946:431::-;49029:13;49060:16;49068:7;49060;:16::i;:::-;49051:77;;;;-1:-1:-1;;;49051:77:0;;10826:2:1;49051:77:0;;;10808:21:1;10865:2;10845:18;;;10838:30;10904:34;10884:18;;;10877:62;-1:-1:-1;;;10955:18:1;;;10948:45;11010:19;;49051:77:0;10798:237:1;49051:77:0;49138:8;;;;49135:55;;49170:14;49163:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48946:431;;;:::o;49135:55::-;49196:28;49227:10;:8;:10::i;:::-;49196:41;;49280:1;49255:14;49249:28;:32;:123;;;;;;;;;;;;;;;;;49312:14;49328:18;:7;:16;:18::i;:::-;49348:13;49295:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49249:123;49242:130;48946:431;-1:-1:-1;;;48946:431:0:o;49568:139::-;20171:6;;-1:-1:-1;;;;;20171:6:0;18911:10;20318:23;20310:68;;;;-1:-1:-1;;;20310:68:0;;;;;;;:::i;:::-;49635:13:::1;:24:::0;;;49669:33:::1;::::0;9243:25:1;;;49669:33:0::1;::::0;9231:2:1;9216:18;49669:33:0::1;9198:76:1::0;51568:175:0;20171:6;;-1:-1:-1;;;;;20171:6:0;18911:10;20318:23;20310:68;;;;-1:-1:-1;;;20310:68:0;;;;;;;:::i;:::-;51655:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51698:40;51720:17;51698:40;;;;;;:::i;51247:172::-:0;20171:6;;-1:-1:-1;;;;;20171:6:0;18911:10;20318:23;20310:68;;;;-1:-1:-1;;;20310:68:0;;;;;;;:::i;:::-;51333:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51375:39;51398:15;51375:39;;;;;;:::i;21007:201::-:0;20171:6;;-1:-1:-1;;;;;20171:6:0;18911:10;20318:23;20310:68;;;;-1:-1:-1;;;20310:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21096:22:0;::::1;21088:73;;;::::0;-1:-1:-1;;;21088:73:0;;9705:2:1;21088:73:0::1;::::0;::::1;9687:21:1::0;9744:2;9724:18;;;9717:30;9783:34;9763:18;;;9756:62;-1:-1:-1;;;9834:18:1;;;9827:36;9880:19;;21088:73:0::1;9677:228:1::0;21088:73:0::1;21172:28;21191:8;21172:18;:28::i;:::-;21007:201:::0;:::o;49898:173::-;20171:6;;-1:-1:-1;;;;;20171:6:0;18911:10;20318:23;20310:68;;;;-1:-1:-1;;;20310:68:0;;;;;;;:::i;:::-;49981:13:::1;:33:::0;;;50024:42:::1;::::0;9243:25:1;;;50024:42:0::1;::::0;9231:2:1;9216:18;50024:42:0::1;9198:76:1::0;35377:187:0;35434:4;35498:13;;35488:7;:23;35458:98;;;;-1:-1:-1;;35529:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35529:27:0;;;;35528:28;;35377:187::o;43547:196::-;43662:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;43662:29:0;-1:-1:-1;;;;;43662:29:0;;;;;;;;;43707:28;;43662:24;;43707:28;;;;;;;43547:196;;;:::o;38490:2130::-;38605:35;38643:21;38656:7;38643:12;:21::i;:::-;38605:59;;38703:4;-1:-1:-1;;;;;38681:26:0;:13;:18;;;-1:-1:-1;;;;;38681:26:0;;38677:67;;38716:28;;-1:-1:-1;;;38716:28:0;;;;;;;;;;;38677:67;38757:22;18911:10;-1:-1:-1;;;;;38783:20:0;;;;:73;;-1:-1:-1;38820:36:0;38837:4;18911:10;34025:164;:::i;38820:36::-;38783:126;;;-1:-1:-1;18911:10:0;38873:20;38885:7;38873:11;:20::i;:::-;-1:-1:-1;;;;;38873:36:0;;38783:126;38757:153;;38928:17;38923:66;;38954:35;;-1:-1:-1;;;38954:35:0;;;;;;;;;;;38923:66;-1:-1:-1;;;;;39004:16:0;;39000:52;;39029:23;;-1:-1:-1;;;39029:23:0;;;;;;;;;;;39000:52;39173:35;39190:1;39194:7;39203:4;39173:8;:35::i;:::-;-1:-1:-1;;;;;39504:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;39504:31:0;;;-1:-1:-1;;;;;39504:31:0;;;-1:-1:-1;;39504:31:0;;;;;;;39550:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;39550:29:0;;;;;;;;;;;39630:20;;;:11;:20;;;;;;39665:18;;-1:-1:-1;;;;;;39698:49:0;;;;-1:-1:-1;;;39731:15:0;39698:49;;;;;;;;;;40021:11;;40081:24;;;;;40124:13;;39630:20;;40081:24;;40124:13;40120:384;;40334:13;;40319:11;:28;40315:174;;40372:20;;40441:28;;;;-1:-1:-1;;;;;40415:54:0;-1:-1:-1;;;40415:54:0;-1:-1:-1;;;;;;40415:54:0;;;-1:-1:-1;;;;;40372:20:0;;40415:54;;;;40315:174;38490:2130;;;40551:7;40547:2;-1:-1:-1;;;;;40532:27:0;40541:4;-1:-1:-1;;;;;40532:27:0;;;;;;;;;;;40570:42;38490:2130;;;;;:::o;30525:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;30636:7:0;30719:13;;30712:4;:20;30681:886;;;30753:31;30787:17;;;:11;:17;;;;;;;;;30753:51;;;;;;;;;-1:-1:-1;;;;;30753:51:0;;;;-1:-1:-1;;;30753:51:0;;-1:-1:-1;;;;;30753:51:0;;;;;;;;-1:-1:-1;;;30753:51:0;;;;;;;;;;;;;;30823:729;;30873:14;;-1:-1:-1;;;;;30873:28:0;;30869:101;;30937:9;30525:1109;-1:-1:-1;;;30525:1109:0:o;30869:101::-;-1:-1:-1;;;31312:6:0;31357:17;;;;:11;:17;;;;;;;;;31345:29;;;;;;;;;-1:-1:-1;;;;;31345:29:0;;;;;-1:-1:-1;;;31345:29:0;;-1:-1:-1;;;;;31345:29:0;;;;;;;;-1:-1:-1;;;31345:29:0;;;;;;;;;;;;;31405:28;31401:109;;31473:9;30525:1109;-1:-1:-1;;;30525:1109:0:o;31401:109::-;31272:261;;;30681:886;;31595:31;;-1:-1:-1;;;31595:31:0;;;;;;;;;;;21368:191;21461:6;;;-1:-1:-1;;;;;21478:17:0;;;-1:-1:-1;;;;;;21478:17:0;;;;;;;21511:40;;21461:6;;;21478:17;21461:6;;21511:40;;21442:16;;21511:40;21368:191;;:::o;35572:104::-;35641:27;35651:2;35655:8;35641:27;;;;;;;;;;;;:9;:27::i;:::-;35572:104;;:::o;1681:190::-;1806:4;1859;1830:25;1843:5;1850:4;1830:12;:25::i;:::-;:33;;1681:190;-1:-1:-1;;;;1681:190:0:o;44235:667::-;44419:72;;-1:-1:-1;;;44419:72:0;;44398:4;;-1:-1:-1;;;;;44419:36:0;;;;;:72;;18911:10;;44470:4;;44476:7;;44485:5;;44419:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44419:72:0;;;;;;;;-1:-1:-1;;44419:72:0;;;;;;;;;;;;:::i;:::-;;;44415:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44653:13:0;;44649:235;;44699:40;;-1:-1:-1;;;44699:40:0;;;;;;;;;;;44649:235;44842:6;44836:13;44827:6;44823:2;44819:15;44812:38;44415:480;-1:-1:-1;;;;;;44538:55:0;-1:-1:-1;;;44538:55:0;;-1:-1:-1;44415:480:0;44235:667;;;;;;:::o;48332:114::-;48407:13;48434:7;48427:14;;;;;:::i;21840:723::-;21896:13;22117:10;22113:53;;-1:-1:-1;;22144:10:0;;;;;;;;;;;;-1:-1:-1;;;22144:10:0;;;;;21840:723::o;22113:53::-;22191:5;22176:12;22232:78;22239:9;;22232:78;;22265:8;;;;:::i;:::-;;-1:-1:-1;22288:10:0;;-1:-1:-1;22296:2:0;22288:10;;:::i;:::-;;;22232:78;;;22320:19;22352:6;-1:-1:-1;;;;;22342:17:0;;;;;-1:-1:-1;;;22342:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22342:17:0;;22320:39;;22370:154;22377:10;;22370:154;;22404:11;22414:1;22404:11;;:::i;:::-;;-1:-1:-1;22473:10:0;22481:2;22473:5;:10;:::i;:::-;22460:24;;:2;:24;:::i;:::-;22447:39;;22430:6;22437;22430:14;;;;;;-1:-1:-1;;;22430:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;22430:56:0;;;;;;;;-1:-1:-1;22501:11:0;22510:2;22501:11;;:::i;:::-;;;22370:154;;36039:163;36162:32;36168:2;36172:8;36182:5;36189:4;36162:5;:32::i;2232:675::-;2315:7;2358:4;2315:7;2373:497;2397:5;:12;2393:1;:16;2373:497;;;2431:20;2454:5;2460:1;2454:8;;;;;;-1:-1:-1;;;2454:8:0;;;;;;;;;;;;;;;2431:31;;2497:12;2481;:28;2477:382;;2983:13;3033:15;;;3069:4;3062:15;;;3116:4;3100:21;;2609:57;;2477:382;;;2983:13;3033:15;;;3069:4;3062:15;;;3116:4;3100:21;;2786:57;;2477:382;-1:-1:-1;2411:3:0;;;;:::i;:::-;;;;2373:497;;;-1:-1:-1;2887:12:0;2232:675;-1:-1:-1;;;2232:675:0:o;36461:1775::-;36600:20;36623:13;-1:-1:-1;;;;;36651:16:0;;36647:48;;36676:19;;-1:-1:-1;;;36676:19:0;;;;;;;;;;;36647:48;36710:13;36706:44;;36732:18;;-1:-1:-1;;;36732:18:0;;;;;;;;;;;36706:44;-1:-1:-1;;;;;37101:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;37160:49:0;;-1:-1:-1;;;;;37101:44:0;;;;;;;37160:49;;;-1:-1:-1;;;;;37101:44:0;;;;;;37160:49;;;;;;;;;;;;;;;;37226:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;37276:66:0;;;;-1:-1:-1;;;37326:15:0;37276:66;;;;;;;;;;37226:25;37423:23;;;37467:4;:23;;;;-1:-1:-1;;;;;;37475:13:0;;11348:20;11387:8;;37475:15;37463:641;;;37511:314;37542:38;;37567:12;;-1:-1:-1;;;;;37542:38:0;;;37559:1;;37542:38;;37559:1;;37542:38;37608:69;37647:1;37651:2;37655:14;;;;;;37671:5;37608:30;:69::i;:::-;37603:174;;37713:40;;-1:-1:-1;;;37713:40:0;;;;;;;;;;;37603:174;37820:3;37804:12;:19;;37511:314;;37906:12;37889:13;;:29;37885:43;;37920:8;;;37885:43;37463:641;;;37969:120;38000:40;;38025:14;;;;;-1:-1:-1;;;;;38000:40:0;;;38017:1;;38000:40;;38017:1;;38000:40;38084:3;38068:12;:19;;37969:120;;37463:641;-1:-1:-1;38118:13:0;:28;38168:60;34753:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:2;;978:1;975;968:12;993:196;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:2;;;1126:6;1118;1111:22;1073:2;1154:29;1173:9;1154:29;:::i;1194:270::-;1262:6;1270;1323:2;1311:9;1302:7;1298:23;1294:32;1291:2;;;1344:6;1336;1329:22;1291:2;1372:29;1391:9;1372:29;:::i;:::-;1362:39;;1420:38;1454:2;1443:9;1439:18;1420:38;:::i;:::-;1410:48;;1281:183;;;;;:::o;1469:338::-;1546:6;1554;1562;1615:2;1603:9;1594:7;1590:23;1586:32;1583:2;;;1636:6;1628;1621:22;1583:2;1664:29;1683:9;1664:29;:::i;:::-;1654:39;;1712:38;1746:2;1735:9;1731:18;1712:38;:::i;:::-;1702:48;;1797:2;1786:9;1782:18;1769:32;1759:42;;1573:234;;;;;:::o;1812:696::-;1907:6;1915;1923;1931;1984:3;1972:9;1963:7;1959:23;1955:33;1952:2;;;2006:6;1998;1991:22;1952:2;2034:29;2053:9;2034:29;:::i;:::-;2024:39;;2082:38;2116:2;2105:9;2101:18;2082:38;:::i;:::-;2072:48;;2167:2;2156:9;2152:18;2139:32;2129:42;;2222:2;2211:9;2207:18;2194:32;-1:-1:-1;;;;;2241:6:1;2238:30;2235:2;;;2286:6;2278;2271:22;2235:2;2314:22;;2367:4;2359:13;;2355:27;-1:-1:-1;2345:2:1;;2401:6;2393;2386:22;2345:2;2429:73;2494:7;2489:2;2476:16;2471:2;2467;2463:11;2429:73;:::i;:::-;2419:83;;;1942:566;;;;;;;:::o;2513:264::-;2578:6;2586;2639:2;2627:9;2618:7;2614:23;2610:32;2607:2;;;2660:6;2652;2645:22;2607:2;2688:29;2707:9;2688:29;:::i;:::-;2678:39;;2736:35;2767:2;2756:9;2752:18;2736:35;:::i;2782:264::-;2850:6;2858;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:29;2979:9;2960:29;:::i;:::-;2950:39;3036:2;3021:18;;;;3008:32;;-1:-1:-1;;;2869:177:1:o;3051:739::-;3146:6;3154;3162;3215:2;3203:9;3194:7;3190:23;3186:32;3183:2;;;3236:6;3228;3221:22;3183:2;3281:9;3268:23;-1:-1:-1;;;;;3351:2:1;3343:6;3340:14;3337:2;;;3372:6;3364;3357:22;3337:2;3415:6;3404:9;3400:22;3390:32;;3460:7;3453:4;3449:2;3445:13;3441:27;3431:2;;3487:6;3479;3472:22;3431:2;3532;3519:16;3558:2;3550:6;3547:14;3544:2;;;3579:6;3571;3564:22;3544:2;3639:7;3632:4;3622:6;3619:1;3615:14;3611:2;3607:23;3603:34;3600:47;3597:2;;;3665:6;3657;3650:22;3597:2;3701:4;3693:13;;;;3725:6;;-1:-1:-1;3763:20:1;;;;3750:34;;3173:617;-1:-1:-1;;;;3173:617:1:o;3795:190::-;3851:6;3904:2;3892:9;3883:7;3879:23;3875:32;3872:2;;;3925:6;3917;3910:22;3872:2;3953:26;3969:9;3953:26;:::i;3990:190::-;4049:6;4102:2;4090:9;4081:7;4077:23;4073:32;4070:2;;;4123:6;4115;4108:22;4070:2;-1:-1:-1;4151:23:1;;4060:120;-1:-1:-1;4060:120:1:o;4185:255::-;4243:6;4296:2;4284:9;4275:7;4271:23;4267:32;4264:2;;;4317:6;4309;4302:22;4264:2;4361:9;4348:23;4380:30;4404:5;4380:30;:::i;4445:259::-;4514:6;4567:2;4555:9;4546:7;4542:23;4538:32;4535:2;;;4588:6;4580;4573:22;4535:2;4625:9;4619:16;4644:30;4668:5;4644:30;:::i;4709:480::-;4778:6;4831:2;4819:9;4810:7;4806:23;4802:32;4799:2;;;4852:6;4844;4837:22;4799:2;4897:9;4884:23;-1:-1:-1;;;;;4922:6:1;4919:30;4916:2;;;4967:6;4959;4952:22;4916:2;4995:22;;5048:4;5040:13;;5036:27;-1:-1:-1;5026:2:1;;5082:6;5074;5067:22;5026:2;5110:73;5175:7;5170:2;5157:16;5152:2;5148;5144:11;5110:73;:::i;5389:257::-;5430:3;5468:5;5462:12;5495:6;5490:3;5483:19;5511:63;5567:6;5560:4;5555:3;5551:14;5544:4;5537:5;5533:16;5511:63;:::i;:::-;5628:2;5607:15;-1:-1:-1;;5603:29:1;5594:39;;;;5635:4;5590:50;;5438:208;-1:-1:-1;;5438:208:1:o;5885:1531::-;6109:3;6147:6;6141:13;6173:4;6186:51;6230:6;6225:3;6220:2;6212:6;6208:15;6186:51;:::i;:::-;6300:13;;6259:16;;;;6322:55;6300:13;6259:16;6344:15;;;6322:55;:::i;:::-;6468:13;;6399:20;;;6439:3;;6528:1;6550:18;;;;6603;;;;6630:2;;6708:4;6698:8;6694:19;6682:31;;6630:2;6771;6761:8;6758:16;6738:18;6735:40;6732:2;;;-1:-1:-1;;;6798:33:1;;6854:4;6851:1;6844:15;6884:4;6805:3;6872:17;6732:2;6915:18;6942:110;;;;7066:1;7061:330;;;;6908:483;;6942:110;-1:-1:-1;;6977:24:1;;6963:39;;7022:20;;;;-1:-1:-1;6942:110:1;;7061:330;12776:4;12795:17;;;12845:4;12829:21;;7156:3;7172:169;7186:8;7183:1;7180:15;7172:169;;;7268:14;;7253:13;;;7246:37;7311:16;;;;7203:10;;7172:169;;;7176:3;;7372:8;7365:5;7361:20;7354:27;;6908:483;-1:-1:-1;7407:3:1;;6117:1299;-1:-1:-1;;;;;;;;;;;6117:1299:1:o;7839:488::-;-1:-1:-1;;;;;8108:15:1;;;8090:34;;8160:15;;8155:2;8140:18;;8133:43;8207:2;8192:18;;8185:34;;;8255:3;8250:2;8235:18;;8228:31;;;8033:4;;8276:45;;8301:19;;8293:6;8276:45;:::i;:::-;8268:53;8042:285;-1:-1:-1;;;;;;8042:285:1:o;8332:568::-;8549:2;8531:21;;;8568:18;;8561:34;;;-1:-1:-1;;;;;;8607:31:1;;8604:2;;;8654:4;8648;8641:18;8604:2;8691:6;8688:1;8684:14;8748:6;8740;8735:2;8724:9;8720:18;8707:48;8778:22;;8802:2;8774:31;8814:16;;;8880:4;8865:20;;;8858:36;;;;8774:31;8521:379;-1:-1:-1;;8521:379:1:o;9279:219::-;9428:2;9417:9;9410:21;9391:4;9448:44;9488:2;9477:9;9473:18;9465:6;9448:44;:::i;10263:356::-;10465:2;10447:21;;;10484:18;;;10477:30;10543:34;10538:2;10523:18;;10516:62;10610:2;10595:18;;10437:182::o;12861:128::-;12901:3;12932:1;12928:6;12925:1;12922:13;12919:2;;;12938:18;;:::i;:::-;-1:-1:-1;12974:9:1;;12909:80::o;12994:120::-;13034:1;13060;13050:2;;13065:18;;:::i;:::-;-1:-1:-1;13099:9:1;;13040:74::o;13119:168::-;13159:7;13225:1;13221;13217:6;13213:14;13210:1;13207:21;13202:1;13195:9;13188:17;13184:45;13181:2;;;13232:18;;:::i;:::-;-1:-1:-1;13272:9:1;;13171:116::o;13292:125::-;13332:4;13360:1;13357;13354:8;13351:2;;;13365:18;;:::i;:::-;-1:-1:-1;13402:9:1;;13341:76::o;13422:258::-;13494:1;13504:113;13518:6;13515:1;13512:13;13504:113;;;13594:11;;;13588:18;13575:11;;;13568:39;13540:2;13533:10;13504:113;;;13635:6;13632:1;13629:13;13626:2;;;-1:-1:-1;;13670:1:1;13652:16;;13645:27;13475:205::o;13685:380::-;13764:1;13760:12;;;;13807;;;13828:2;;13882:4;13874:6;13870:17;13860:27;;13828:2;13935;13927:6;13924:14;13904:18;13901:38;13898:2;;;13981:10;13976:3;13972:20;13969:1;13962:31;14016:4;14013:1;14006:15;14044:4;14041:1;14034:15;13898:2;;13740:325;;;:::o;14070:135::-;14109:3;-1:-1:-1;;14130:17:1;;14127:2;;;14150:18;;:::i;:::-;-1:-1:-1;14197:1:1;14186:13;;14117:88::o;14210:112::-;14242:1;14268;14258:2;;14273:18;;:::i;:::-;-1:-1:-1;14307:9:1;;14248:74::o;14327:127::-;14388:10;14383:3;14379:20;14376:1;14369:31;14419:4;14416:1;14409:15;14443:4;14440:1;14433:15;14459:127;14520:10;14515:3;14511:20;14508:1;14501:31;14551:4;14548:1;14541:15;14575:4;14572:1;14565:15;14591:127;14652:10;14647:3;14643:20;14640:1;14633:31;14683:4;14680:1;14673:15;14707:4;14704:1;14697:15;14723:131;-1:-1:-1;;;;;;14797:32:1;;14787:43;;14777:2;;14844:1;14841;14834:12

Swarm Source

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