ETH Price: $3,256.31 (-0.57%)
Gas: 1 Gwei

Token

DJENERATES - SPIRIT ANIMALS (SA)
 

Overview

Max Total Supply

665 SA

Holders

266

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 SA
0x62ae0650cd9d7f1a9c9d77d57cb66ee076ee589b
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:
Shaman

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 2021-12-03
*/

/**
 *Submitted for verification at Etherscan.io on 2021-08-26
*/
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

}


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

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

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

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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


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


/**
 * @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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, Ownable {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) internal _owners;

    // Mapping owner address to token count
    mapping(address => uint256) internal _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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
        virtual
        override
        returns (uint256)
    {
        require(
            owner != address(0),
            "ERC721: balance query for the zero address"
        );
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        address owner = _owners[tokenId];
        require(
            owner != address(0),
            "ERC721: owner query for nonexistent token"
        );
        return owner;
    }

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );

        _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 {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId)
        internal
        view
        virtual
        returns (bool)
    {
        require(
            _exists(tokenId),
            "ERC721: operator query for nonexistent token"
        );
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner ||
            getApproved(tokenId) == spender ||
            ERC721.isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    function _batchMint(address to, uint256[] memory tokenIds)
        internal
        virtual
    {
        require(to != address(0), "ERC721: mint to the zero address");
        _balances[to] += tokenIds.length;

        for (uint256 i; i < tokenIds.length; i++) {
            require(!_exists(tokenIds[i]), "ERC721: token already minted");

            _beforeTokenTransfer(address(0), to, tokenIds[i]);

            _owners[tokenIds[i]] = to;

            emit Transfer(address(0), to, tokenIds[i]);
        }
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(
            ERC721.ownerOf(tokenId) == from,
            "ERC721: transfer of token that is not own"
        );
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

abstract contract DJENERATES {
  function ownerOf(uint256 tokenId) public virtual view returns (address);
  function tokenOfOwnerByIndex(address owner, uint256 index) public virtual view returns (uint256);
  function balanceOf(address owner) external virtual view returns (uint256 balance);
}

contract Shaman is ERC721 {

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

    modifier claimStarted() {
        require(
            startClaimDate != 0 && startClaimDate <= block.timestamp,
            "You are too early"
        );

        _;
    }

    uint256 private startClaimDate = 1638536400; //3rd Dec 2021 1PM UTC
    uint256 private claimPrice =  0.1 ether;
    uint256 private totalTokens = 6000;
    uint256 private totalMintedTokens = 0;
    uint128 private basisPoints = 10000;
    string private baseURI =
        "https://ipfs.io/ipfs/QmUdhuHfJmN8eFvSEWFpE2LtMXiUtXGHXQUUS8PZPahfSd/";

    DJENERATES private djen = DJENERATES(address(0x7d05c8D8cC1baC936eA09308a9E94823986f8321));
    mapping(address => uint256) private claimedTokensPerWallet;

    mapping(uint16 => uint16[]) private availableTokens;

    constructor() ERC721("DJENERATES - SPIRIT ANIMALS", "SA") {}

    /**
     * @dev Allows to withdraw the Ether in the contract
     */
    function withdraw() external onlyOwner {
        uint256 totalBalance = address(this).balance;
        payable(msg.sender).transfer(totalBalance);
    }

    /**
     * @dev Sets the base URI for the API that provides the NFT data.
     */
    function setBaseTokenURI(string memory _uri) external onlyOwner {
        baseURI = _uri;
    }

    /**
     * @dev Sets the claim price for each token
     */
    function setClaimPrice(uint256 _claimPrice) external onlyOwner {
        claimPrice = _claimPrice;
    }

    /**
     * @dev Populates the available tokens
     */
    function addAvailableTokens(uint16 num,uint16 from, uint16 to)
        external
        onlyOwner
    {
       for (uint16 i = from; i <= to; i++) {
            availableTokens[num].push(i);
        }
    }

    /**
     * @dev Sets the date that users can start claiming tokens
     */
    function setStartClaimDate(uint256 _startClaimDate)
        external
        onlyOwner
    {
        startClaimDate = _startClaimDate;
    }

    /**
     * @dev Claim a single token
     */
    function claimToken(uint16 animal) external callerIsUser claimStarted {
        require(availableTokens[animal].length > 0, "No tokens left to be claimed for this Animal");
        uint256 balance= djen.balanceOf(msg.sender);
        require(
            balance > 0,"You are not holding any DJEN for free claim"
        );
        require(
            balance > claimedTokensPerWallet[msg.sender],"You are not eligible for more free claim"
        );

        claimedTokensPerWallet[msg.sender]++;
        totalMintedTokens++;

        _mint(msg.sender, getTokenToBeClaimed(animal));
    }

    /**
     * @dev Claim up to 50 tokens at once
     */
    function claimTokens(uint16 animal,uint256 amount)
        external
        payable
        callerIsUser
        claimStarted
    {
        require(
            msg.value >= claimPrice * amount,
            "Not enough Ether to claim the tokens"
        );
        require(availableTokens[animal].length >= amount, "No tokens left to be claimed for this Animal");

        uint256[] memory tokenIds = new uint256[](amount);

        totalMintedTokens += amount;

        for (uint256 i; i < amount; i++) {
            tokenIds[i] = getTokenToBeClaimed(animal);
        }

        _batchMint(msg.sender, tokenIds);
    }

    /**
     * @dev Returns the tokenId by index
     */
    function tokenByIndex(uint256 tokenId) external view returns (uint256) {
        require(
            _exists(tokenId),
            "ERC721: operator query for nonexistent token"
        );

        return tokenId;
    }

    /**
     * @dev Returns the base URI for the tokens API.
     */
    function baseTokenURI() external view returns (string memory) {
        return baseURI;
    }

    /**
     * @dev Returns how many tokens are still available to be claimed
     */
    function getAvailableTokens(uint16 animal) external view returns (uint256) {
        return availableTokens[animal].length;
    }

    /**
     * @dev Returns the claim price
     */
    function getClaimPrice() external view returns (uint256) {
        return claimPrice;
    }

    /**
     * @dev Returns the total supply
     */
    function totalSupply() external view virtual returns (uint256) {
        return totalMintedTokens;
    }

    // Private and Internal functions

    /**
     * @dev Returns a random available token to be claimed
     */
    function getTokenToBeClaimed(uint16 animal) private returns (uint256) {
        uint256 random = _getRandomNumber(animal,availableTokens[animal].length);
        uint256 tokenId = uint256(availableTokens[animal][random]);

        availableTokens[animal][random] = availableTokens[animal][availableTokens[animal].length - 1];
        availableTokens[animal].pop();

        return tokenId;
    }

    /**
     * @dev Generates a pseudo-random number.
     */
    function _getRandomNumber(uint16 animal,uint256 _upper) private view returns (uint256) {
        uint256 random = uint256(
            keccak256(
                abi.encodePacked(
                    availableTokens[animal].length,
                    blockhash(block.number - 1),
                    block.coinbase,
                    block.difficulty,
                    msg.sender
                )
            )
        );

        return random % _upper;
    }

    /**
     * @dev See {ERC721}.
     */
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint16","name":"num","type":"uint16"},{"internalType":"uint16","name":"from","type":"uint16"},{"internalType":"uint16","name":"to","type":"uint16"}],"name":"addAvailableTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"animal","type":"uint16"}],"name":"claimToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"animal","type":"uint16"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"animal","type":"uint16"}],"name":"getAvailableTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getClaimPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_claimPrice","type":"uint256"}],"name":"setClaimPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startClaimDate","type":"uint256"}],"name":"setStartClaimDate","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":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6361aa14d060075567016345785d8a00006008556117706009556000600a55600b80546001600160801b03191661271017905561010060405260446080818152906200271f60a03980516200005d91600c9160209091019062000177565b50600d80546001600160a01b031916737d05c8d8cc1bac936ea09308a9e94823986f83211790553480156200009157600080fd5b506040518060400160405280601b81526020017f444a454e455241544553202d2053504952495420414e494d414c53000000000081525060405180604001604052806002815260200161534160f01b8152506000620000f56200017360201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35081516200015490600190602085019062000177565b5080516200016a90600290602084019062000177565b5050506200025a565b3390565b82805462000185906200021d565b90600052602060002090601f016020900481019282620001a95760008555620001f4565b82601f10620001c457805160ff1916838001178555620001f4565b82800160010185558215620001f4579182015b82811115620001f4578251825591602001919060010190620001d7565b506200020292915062000206565b5090565b5b8082111562000202576000815560010162000207565b600181811c908216806200023257607f821691505b602082108114156200025457634e487b7160e01b600052602260045260246000fd5b50919050565b6124b5806200026a6000396000f3fe6080604052600436106101b75760003560e01c80636352211e116100ec578063b88d4fde1161008a578063c8c3d3ed11610064578063c8c3d3ed146104cf578063d547cfb7146104e2578063e985e9c5146104f7578063f2fde38b1461054057600080fd5b8063b88d4fde1461046f578063bab68db21461048f578063c87b56dd146104af57600080fd5b80638da5cb5b116100c65780638da5cb5b146103eb57806395d89b4114610409578063a22cb4651461041e578063b835260a1461043e57600080fd5b80636352211e1461039657806370a08231146103b6578063715018a6146103d657600080fd5b806323b872dd1161015957806342842e0e1161013357806342842e0e146103165780634f6ccce71461033657806351f468c014610356578063617e3cb71461037657600080fd5b806323b872dd146102c157806330176e13146102e15780633ccfd60b1461030157600080fd5b8063095ea7b311610195578063095ea7b31461024b57806318160ddd1461026d57806321f6d5871461028c57806323ab18f1146102a157600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611fca565b610560565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b506102066105b2565b6040516101e89190612187565b34801561021f57600080fd5b5061023361022e3660046120bf565b610644565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b610266366004611fa1565b6106d1565b005b34801561027957600080fd5b50600a545b6040519081526020016101e8565b34801561029857600080fd5b5060085461027e565b3480156102ad57600080fd5b5061026b6102bc3660046120bf565b6107e7565b3480156102cd57600080fd5b5061026b6102dc366004611eb3565b610816565b3480156102ed57600080fd5b5061026b6102fc366004612002565b610847565b34801561030d57600080fd5b5061026b610888565b34801561032257600080fd5b5061026b610331366004611eb3565b6108e1565b34801561034257600080fd5b5061027e6103513660046120bf565b6108fc565b34801561036257600080fd5b5061026b6103713660046120bf565b610927565b34801561038257600080fd5b5061026b610391366004612048565b610956565b3480156103a257600080fd5b506102336103b13660046120bf565b610bc0565b3480156103c257600080fd5b5061027e6103d1366004611e67565b610c37565b3480156103e257600080fd5b5061026b610cbe565b3480156103f757600080fd5b506000546001600160a01b0316610233565b34801561041557600080fd5b50610206610d32565b34801561042a57600080fd5b5061026b610439366004611f67565b610d41565b34801561044a57600080fd5b5061027e610459366004612048565b61ffff166000908152600f602052604090205490565b34801561047b57600080fd5b5061026b61048a366004611eee565b610e06565b34801561049b57600080fd5b5061026b6104aa366004612062565b610e3e565b3480156104bb57600080fd5b506102066104ca3660046120bf565b610ed4565b61026b6104dd3660046120a4565b610f9f565b3480156104ee57600080fd5b506102066111a6565b34801561050357600080fd5b506101dc610512366004611e81565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561054c57600080fd5b5061026b61055b366004611e67565b6111b5565b60006001600160e01b031982166380ac58cd60e01b148061059157506001600160e01b03198216635b5e139f60e01b145b806105ac57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105c190612398565b80601f01602080910402602001604051908101604052809291908181526020018280546105ed90612398565b801561063a5780601f1061060f5761010080835404028352916020019161063a565b820191906000526020600020905b81548152906001019060200180831161061d57829003601f168201915b5050505050905090565b600061064f8261129f565b6106b55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106dc82610bc0565b9050806001600160a01b0316836001600160a01b0316141561074a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106ac565b336001600160a01b038216148061076657506107668133610512565b6107d85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106ac565b6107e283836112bc565b505050565b6000546001600160a01b031633146108115760405162461bcd60e51b81526004016106ac90612238565b600755565b610820338261132a565b61083c5760405162461bcd60e51b81526004016106ac9061226d565b6107e28383836113cf565b6000546001600160a01b031633146108715760405162461bcd60e51b81526004016106ac90612238565b805161088490600c906020840190611d33565b5050565b6000546001600160a01b031633146108b25760405162461bcd60e51b81526004016106ac90612238565b6040514790339082156108fc029083906000818181858888f19350505050158015610884573d6000803e3d6000fd5b6107e283838360405180602001604052806000815250610e06565b60006109078261129f565b6109235760405162461bcd60e51b81526004016106ac906121ec565b5090565b6000546001600160a01b031633146109515760405162461bcd60e51b81526004016106ac90612238565b600855565b3233146109a55760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016106ac565b600754158015906109b857504260075411155b6109f85760405162461bcd60e51b8152602060048201526011602482015270596f752061726520746f6f206561726c7960781b60448201526064016106ac565b61ffff81166000908152600f6020526040902054610a285760405162461bcd60e51b81526004016106ac906122be565b600d546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015610a6c57600080fd5b505afa158015610a80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aa491906120d7565b905060008111610b0a5760405162461bcd60e51b815260206004820152602b60248201527f596f7520617265206e6f7420686f6c64696e6720616e7920444a454e20666f7260448201526a206672656520636c61696d60a81b60648201526084016106ac565b336000908152600e60205260409020548111610b795760405162461bcd60e51b815260206004820152602860248201527f596f7520617265206e6f7420656c696769626c6520666f72206d6f7265206672604482015267656520636c61696d60c01b60648201526084016106ac565b336000908152600e60205260408120805491610b94836123f5565b9091555050600a8054906000610ba9836123f5565b919050555061088433610bbb8461156f565b611714565b6000818152600360205260408120546001600160a01b0316806105ac5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106ac565b60006001600160a01b038216610ca25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106ac565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610ce85760405162461bcd60e51b81526004016106ac90612238565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6060600280546105c190612398565b6001600160a01b038216331415610d9a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106ac565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e10338361132a565b610e2c5760405162461bcd60e51b81526004016106ac9061226d565b610e3884848484611847565b50505050565b6000546001600160a01b03163314610e685760405162461bcd60e51b81526004016106ac90612238565b815b8161ffff168161ffff1611610e385761ffff8085166000908152600f6020818152604083208054600181018255908452922060108304018054858516600294909316939093026101000a918202919093021990911617905580610ecc816123d3565b915050610e6a565b6060610edf8261129f565b610f435760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106ac565b6000610f4d6111a6565b90506000815111610f6d5760405180602001604052806000815250610f98565b80610f778461187a565b604051602001610f8892919061211b565b6040516020818303038152906040525b9392505050565b323314610fee5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016106ac565b6007541580159061100157504260075411155b6110415760405162461bcd60e51b8152602060048201526011602482015270596f752061726520746f6f206561726c7960781b60448201526064016106ac565b8060085461104f9190612336565b3410156110aa5760405162461bcd60e51b8152602060048201526024808201527f4e6f7420656e6f75676820457468657220746f20636c61696d2074686520746f6044820152636b656e7360e01b60648201526084016106ac565b61ffff82166000908152600f60205260409020548111156110dd5760405162461bcd60e51b81526004016106ac906122be565b60008167ffffffffffffffff81111561110657634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561112f578160200160208202803683370190505b50905081600a6000828254611144919061230a565b90915550600090505b8281101561119b5761115e8461156f565b82828151811061117e57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280611193816123f5565b91505061114d565b506107e23382611994565b6060600c80546105c190612398565b6000546001600160a01b031633146111df5760405162461bcd60e51b81526004016106ac90612238565b6001600160a01b0381166112445760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ac565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000908152600360205260409020546001600160a01b0316151590565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112f182610bc0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006113358261129f565b6113515760405162461bcd60e51b81526004016106ac906121ec565b600061135c83610bc0565b9050806001600160a01b0316846001600160a01b031614806113975750836001600160a01b031661138c84610644565b6001600160a01b0316145b806113c757506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166113e282610bc0565b6001600160a01b03161461144a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106ac565b6001600160a01b0382166114ac5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106ac565b6114b76000826112bc565b6001600160a01b03831660009081526004602052604081208054600192906114e0908490612355565b90915550506001600160a01b038216600090815260046020526040812080546001929061150e90849061230a565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61ffff81166000908152600f60205260408120548190611590908490611ba3565b61ffff84166000908152600f6020526040812080549293509091839081106115c857634e487b7160e01b600052603260045260246000fd5b6000918252602080832060108304015461ffff8881168552600f9283905260409094208054929093166002026101000a900490921692509061160c90600190612355565b8154811061162a57634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff16600f60008661ffff1661ffff168152602001908152602001600020838154811061168857634e487b7160e01b600052603260045260246000fd5b600091825260208083206010830401805461ffff9586166002600f958616026101000a908102908702199091161790559287168252909152604090208054806116e157634e487b7160e01b600052603160045260246000fd5b600082815260209020601060001990920191820401805461ffff6002600f8516026101000a021916905590559392505050565b6001600160a01b03821661176a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106ac565b6117738161129f565b156117c05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106ac565b6001600160a01b03821660009081526004602052604081208054600192906117e990849061230a565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6118528484846113cf565b61185e84848484611c26565b610e385760405162461bcd60e51b81526004016106ac9061219a565b60608161189e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118c857806118b2816123f5565b91506118c19050600a83612322565b91506118a2565b60008167ffffffffffffffff8111156118f157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561191b576020820181803683370190505b5090505b84156113c757611930600183612355565b915061193d600a86612410565b61194890603061230a565b60f81b81838151811061196b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061198d600a86612322565b945061191f565b6001600160a01b0382166119ea5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106ac565b80516001600160a01b03831660009081526004602052604081208054909190611a1490849061230a565b90915550600090505b81518110156107e257611a56828281518110611a4957634e487b7160e01b600052603260045260246000fd5b602002602001015161129f565b15611aa35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106ac565b611ac9600084848481518110610e3857634e487b7160e01b600052603260045260246000fd5b8260036000848481518110611aee57634e487b7160e01b600052603260045260246000fd5b6020026020010151815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550818181518110611b4857634e487b7160e01b600052603260045260246000fd5b6020026020010151836001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480611b9b816123f5565b915050611a1d565b61ffff82166000908152600f60205260408120548190611bc4600143612355565b6040805160208101939093529040908201526bffffffffffffffffffffffff1941606090811b82168184015244607484015233901b16609482015260a80160408051601f19818403018152919052805160209091012090506113c78382612410565b60006001600160a01b0384163b15611d2857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c6a90339089908890889060040161214a565b602060405180830381600087803b158015611c8457600080fd5b505af1925050508015611cb4575060408051601f3d908101601f19168201909252611cb191810190611fe6565b60015b611d0e573d808015611ce2576040519150601f19603f3d011682016040523d82523d6000602084013e611ce7565b606091505b508051611d065760405162461bcd60e51b81526004016106ac9061219a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113c7565b506001949350505050565b828054611d3f90612398565b90600052602060002090601f016020900481019282611d615760008555611da7565b82601f10611d7a57805160ff1916838001178555611da7565b82800160010185558215611da7579182015b82811115611da7578251825591602001919060010190611d8c565b506109239291505b808211156109235760008155600101611daf565b600067ffffffffffffffff80841115611dde57611dde612450565b604051601f8501601f19908116603f01168101908282118183101715611e0657611e06612450565b81604052809350858152868686011115611e1f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e5057600080fd5b919050565b803561ffff81168114611e5057600080fd5b600060208284031215611e78578081fd5b610f9882611e39565b60008060408385031215611e93578081fd5b611e9c83611e39565b9150611eaa60208401611e39565b90509250929050565b600080600060608486031215611ec7578081fd5b611ed084611e39565b9250611ede60208501611e39565b9150604084013590509250925092565b60008060008060808587031215611f03578081fd5b611f0c85611e39565b9350611f1a60208601611e39565b925060408501359150606085013567ffffffffffffffff811115611f3c578182fd5b8501601f81018713611f4c578182fd5b611f5b87823560208401611dc3565b91505092959194509250565b60008060408385031215611f79578182fd5b611f8283611e39565b915060208301358015158114611f96578182fd5b809150509250929050565b60008060408385031215611fb3578182fd5b611fbc83611e39565b946020939093013593505050565b600060208284031215611fdb578081fd5b8135610f9881612466565b600060208284031215611ff7578081fd5b8151610f9881612466565b600060208284031215612013578081fd5b813567ffffffffffffffff811115612029578182fd5b8201601f81018413612039578182fd5b6113c784823560208401611dc3565b600060208284031215612059578081fd5b610f9882611e55565b600080600060608486031215612076578283fd5b61207f84611e55565b925061208d60208501611e55565b915061209b60408501611e55565b90509250925092565b600080604083850312156120b6578182fd5b611fbc83611e55565b6000602082840312156120d0578081fd5b5035919050565b6000602082840312156120e8578081fd5b5051919050565b6000815180845261210781602086016020860161236c565b601f01601f19169290920160200192915050565b6000835161212d81846020880161236c565b83519083019061214181836020880161236c565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061217d908301846120ef565b9695505050505050565b602081526000610f9860208301846120ef565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f4e6f20746f6b656e73206c65667420746f20626520636c61696d656420666f7260408201526b081d1a1a5cc8105b9a5b585b60a21b606082015260800190565b6000821982111561231d5761231d612424565b500190565b6000826123315761233161243a565b500490565b600081600019048311821515161561235057612350612424565b500290565b60008282101561236757612367612424565b500390565b60005b8381101561238757818101518382015260200161236f565b83811115610e385750506000910152565b600181811c908216806123ac57607f821691505b602082108114156123cd57634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff808316818114156123eb576123eb612424565b6001019392505050565b600060001982141561240957612409612424565b5060010190565b60008261241f5761241f61243a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461247c57600080fd5b5056fea264697066735822122006a1dd85999a61838710367385b8d6d25d2d86f31046dd13060509ed8850f3c364736f6c6343000804003368747470733a2f2f697066732e696f2f697066732f516d5564687548664a6d4e38654676534557467045324c744d58695574584748585155555338505a5061686653642f

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80636352211e116100ec578063b88d4fde1161008a578063c8c3d3ed11610064578063c8c3d3ed146104cf578063d547cfb7146104e2578063e985e9c5146104f7578063f2fde38b1461054057600080fd5b8063b88d4fde1461046f578063bab68db21461048f578063c87b56dd146104af57600080fd5b80638da5cb5b116100c65780638da5cb5b146103eb57806395d89b4114610409578063a22cb4651461041e578063b835260a1461043e57600080fd5b80636352211e1461039657806370a08231146103b6578063715018a6146103d657600080fd5b806323b872dd1161015957806342842e0e1161013357806342842e0e146103165780634f6ccce71461033657806351f468c014610356578063617e3cb71461037657600080fd5b806323b872dd146102c157806330176e13146102e15780633ccfd60b1461030157600080fd5b8063095ea7b311610195578063095ea7b31461024b57806318160ddd1461026d57806321f6d5871461028c57806323ab18f1146102a157600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611fca565b610560565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b506102066105b2565b6040516101e89190612187565b34801561021f57600080fd5b5061023361022e3660046120bf565b610644565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b610266366004611fa1565b6106d1565b005b34801561027957600080fd5b50600a545b6040519081526020016101e8565b34801561029857600080fd5b5060085461027e565b3480156102ad57600080fd5b5061026b6102bc3660046120bf565b6107e7565b3480156102cd57600080fd5b5061026b6102dc366004611eb3565b610816565b3480156102ed57600080fd5b5061026b6102fc366004612002565b610847565b34801561030d57600080fd5b5061026b610888565b34801561032257600080fd5b5061026b610331366004611eb3565b6108e1565b34801561034257600080fd5b5061027e6103513660046120bf565b6108fc565b34801561036257600080fd5b5061026b6103713660046120bf565b610927565b34801561038257600080fd5b5061026b610391366004612048565b610956565b3480156103a257600080fd5b506102336103b13660046120bf565b610bc0565b3480156103c257600080fd5b5061027e6103d1366004611e67565b610c37565b3480156103e257600080fd5b5061026b610cbe565b3480156103f757600080fd5b506000546001600160a01b0316610233565b34801561041557600080fd5b50610206610d32565b34801561042a57600080fd5b5061026b610439366004611f67565b610d41565b34801561044a57600080fd5b5061027e610459366004612048565b61ffff166000908152600f602052604090205490565b34801561047b57600080fd5b5061026b61048a366004611eee565b610e06565b34801561049b57600080fd5b5061026b6104aa366004612062565b610e3e565b3480156104bb57600080fd5b506102066104ca3660046120bf565b610ed4565b61026b6104dd3660046120a4565b610f9f565b3480156104ee57600080fd5b506102066111a6565b34801561050357600080fd5b506101dc610512366004611e81565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561054c57600080fd5b5061026b61055b366004611e67565b6111b5565b60006001600160e01b031982166380ac58cd60e01b148061059157506001600160e01b03198216635b5e139f60e01b145b806105ac57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105c190612398565b80601f01602080910402602001604051908101604052809291908181526020018280546105ed90612398565b801561063a5780601f1061060f5761010080835404028352916020019161063a565b820191906000526020600020905b81548152906001019060200180831161061d57829003601f168201915b5050505050905090565b600061064f8261129f565b6106b55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106dc82610bc0565b9050806001600160a01b0316836001600160a01b0316141561074a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106ac565b336001600160a01b038216148061076657506107668133610512565b6107d85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106ac565b6107e283836112bc565b505050565b6000546001600160a01b031633146108115760405162461bcd60e51b81526004016106ac90612238565b600755565b610820338261132a565b61083c5760405162461bcd60e51b81526004016106ac9061226d565b6107e28383836113cf565b6000546001600160a01b031633146108715760405162461bcd60e51b81526004016106ac90612238565b805161088490600c906020840190611d33565b5050565b6000546001600160a01b031633146108b25760405162461bcd60e51b81526004016106ac90612238565b6040514790339082156108fc029083906000818181858888f19350505050158015610884573d6000803e3d6000fd5b6107e283838360405180602001604052806000815250610e06565b60006109078261129f565b6109235760405162461bcd60e51b81526004016106ac906121ec565b5090565b6000546001600160a01b031633146109515760405162461bcd60e51b81526004016106ac90612238565b600855565b3233146109a55760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016106ac565b600754158015906109b857504260075411155b6109f85760405162461bcd60e51b8152602060048201526011602482015270596f752061726520746f6f206561726c7960781b60448201526064016106ac565b61ffff81166000908152600f6020526040902054610a285760405162461bcd60e51b81526004016106ac906122be565b600d546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015610a6c57600080fd5b505afa158015610a80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aa491906120d7565b905060008111610b0a5760405162461bcd60e51b815260206004820152602b60248201527f596f7520617265206e6f7420686f6c64696e6720616e7920444a454e20666f7260448201526a206672656520636c61696d60a81b60648201526084016106ac565b336000908152600e60205260409020548111610b795760405162461bcd60e51b815260206004820152602860248201527f596f7520617265206e6f7420656c696769626c6520666f72206d6f7265206672604482015267656520636c61696d60c01b60648201526084016106ac565b336000908152600e60205260408120805491610b94836123f5565b9091555050600a8054906000610ba9836123f5565b919050555061088433610bbb8461156f565b611714565b6000818152600360205260408120546001600160a01b0316806105ac5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106ac565b60006001600160a01b038216610ca25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106ac565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610ce85760405162461bcd60e51b81526004016106ac90612238565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6060600280546105c190612398565b6001600160a01b038216331415610d9a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106ac565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e10338361132a565b610e2c5760405162461bcd60e51b81526004016106ac9061226d565b610e3884848484611847565b50505050565b6000546001600160a01b03163314610e685760405162461bcd60e51b81526004016106ac90612238565b815b8161ffff168161ffff1611610e385761ffff8085166000908152600f6020818152604083208054600181018255908452922060108304018054858516600294909316939093026101000a918202919093021990911617905580610ecc816123d3565b915050610e6a565b6060610edf8261129f565b610f435760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106ac565b6000610f4d6111a6565b90506000815111610f6d5760405180602001604052806000815250610f98565b80610f778461187a565b604051602001610f8892919061211b565b6040516020818303038152906040525b9392505050565b323314610fee5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016106ac565b6007541580159061100157504260075411155b6110415760405162461bcd60e51b8152602060048201526011602482015270596f752061726520746f6f206561726c7960781b60448201526064016106ac565b8060085461104f9190612336565b3410156110aa5760405162461bcd60e51b8152602060048201526024808201527f4e6f7420656e6f75676820457468657220746f20636c61696d2074686520746f6044820152636b656e7360e01b60648201526084016106ac565b61ffff82166000908152600f60205260409020548111156110dd5760405162461bcd60e51b81526004016106ac906122be565b60008167ffffffffffffffff81111561110657634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561112f578160200160208202803683370190505b50905081600a6000828254611144919061230a565b90915550600090505b8281101561119b5761115e8461156f565b82828151811061117e57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280611193816123f5565b91505061114d565b506107e23382611994565b6060600c80546105c190612398565b6000546001600160a01b031633146111df5760405162461bcd60e51b81526004016106ac90612238565b6001600160a01b0381166112445760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ac565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000908152600360205260409020546001600160a01b0316151590565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112f182610bc0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006113358261129f565b6113515760405162461bcd60e51b81526004016106ac906121ec565b600061135c83610bc0565b9050806001600160a01b0316846001600160a01b031614806113975750836001600160a01b031661138c84610644565b6001600160a01b0316145b806113c757506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166113e282610bc0565b6001600160a01b03161461144a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106ac565b6001600160a01b0382166114ac5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106ac565b6114b76000826112bc565b6001600160a01b03831660009081526004602052604081208054600192906114e0908490612355565b90915550506001600160a01b038216600090815260046020526040812080546001929061150e90849061230a565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61ffff81166000908152600f60205260408120548190611590908490611ba3565b61ffff84166000908152600f6020526040812080549293509091839081106115c857634e487b7160e01b600052603260045260246000fd5b6000918252602080832060108304015461ffff8881168552600f9283905260409094208054929093166002026101000a900490921692509061160c90600190612355565b8154811061162a57634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff16600f60008661ffff1661ffff168152602001908152602001600020838154811061168857634e487b7160e01b600052603260045260246000fd5b600091825260208083206010830401805461ffff9586166002600f958616026101000a908102908702199091161790559287168252909152604090208054806116e157634e487b7160e01b600052603160045260246000fd5b600082815260209020601060001990920191820401805461ffff6002600f8516026101000a021916905590559392505050565b6001600160a01b03821661176a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106ac565b6117738161129f565b156117c05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106ac565b6001600160a01b03821660009081526004602052604081208054600192906117e990849061230a565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6118528484846113cf565b61185e84848484611c26565b610e385760405162461bcd60e51b81526004016106ac9061219a565b60608161189e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118c857806118b2816123f5565b91506118c19050600a83612322565b91506118a2565b60008167ffffffffffffffff8111156118f157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561191b576020820181803683370190505b5090505b84156113c757611930600183612355565b915061193d600a86612410565b61194890603061230a565b60f81b81838151811061196b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061198d600a86612322565b945061191f565b6001600160a01b0382166119ea5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106ac565b80516001600160a01b03831660009081526004602052604081208054909190611a1490849061230a565b90915550600090505b81518110156107e257611a56828281518110611a4957634e487b7160e01b600052603260045260246000fd5b602002602001015161129f565b15611aa35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106ac565b611ac9600084848481518110610e3857634e487b7160e01b600052603260045260246000fd5b8260036000848481518110611aee57634e487b7160e01b600052603260045260246000fd5b6020026020010151815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550818181518110611b4857634e487b7160e01b600052603260045260246000fd5b6020026020010151836001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480611b9b816123f5565b915050611a1d565b61ffff82166000908152600f60205260408120548190611bc4600143612355565b6040805160208101939093529040908201526bffffffffffffffffffffffff1941606090811b82168184015244607484015233901b16609482015260a80160408051601f19818403018152919052805160209091012090506113c78382612410565b60006001600160a01b0384163b15611d2857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c6a90339089908890889060040161214a565b602060405180830381600087803b158015611c8457600080fd5b505af1925050508015611cb4575060408051601f3d908101601f19168201909252611cb191810190611fe6565b60015b611d0e573d808015611ce2576040519150601f19603f3d011682016040523d82523d6000602084013e611ce7565b606091505b508051611d065760405162461bcd60e51b81526004016106ac9061219a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113c7565b506001949350505050565b828054611d3f90612398565b90600052602060002090601f016020900481019282611d615760008555611da7565b82601f10611d7a57805160ff1916838001178555611da7565b82800160010185558215611da7579182015b82811115611da7578251825591602001919060010190611d8c565b506109239291505b808211156109235760008155600101611daf565b600067ffffffffffffffff80841115611dde57611dde612450565b604051601f8501601f19908116603f01168101908282118183101715611e0657611e06612450565b81604052809350858152868686011115611e1f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e5057600080fd5b919050565b803561ffff81168114611e5057600080fd5b600060208284031215611e78578081fd5b610f9882611e39565b60008060408385031215611e93578081fd5b611e9c83611e39565b9150611eaa60208401611e39565b90509250929050565b600080600060608486031215611ec7578081fd5b611ed084611e39565b9250611ede60208501611e39565b9150604084013590509250925092565b60008060008060808587031215611f03578081fd5b611f0c85611e39565b9350611f1a60208601611e39565b925060408501359150606085013567ffffffffffffffff811115611f3c578182fd5b8501601f81018713611f4c578182fd5b611f5b87823560208401611dc3565b91505092959194509250565b60008060408385031215611f79578182fd5b611f8283611e39565b915060208301358015158114611f96578182fd5b809150509250929050565b60008060408385031215611fb3578182fd5b611fbc83611e39565b946020939093013593505050565b600060208284031215611fdb578081fd5b8135610f9881612466565b600060208284031215611ff7578081fd5b8151610f9881612466565b600060208284031215612013578081fd5b813567ffffffffffffffff811115612029578182fd5b8201601f81018413612039578182fd5b6113c784823560208401611dc3565b600060208284031215612059578081fd5b610f9882611e55565b600080600060608486031215612076578283fd5b61207f84611e55565b925061208d60208501611e55565b915061209b60408501611e55565b90509250925092565b600080604083850312156120b6578182fd5b611fbc83611e55565b6000602082840312156120d0578081fd5b5035919050565b6000602082840312156120e8578081fd5b5051919050565b6000815180845261210781602086016020860161236c565b601f01601f19169290920160200192915050565b6000835161212d81846020880161236c565b83519083019061214181836020880161236c565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061217d908301846120ef565b9695505050505050565b602081526000610f9860208301846120ef565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f4e6f20746f6b656e73206c65667420746f20626520636c61696d656420666f7260408201526b081d1a1a5cc8105b9a5b585b60a21b606082015260800190565b6000821982111561231d5761231d612424565b500190565b6000826123315761233161243a565b500490565b600081600019048311821515161561235057612350612424565b500290565b60008282101561236757612367612424565b500390565b60005b8381101561238757818101518382015260200161236f565b83811115610e385750506000910152565b600181811c908216806123ac57607f821691505b602082108114156123cd57634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff808316818114156123eb576123eb612424565b6001019392505050565b600060001982141561240957612409612424565b5060010190565b60008261241f5761241f61243a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461247c57600080fd5b5056fea264697066735822122006a1dd85999a61838710367385b8d6d25d2d86f31046dd13060509ed8850f3c364736f6c63430008040033

