ETH Price: $2,964.91 (+3.49%)
Gas: 1 Gwei

Token

Untamed Companion (UC)
 

Overview

Max Total Supply

3,709 UC

Holders

1,438

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
ajc254.eth
Balance
1 UC
0x0bfBa38D3F4f177f81A30247a4DC17157aEd24F2
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Meet the elephant companions.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
UC

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-07
*/

// SPDX-License-Identifier: Unlimited
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 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 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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @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() {
        _setOwner(_msgSender());
    }

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

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

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

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

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

/**
 * @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 {
    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) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _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}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

        require(
            _msgSender() == owner || 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 || 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);
    }

    /**
     * @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 {
                    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` and `to` are never both zero.
     *
     * 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 {}
}

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

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

    /**
     * @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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

contract UE is ERC721Enumerable, Ownable {
    uint public constant MAX = 7500;
	string _baseTokenURI;
	bool _didWeGetTheReserves = false;
	uint _saleTime = 1625346000;
	mapping (uint256 => string) public _tokenURI;
	
    constructor(string memory baseURI) ERC721("Untamed Elephants", "UE")  {
        setBaseURI(baseURI);
    }

    modifier saleIsOpen{
        require(totalSupply() < MAX, "UntamedElephants: Sale ended");
        _;
    }

    function mint(address _to, uint _count) public payable saleIsOpen {
        require(totalSupply() + _count <= MAX, "UntamedElephants: Not enough left to mint");
        require(totalSupply() < MAX, "UntamedElephants: Not enough left to mint");
        require(_count <= 10, "UntamedElephants: Exceeds the max you can mint");
        require(msg.value >= price(_count), "UntamedElephants: Value below price");
        require(block.timestamp >= _saleTime, "UntamedElephants: Sale opens on the 3rd of July");
        
        for(uint x = 0; x < _count; x++){
            _safeMint(_to, totalSupply());
        }
    }

    function price(uint _count) public pure returns (uint256) {
        return 60000000000000000 * _count;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }
    
    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }
    
    function changeSaleTime(uint time) public onlyOwner {
        _saleTime = time;
    }
    
    function getReserves() public onlyOwner {
        require(_didWeGetTheReserves == false, "UntamedElephants: Reserves taken already!");
        for(uint x = 0; x < 55; x++){
            _safeMint(msg.sender, totalSupply());
        }
        _didWeGetTheReserves = true;
    }

    function walletOfOwner(address _owner) external view returns(uint256[] memory) {
        uint tokenCount = balanceOf(_owner);
        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint i = 0; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    function withdrawAll() public payable onlyOwner {
        require(payable(_msgSender()).send(address(this).balance));
    }
}

contract UC is ERC721Enumerable, Ownable {
    uint public constant MAX = 7500;
	string _baseTokenURI;
	mapping (uint256 => string) public _tokenURI;
	
	UE prevContract = UE(0x613E5136a22206837D12eF7A85f7de2825De1334);
	
    constructor(string memory baseURI) ERC721("Untamed Companion", "UC")  {
        setBaseURI(baseURI);
    }

    modifier saleIsOpen{
        require(totalSupply() < MAX, "Untamed Companion: Sale ended");
        _;
    }
    
    function claim(address _owner) public saleIsOpen {
        require(totalSupply() < MAX, "Untamed Companion: Not enough left to claim");
        require(prevContract.balanceOf(_owner) >= 1, "Untamed Companion: The wallet must own an Elephant");
        
        for(uint index = 0; index < prevContract.balanceOf(_owner); index++){
            if (!_exists(prevContract.tokenOfOwnerByIndex(_owner, index))) {
                _safeMint(_owner, prevContract.tokenOfOwnerByIndex(_owner, index));
            }
        }
    }
    
    function claimForMultiple(address[] memory addresses)  public {
        for(uint i = 0; i < addresses.length; i++){
            claim(addresses[i]);
        }
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }
    
    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

    function walletOfOwner(address _owner) external view returns(uint256[] memory) {
        uint tokenCount = balanceOf(_owner);
        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint i = 0; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    function withdrawAll() public payable onlyOwner {
        require(payable(_msgSender()).send(address(this).balance));
    }
}
//Developed by Bleiserman

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"claimForMultiple","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052600d80546001600160a01b03191673613e5136a22206837d12ef7a85f7de2825de13341790553480156200003757600080fd5b5060405162002704380380620027048339810160408190526200005a9162000266565b60408051808201825260118152702ab73a30b6b2b21021b7b6b830b734b7b760791b602080830191825283518085019094526002845261554360f01b908401528151919291620000ad91600091620001c0565b508051620000c3906001906020840190620001c0565b505050620000e0620000da620000f260201b60201c565b620000f6565b620000eb8162000148565b5062000395565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001a75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001bc90600b906020840190620001c0565b5050565b828054620001ce9062000342565b90600052602060002090601f016020900481019282620001f257600085556200023d565b82601f106200020d57805160ff19168380011785556200023d565b828001600101855582156200023d579182015b828111156200023d57825182559160200191906001019062000220565b506200024b9291506200024f565b5090565b5b808211156200024b576000815560010162000250565b600060208083850312156200027a57600080fd5b82516001600160401b03808211156200029257600080fd5b818501915085601f830112620002a757600080fd5b815181811115620002bc57620002bc6200037f565b604051601f8201601f19908116603f01168101908382118183101715620002e757620002e76200037f565b8160405282815288868487010111156200030057600080fd5b600093505b8284101562000324578484018601518185018701529285019262000305565b82841115620003365760008684830101525b98975050505050505050565b600181811c908216806200035757607f821691505b602082108114156200037957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61235f80620003a56000396000f3fe6080604052600436106101815760003560e01c806370a08231116100d157806395d89b411161008a578063c87b56dd11610064578063c87b56dd14610453578063d49d518114610473578063e985e9c514610489578063f2fde38b146104d257600080fd5b806395d89b41146103fe578063a22cb46514610413578063b88d4fde1461043357600080fd5b806370a0823114610363578063715018a614610383578063853828b6146103985780638d17e712146103a05780638da5cb5b146103c057806395029792146103de57600080fd5b806323b872dd1161013e578063438b630011610118578063438b6300146102d65780634f6ccce71461030357806355f804b3146103235780636352211e1461034357600080fd5b806323b872dd146102765780632f745c591461029657806342842e0e146102b657600080fd5b806301ffc9a71461018657806306fdde03146101bb578063081812fc146101dd578063095ea7b31461021557806318160ddd146102375780631e83409a14610256575b600080fd5b34801561019257600080fd5b506101a66101a1366004611f1f565b6104f2565b60405190151581526020015b60405180910390f35b3480156101c757600080fd5b506101d061051d565b6040516101b291906120b0565b3480156101e957600080fd5b506101fd6101f8366004611fa2565b6105af565b6040516001600160a01b0390911681526020016101b2565b34801561022157600080fd5b50610235610230366004611e41565b610649565b005b34801561024357600080fd5b506008545b6040519081526020016101b2565b34801561026257600080fd5b50610235610271366004611cff565b61075f565b34801561028257600080fd5b50610235610291366004611d4d565b610ade565b3480156102a257600080fd5b506102486102b1366004611e41565b610b0f565b3480156102c257600080fd5b506102356102d1366004611d4d565b610ba5565b3480156102e257600080fd5b506102f66102f1366004611cff565b610bc0565b6040516101b2919061206c565b34801561030f57600080fd5b5061024861031e366004611fa2565b610c62565b34801561032f57600080fd5b5061023561033e366004611f59565b610cf5565b34801561034f57600080fd5b506101fd61035e366004611fa2565b610d32565b34801561036f57600080fd5b5061024861037e366004611cff565b610da9565b34801561038f57600080fd5b50610235610e30565b610235610e66565b3480156103ac57600080fd5b506101d06103bb366004611fa2565b610eb4565b3480156103cc57600080fd5b50600a546001600160a01b03166101fd565b3480156103ea57600080fd5b506102356103f9366004611e6b565b610f4e565b34801561040a57600080fd5b506101d0610f8e565b34801561041f57600080fd5b5061023561042e366004611e05565b610f9d565b34801561043f57600080fd5b5061023561044e366004611d89565b611062565b34801561045f57600080fd5b506101d061046e366004611fa2565b61109a565b34801561047f57600080fd5b50610248611d4c81565b34801561049557600080fd5b506101a66104a4366004611d1a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104de57600080fd5b506102356104ed366004611cff565b611175565b60006001600160e01b0319821663780e9d6360e01b1480610517575061051782611210565b92915050565b60606000805461052c9061223b565b80601f01602080910402602001604051908101604052809291908181526020018280546105589061223b565b80156105a55780601f1061057a576101008083540402835291602001916105a5565b820191906000526020600020905b81548152906001019060200180831161058857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661062d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061065482610d32565b9050806001600160a01b0316836001600160a01b031614156106c25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610624565b336001600160a01b03821614806106de57506106de81336104a4565b6107505760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610624565b61075a8383611260565b505050565b611d4c61076b60085490565b106107b85760405162461bcd60e51b815260206004820152601d60248201527f556e74616d656420436f6d70616e696f6e3a2053616c6520656e6465640000006044820152606401610624565b611d4c6107c460085490565b106108255760405162461bcd60e51b815260206004820152602b60248201527f556e74616d656420436f6d70616e696f6e3a204e6f7420656e6f756768206c6560448201526a667420746f20636c61696d60a81b6064820152608401610624565b600d546040516370a0823160e01b81526001600160a01b03838116600483015260019216906370a082319060240160206040518083038186803b15801561086b57600080fd5b505afa15801561087f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108a39190611fbb565b101561090c5760405162461bcd60e51b815260206004820152603260248201527f556e74616d656420436f6d70616e696f6e3a205468652077616c6c6574206d756044820152711cdd081bdddb88185b88115b195c1a185b9d60721b6064820152608401610624565b60005b600d546040516370a0823160e01b81526001600160a01b038481166004830152909116906370a082319060240160206040518083038186803b15801561095457600080fd5b505afa158015610968573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061098c9190611fbb565b811015610ada57600d54604051632f745c5960e01b81526001600160a01b03848116600483015260248201849052610a36921690632f745c599060440160206040518083038186803b1580156109e157600080fd5b505afa1580156109f5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a199190611fbb565b6000908152600260205260409020546001600160a01b0316151590565b610ac857600d54604051632f745c5960e01b81526001600160a01b03808516600483015260248201849052610ac8928592911690632f745c599060440160206040518083038186803b158015610a8b57600080fd5b505afa158015610a9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac39190611fbb565b6112ce565b80610ad281612276565b91505061090f565b5050565b610ae833826112e8565b610b045760405162461bcd60e51b81526004016106249061214a565b61075a8383836113df565b6000610b1a83610da9565b8210610b7c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610624565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61075a83838360405180602001604052806000815250611062565b60606000610bcd83610da9565b905060008167ffffffffffffffff811115610bea57610bea6122fd565b604051908082528060200260200182016040528015610c13578160200160208202803683370190505b50905060005b82811015610c5a57610c2b8582610b0f565b828281518110610c3d57610c3d6122e7565b602090810291909101015280610c5281612276565b915050610c19565b509392505050565b6000610c6d60085490565b8210610cd05760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610624565b60088281548110610ce357610ce36122e7565b90600052602060002001549050919050565b600a546001600160a01b03163314610d1f5760405162461bcd60e51b815260040161062490612115565b8051610ada90600b906020840190611bf2565b6000818152600260205260408120546001600160a01b0316806105175760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610624565b60006001600160a01b038216610e145760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610624565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610e5a5760405162461bcd60e51b815260040161062490612115565b610e64600061158a565b565b600a546001600160a01b03163314610e905760405162461bcd60e51b815260040161062490612115565b60405133904780156108fc02916000818181858888f19350505050610e6457600080fd5b600c6020526000908152604090208054610ecd9061223b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef99061223b565b8015610f465780601f10610f1b57610100808354040283529160200191610f46565b820191906000526020600020905b815481529060010190602001808311610f2957829003601f168201915b505050505081565b60005b8151811015610ada57610f7c828281518110610f6f57610f6f6122e7565b602002602001015161075f565b80610f8681612276565b915050610f51565b60606001805461052c9061223b565b6001600160a01b038216331415610ff65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610624565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61106c33836112e8565b6110885760405162461bcd60e51b81526004016106249061214a565b611094848484846115dc565b50505050565b6000818152600260205260409020546060906001600160a01b03166111195760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610624565b600061112361160f565b90506000815111611143576040518060200160405280600081525061116e565b8061114d8461161e565b60405160200161115e929190612000565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461119f5760405162461bcd60e51b815260040161062490612115565b6001600160a01b0381166112045760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610624565b61120d8161158a565b50565b60006001600160e01b031982166380ac58cd60e01b148061124157506001600160e01b03198216635b5e139f60e01b145b8061051757506301ffc9a760e01b6001600160e01b0319831614610517565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061129582610d32565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610ada82826040518060200160405280600081525061171c565b6000818152600260205260408120546001600160a01b03166113615760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610624565b600061136c83610d32565b9050806001600160a01b0316846001600160a01b031614806113a75750836001600160a01b031661139c846105af565b6001600160a01b0316145b806113d757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166113f282610d32565b6001600160a01b03161461145a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610624565b6001600160a01b0382166114bc5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610624565b6114c783838361174f565b6114d2600082611260565b6001600160a01b03831660009081526003602052604081208054600192906114fb9084906121f8565b90915550506001600160a01b03821660009081526003602052604081208054600192906115299084906121cc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6115e78484846113df565b6115f384848484611807565b6110945760405162461bcd60e51b8152600401610624906120c3565b6060600b805461052c9061223b565b6060816116425750506040805180820190915260018152600360fc1b602082015290565b8160005b811561166c578061165681612276565b91506116659050600a836121e4565b9150611646565b60008167ffffffffffffffff811115611687576116876122fd565b6040519080825280601f01601f1916602001820160405280156116b1576020820181803683370190505b5090505b84156113d7576116c66001836121f8565b91506116d3600a86612291565b6116de9060306121cc565b60f81b8183815181106116f3576116f36122e7565b60200101906001600160f81b031916908160001a905350611715600a866121e4565b94506116b5565b6117268383611914565b6117336000848484611807565b61075a5760405162461bcd60e51b8152600401610624906120c3565b6001600160a01b0383166117aa576117a581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6117cd565b816001600160a01b0316836001600160a01b0316146117cd576117cd8382611a62565b6001600160a01b0382166117e45761075a81611aff565b826001600160a01b0316826001600160a01b03161461075a5761075a8282611bae565b60006001600160a01b0384163b1561190957604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061184b90339089908890889060040161202f565b602060405180830381600087803b15801561186557600080fd5b505af1925050508015611895575060408051601f3d908101601f1916820190925261189291810190611f3c565b60015b6118ef573d8080156118c3576040519150601f19603f3d011682016040523d82523d6000602084013e6118c8565b606091505b5080516118e75760405162461bcd60e51b8152600401610624906120c3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113d7565b506001949350505050565b6001600160a01b03821661196a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610624565b6000818152600260205260409020546001600160a01b0316156119cf5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610624565b6119db6000838361174f565b6001600160a01b0382166000908152600360205260408120805460019290611a049084906121cc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611a6f84610da9565b611a7991906121f8565b600083815260076020526040902054909150808214611acc576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611b11906001906121f8565b60008381526009602052604081205460088054939450909284908110611b3957611b396122e7565b906000526020600020015490508060088381548110611b5a57611b5a6122e7565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b9257611b926122d1565b6001900381819060005260206000200160009055905550505050565b6000611bb983610da9565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611bfe9061223b565b90600052602060002090601f016020900481019282611c205760008555611c66565b82601f10611c3957805160ff1916838001178555611c66565b82800160010185558215611c66579182015b82811115611c66578251825591602001919060010190611c4b565b50611c72929150611c76565b5090565b5b80821115611c725760008155600101611c77565b600067ffffffffffffffff831115611ca557611ca56122fd565b611cb8601f8401601f191660200161219b565b9050828152838383011115611ccc57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611cfa57600080fd5b919050565b600060208284031215611d1157600080fd5b61116e82611ce3565b60008060408385031215611d2d57600080fd5b611d3683611ce3565b9150611d4460208401611ce3565b90509250929050565b600080600060608486031215611d6257600080fd5b611d6b84611ce3565b9250611d7960208501611ce3565b9150604084013590509250925092565b60008060008060808587031215611d9f57600080fd5b611da885611ce3565b9350611db660208601611ce3565b925060408501359150606085013567ffffffffffffffff811115611dd957600080fd5b8501601f81018713611dea57600080fd5b611df987823560208401611c8b565b91505092959194509250565b60008060408385031215611e1857600080fd5b611e2183611ce3565b915060208301358015158114611e3657600080fd5b809150509250929050565b60008060408385031215611e5457600080fd5b611e5d83611ce3565b946020939093013593505050565b60006020808385031215611e7e57600080fd5b823567ffffffffffffffff80821115611e9657600080fd5b818501915085601f830112611eaa57600080fd5b813581811115611ebc57611ebc6122fd565b8060051b9150611ecd84830161219b565b8181528481019084860184860187018a1015611ee857600080fd5b600095505b83861015611f1257611efe81611ce3565b835260019590950194918601918601611eed565b5098975050505050505050565b600060208284031215611f3157600080fd5b813561116e81612313565b600060208284031215611f4e57600080fd5b815161116e81612313565b600060208284031215611f6b57600080fd5b813567ffffffffffffffff811115611f8257600080fd5b8201601f81018413611f9357600080fd5b6113d784823560208401611c8b565b600060208284031215611fb457600080fd5b5035919050565b600060208284031215611fcd57600080fd5b5051919050565b60008151808452611fec81602086016020860161220f565b601f01601f19169290920160200192915050565b6000835161201281846020880161220f565b83519083019061202681836020880161220f565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061206290830184611fd4565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156120a457835183529284019291840191600101612088565b50909695505050505050565b60208152600061116e6020830184611fd4565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156121c4576121c46122fd565b604052919050565b600082198211156121df576121df6122a5565b500190565b6000826121f3576121f36122bb565b500490565b60008282101561220a5761220a6122a5565b500390565b60005b8381101561222a578181015183820152602001612212565b838111156110945750506000910152565b600181811c9082168061224f57607f821691505b6020821081141561227057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561228a5761228a6122a5565b5060010190565b6000826122a0576122a06122bb565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461120d57600080fdfea26469706673582212204519f1db6ee07c49ccd1f9956c47a9e0485af6ecc3b91ba0f80f3c13d1133b2d64736f6c634300080600330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d53745172373170363863463756746b33464365674c674c356735726a766770567545633168683241674a4b692f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101815760003560e01c806370a08231116100d157806395d89b411161008a578063c87b56dd11610064578063c87b56dd14610453578063d49d518114610473578063e985e9c514610489578063f2fde38b146104d257600080fd5b806395d89b41146103fe578063a22cb46514610413578063b88d4fde1461043357600080fd5b806370a0823114610363578063715018a614610383578063853828b6146103985780638d17e712146103a05780638da5cb5b146103c057806395029792146103de57600080fd5b806323b872dd1161013e578063438b630011610118578063438b6300146102d65780634f6ccce71461030357806355f804b3146103235780636352211e1461034357600080fd5b806323b872dd146102765780632f745c591461029657806342842e0e146102b657600080fd5b806301ffc9a71461018657806306fdde03146101bb578063081812fc146101dd578063095ea7b31461021557806318160ddd146102375780631e83409a14610256575b600080fd5b34801561019257600080fd5b506101a66101a1366004611f1f565b6104f2565b60405190151581526020015b60405180910390f35b3480156101c757600080fd5b506101d061051d565b6040516101b291906120b0565b3480156101e957600080fd5b506101fd6101f8366004611fa2565b6105af565b6040516001600160a01b0390911681526020016101b2565b34801561022157600080fd5b50610235610230366004611e41565b610649565b005b34801561024357600080fd5b506008545b6040519081526020016101b2565b34801561026257600080fd5b50610235610271366004611cff565b61075f565b34801561028257600080fd5b50610235610291366004611d4d565b610ade565b3480156102a257600080fd5b506102486102b1366004611e41565b610b0f565b3480156102c257600080fd5b506102356102d1366004611d4d565b610ba5565b3480156102e257600080fd5b506102f66102f1366004611cff565b610bc0565b6040516101b2919061206c565b34801561030f57600080fd5b5061024861031e366004611fa2565b610c62565b34801561032f57600080fd5b5061023561033e366004611f59565b610cf5565b34801561034f57600080fd5b506101fd61035e366004611fa2565b610d32565b34801561036f57600080fd5b5061024861037e366004611cff565b610da9565b34801561038f57600080fd5b50610235610e30565b610235610e66565b3480156103ac57600080fd5b506101d06103bb366004611fa2565b610eb4565b3480156103cc57600080fd5b50600a546001600160a01b03166101fd565b3480156103ea57600080fd5b506102356103f9366004611e6b565b610f4e565b34801561040a57600080fd5b506101d0610f8e565b34801561041f57600080fd5b5061023561042e366004611e05565b610f9d565b34801561043f57600080fd5b5061023561044e366004611d89565b611062565b34801561045f57600080fd5b506101d061046e366004611fa2565b61109a565b34801561047f57600080fd5b50610248611d4c81565b34801561049557600080fd5b506101a66104a4366004611d1a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104de57600080fd5b506102356104ed366004611cff565b611175565b60006001600160e01b0319821663780e9d6360e01b1480610517575061051782611210565b92915050565b60606000805461052c9061223b565b80601f01602080910402602001604051908101604052809291908181526020018280546105589061223b565b80156105a55780601f1061057a576101008083540402835291602001916105a5565b820191906000526020600020905b81548152906001019060200180831161058857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661062d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061065482610d32565b9050806001600160a01b0316836001600160a01b031614156106c25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610624565b336001600160a01b03821614806106de57506106de81336104a4565b6107505760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610624565b61075a8383611260565b505050565b611d4c61076b60085490565b106107b85760405162461bcd60e51b815260206004820152601d60248201527f556e74616d656420436f6d70616e696f6e3a2053616c6520656e6465640000006044820152606401610624565b611d4c6107c460085490565b106108255760405162461bcd60e51b815260206004820152602b60248201527f556e74616d656420436f6d70616e696f6e3a204e6f7420656e6f756768206c6560448201526a667420746f20636c61696d60a81b6064820152608401610624565b600d546040516370a0823160e01b81526001600160a01b03838116600483015260019216906370a082319060240160206040518083038186803b15801561086b57600080fd5b505afa15801561087f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108a39190611fbb565b101561090c5760405162461bcd60e51b815260206004820152603260248201527f556e74616d656420436f6d70616e696f6e3a205468652077616c6c6574206d756044820152711cdd081bdddb88185b88115b195c1a185b9d60721b6064820152608401610624565b60005b600d546040516370a0823160e01b81526001600160a01b038481166004830152909116906370a082319060240160206040518083038186803b15801561095457600080fd5b505afa158015610968573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061098c9190611fbb565b811015610ada57600d54604051632f745c5960e01b81526001600160a01b03848116600483015260248201849052610a36921690632f745c599060440160206040518083038186803b1580156109e157600080fd5b505afa1580156109f5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a199190611fbb565b6000908152600260205260409020546001600160a01b0316151590565b610ac857600d54604051632f745c5960e01b81526001600160a01b03808516600483015260248201849052610ac8928592911690632f745c599060440160206040518083038186803b158015610a8b57600080fd5b505afa158015610a9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac39190611fbb565b6112ce565b80610ad281612276565b91505061090f565b5050565b610ae833826112e8565b610b045760405162461bcd60e51b81526004016106249061214a565b61075a8383836113df565b6000610b1a83610da9565b8210610b7c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610624565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61075a83838360405180602001604052806000815250611062565b60606000610bcd83610da9565b905060008167ffffffffffffffff811115610bea57610bea6122fd565b604051908082528060200260200182016040528015610c13578160200160208202803683370190505b50905060005b82811015610c5a57610c2b8582610b0f565b828281518110610c3d57610c3d6122e7565b602090810291909101015280610c5281612276565b915050610c19565b509392505050565b6000610c6d60085490565b8210610cd05760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610624565b60088281548110610ce357610ce36122e7565b90600052602060002001549050919050565b600a546001600160a01b03163314610d1f5760405162461bcd60e51b815260040161062490612115565b8051610ada90600b906020840190611bf2565b6000818152600260205260408120546001600160a01b0316806105175760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610624565b60006001600160a01b038216610e145760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610624565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610e5a5760405162461bcd60e51b815260040161062490612115565b610e64600061158a565b565b600a546001600160a01b03163314610e905760405162461bcd60e51b815260040161062490612115565b60405133904780156108fc02916000818181858888f19350505050610e6457600080fd5b600c6020526000908152604090208054610ecd9061223b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef99061223b565b8015610f465780601f10610f1b57610100808354040283529160200191610f46565b820191906000526020600020905b815481529060010190602001808311610f2957829003601f168201915b505050505081565b60005b8151811015610ada57610f7c828281518110610f6f57610f6f6122e7565b602002602001015161075f565b80610f8681612276565b915050610f51565b60606001805461052c9061223b565b6001600160a01b038216331415610ff65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610624565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61106c33836112e8565b6110885760405162461bcd60e51b81526004016106249061214a565b611094848484846115dc565b50505050565b6000818152600260205260409020546060906001600160a01b03166111195760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610624565b600061112361160f565b90506000815111611143576040518060200160405280600081525061116e565b8061114d8461161e565b60405160200161115e929190612000565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461119f5760405162461bcd60e51b815260040161062490612115565b6001600160a01b0381166112045760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610624565b61120d8161158a565b50565b60006001600160e01b031982166380ac58cd60e01b148061124157506001600160e01b03198216635b5e139f60e01b145b8061051757506301ffc9a760e01b6001600160e01b0319831614610517565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061129582610d32565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610ada82826040518060200160405280600081525061171c565b6000818152600260205260408120546001600160a01b03166113615760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610624565b600061136c83610d32565b9050806001600160a01b0316846001600160a01b031614806113a75750836001600160a01b031661139c846105af565b6001600160a01b0316145b806113d757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166113f282610d32565b6001600160a01b03161461145a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610624565b6001600160a01b0382166114bc5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610624565b6114c783838361174f565b6114d2600082611260565b6001600160a01b03831660009081526003602052604081208054600192906114fb9084906121f8565b90915550506001600160a01b03821660009081526003602052604081208054600192906115299084906121cc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6115e78484846113df565b6115f384848484611807565b6110945760405162461bcd60e51b8152600401610624906120c3565b6060600b805461052c9061223b565b6060816116425750506040805180820190915260018152600360fc1b602082015290565b8160005b811561166c578061165681612276565b91506116659050600a836121e4565b9150611646565b60008167ffffffffffffffff811115611687576116876122fd565b6040519080825280601f01601f1916602001820160405280156116b1576020820181803683370190505b5090505b84156113d7576116c66001836121f8565b91506116d3600a86612291565b6116de9060306121cc565b60f81b8183815181106116f3576116f36122e7565b60200101906001600160f81b031916908160001a905350611715600a866121e4565b94506116b5565b6117268383611914565b6117336000848484611807565b61075a5760405162461bcd60e51b8152600401610624906120c3565b6001600160a01b0383166117aa576117a581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6117cd565b816001600160a01b0316836001600160a01b0316146117cd576117cd8382611a62565b6001600160a01b0382166117e45761075a81611aff565b826001600160a01b0316826001600160a01b03161461075a5761075a8282611bae565b60006001600160a01b0384163b1561190957604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061184b90339089908890889060040161202f565b602060405180830381600087803b15801561186557600080fd5b505af1925050508015611895575060408051601f3d908101601f1916820190925261189291810190611f3c565b60015b6118ef573d8080156118c3576040519150601f19603f3d011682016040523d82523d6000602084013e6118c8565b606091505b5080516118e75760405162461bcd60e51b8152600401610624906120c3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113d7565b506001949350505050565b6001600160a01b03821661196a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610624565b6000818152600260205260409020546001600160a01b0316156119cf5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610624565b6119db6000838361174f565b6001600160a01b0382166000908152600360205260408120805460019290611a049084906121cc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611a6f84610da9565b611a7991906121f8565b600083815260076020526040902054909150808214611acc576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611b11906001906121f8565b60008381526009602052604081205460088054939450909284908110611b3957611b396122e7565b906000526020600020015490508060088381548110611b5a57611b5a6122e7565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b9257611b926122d1565b6001900381819060005260206000200160009055905550505050565b6000611bb983610da9565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611bfe9061223b565b90600052602060002090601f016020900481019282611c205760008555611c66565b82601f10611c3957805160ff1916838001178555611c66565b82800160010185558215611c66579182015b82811115611c66578251825591602001919060010190611c4b565b50611c72929150611c76565b5090565b5b80821115611c725760008155600101611c77565b600067ffffffffffffffff831115611ca557611ca56122fd565b611cb8601f8401601f191660200161219b565b9050828152838383011115611ccc57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611cfa57600080fd5b919050565b600060208284031215611d1157600080fd5b61116e82611ce3565b60008060408385031215611d2d57600080fd5b611d3683611ce3565b9150611d4460208401611ce3565b90509250929050565b600080600060608486031215611d6257600080fd5b611d6b84611ce3565b9250611d7960208501611ce3565b9150604084013590509250925092565b60008060008060808587031215611d9f57600080fd5b611da885611ce3565b9350611db660208601611ce3565b925060408501359150606085013567ffffffffffffffff811115611dd957600080fd5b8501601f81018713611dea57600080fd5b611df987823560208401611c8b565b91505092959194509250565b60008060408385031215611e1857600080fd5b611e2183611ce3565b915060208301358015158114611e3657600080fd5b809150509250929050565b60008060408385031215611e5457600080fd5b611e5d83611ce3565b946020939093013593505050565b60006020808385031215611e7e57600080fd5b823567ffffffffffffffff80821115611e9657600080fd5b818501915085601f830112611eaa57600080fd5b813581811115611ebc57611ebc6122fd565b8060051b9150611ecd84830161219b565b8181528481019084860184860187018a1015611ee857600080fd5b600095505b83861015611f1257611efe81611ce3565b835260019590950194918601918601611eed565b5098975050505050505050565b600060208284031215611f3157600080fd5b813561116e81612313565b600060208284031215611f4e57600080fd5b815161116e81612313565b600060208284031215611f6b57600080fd5b813567ffffffffffffffff811115611f8257600080fd5b8201601f81018413611f9357600080fd5b6113d784823560208401611c8b565b600060208284031215611fb457600080fd5b5035919050565b600060208284031215611fcd57600080fd5b5051919050565b60008151808452611fec81602086016020860161220f565b601f01601f19169290920160200192915050565b6000835161201281846020880161220f565b83519083019061202681836020880161220f565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061206290830184611fd4565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156120a457835183529284019291840191600101612088565b50909695505050505050565b60208152600061116e6020830184611fd4565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156121c4576121c46122fd565b604052919050565b600082198211156121df576121df6122a5565b500190565b6000826121f3576121f36122bb565b500490565b60008282101561220a5761220a6122a5565b500390565b60005b8381101561222a578181015183820152602001612212565b838111156110945750506000910152565b600181811c9082168061224f57607f821691505b6020821081141561227057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561228a5761228a6122a5565b5060010190565b6000826122a0576122a06122bb565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461120d57600080fdfea26469706673582212204519f1db6ee07c49ccd1f9956c47a9e0485af6ecc3b91ba0f80f3c13d1133b2d64736f6c63430008060033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d53745172373170363863463756746b33464365674c674c356735726a766770567545633168683241674a4b692f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://gateway.pinata.cloud/ipfs/QmStQr71p68cF7Vtk3FCegLgL5g5rjvgpVuEc1hh2AgJKi/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [2] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [3] : 732f516d53745172373170363863463756746b33464365674c674c356735726a
Arg [4] : 766770567545633168683241674a4b692f000000000000000000000000000000


Deployed Bytecode Sourcemap

44105:1901:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35634:224;;;;;;;;;;-1:-1:-1;35634:224:0;;;;;:::i;:::-;;:::i;:::-;;;7494:14:1;;7487:22;7469:41;;7457:2;7442:18;35634:224:0;;;;;;;;23638:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25197:221::-;;;;;;;;;;-1:-1:-1;25197:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5876:32:1;;;5858:51;;5846:2;5831:18;25197:221:0;5813:102:1;24720:411:0;;;;;;;;;;-1:-1:-1;24720:411:0;;;;;:::i;:::-;;:::i;:::-;;36274:113;;;;;;;;;;-1:-1:-1;36362:10:0;:17;36274:113;;;16287:25:1;;;16275:2;16260:18;36274:113:0;16242:76:1;44576:530:0;;;;;;;;;;-1:-1:-1;44576:530:0;;;;;:::i;:::-;;:::i;26087:339::-;;;;;;;;;;-1:-1:-1;26087:339:0;;;;;:::i;:::-;;:::i;35942:256::-;;;;;;;;;;-1:-1:-1;35942:256:0;;;;;:::i;:::-;;:::i;26497:185::-;;;;;;;;;;-1:-1:-1;26497:185:0;;;;;:::i;:::-;;:::i;45530:340::-;;;;;;;;;;-1:-1:-1;45530:340:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;36464:233::-;;;;;;;;;;-1:-1:-1;36464:233:0;;;;;:::i;:::-;;:::i;45420:102::-;;;;;;;;;;-1:-1:-1;45420:102:0;;;;;:::i;:::-;;:::i;23332:239::-;;;;;;;;;;-1:-1:-1;23332:239:0;;;;;:::i;:::-;;:::i;23062:208::-;;;;;;;;;;-1:-1:-1;23062:208:0;;;;;:::i;:::-;;:::i;20837:94::-;;;;;;;;;;;;;:::i;45878:125::-;;;:::i;44212:44::-;;;;;;;;;;-1:-1:-1;44212:44:0;;;;;:::i;:::-;;:::i;20186:87::-;;;;;;;;;;-1:-1:-1;20259:6:0;;-1:-1:-1;;;;;20259:6:0;20186:87;;45118:168;;;;;;;;;;-1:-1:-1;45118:168:0;;;;;:::i;:::-;;:::i;23807:104::-;;;;;;;;;;;;;:::i;25490:295::-;;;;;;;;;;-1:-1:-1;25490:295:0;;;;;:::i;:::-;;:::i;26753:328::-;;;;;;;;;;-1:-1:-1;26753:328:0;;;;;:::i;:::-;;:::i;23982:334::-;;;;;;;;;;-1:-1:-1;23982:334:0;;;;;:::i;:::-;;:::i;44153:31::-;;;;;;;;;;;;44180:4;44153:31;;25856:164;;;;;;;;;;-1:-1:-1;25856:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;25977:25:0;;;25953:4;25977:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25856:164;21086:192;;;;;;;;;;-1:-1:-1;21086:192:0;;;;;:::i;:::-;;:::i;35634:224::-;35736:4;-1:-1:-1;;;;;;35760:50:0;;-1:-1:-1;;;35760:50:0;;:90;;;35814:36;35838:11;35814:23;:36::i;:::-;35753:97;35634:224;-1:-1:-1;;35634:224:0:o;23638:100::-;23692:13;23725:5;23718:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23638:100;:::o;25197:221::-;25273:7;28680:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28680:16:0;25293:73;;;;-1:-1:-1;;;25293:73:0;;13098:2:1;25293:73:0;;;13080:21:1;13137:2;13117:18;;;13110:30;13176:34;13156:18;;;13149:62;-1:-1:-1;;;13227:18:1;;;13220:42;13279:19;;25293:73:0;;;;;;;;;-1:-1:-1;25386:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25386:24:0;;25197:221::o;24720:411::-;24801:13;24817:23;24832:7;24817:14;:23::i;:::-;24801:39;;24865:5;-1:-1:-1;;;;;24859:11:0;:2;-1:-1:-1;;;;;24859:11:0;;;24851:57;;;;-1:-1:-1;;;24851:57:0;;14698:2:1;24851:57:0;;;14680:21:1;14737:2;14717:18;;;14710:30;14776:34;14756:18;;;14749:62;-1:-1:-1;;;14827:18:1;;;14820:31;14868:19;;24851:57:0;14670:223:1;24851:57:0;16281:10;-1:-1:-1;;;;;24943:21:0;;;;:62;;-1:-1:-1;24968:37:0;24985:5;16281:10;25856:164;:::i;24968:37::-;24921:168;;;;-1:-1:-1;;;24921:168:0;;11133:2:1;24921:168:0;;;11115:21:1;11172:2;11152:18;;;11145:30;11211:34;11191:18;;;11184:62;11282:26;11262:18;;;11255:54;11326:19;;24921:168:0;11105:246:1;24921:168:0;25102:21;25111:2;25115:7;25102:8;:21::i;:::-;24790:341;24720:411;;:::o;44576:530::-;44180:4;44491:13;36362:10;:17;;36274:113;44491:13;:19;44483:61;;;;-1:-1:-1;;;44483:61:0;;12740:2:1;44483:61:0;;;12722:21:1;12779:2;12759:18;;;12752:30;12818:31;12798:18;;;12791:59;12867:18;;44483:61:0;12712:179:1;44483:61:0;44180:4:::1;44644:13;36362:10:::0;:17;;36274:113;44644:13:::1;:19;44636:75;;;::::0;-1:-1:-1;;;44636:75:0;;15518:2:1;44636:75:0::1;::::0;::::1;15500:21:1::0;15557:2;15537:18;;;15530:30;15596:34;15576:18;;;15569:62;-1:-1:-1;;;15647:18:1;;;15640:41;15698:19;;44636:75:0::1;15490:233:1::0;44636:75:0::1;44730:12;::::0;:30:::1;::::0;-1:-1:-1;;;44730:30:0;;-1:-1:-1;;;;;5876:32:1;;;44730:30:0::1;::::0;::::1;5858:51:1::0;44764:1:0::1;::::0;44730:12:::1;::::0;:22:::1;::::0;5831:18:1;;44730:30:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:35;;44722:98;;;::::0;-1:-1:-1;;;44722:98:0;;8778:2:1;44722:98:0::1;::::0;::::1;8760:21:1::0;8817:2;8797:18;;;8790:30;8856:34;8836:18;;;8829:62;-1:-1:-1;;;8907:18:1;;;8900:48;8965:19;;44722:98:0::1;8750:240:1::0;44722:98:0::1;44845:10;44841:258;44869:12;::::0;:30:::1;::::0;-1:-1:-1;;;44869:30:0;;-1:-1:-1;;;;;5876:32:1;;;44869:30:0::1;::::0;::::1;5858:51:1::0;44869:12:0;;::::1;::::0;:22:::1;::::0;5831:18:1;;44869:30:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44861:5;:38;44841:258;;;44937:12;::::0;:47:::1;::::0;-1:-1:-1;;;44937:47:0;;-1:-1:-1;;;;;6605:32:1;;;44937:47:0::1;::::0;::::1;6587:51:1::0;6654:18;;;6647:34;;;44929:56:0::1;::::0;44937:12:::1;::::0;:32:::1;::::0;6560:18:1;;44937:47:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28656:4:::0;28680:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28680:16:0;:30;;;28591:127;44929:56:::1;44924:164;;45024:12;::::0;:47:::1;::::0;-1:-1:-1;;;45024:47:0;;-1:-1:-1;;;;;6605:32:1;;;45024:47:0::1;::::0;::::1;6587:51:1::0;6654:18;;;6647:34;;;45006:66:0::1;::::0;45016:6;;45024:12;::::1;::::0;:32:::1;::::0;6560:18:1;;45024:47:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45006:9;:66::i;:::-;44901:7:::0;::::1;::::0;::::1;:::i;:::-;;;;44841:258;;;;44576:530:::0;:::o;26087:339::-;26282:41;16281:10;26315:7;26282:18;:41::i;:::-;26274:103;;;;-1:-1:-1;;;26274:103:0;;;;;;;:::i;:::-;26390:28;26400:4;26406:2;26410:7;26390:9;:28::i;35942:256::-;36039:7;36075:23;36092:5;36075:16;:23::i;:::-;36067:5;:31;36059:87;;;;-1:-1:-1;;;36059:87:0;;7947:2:1;36059:87:0;;;7929:21:1;7986:2;7966:18;;;7959:30;8025:34;8005:18;;;7998:62;-1:-1:-1;;;8076:18:1;;;8069:41;8127:19;;36059:87:0;7919:233:1;36059:87:0;-1:-1:-1;;;;;;36164:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35942:256::o;26497:185::-;26635:39;26652:4;26658:2;26662:7;26635:39;;;;;;;;;;;;:16;:39::i;45530:340::-;45591:16;45620:15;45638:17;45648:6;45638:9;:17::i;:::-;45620:35;;45666:25;45708:10;45694:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45694:25:0;;45666:53;;45734:6;45730:107;45750:10;45746:1;:14;45730:107;;;45795:30;45815:6;45823:1;45795:19;:30::i;:::-;45781:8;45790:1;45781:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;45762:3;;;;:::i;:::-;;;;45730:107;;;-1:-1:-1;45854:8:0;45530:340;-1:-1:-1;;;45530:340:0:o;36464:233::-;36539:7;36575:30;36362:10;:17;;36274:113;36575:30;36567:5;:38;36559:95;;;;-1:-1:-1;;;36559:95:0;;15930:2:1;36559:95:0;;;15912:21:1;15969:2;15949:18;;;15942:30;16008:34;15988:18;;;15981:62;-1:-1:-1;;;16059:18:1;;;16052:42;16111:19;;36559:95:0;15902:234:1;36559:95:0;36672:10;36683:5;36672:17;;;;;;;;:::i;:::-;;;;;;;;;36665:24;;36464:233;;;:::o;45420:102::-;20259:6;;-1:-1:-1;;;;;20259:6:0;16281:10;20406:23;20398:68;;;;-1:-1:-1;;;20398:68:0;;;;;;;:::i;:::-;45491:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;23332:239::-:0;23404:7;23440:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23440:16:0;23475:19;23467:73;;;;-1:-1:-1;;;23467:73:0;;11969:2:1;23467:73:0;;;11951:21:1;12008:2;11988:18;;;11981:30;12047:34;12027:18;;;12020:62;-1:-1:-1;;;12098:18:1;;;12091:39;12147:19;;23467:73:0;11941:231:1;23062:208:0;23134:7;-1:-1:-1;;;;;23162:19:0;;23154:74;;;;-1:-1:-1;;;23154:74:0;;11558:2:1;23154:74:0;;;11540:21:1;11597:2;11577:18;;;11570:30;11636:34;11616:18;;;11609:62;-1:-1:-1;;;11687:18:1;;;11680:40;11737:19;;23154:74:0;11530:232:1;23154:74:0;-1:-1:-1;;;;;;23246:16:0;;;;;:9;:16;;;;;;;23062:208::o;20837:94::-;20259:6;;-1:-1:-1;;;;;20259:6:0;16281:10;20406:23;20398:68;;;;-1:-1:-1;;;20398:68:0;;;;;;;:::i;:::-;20902:21:::1;20920:1;20902:9;:21::i;:::-;20837:94::o:0;45878:125::-;20259:6;;-1:-1:-1;;;;;20259:6:0;16281:10;20406:23;20398:68;;;;-1:-1:-1;;;20398:68:0;;;;;;;:::i;:::-;45945:49:::1;::::0;16281:10;;45972:21:::1;45945:49:::0;::::1;;;::::0;::::1;::::0;;;45972:21;16281:10;45945:49;::::1;;;;;;45937:58;;;::::0;::::1;44212:44:::0;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45118:168::-;45195:6;45191:88;45211:9;:16;45207:1;:20;45191:88;;;45248:19;45254:9;45264:1;45254:12;;;;;;;;:::i;:::-;;;;;;;45248:5;:19::i;:::-;45229:3;;;;:::i;:::-;;;;45191:88;;23807:104;23863:13;23896:7;23889:14;;;;;:::i;25490:295::-;-1:-1:-1;;;;;25593:24:0;;16281:10;25593:24;;25585:62;;;;-1:-1:-1;;;25585:62:0;;10366:2:1;25585:62:0;;;10348:21:1;10405:2;10385:18;;;10378:30;10444:27;10424:18;;;10417:55;10489:18;;25585:62:0;10338:175:1;25585:62:0;16281:10;25660:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25660:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25660:53:0;;;;;;;;;;25729:48;;7469:41:1;;;25660:42:0;;16281:10;25729:48;;7442:18:1;25729:48:0;;;;;;;25490:295;;:::o;26753:328::-;26928:41;16281:10;26961:7;26928:18;:41::i;:::-;26920:103;;;;-1:-1:-1;;;26920:103:0;;;;;;;:::i;:::-;27034:39;27048:4;27054:2;27058:7;27067:5;27034:13;:39::i;:::-;26753:328;;;;:::o;23982:334::-;28656:4;28680:16;;;:7;:16;;;;;;24055:13;;-1:-1:-1;;;;;28680:16:0;24081:76;;;;-1:-1:-1;;;24081:76:0;;14282:2:1;24081:76:0;;;14264:21:1;14321:2;14301:18;;;14294:30;14360:34;14340:18;;;14333:62;-1:-1:-1;;;14411:18:1;;;14404:45;14466:19;;24081:76:0;14254:237:1;24081:76:0;24170:21;24194:10;:8;:10::i;:::-;24170:34;;24246:1;24228:7;24222:21;:25;:86;;;;;;;;;;;;;;;;;24274:7;24283:18;:7;:16;:18::i;:::-;24257:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24222:86;24215:93;23982:334;-1:-1:-1;;;23982:334:0:o;21086:192::-;20259:6;;-1:-1:-1;;;;;20259:6:0;16281:10;20406:23;20398:68;;;;-1:-1:-1;;;20398:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21175:22:0;::::1;21167:73;;;::::0;-1:-1:-1;;;21167:73:0;;9197:2:1;21167:73:0::1;::::0;::::1;9179:21:1::0;9236:2;9216:18;;;9209:30;9275:34;9255:18;;;9248:62;-1:-1:-1;;;9326:18:1;;;9319:36;9372:19;;21167:73:0::1;9169:228:1::0;21167:73:0::1;21251:19;21261:8;21251:9;:19::i;:::-;21086:192:::0;:::o;22693:305::-;22795:4;-1:-1:-1;;;;;;22832:40:0;;-1:-1:-1;;;22832:40:0;;:105;;-1:-1:-1;;;;;;;22889:48:0;;-1:-1:-1;;;22889:48:0;22832:105;:158;;;-1:-1:-1;;;;;;;;;;1623:40:0;;;22954:36;1514:157;32573:174;32648:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32648:29:0;-1:-1:-1;;;;;32648:29:0;;;;;;;;:24;;32702:23;32648:24;32702:14;:23::i;:::-;-1:-1:-1;;;;;32693:46:0;;;;;;;;;;;32573:174;;:::o;29575:110::-;29651:26;29661:2;29665:7;29651:26;;;;;;;;;;;;:9;:26::i;28885:348::-;28978:4;28680:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28680:16:0;28995:73;;;;-1:-1:-1;;;28995:73:0;;10720:2:1;28995:73:0;;;10702:21:1;10759:2;10739:18;;;10732:30;10798:34;10778:18;;;10771:62;-1:-1:-1;;;10849:18:1;;;10842:42;10901:19;;28995:73:0;10692:234:1;28995:73:0;29079:13;29095:23;29110:7;29095:14;:23::i;:::-;29079:39;;29148:5;-1:-1:-1;;;;;29137:16:0;:7;-1:-1:-1;;;;;29137:16:0;;:51;;;;29181:7;-1:-1:-1;;;;;29157:31:0;:20;29169:7;29157:11;:20::i;:::-;-1:-1:-1;;;;;29157:31:0;;29137:51;:87;;;-1:-1:-1;;;;;;25977:25:0;;;25953:4;25977:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;29192:32;29129:96;28885:348;-1:-1:-1;;;;28885:348:0:o;31877:578::-;32036:4;-1:-1:-1;;;;;32009:31:0;:23;32024:7;32009:14;:23::i;:::-;-1:-1:-1;;;;;32009:31:0;;32001:85;;;;-1:-1:-1;;;32001:85:0;;13872:2:1;32001:85:0;;;13854:21:1;13911:2;13891:18;;;13884:30;13950:34;13930:18;;;13923:62;-1:-1:-1;;;14001:18:1;;;13994:39;14050:19;;32001:85:0;13844:231:1;32001:85:0;-1:-1:-1;;;;;32105:16:0;;32097:65;;;;-1:-1:-1;;;32097:65:0;;9961:2:1;32097:65:0;;;9943:21:1;10000:2;9980:18;;;9973:30;10039:34;10019:18;;;10012:62;-1:-1:-1;;;10090:18:1;;;10083:34;10134:19;;32097:65:0;9933:226:1;32097:65:0;32175:39;32196:4;32202:2;32206:7;32175:20;:39::i;:::-;32279:29;32296:1;32300:7;32279:8;:29::i;:::-;-1:-1:-1;;;;;32321:15:0;;;;;;:9;:15;;;;;:20;;32340:1;;32321:15;:20;;32340:1;;32321:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32352:13:0;;;;;;:9;:13;;;;;:18;;32369:1;;32352:13;:18;;32369:1;;32352:18;:::i;:::-;;;;-1:-1:-1;;32381:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32381:21:0;-1:-1:-1;;;;;32381:21:0;;;;;;;;;32420:27;;32381:16;;32420:27;;;;;;;31877:578;;;:::o;21286:173::-;21361:6;;;-1:-1:-1;;;;;21378:17:0;;;-1:-1:-1;;;;;;21378:17:0;;;;;;;21411:40;;21361:6;;;21378:17;21361:6;;21411:40;;21342:16;;21411:40;21331:128;21286:173;:::o;27963:315::-;28120:28;28130:4;28136:2;28140:7;28120:9;:28::i;:::-;28167:48;28190:4;28196:2;28200:7;28209:5;28167:22;:48::i;:::-;28159:111;;;;-1:-1:-1;;;28159:111:0;;;;;;;:::i;45294:114::-;45354:13;45387;45380:20;;;;;:::i;16641:723::-;16697:13;16918:10;16914:53;;-1:-1:-1;;16945:10:0;;;;;;;;;;;;-1:-1:-1;;;16945:10:0;;;;;16641:723::o;16914:53::-;16992:5;16977:12;17033:78;17040:9;;17033:78;;17066:8;;;;:::i;:::-;;-1:-1:-1;17089:10:0;;-1:-1:-1;17097:2:0;17089:10;;:::i;:::-;;;17033:78;;;17121:19;17153:6;17143:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17143:17:0;;17121:39;;17171:154;17178:10;;17171:154;;17205:11;17215:1;17205:11;;:::i;:::-;;-1:-1:-1;17274:10:0;17282:2;17274:5;:10;:::i;:::-;17261:24;;:2;:24;:::i;:::-;17248:39;;17231:6;17238;17231:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17231:56:0;;;;;;;;-1:-1:-1;17302:11:0;17311:2;17302:11;;:::i;:::-;;;17171:154;;29912:321;30042:18;30048:2;30052:7;30042:5;:18::i;:::-;30093:54;30124:1;30128:2;30132:7;30141:5;30093:22;:54::i;:::-;30071:154;;;;-1:-1:-1;;;30071:154:0;;;;;;;:::i;37310:589::-;-1:-1:-1;;;;;37516:18:0;;37512:187;;37551:40;37583:7;38726:10;:17;;38699:24;;;;:15;:24;;;;;:44;;;38754:24;;;;;;;;;;;;38622:164;37551:40;37512:187;;;37621:2;-1:-1:-1;;;;;37613:10:0;:4;-1:-1:-1;;;;;37613:10:0;;37609:90;;37640:47;37673:4;37679:7;37640:32;:47::i;:::-;-1:-1:-1;;;;;37713:16:0;;37709:183;;37746:45;37783:7;37746:36;:45::i;37709:183::-;37819:4;-1:-1:-1;;;;;37813:10:0;:2;-1:-1:-1;;;;;37813:10:0;;37809:83;;37840:40;37868:2;37872:7;37840:27;:40::i;33312:803::-;33467:4;-1:-1:-1;;;;;33488:13:0;;8871:20;8919:8;33484:624;;33524:72;;-1:-1:-1;;;33524:72:0;;-1:-1:-1;;;;;33524:36:0;;;;;:72;;16281:10;;33575:4;;33581:7;;33590:5;;33524:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33524:72:0;;;;;;;;-1:-1:-1;;33524:72:0;;;;;;;;;;;;:::i;:::-;;;33520:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33770:13:0;;33766:272;;33813:60;;-1:-1:-1;;;33813:60:0;;;;;;;:::i;33766:272::-;33988:6;33982:13;33973:6;33969:2;33965:15;33958:38;33520:533;-1:-1:-1;;;;;;33647:55:0;-1:-1:-1;;;33647:55:0;;-1:-1:-1;33640:62:0;;33484:624;-1:-1:-1;34092:4:0;33312:803;;;;;;:::o;30569:382::-;-1:-1:-1;;;;;30649:16:0;;30641:61;;;;-1:-1:-1;;;30641:61:0;;12379:2:1;30641:61:0;;;12361:21:1;;;12398:18;;;12391:30;12457:34;12437:18;;;12430:62;12509:18;;30641:61:0;12351:182:1;30641:61:0;28656:4;28680:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28680:16:0;:30;30713:58;;;;-1:-1:-1;;;30713:58:0;;9604:2:1;30713:58:0;;;9586:21:1;9643:2;9623:18;;;9616:30;9682;9662:18;;;9655:58;9730:18;;30713:58:0;9576:178:1;30713:58:0;30784:45;30813:1;30817:2;30821:7;30784:20;:45::i;:::-;-1:-1:-1;;;;;30842:13:0;;;;;;:9;:13;;;;;:18;;30859:1;;30842:13;:18;;30859:1;;30842:18;:::i;:::-;;;;-1:-1:-1;;30871:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30871:21:0;-1:-1:-1;;;;;30871:21:0;;;;;;;;30910:33;;30871:16;;;30910:33;;30871:16;;30910:33;30569:382;;:::o;39413:988::-;39679:22;39729:1;39704:22;39721:4;39704:16;:22::i;:::-;:26;;;;:::i;:::-;39741:18;39762:26;;;:17;:26;;;;;;39679:51;;-1:-1:-1;39895:28:0;;;39891:328;;-1:-1:-1;;;;;39962:18:0;;39940:19;39962:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40013:30;;;;;;:44;;;40130:30;;:17;:30;;;;;:43;;;39891:328;-1:-1:-1;40315:26:0;;;;:17;:26;;;;;;;;40308:33;;;-1:-1:-1;;;;;40359:18:0;;;;;:12;:18;;;;;:34;;;;;;;40352:41;39413:988::o;40696:1079::-;40974:10;:17;40949:22;;40974:21;;40994:1;;40974:21;:::i;:::-;41006:18;41027:24;;;:15;:24;;;;;;41400:10;:26;;40949:46;;-1:-1:-1;41027:24:0;;40949:46;;41400:26;;;;;;:::i;:::-;;;;;;;;;41378:48;;41464:11;41439:10;41450;41439:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;41544:28;;;:15;:28;;;;;;;:41;;;41716:24;;;;;41709:31;41751:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;40767:1008;;;40696:1079;:::o;38200:221::-;38285:14;38302:20;38319:2;38302:16;:20::i;:::-;-1:-1:-1;;;;;38333:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;38378:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;38200:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:2;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:2;;;309:1;306;299:12;268:2;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;88:332;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:2;;588:1;585;578:12;522:2;474:124;;;:::o;603:186::-;662:6;715:2;703:9;694:7;690:23;686:32;683:2;;;731:1;728;721:12;683:2;754:29;773:9;754:29;:::i;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:2;;;939:1;936;929:12;891:2;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;881:173;;;;;:::o;1059:328::-;1136:6;1144;1152;1205:2;1193:9;1184:7;1180:23;1176:32;1173:2;;;1221:1;1218;1211:12;1173:2;1244:29;1263:9;1244:29;:::i;:::-;1234:39;;1292:38;1326:2;1315:9;1311:18;1292:38;:::i;:::-;1282:48;;1377:2;1366:9;1362:18;1349:32;1339:42;;1163:224;;;;;:::o;1392:666::-;1487:6;1495;1503;1511;1564:3;1552:9;1543:7;1539:23;1535:33;1532:2;;;1581:1;1578;1571:12;1532:2;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1652:38;1686:2;1675:9;1671:18;1652:38;:::i;:::-;1642:48;;1737:2;1726:9;1722:18;1709:32;1699:42;;1792:2;1781:9;1777:18;1764:32;1819:18;1811:6;1808:30;1805:2;;;1851:1;1848;1841:12;1805:2;1874:22;;1927:4;1919:13;;1915:27;-1:-1:-1;1905:2:1;;1956:1;1953;1946:12;1905:2;1979:73;2044:7;2039:2;2026:16;2021:2;2017;2013:11;1979:73;:::i;:::-;1969:83;;;1522:536;;;;;;;:::o;2063:347::-;2128:6;2136;2189:2;2177:9;2168:7;2164:23;2160:32;2157:2;;;2205:1;2202;2195:12;2157:2;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2307:2;2296:9;2292:18;2279:32;2354:5;2347:13;2340:21;2333:5;2330:32;2320:2;;2376:1;2373;2366:12;2320:2;2399:5;2389:15;;;2147:263;;;;;:::o;2415:254::-;2483:6;2491;2544:2;2532:9;2523:7;2519:23;2515:32;2512:2;;;2560:1;2557;2550:12;2512:2;2583:29;2602:9;2583:29;:::i;:::-;2573:39;2659:2;2644:18;;;;2631:32;;-1:-1:-1;;;2502:167:1:o;2674:963::-;2758:6;2789:2;2832;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2888:9;2875:23;2917:18;2958:2;2950:6;2947:14;2944:2;;;2974:1;2971;2964:12;2944:2;3012:6;3001:9;2997:22;2987:32;;3057:7;3050:4;3046:2;3042:13;3038:27;3028:2;;3079:1;3076;3069:12;3028:2;3115;3102:16;3137:2;3133;3130:10;3127:2;;;3143:18;;:::i;:::-;3189:2;3186:1;3182:10;3172:20;;3212:28;3236:2;3232;3228:11;3212:28;:::i;:::-;3274:15;;;3305:12;;;;3337:11;;;3367;;;3363:20;;3360:33;-1:-1:-1;3357:2:1;;;3406:1;3403;3396:12;3357:2;3428:1;3419:10;;3438:169;3452:2;3449:1;3446:9;3438:169;;;3509:23;3528:3;3509:23;:::i;:::-;3497:36;;3470:1;3463:9;;;;;3553:12;;;;3585;;3438:169;;;-1:-1:-1;3626:5:1;2769:868;-1:-1:-1;;;;;;;;2769:868:1:o;3642:245::-;3700:6;3753:2;3741:9;3732:7;3728:23;3724:32;3721:2;;;3769:1;3766;3759:12;3721:2;3808:9;3795:23;3827:30;3851:5;3827:30;:::i;3892:249::-;3961:6;4014:2;4002:9;3993:7;3989:23;3985:32;3982:2;;;4030:1;4027;4020:12;3982:2;4062:9;4056:16;4081:30;4105:5;4081:30;:::i;4146:450::-;4215:6;4268:2;4256:9;4247:7;4243:23;4239:32;4236:2;;;4284:1;4281;4274:12;4236:2;4324:9;4311:23;4357:18;4349:6;4346:30;4343:2;;;4389:1;4386;4379:12;4343:2;4412:22;;4465:4;4457:13;;4453:27;-1:-1:-1;4443:2:1;;4494:1;4491;4484:12;4443:2;4517:73;4582:7;4577:2;4564:16;4559:2;4555;4551:11;4517:73;:::i;4601:180::-;4660:6;4713:2;4701:9;4692:7;4688:23;4684:32;4681:2;;;4729:1;4726;4719:12;4681:2;-1:-1:-1;4752:23:1;;4671:110;-1:-1:-1;4671:110:1:o;4786:184::-;4856:6;4909:2;4897:9;4888:7;4884:23;4880:32;4877:2;;;4925:1;4922;4915:12;4877:2;-1:-1:-1;4948:16:1;;4867:103;-1:-1:-1;4867:103:1:o;4975:257::-;5016:3;5054:5;5048:12;5081:6;5076:3;5069:19;5097:63;5153:6;5146:4;5141:3;5137:14;5130:4;5123:5;5119:16;5097:63;:::i;:::-;5214:2;5193:15;-1:-1:-1;;5189:29:1;5180:39;;;;5221:4;5176:50;;5024:208;-1:-1:-1;;5024:208:1:o;5237:470::-;5416:3;5454:6;5448:13;5470:53;5516:6;5511:3;5504:4;5496:6;5492:17;5470:53;:::i;:::-;5586:13;;5545:16;;;;5608:57;5586:13;5545:16;5642:4;5630:17;;5608:57;:::i;:::-;5681:20;;5424:283;-1:-1:-1;;;;5424:283:1:o;5920:488::-;-1:-1:-1;;;;;6189:15:1;;;6171:34;;6241:15;;6236:2;6221:18;;6214:43;6288:2;6273:18;;6266:34;;;6336:3;6331:2;6316:18;;6309:31;;;6114:4;;6357:45;;6382:19;;6374:6;6357:45;:::i;:::-;6349:53;6123:285;-1:-1:-1;;;;;;6123:285:1:o;6692:632::-;6863:2;6915:21;;;6985:13;;6888:18;;;7007:22;;;6834:4;;6863:2;7086:15;;;;7060:2;7045:18;;;6834:4;7129:169;7143:6;7140:1;7137:13;7129:169;;;7204:13;;7192:26;;7273:15;;;;7238:12;;;;7165:1;7158:9;7129:169;;;-1:-1:-1;7315:3:1;;6843:481;-1:-1:-1;;;;;;6843:481:1:o;7521:219::-;7670:2;7659:9;7652:21;7633:4;7690:44;7730:2;7719:9;7715:18;7707:6;7690:44;:::i;8157:414::-;8359:2;8341:21;;;8398:2;8378:18;;;8371:30;8437:34;8432:2;8417:18;;8410:62;-1:-1:-1;;;8503:2:1;8488:18;;8481:48;8561:3;8546:19;;8331:240::o;13309:356::-;13511:2;13493:21;;;13530:18;;;13523:30;13589:34;13584:2;13569:18;;13562:62;13656:2;13641:18;;13483:182::o;14898:413::-;15100:2;15082:21;;;15139:2;15119:18;;;15112:30;15178:34;15173:2;15158:18;;15151:62;-1:-1:-1;;;15244:2:1;15229:18;;15222:47;15301:3;15286:19;;15072:239::o;16323:275::-;16394:2;16388:9;16459:2;16440:13;;-1:-1:-1;;16436:27:1;16424:40;;16494:18;16479:34;;16515:22;;;16476:62;16473:2;;;16541:18;;:::i;:::-;16577:2;16570:22;16368:230;;-1:-1:-1;16368:230:1:o;16603:128::-;16643:3;16674:1;16670:6;16667:1;16664:13;16661:2;;;16680:18;;:::i;:::-;-1:-1:-1;16716:9:1;;16651:80::o;16736:120::-;16776:1;16802;16792:2;;16807:18;;:::i;:::-;-1:-1:-1;16841:9:1;;16782:74::o;16861:125::-;16901:4;16929:1;16926;16923:8;16920:2;;;16934:18;;:::i;:::-;-1:-1:-1;16971:9:1;;16910:76::o;16991:258::-;17063:1;17073:113;17087:6;17084:1;17081:13;17073:113;;;17163:11;;;17157:18;17144:11;;;17137:39;17109:2;17102:10;17073:113;;;17204:6;17201:1;17198:13;17195:2;;;-1:-1:-1;;17239:1:1;17221:16;;17214:27;17044:205::o;17254:380::-;17333:1;17329:12;;;;17376;;;17397:2;;17451:4;17443:6;17439:17;17429:27;;17397:2;17504;17496:6;17493:14;17473:18;17470:38;17467:2;;;17550:10;17545:3;17541:20;17538:1;17531:31;17585:4;17582:1;17575:15;17613:4;17610:1;17603:15;17467:2;;17309:325;;;:::o;17639:135::-;17678:3;-1:-1:-1;;17699:17:1;;17696:2;;;17719:18;;:::i;:::-;-1:-1:-1;17766:1:1;17755:13;;17686:88::o;17779:112::-;17811:1;17837;17827:2;;17842:18;;:::i;:::-;-1:-1:-1;17876:9:1;;17817:74::o;17896:127::-;17957:10;17952:3;17948:20;17945:1;17938:31;17988:4;17985:1;17978:15;18012:4;18009:1;18002:15;18028:127;18089:10;18084:3;18080:20;18077:1;18070:31;18120:4;18117:1;18110:15;18144:4;18141:1;18134:15;18160:127;18221:10;18216:3;18212:20;18209:1;18202:31;18252:4;18249:1;18242:15;18276:4;18273:1;18266:15;18292:127;18353:10;18348:3;18344:20;18341:1;18334:31;18384:4;18381:1;18374:15;18408:4;18405:1;18398:15;18424:127;18485:10;18480:3;18476:20;18473:1;18466:31;18516:4;18513:1;18506:15;18540:4;18537:1;18530:15;18556:131;-1:-1:-1;;;;;;18630:32:1;;18620:43;;18610:2;;18677:1;18674;18667:12

Swarm Source

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