Deployed Bytecode Sourcemap

36894:5771:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22937:355;;;;;;;;;;-1:-1:-1;22937:355:0;;;;;:::i;:::-;;:::i;:::-;;;7519:14:1;;7512:22;7494:41;;7482:2;7467:18;22937:355:0;;;;;;;;24106:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25712:308::-;;;;;;;;;;-1:-1:-1;25712:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6817:32:1;;;6799:51;;6787:2;6772:18;25712:308:0;6754:102:1;25211:435:0;;;;;;;;;;-1:-1:-1;25211:435:0;;;;;:::i;:::-;;:::i;:::-;;41311:106;;;;;;;;;;-1:-1:-1;41392:17:0;;41311:106;;;16642:25:1;;;16630:2;16615:18;41311:106:0;16597:76:1;41154:93:0;;;;;;;;;;-1:-1:-1;41229:10:0;;41154:93;;38875:145;;;;;;;;;;-1:-1:-1;38875:145:0;;;;;:::i;:::-;;:::i;26771:376::-;;;;;;;;;;-1:-1:-1;26771:376:0;;;;;:::i;:::-;;:::i;38224:97::-;;;;;;;;;;-1:-1:-1;38224:97:0;;;;;:::i;:::-;;:::i;37972:155::-;;;;;;;;;;;;;:::i;27218:185::-;;;;;;;;;;-1:-1:-1;27218:185:0;;;;;:::i;:::-;;:::i;40461:227::-;;;;;;;;;;-1:-1:-1;40461:227:0;;;;;:::i;:::-;;:::i;38396:106::-;;;;;;;;;;-1:-1:-1;38396:106:0;;;;;:::i;:::-;;:::i;39080:604::-;;;;;;;;;;-1:-1:-1;39080:604:0;;;;;:::i;:::-;;:::i;23713:326::-;;;;;;;;;;-1:-1:-1;23713:326:0;;;;;:::i;:::-;;:::i;23356:295::-;;;;;;;;;;-1:-1:-1;23356:295:0;;;;;:::i;:::-;;:::i;21143:148::-;;;;;;;;;;;;;:::i;20492:87::-;;;;;;;;;;-1:-1:-1;20538:7:0;20565:6;-1:-1:-1;;;;;20565:6:0;20492:87;;24275:104;;;;;;;;;;;;;:::i;26092:327::-;;;;;;;;;;-1:-1:-1;26092:327:0;;;;;:::i;:::-;;:::i;40960:131::-;;;;;;;;;;-1:-1:-1;40960:131:0;;;;;:::i;:::-;41053:23;;41026:7;41053:23;;;:15;:23;;;;;:30;;40960:131;27474:365;;;;;;;;;;-1:-1:-1;27474:365:0;;;;;:::i;:::-;;:::i;38572:213::-;;;;;;;;;;-1:-1:-1;38572:213:0;;;;;:::i;:::-;;:::i;24450:468::-;;;;;;;;;;-1:-1:-1;24450:468:0;;;;;:::i;:::-;;:::i;39753:640::-;;;;;;:::i;:::-;;:::i;40768:95::-;;;;;;;;;;;;;:::i;26490:214::-;;;;;;;;;;-1:-1:-1;26490:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;26661:25:0;;;26632:4;26661:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26490:214;21446:244;;;;;;;;;;-1:-1:-1;21446:244:0;;;;;:::i;:::-;;:::i;22937:355::-;23084:4;-1:-1:-1;;;;;;23126:40:0;;-1:-1:-1;;;23126:40:0;;:105;;-1:-1:-1;;;;;;;23183:48:0;;-1:-1:-1;;;23183:48:0;23126:105;:158;;;-1:-1:-1;;;;;;;;;;1688:40:0;;;23248:36;23106:178;22937:355;-1:-1:-1;;22937:355:0:o;24106:100::-;24160:13;24193:5;24186:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24106:100;:::o;25712:308::-;25833:7;25880:16;25888:7;25880;:16::i;:::-;25858:110;;;;-1:-1:-1;;;25858:110:0;;13460:2:1;25858:110:0;;;13442:21:1;13499:2;13479:18;;;13472:30;13538:34;13518:18;;;13511:62;-1:-1:-1;;;13589:18:1;;;13582:42;13641:19;;25858:110:0;;;;;;;;;-1:-1:-1;25988:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25988:24:0;;25712:308::o;25211:435::-;25292:13;25308:23;25323:7;25308:14;:23::i;:::-;25292:39;;25356:5;-1:-1:-1;;;;;25350:11:0;:2;-1:-1:-1;;;;;25350:11:0;;;25342:57;;;;-1:-1:-1;;;25342:57:0;;15060:2:1;25342:57:0;;;15042:21:1;15099:2;15079:18;;;15072:30;15138:34;15118:18;;;15111:62;-1:-1:-1;;;15189:18:1;;;15182:31;15230:19;;25342:57:0;15032:223:1;25342:57:0;4343:10;-1:-1:-1;;;;;25434:21:0;;;;:86;;-1:-1:-1;25476:44:0;25500:5;4343:10;26490:214;:::i;25476:44::-;25412:192;;;;-1:-1:-1;;;25412:192:0;;11507:2:1;25412:192:0;;;11489:21:1;11546:2;11526:18;;;11519:30;11585:34;11565:18;;;11558:62;11656:26;11636:18;;;11629:54;11700:19;;25412:192:0;11479:246:1;25412:192:0;25617:21;25626:2;25630:7;25617:8;:21::i;:::-;25211:435;;;:::o;38875:145::-;20538:7;20565:6;-1:-1:-1;;;;;20565:6:0;4343:10;20712:23;20704:68;;;;-1:-1:-1;;;20704:68:0;;;;;;;:::i;:::-;38980:14:::1;:32:::0;38875:145::o;26771:376::-;26980:41;4343:10;27013:7;26980:18;:41::i;:::-;26958:140;;;;-1:-1:-1;;;26958:140:0;;;;;;;:::i;:::-;27111:28;27121:4;27127:2;27131:7;27111:9;:28::i;38224:97::-;20538:7;20565:6;-1:-1:-1;;;;;20565:6:0;4343:10;20712:23;20704:68;;;;-1:-1:-1;;;20704:68:0;;;;;;;:::i;:::-;38299:14;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;:::-;;38224:97:::0;:::o;37972:155::-;20538:7;20565:6;-1:-1:-1;;;;;20565:6:0;4343:10;20712:23;20704:68;;;;-1:-1:-1;;;20704:68:0;;;;;;;:::i;:::-;38077:42:::1;::::0;38045:21:::1;::::0;38085:10:::1;::::0;38077:42;::::1;;;::::0;38045:21;;38022:20:::1;38077:42:::0;38022:20;38077:42;38045:21;38085:10;38077:42;::::1;;;;;;;;;;;;;::::0;::::1;;;;27218:185:::0;27356:39;27373:4;27379:2;27383:7;27356:39;;;;;;;;;;;;:16;:39::i;40461:227::-;40523:7;40565:16;40573:7;40565;:16::i;:::-;40543:110;;;;-1:-1:-1;;;40543:110:0;;;;;;;:::i;:::-;-1:-1:-1;40673:7:0;40461:227::o;38396:106::-;20538:7;20565:6;-1:-1:-1;;;;;20565:6:0;4343:10;20712:23;20704:68;;;;-1:-1:-1;;;20704:68:0;;;;;;;:::i;:::-;38470:10:::1;:24:::0;38396:106::o;39080:604::-;36972:9;36985:10;36972:23;36964:66;;;;-1:-1:-1;;;36964:66:0;;11148:2:1;36964:66:0;;;11130:21:1;11187:2;11167:18;;;11160:30;11226:32;11206:18;;;11199:60;11276:18;;36964:66:0;11120:180:1;36964:66:0;37115:14:::1;::::0;:19;;::::1;::::0;:56:::1;;;37156:15;37138:14;;:33;;37115:56;37093:123;;;::::0;-1:-1:-1;;;37093:123:0;;11932:2:1;37093:123:0::1;::::0;::::1;11914:21:1::0;11971:2;11951:18;;;11944:30;-1:-1:-1;;;11990:18:1;;;11983:47;12047:18;;37093:123:0::1;11904:167:1::0;37093:123:0::1;39169:23:::2;::::0;::::2;39202:1;39169:23:::0;;;:15:::2;:23;::::0;;;;:30;39161:91:::2;;;;-1:-1:-1::0;;;39161:91:0::2;;;;;;;:::i;:::-;39280:4;::::0;:26:::2;::::0;-1:-1:-1;;;39280:26:0;;39295:10:::2;39280:26;::::0;::::2;6799:51:1::0;39263:15:0::2;::::0;-1:-1:-1;;;;;39280:4:0::2;::::0;:14:::2;::::0;6772:18:1;;39280:26:0::2;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39263:43;;39349:1;39339:7;:11;39317:90;;;::::0;-1:-1:-1;;;39317:90:0;;9564:2:1;39317:90:0::2;::::0;::::2;9546:21:1::0;9603:2;9583:18;;;9576:30;9642:34;9622:18;;;9615:62;-1:-1:-1;;;9693:18:1;;;9686:41;9744:19;;39317:90:0::2;9536:233:1::0;39317:90:0::2;39473:10;39450:34;::::0;;;:22:::2;:34;::::0;;;;;39440:44;::::2;39418:120;;;::::0;-1:-1:-1;;;39418:120:0;;7972:2:1;39418:120:0::2;::::0;::::2;7954:21:1::0;8011:2;7991:18;;;7984:30;8050:34;8030:18;;;8023:62;-1:-1:-1;;;8101:18:1;;;8094:38;8149:19;;39418:120:0::2;7944:230:1::0;39418:120:0::2;39574:10;39551:34;::::0;;;:22:::2;:34;::::0;;;;:36;;;::::2;::::0;::::2;:::i;:::-;::::0;;;-1:-1:-1;;39598:17:0::2;:19:::0;;;:17:::2;:19;::::0;::::2;:::i;:::-;;;;;;39630:46;39636:10;39648:27;39668:6;39648:19;:27::i;:::-;39630:5;:46::i;23713:326::-:0;23830:7;23871:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23871:16:0;23920:19;23898:110;;;;-1:-1:-1;;;23898:110:0;;12689:2:1;23898:110:0;;;12671:21:1;12728:2;12708:18;;;12701:30;12767:34;12747:18;;;12740:62;-1:-1:-1;;;12818:18:1;;;12811:39;12867:19;;23898:110:0;12661:231:1;23356:295:0;23473:7;-1:-1:-1;;;;;23520:19:0;;23498:111;;;;-1:-1:-1;;;23498:111:0;;12278:2:1;23498:111:0;;;12260:21:1;12317:2;12297:18;;;12290:30;12356:34;12336:18;;;12329:62;-1:-1:-1;;;12407:18:1;;;12400:40;12457:19;;23498:111:0;12250:232:1;23498:111:0;-1:-1:-1;;;;;;23627:16:0;;;;;:9;:16;;;;;;;23356:295::o;21143:148::-;20538:7;20565:6;-1:-1:-1;;;;;20565:6:0;4343:10;20712:23;20704:68;;;;-1:-1:-1;;;20704:68:0;;;;;;;:::i;:::-;21250:1:::1;21234:6:::0;;21213:40:::1;::::0;-1:-1:-1;;;;;21234:6:0;;::::1;::::0;21213:40:::1;::::0;21250:1;;21213:40:::1;21281:1;21264:19:::0;;-1:-1:-1;;;;;;21264:19:0::1;::::0;;21143:148::o;24275:104::-;24331:13;24364:7;24357:14;;;;;:::i;26092:327::-;-1:-1:-1;;;;;26227:24:0;;4343:10;26227:24;;26219:62;;;;-1:-1:-1;;;26219:62:0;;10381:2:1;26219:62:0;;;10363:21:1;10420:2;10400:18;;;10393:30;10459:27;10439:18;;;10432:55;10504:18;;26219:62:0;10353:175:1;26219:62:0;4343:10;26294:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26294:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26294:53:0;;;;;;;;;;26363:48;;7494:41:1;;;26294:42:0;;4343:10;26363:48;;7467:18:1;26363:48:0;;;;;;;26092:327;;:::o;27474:365::-;27663:41;4343:10;27696:7;27663:18;:41::i;:::-;27641:140;;;;-1:-1:-1;;;27641:140:0;;;;;;;:::i;:::-;27792:39;27806:4;27812:2;27816:7;27825:5;27792:13;:39::i;:::-;27474:365;;;;:::o;38572:213::-;20538:7;20565:6;-1:-1:-1;;;;;20565:6:0;4343:10;20712:23;20704:68;;;;-1:-1:-1;;;20704:68:0;;;;;;;:::i;:::-;38703:4;38687:91:::1;38714:2;38709:7;;:1;:7;;;38687:91;;38738:20;::::0;;::::1;;::::0;;;:15:::1;:20;::::0;;;;;;:28;;::::1;::::0;::::1;::::0;;;;;;;::::1;::::0;::::1;;::::0;;;;::::1;;::::0;;;;;;;::::1;;;::::0;;::::1;::::0;;;::::1;;::::0;;::::1;;::::0;;38764:1;38718:3:::1;38764:1:::0;38718:3:::1;:::i;:::-;;;;38687:91;;24450:468:::0;24568:13;24621:16;24629:7;24621;:16::i;:::-;24599:113;;;;-1:-1:-1;;;24599:113:0;;14644:2:1;24599:113:0;;;14626:21:1;14683:2;14663:18;;;14656:30;14722:34;14702:18;;;14695:62;-1:-1:-1;;;14773:18:1;;;14766:45;14828:19;;24599:113:0;14616:237:1;24599:113:0;24725:21;24749:10;:8;:10::i;:::-;24725:34;;24814:1;24796:7;24790:21;:25;:120;;;;;;;;;;;;;;;;;24859:7;24868:18;:7;:16;:18::i;:::-;24842:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24790:120;24770:140;24450:468;-1:-1:-1;;;24450:468:0:o;39753:640::-;36972:9;36985:10;36972:23;36964:66;;;;-1:-1:-1;;;36964:66:0;;11148:2:1;36964:66:0;;;11130:21:1;11187:2;11167:18;;;11160:30;11226:32;11206:18;;;11199:60;11276:18;;36964:66:0;11120:180:1;36964:66:0;37115:14:::1;::::0;:19;;::::1;::::0;:56:::1;;;37156:15;37138:14;;:33;;37115:56;37093:123;;;::::0;-1:-1:-1;;;37093:123:0;;11932:2:1;37093:123:0::1;::::0;::::1;11914:21:1::0;11971:2;11951:18;;;11944:30;-1:-1:-1;;;11990:18:1;;;11983:47;12047:18;;37093:123:0::1;11904:167:1::0;37093:123:0::1;39947:6:::2;39934:10;;:19;;;;:::i;:::-;39921:9;:32;;39899:118;;;::::0;-1:-1:-1;;;39899:118:0;;15462:2:1;39899:118:0::2;::::0;::::2;15444:21:1::0;15501:2;15481:18;;;15474:30;15540:34;15520:18;;;15513:62;-1:-1:-1;;;15591:18:1;;;15584:34;15635:19;;39899:118:0::2;15434:226:1::0;39899:118:0::2;40036:23;::::0;::::2;;::::0;;;:15:::2;:23;::::0;;;;:30;:40;-1:-1:-1;40036:40:0::2;40028:97;;;;-1:-1:-1::0;;;40028:97:0::2;;;;;;;:::i;:::-;40138:25;40180:6;40166:21;;;;;;-1:-1:-1::0;;;40166:21:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;40166:21:0::2;;40138:49;;40221:6;40200:17;;:27;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;40245:9:0::2;::::0;-1:-1:-1;40240:101:0::2;40260:6;40256:1;:10;40240:101;;;40302:27;40322:6;40302:19;:27::i;:::-;40288:8;40297:1;40288:11;;;;;;-1:-1:-1::0;;;40288:11:0::2;;;;;;;;;;::::0;;::::2;::::0;;;;;:41;40268:3;::::2;::::0;::::2;:::i;:::-;;;;40240:101;;;;40353:32;40364:10;40376:8;40353:10;:32::i;40768:95::-:0;40815:13;40848:7;40841:14;;;;;:::i;21446:244::-;20538:7;20565:6;-1:-1:-1;;;;;20565:6:0;4343:10;20712:23;20704:68;;;;-1:-1:-1;;;20704:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21535:22:0;::::1;21527:73;;;::::0;-1:-1:-1;;;21527:73:0;;8800:2:1;21527:73:0::1;::::0;::::1;8782:21:1::0;8839:2;8819:18;;;8812:30;8878:34;8858:18;;;8851:62;-1:-1:-1;;;8929:18:1;;;8922:36;8975:19;;21527:73:0::1;8772:228:1::0;21527:73:0::1;21637:6;::::0;;21616:38:::1;::::0;-1:-1:-1;;;;;21616:38:0;;::::1;::::0;21637:6;::::1;::::0;21616:38:::1;::::0;::::1;21665:6;:17:::0;;-1:-1:-1;;;;;;21665:17:0::1;-1:-1:-1::0;;;;;21665:17:0;;;::::1;::::0;;;::::1;::::0;;21446:244::o;29386:127::-;29451:4;29475:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29475:16:0;:30;;;29386:127::o;34056:174::-;34131:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34131:29:0;-1:-1:-1;;;;;34131:29:0;;;;;;;;:24;;34185:23;34131:24;34185:14;:23::i;:::-;-1:-1:-1;;;;;34176:46:0;;;;;;;;;;;34056:174;;:::o;29680:459::-;29809:4;29853:16;29861:7;29853;:16::i;:::-;29831:110;;;;-1:-1:-1;;;29831:110:0;;;;;;;:::i;:::-;29952:13;29968:23;29983:7;29968:14;:23::i;:::-;29952:39;;30021:5;-1:-1:-1;;;;;30010:16:0;:7;-1:-1:-1;;;;;30010:16:0;;:64;;;;30067:7;-1:-1:-1;;;;;30043:31:0;:20;30055:7;30043:11;:20::i;:::-;-1:-1:-1;;;;;30043:31:0;;30010:64;:120;;;-1:-1:-1;;;;;;26661:25:0;;;26632:4;26661:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30091:39;30002:129;29680:459;-1:-1:-1;;;;29680:459:0:o;33323:615::-;33496:4;-1:-1:-1;;;;;33469:31:0;:23;33484:7;33469:14;:23::i;:::-;-1:-1:-1;;;;;33469:31:0;;33447:122;;;;-1:-1:-1;;;33447:122:0;;14234:2:1;33447:122:0;;;14216:21:1;14273:2;14253:18;;;14246:30;14312:34;14292:18;;;14285:62;-1:-1:-1;;;14363:18:1;;;14356:39;14412:19;;33447:122:0;14206:231:1;33447:122:0;-1:-1:-1;;;;;33588:16:0;;33580:65;;;;-1:-1:-1;;;33580:65:0;;9976:2:1;33580:65:0;;;9958:21:1;10015:2;9995:18;;;9988:30;10054:34;10034:18;;;10027:62;-1:-1:-1;;;10105:18:1;;;10098:34;10149:19;;33580:65:0;9948:226:1;33580:65:0;33762:29;33779:1;33783:7;33762:8;:29::i;:::-;-1:-1:-1;;;;;33804:15:0;;;;;;:9;:15;;;;;:20;;33823:1;;33804:15;:20;;33823:1;;33804:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33835:13:0;;;;;;:9;:13;;;;;:18;;33852:1;;33835:13;:18;;33852:1;;33835:18;:::i;:::-;;;;-1:-1:-1;;33864:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33864:21:0;-1:-1:-1;;;;;33864:21:0;;;;;;;;;33903:27;;33864:16;;33903:27;;;;;;;33323:615;;;:::o;41544:403::-;41666:23;;;41605:7;41666:23;;;:15;:23;;;;;:30;41605:7;;41642:55;;41659:6;;41642:16;:55::i;:::-;41734:23;;;41708:15;41734:23;;;:15;:23;;;;;:31;;41625:72;;-1:-1:-1;41708:15:0;;41625:72;;41734:31;;;;-1:-1:-1;;;41734:31:0;;;;;;;;;;;;;;;;;;;;;;;41813:23;;;;;41734:31;41813:23;;;;;;;;41837:30;;41734:31;;;;;;;;;;;;;;-1:-1:-1;41813:23:0;41837:34;;41870:1;;41837:34;:::i;:::-;41813:59;;;;;;-1:-1:-1;;;41813:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41779:15;:23;41795:6;41779:23;;;;;;;;;;;;;;;41803:6;41779:31;;;;;;-1:-1:-1;;;41779:31:0;;;;;;;;;;;;;;;;;;;;;:93;;;;;;:31;;;;;;:93;;;;;;;;;;;;;;;41883:23;;;;;;;;;;;:29;;;;;-1:-1:-1;;;41883:29:0;;;;;;;;;;;;;;;;;-1:-1:-1;;41883:29:0;;;;;;;;;;;;;;;;;;;;;;;;41932:7;41544:403;-1:-1:-1;;;41544:403:0:o;31475:382::-;-1:-1:-1;;;;;31555:16:0;;31547:61;;;;-1:-1:-1;;;31547:61:0;;13099:2:1;31547:61:0;;;13081:21:1;;;13118:18;;;13111:30;13177:34;13157:18;;;13150:62;13229:18;;31547:61:0;13071:182:1;31547:61:0;31628:16;31636:7;31628;:16::i;:::-;31627:17;31619:58;;;;-1:-1:-1;;;31619:58:0;;9207:2:1;31619:58:0;;;9189:21:1;9246:2;9226:18;;;9219:30;9285;9265:18;;;9258:58;9333:18;;31619:58:0;9179:178:1;31619:58:0;-1:-1:-1;;;;;31748:13:0;;;;;;:9;:13;;;;;:18;;31765:1;;31748:13;:18;;31765:1;;31748:18;:::i;:::-;;;;-1:-1:-1;;31777:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31777:21:0;-1:-1:-1;;;;;31777:21:0;;;;;;;;31816:33;;31777:16;;;31816:33;;31777:16;;31816:33;31475:382;;:::o;28721:352::-;28878:28;28888:4;28894:2;28898:7;28878:9;:28::i;:::-;28939:48;28962:4;28968:2;28972:7;28981:5;28939:22;:48::i;:::-;28917:148;;;;-1:-1:-1;;;28917:148:0;;;;;;;:::i;1965:723::-;2021:13;2242:10;2238:53;;-1:-1:-1;;2269:10:0;;;;;;;;;;;;-1:-1:-1;;;2269:10:0;;;;;1965:723::o;2238:53::-;2316:5;2301:12;2357:78;2364:9;;2357:78;;2390:8;;;;:::i;:::-;;-1:-1:-1;2413:10:0;;-1:-1:-1;2421:2:0;2413:10;;:::i;:::-;;;2357:78;;;2445:19;2477:6;2467:17;;;;;;-1:-1:-1;;;2467:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2467:17:0;;2445:39;;2495:154;2502:10;;2495:154;;2529:11;2539:1;2529:11;;:::i;:::-;;-1:-1:-1;2598:10:0;2606:2;2598:5;:10;:::i;:::-;2585:24;;:2;:24;:::i;:::-;2572:39;;2555:6;2562;2555:14;;;;;;-1:-1:-1;;;2555:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;2555:56:0;;;;;;;;-1:-1:-1;2626:11:0;2635:2;2626:11;;:::i;:::-;;;2495:154;;31865:532;-1:-1:-1;;;;;31983:16:0;;31975:61;;;;-1:-1:-1;;;31975:61:0;;13099:2:1;31975:61:0;;;13081:21:1;;;13118:18;;;13111:30;13177:34;13157:18;;;13150:62;13229:18;;31975:61:0;13071:182:1;31975:61:0;32064:15;;-1:-1:-1;;;;;32047:13:0;;;;;;:9;:13;;;;;:32;;:13;;;:32;;32064:15;;32047:32;:::i;:::-;;;;-1:-1:-1;32097:9:0;;-1:-1:-1;32092:298:0;32112:8;:15;32108:1;:19;32092:298;;;32158:20;32166:8;32175:1;32166:11;;;;;;-1:-1:-1;;;32166:11:0;;;;;;;;;;;;;;;32158:7;:20::i;:::-;32157:21;32149:62;;;;-1:-1:-1;;;32149:62:0;;9207:2:1;32149:62:0;;;9189:21:1;9246:2;9226:18;;;9219:30;9285;9265:18;;;9258:58;9333:18;;32149:62:0;9179:178:1;32149:62:0;32228:49;32257:1;32261:2;32265:8;32274:1;32265:11;;;;;;-1:-1:-1;;;32265:11:0;;;;;;;;32228:49;32317:2;32294:7;:20;32302:8;32311:1;32302:11;;;;;;-1:-1:-1;;;32302:11:0;;;;;;;;;;;;;;;32294:20;;;;;;;;;;;;:25;;;;;-1:-1:-1;;;;;32294:25:0;;;;;-1:-1:-1;;;;;32294:25:0;;;;;;32366:8;32375:1;32366:11;;;;;;-1:-1:-1;;;32366:11:0;;;;;;;;;;;;;;;32362:2;-1:-1:-1;;;;;32341:37:0;32358:1;-1:-1:-1;;;;;32341:37:0;;;;;;;;;;;32129:3;;;;:::i;:::-;;;;32092:298;;42020:481;42224:23;;;42098:7;42224:23;;;:15;:23;;;;;:30;42098:7;;42287:16;42302:1;42287:12;:16;:::i;:::-;42185:247;;;;;;6359:19:1;;;;42277:27:0;;6394:12:1;;;6387:28;-1:-1:-1;;42327:14:0;6503:2:1;6499:15;;;6495:24;;6481:12;;;6474:46;42364:16:0;6536:12:1;;;6529:28;42403:10:0;6592:15:1;;6588:24;6573:13;;;6566:47;6629:13;;42185:247:0;;;-1:-1:-1;;42185:247:0;;;;;;;;;42157:290;;42185:247;42157:290;;;;;-1:-1:-1;42478:15:0;42487:6;42157:290;42478:15;:::i;34795:1053::-;34950:4;-1:-1:-1;;;;;34971:13:0;;5661:20;5700:8;34967:874;;35024:175;;-1:-1:-1;;;35024:175:0;;-1:-1:-1;;;;;35024:36:0;;;;;:175;;4343:10;;35118:4;;35145:7;;35175:5;;35024:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35024:175:0;;;;;;;;-1:-1:-1;;35024:175:0;;;;;;;;;;;;:::i;:::-;;;35003:783;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35386:13:0;;35382:389;;35429:108;;-1:-1:-1;;;35429:108:0;;;;;;;:::i;35382:389::-;35721:6;35715:13;35706:6;35702:2;35698:15;35691:38;35003:783;-1:-1:-1;;;;;;35263:55:0;-1:-1:-1;;;35263:55:0;;-1:-1:-1;35256:62:0;;34967:874;-1:-1:-1;35825:4:0;34795:1053;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;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:159::-;895:20;;955:6;944:18;;934:29;;924:2;;977:1;974;967:12;992:196;1051:6;1104:2;1092:9;1083:7;1079:23;1075:32;1072:2;;;1125:6;1117;1110:22;1072:2;1153:29;1172:9;1153:29;:::i;1193:270::-;1261:6;1269;1322:2;1310:9;1301:7;1297:23;1293:32;1290:2;;;1343:6;1335;1328:22;1290:2;1371:29;1390:9;1371:29;:::i;:::-;1361:39;;1419:38;1453:2;1442:9;1438:18;1419:38;:::i;:::-;1409:48;;1280:183;;;;;:::o;1468:338::-;1545:6;1553;1561;1614:2;1602:9;1593:7;1589:23;1585:32;1582:2;;;1635:6;1627;1620:22;1582:2;1663:29;1682:9;1663:29;:::i;:::-;1653:39;;1711:38;1745:2;1734:9;1730:18;1711:38;:::i;:::-;1701:48;;1796:2;1785:9;1781:18;1768:32;1758:42;;1572:234;;;;;:::o;1811:696::-;1906:6;1914;1922;1930;1983:3;1971:9;1962:7;1958:23;1954:33;1951:2;;;2005:6;1997;1990:22;1951:2;2033:29;2052:9;2033:29;:::i;:::-;2023:39;;2081:38;2115:2;2104:9;2100:18;2081:38;:::i;:::-;2071:48;;2166:2;2155:9;2151:18;2138:32;2128:42;;2221:2;2210:9;2206:18;2193:32;2248:18;2240:6;2237:30;2234:2;;;2285:6;2277;2270:22;2234:2;2313:22;;2366:4;2358:13;;2354:27;-1:-1:-1;2344:2:1;;2400:6;2392;2385:22;2344:2;2428:73;2493:7;2488:2;2475:16;2470:2;2466;2462:11;2428:73;:::i;:::-;2418:83;;;1941:566;;;;;;;:::o;2512:367::-;2577:6;2585;2638:2;2626:9;2617:7;2613:23;2609:32;2606:2;;;2659:6;2651;2644:22;2606:2;2687:29;2706:9;2687:29;:::i;:::-;2677:39;;2766:2;2755:9;2751:18;2738:32;2813:5;2806:13;2799:21;2792:5;2789:32;2779:2;;2840:6;2832;2825:22;2779:2;2868:5;2858:15;;;2596:283;;;;;:::o;2884:264::-;2952:6;2960;3013:2;3001:9;2992:7;2988:23;2984:32;2981:2;;;3034:6;3026;3019:22;2981:2;3062:29;3081:9;3062:29;:::i;:::-;3052:39;3138:2;3123:18;;;;3110:32;;-1:-1:-1;;;2971:177:1:o;3153:255::-;3211:6;3264:2;3252:9;3243:7;3239:23;3235:32;3232:2;;;3285:6;3277;3270:22;3232:2;3329:9;3316:23;3348:30;3372:5;3348:30;:::i;3413:259::-;3482:6;3535:2;3523:9;3514:7;3510:23;3506:32;3503:2;;;3556:6;3548;3541:22;3503:2;3593:9;3587:16;3612:30;3636:5;3612:30;:::i;3677:480::-;3746:6;3799:2;3787:9;3778:7;3774:23;3770:32;3767:2;;;3820:6;3812;3805:22;3767:2;3865:9;3852:23;3898:18;3890:6;3887:30;3884:2;;;3935:6;3927;3920:22;3884:2;3963:22;;4016:4;4008:13;;4004:27;-1:-1:-1;3994:2:1;;4050:6;4042;4035:22;3994:2;4078:73;4143:7;4138:2;4125:16;4120:2;4116;4112:11;4078:73;:::i;4162:194::-;4220:6;4273:2;4261:9;4252:7;4248:23;4244:32;4241:2;;;4294:6;4286;4279:22;4241:2;4322:28;4340:9;4322:28;:::i;4361:338::-;4435:6;4443;4451;4504:2;4492:9;4483:7;4479:23;4475:32;4472:2;;;4525:6;4517;4510:22;4472:2;4553:28;4571:9;4553:28;:::i;:::-;4543:38;;4600:37;4633:2;4622:9;4618:18;4600:37;:::i;:::-;4590:47;;4656:37;4689:2;4678:9;4674:18;4656:37;:::i;:::-;4646:47;;4462:237;;;;;:::o;4704:262::-;4771:6;4779;4832:2;4820:9;4811:7;4807:23;4803:32;4800:2;;;4853:6;4845;4838:22;4800:2;4881:28;4899:9;4881:28;:::i;4971:190::-;5030:6;5083:2;5071:9;5062:7;5058:23;5054:32;5051:2;;;5104:6;5096;5089:22;5051:2;-1:-1:-1;5132:23:1;;5041:120;-1:-1:-1;5041:120:1:o;5166:194::-;5236:6;5289:2;5277:9;5268:7;5264:23;5260:32;5257:2;;;5310:6;5302;5295:22;5257:2;-1:-1:-1;5338:16:1;;5247:113;-1:-1:-1;5247:113:1:o;5365:257::-;5406:3;5444:5;5438:12;5471:6;5466:3;5459:19;5487:63;5543:6;5536:4;5531:3;5527:14;5520:4;5513:5;5509:16;5487:63;:::i;:::-;5604:2;5583:15;-1:-1:-1;;5579:29:1;5570:39;;;;5611:4;5566:50;;5414:208;-1:-1:-1;;5414:208:1:o;5627:470::-;5806:3;5844:6;5838:13;5860:53;5906:6;5901:3;5894:4;5886:6;5882:17;5860:53;:::i;:::-;5976:13;;5935:16;;;;5998:57;5976:13;5935:16;6032:4;6020:17;;5998:57;:::i;:::-;6071:20;;5814:283;-1:-1:-1;;;;5814:283:1:o;6861:488::-;-1:-1:-1;;;;;7130:15:1;;;7112:34;;7182:15;;7177:2;7162:18;;7155:43;7229:2;7214:18;;7207:34;;;7277:3;7272:2;7257:18;;7250:31;;;7055:4;;7298:45;;7323:19;;7315:6;7298:45;:::i;:::-;7290:53;7064:285;-1:-1:-1;;;;;;7064:285:1:o;7546:219::-;7695:2;7684:9;7677:21;7658:4;7715:44;7755:2;7744:9;7740:18;7732:6;7715:44;:::i;8179:414::-;8381:2;8363:21;;;8420:2;8400:18;;;8393:30;8459:34;8454:2;8439:18;;8432:62;-1:-1:-1;;;8525:2:1;8510:18;;8503:48;8583:3;8568:19;;8353:240::o;10533:408::-;10735:2;10717:21;;;10774:2;10754:18;;;10747:30;10813:34;10808:2;10793:18;;10786:62;-1:-1:-1;;;10879:2:1;10864:18;;10857:42;10931:3;10916:19;;10707:234::o;13671:356::-;13873:2;13855:21;;;13892:18;;;13885:30;13951:34;13946:2;13931:18;;13924:62;14018:2;14003:18;;13845:182::o;15665:413::-;15867:2;15849:21;;;15906:2;15886:18;;;15879:30;15945:34;15940:2;15925:18;;15918:62;-1:-1:-1;;;16011:2:1;15996:18;;15989:47;16068:3;16053:19;;15839:239::o;16083:408::-;16285:2;16267:21;;;16324:2;16304:18;;;16297:30;16363:34;16358:2;16343:18;;16336:62;-1:-1:-1;;;16429:2:1;16414:18;;16407:42;16481:3;16466:19;;16257:234::o;16678:128::-;16718:3;16749:1;16745:6;16742:1;16739:13;16736:2;;;16755:18;;:::i;:::-;-1:-1:-1;16791:9:1;;16726:80::o;16811:120::-;16851:1;16877;16867:2;;16882:18;;:::i;:::-;-1:-1:-1;16916:9:1;;16857:74::o;16936:168::-;16976:7;17042:1;17038;17034:6;17030:14;17027:1;17024:21;17019:1;17012:9;17005:17;17001:45;16998:2;;;17049:18;;:::i;:::-;-1:-1:-1;17089:9:1;;16988:116::o;17109:125::-;17149:4;17177:1;17174;17171:8;17168:2;;;17182:18;;:::i;:::-;-1:-1:-1;17219:9:1;;17158:76::o;17239:258::-;17311:1;17321:113;17335:6;17332:1;17329:13;17321:113;;;17411:11;;;17405:18;17392:11;;;17385:39;17357:2;17350:10;17321:113;;;17452:6;17449:1;17446:13;17443:2;;;-1:-1:-1;;17487:1:1;17469:16;;17462:27;17292:205::o;17502:380::-;17581:1;17577:12;;;;17624;;;17645:2;;17699:4;17691:6;17687:17;17677:27;;17645:2;17752;17744:6;17741:14;17721:18;17718:38;17715:2;;;17798:10;17793:3;17789:20;17786:1;17779:31;17833:4;17830:1;17823:15;17861:4;17858:1;17851:15;17715:2;;17557:325;;;:::o;17887:197::-;17925:3;17953:6;17994:2;17987:5;17983:14;18021:2;18012:7;18009:15;18006:2;;;18027:18;;:::i;:::-;18076:1;18063:15;;17933:151;-1:-1:-1;;;17933:151:1:o;18089:135::-;18128:3;-1:-1:-1;;18149:17:1;;18146:2;;;18169:18;;:::i;:::-;-1:-1:-1;18216:1:1;18205:13;;18136:88::o;18229:112::-;18261:1;18287;18277:2;;18292:18;;:::i;:::-;-1:-1:-1;18326:9:1;;18267:74::o;18346:127::-;18407:10;18402:3;18398:20;18395:1;18388:31;18438:4;18435:1;18428:15;18462:4;18459:1;18452:15;18478:127;18539:10;18534:3;18530:20;18527:1;18520:31;18570:4;18567:1;18560:15;18594:4;18591:1;18584:15;18610:127;18671:10;18666:3;18662:20;18659:1;18652:31;18702:4;18699:1;18692:15;18726:4;18723:1;18716:15;18742:131;-1:-1:-1;;;;;;18816:32:1;;18806:43;;18796:2;;18863:1;18860;18853:12;18796:2;18786:87;:::o

Swarm Source

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