ETH Price: $3,318.41 (-3.37%)
Gas: 17 Gwei

Token

emLoot (emLoot)
 

Overview

Max Total Supply

2,682 emLoot

Holders

414

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 emLoot
0x1d07588a4ea08f10dc10dd76a6ddff7a053f13e0
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
emLoot

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-04
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

/**
 * @dev String operations.
 */
library Stattitude {
    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, 'Stattitude: hex length insufficient');
        return string(buffer);
    }
}

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

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

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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 Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

/**
 * @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 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 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 Stattitude 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, food to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

/**
 * @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 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, food 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 emLoot is ERC721Enumerable, ReentrancyGuard, Ownable {
    string[] private face = [
        unicode'😀',
        unicode'😂',
        unicode'😍',
        unicode'😎',
        unicode'😡',
        unicode'🥺',
        unicode'😩',
        unicode'😴',
        unicode'😷',
        unicode'😈',
        unicode'👻',
        unicode'🤖',
        unicode'🤮',
        unicode'😱',
        unicode'😭',
        unicode'🤪',
        unicode'🤡',
        unicode'👽'
    ];

    string[] private pet = [
        unicode'🐶',
        unicode'🐱',
        unicode'🐭',
        unicode'🐰',
        unicode'🦊',
        unicode'🐻',
        unicode'🐯',
        unicode'🦁',
        unicode'🐮',
        unicode'🐷',
        unicode'🐸',
        unicode'🐵',
        unicode'🐔',
        unicode'🦉',
        unicode'🦄',
        unicode'🐟',
        unicode'🐳',
        unicode'🐏'
    ];

    string[] private food = [
        unicode'🍳',
        unicode'🍔',
        unicode'🍕',
        unicode'🍣',
        unicode'🍵',
        unicode'🍺',
        unicode'🍎',
        unicode'🍉',
        unicode'🍒',
        unicode'🍋',
        unicode'🍌',
        unicode'🍜',
        unicode'🍭',
        unicode'🍼',
        unicode'🦴',
        unicode'🧋',
        unicode'🎂',
        unicode'🧀'
    ];

    string[] private sport = [
        unicode'⚽️',
        unicode'🏀',
        unicode'🏈',
        unicode'🎾',
        unicode'🏐',
        unicode'🎱',
        unicode'🏓',
        unicode'🏸',
        unicode'🏒',
        unicode'⛳️',
        unicode'🏹',
        unicode'🎣',
        unicode'🥊',
        unicode'🤿',
        unicode'🥋',
        unicode'⛷',
        unicode'🏊️',
        unicode'🚴️'
    ];

    string[] private traffic = [
        unicode'🚗',
        unicode'🚕',
        unicode'🚌',
        unicode'🚜',
        unicode'🛴',
        unicode'🦽',
        unicode'🚲',
        unicode'🛵',
        unicode'🚄',
        unicode'✈️',
        unicode'🚀',
        unicode'⛵️',
        unicode'🚁',
        unicode'🦵'
    ];

    string[] private job = [
        unicode'👮',
        unicode'👷',
        unicode'🧑‍💻',
        unicode'🧑‍🎓',
        unicode'🧑‍🌾',
        unicode'🧑‍🎨',
        unicode'🧑‍🔬',
        unicode'🧑‍🏫',
        unicode'🧑‍🍳',
        unicode'🧑‍⚕️',
        unicode'🕵️',
        unicode'🧑‍🚒',
        unicode'🧑‍🚀',
        unicode'🥷',
        unicode'🧞️',
        unicode'🧛'
    ];

    string[] private tool = [
        unicode'💊',
        unicode'📱',
        unicode'💻',
        unicode'🎙',
        unicode'🎥',
        unicode'🛠',
        unicode'🔪',
        unicode'⛓',
        unicode'💣',
        unicode'🔫',
        unicode'🚽',
        unicode'🎁',
        unicode'🎉',
        unicode'💎',
        unicode'💰'
    ];

    string[] private attitude = [
        unicode'👍',
        unicode'👎',
        unicode'✊',
        unicode'🤘',
        unicode'🤏',
        unicode'🤙',
        unicode'🙏',
        unicode'🖕',
        unicode'👌',
        unicode'👏',
        unicode'💩',
        unicode'👄',
        unicode'👋',
        unicode'✌️',
        unicode'💪'
    ];

    string[] private suffixes = [
        unicode'at 🌅',
        unicode'at 🌄',
        unicode'at 🎆',
        unicode'at 🏞',
        unicode'at 🌃',
        unicode'at 🏦',
        unicode'at 🏥',
        unicode'at 🏠',
        unicode'at 🎡',
        unicode'at 🏖',
        unicode'at 🏛'
    ];

    string[] private namePrefixes = [
        unicode'🔥',
        unicode'🌈',
        unicode'⭐️',
        unicode'🌎',
        unicode'❤️',
        unicode'💡',
        unicode'💯'
    ];

    string[] private nameSuffixes = [
        unicode'❗️',
        unicode'❓',
        unicode'🎉',
        unicode'💎',
        unicode'💰',
        unicode'🎖'
    ];

    function random(string memory input) internal pure returns (uint256) {
        return uint256(keccak256(abi.encodePacked(input)));
    }

    function getFace(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, 'FACE', face);
    }

    function getPet(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, 'PET', pet);
    }

    function getFood(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, 'FOOD', food);
    }

    function getSport(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, 'SPORT', sport);
    }

    function getTraffic(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, 'TRAFFIC', traffic);
    }

    function getJob(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, 'JOB', job);
    }

    function getTool(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, 'TOOL', tool);
    }

    function getAttitude(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, 'ATTITUDE', attitude);
    }

    function pluck(
        uint256 tokenId,
        string memory keyPrefix,
        string[] memory sourceArray
    ) internal view returns (string memory) {
        uint256 rand = random(
            string(abi.encodePacked(keyPrefix, toString(tokenId)))
        );
        string memory output = sourceArray[rand % sourceArray.length];
        uint256 greatness = rand % 21;
        if (greatness > 14) {
            output = string(
                abi.encodePacked(output, ' ', suffixes[rand % suffixes.length])
            );
        }
        if (greatness >= 19) {
            string[2] memory name;
            name[0] = namePrefixes[rand % namePrefixes.length];
            name[1] = nameSuffixes[rand % nameSuffixes.length];
            if (greatness == 19) {
                output = string(
                    abi.encodePacked(
                        '#',
                        name[0],
                        ' ',
                        name[1],
                        '# ',
                        output,
                        unicode' 🏆'
                    )
                );
            } else {
                output = string(
                    abi.encodePacked('#', name[0], ' ', name[1], '# ', output)
                );
            }
        }
        return output;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        string[17] memory parts;
        parts[
            0
        ] = '<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin meet" viewBox="0 0 350 350"><style>.base { fill: white; font-family: serif; font-size: 14px; }</style><rect width="100%" height="100%" fill="black" /><text x="10" y="20" class="base">';

        parts[1] = getFace(tokenId);

        parts[2] = '</text><text x="10" y="40" class="base">';

        parts[3] = getPet(tokenId);

        parts[4] = '</text><text x="10" y="60" class="base">';

        parts[5] = getFood(tokenId);

        parts[6] = '</text><text x="10" y="80" class="base">';

        parts[7] = getSport(tokenId);

        parts[8] = '</text><text x="10" y="100" class="base">';

        parts[9] = getTraffic(tokenId);

        parts[10] = '</text><text x="10" y="120" class="base">';

        parts[11] = getJob(tokenId);

        parts[12] = '</text><text x="10" y="140" class="base">';

        parts[13] = getTool(tokenId);

        parts[14] = '</text><text x="10" y="160" class="base">';

        parts[15] = getAttitude(tokenId);

        parts[16] = '</text></svg>';

        string memory output = string(
            abi.encodePacked(
                parts[0],
                parts[1],
                parts[2],
                parts[3],
                parts[4],
                parts[5],
                parts[6],
                parts[7],
                parts[8]
            )
        );
        output = string(
            abi.encodePacked(
                output,
                parts[9],
                parts[10],
                parts[11],
                parts[12],
                parts[13],
                parts[14],
                parts[15],
                parts[16]
            )
        );

        string memory json = Base64.encode(
            bytes(
                string(
                    abi.encodePacked(
                        '{"name": "Person #',
                        toString(tokenId),
                        '", "description": "Emoji Loot uses emoji to describe an abstract person", "image": "data:image/svg+xml;base64,',
                        Base64.encode(bytes(output)),
                        '","attributes": [',
                        abi.encodePacked(
                            '{"trait_type": "Face", "value": "',
                            parts[1],
                            '"},',
                            '{"trait_type": "Pet", "value": "',
                            parts[3],
                            '"},',
                            '{"trait_type": "Food", "value": "',
                            parts[5],
                            '"},'
                        ),
                        abi.encodePacked(
                            '{"trait_type": "Sport", "value": "',
                            parts[7],
                            '"},',
                            '{"trait_type": "Traffic", "value": "',
                            parts[9],
                            '"},',
                            '{"trait_type": "Job", "value": "',
                            parts[11],
                            '"},'
                        ),
                        abi.encodePacked(
                            '{"trait_type": "Tool", "value": "',
                            parts[13],
                            '"},',
                            '{"trait_type": "Attitude", "value": "',
                            parts[15],
                            '"}'
                        ),
                        ']}'
                    )
                )
            )
        );
        output = string(
            abi.encodePacked('data:application/json;base64,', json)
        );

        return output;
    }

    function claim(uint256 tokenId) public nonReentrant {
        require(tokenId > 0 && tokenId < 7778, 'Token ID invalid');
        _safeMint(_msgSender(), tokenId);
    }

    function ownerClaim(uint256 tokenId) public nonReentrant onlyOwner {
        require(tokenId > 7777 && tokenId < 8001, 'Token ID invalid');
        _safeMint(owner(), tokenId);
    }

    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT license
        // 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);
    }

    constructor() ERC721('emLoot', 'emLoot') Ownable() {}
}

library Base64 {
    bytes internal constant TABLE =
        'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';

    /// @notice Encodes some bytes to the base64 representation
    function encode(bytes memory data) internal pure returns (string memory) {
        uint256 len = data.length;
        if (len == 0) return '';

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((len + 2) / 3);

        // Add some extra buffer at the end
        bytes memory result = new bytes(encodedLen + 32);

        bytes memory table = TABLE;

        assembly {
            let tablePtr := add(table, 1)
            let resultPtr := add(result, 32)

            for {
                let i := 0
            } lt(i, len) {

            } {
                i := add(i, 3)
                let input := and(mload(add(data, i)), 0xffffff)

                let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))
                out := shl(8, out)
                out := add(
                    out,
                    and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF)
                )
                out := shl(8, out)
                out := add(
                    out,
                    and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF)
                )
                out := shl(8, out)
                out := add(
                    out,
                    and(mload(add(tablePtr, and(input, 0x3F))), 0xFF)
                )
                out := shl(224, out)

                mstore(resultPtr, out)

                resultPtr := add(resultPtr, 4)
            }

            switch mod(len, 3)
            case 1 {
                mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
            }
            case 2 {
                mstore(sub(resultPtr, 1), shl(248, 0x3d))
            }

            mstore(result, encodedLen)
        }

        return string(result);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claim","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":"uint256","name":"tokenId","type":"uint256"}],"name":"getAttitude","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFace","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFood","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getJob","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getPet","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getSport","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTool","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTraffic","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"ownerClaim","outputs":[],"stateMutability":"nonpayable","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":"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"}]

60046102c08181526301e13f3160e71b6102e052608090815261030082815263784fcc4160e11b6103205260a05261034082815263f09f988d60e01b6103605260c05261038082815263784fcc4760e11b6103a05260e0526103c082815263f09f98a160e01b6103e0526101005261040082815263784fd2dd60e11b610420526101205261044082815263f09f98a960e01b6104605261014052610480828152633c27e62d60e21b6104a052610160526104c082815263f09f98b760e01b6104e05261018052610500828152631e13f31160e31b610520526101a05261054082815263f09f91bb60e01b610560526101c05261058082815263784fd24b60e11b6105a0526101e0526105c082815263784fd25760e11b6105e0526102005261060082815263f09f98b160e01b610620526102205261064082815263f09f98ad60e01b610660526102405261068082815263784fd25560e11b6106a052610260526106c082815263f09fa4a160e01b6106e0526102805261074060405261070091825263f09f91bd60e01b610720526102a091909152620001a490600c9060126200135c565b5060408051610280810182526004610240820181815263784fc85b60e11b61026084015282528251808401845281815263f09f90b160e01b602082810191909152808401919091528351808501855282815263f09f90ad60e01b818301528385015283518085018552828152630f09f90b60e41b8183015260608401528351808501855282815263784fd34560e11b8183015260808401528351808501855282815263f09f90bb60e01b8183015260a08401528351808501855282815263f09f90af60e01b8183015260c08401528351808501855282815263f09fa68160e01b8183015260e08401528351808501855282815263784fc85760e11b818301526101008401528351808501855282815263f09f90b760e01b8183015261012084015283518085018552828152631e13f21760e31b818301526101408401528351808501855282815263f09f90b560e01b8183015261016084015283518085018552828152633c27e42560e21b818301526101808401528351808501855282815263f09fa68960e01b818301526101a084015283518085018552828152633c27e9a160e21b818301526101c08401528351808501855282815263f09f909f60e01b818301526101e08401528351808501855282815263f09f90b360e01b81830152610200840152835180850190945290835263f09f908f60e01b90830152610220810191909152620003b990600d9060126200135c565b5060408051610280810182526004610240820181815263f09f8db360e01b610260840152825282518084018452818152633c27e36560e21b602082810191909152808401919091528351808501855282815263f09f8d9560e01b81830152838501528351808501855282815263f09f8da360e01b8183015260608401528351808501855282815263f09f8db560e01b8183015260808401528351808501855282815263784fc6dd60e11b8183015260a08401528351808501855282815263784fc6c760e11b8183015260c08401528351808501855282815263f09f8d8960e01b8183015260e08401528351808501855282815263784fc6c960e11b818301526101008401528351808501855282815263f09f8d8b60e01b8183015261012084015283518085018552828152633c27e36360e21b8183015261014084015283518085018552828152633c27e36760e21b818301526101608401528351808501855282815263f09f8dad60e01b8183015261018084015283518085018552828152633c27e36f60e21b818301526101a084015283518085018552828152633c27e9ad60e21b818301526101c08401528351808501855282815263f09fa78b60e01b818301526101e08401528351808501855282815263784fc74160e11b8183015261020084015283518085019094529083526301e13f4f60e71b90830152610220810191909152620005ce90600e9060126200135c565b5060408051610280810182526006610240820181815265e29abdefb88f60d01b61026084015282528251808401845260048082526301e13f1f60e71b6020838101919091528085019290925284518086018652818152631e13f1f160e31b81840152848601528451808601865281815263784fc75f60e11b81840152606085015284518086018652818152630f09f8f960e41b8184015260808501528451808601865281815263f09f8eb160e01b8184015260a08501528451808601865281815263f09f8f9360e01b8184015260c085015284518086018652818152631e13f1f760e31b8184015260e08501528451808601865281815263784fc7c960e11b818401526101008501528451808601865292835265e29bb3efb88f60d01b838301526101208401929092528351808501855282815263f09f8fb960e01b818301526101408401528351808501855282815263f09f8ea360e01b818301526101608401528351808501855282815263784fd2c560e11b818301526101808401528351808501855282815263f09fa4bf60e01b818301526101a08401528351808501855291825263f09fa58b60e01b828201526101c0830191909152825180840184526003815262e29bb760e81b818301526101e083015282518084018452600780825266f09f8f8aefb88f60c81b828401526102008401919091528351808501909452835266f09f9ab4efb88f60c81b90830152610220810191909152620007f990600f9060126200135c565b50604080516102008101825260046101c0820181815263f09f9a9760e01b6101e084015282528251808401845281815263f09f9a9560e01b6020828101919091528084019190915283518085018552828152633c27e6a360e21b818301528385015283518085018552828152633c27e6a760e21b81830152606084015283518085018552828152633c27e6ed60e21b8183015260808401528351808501855282815263f09fa6bd60e01b8183015260a08401528351808501855282815263784fcd5960e11b8183015260c08401528351808501855282815263f09f9bb560e01b8183015260e084015283518085018552828152633c27e6a160e21b8183015261010084015283518085018552600680825265e29c88efb88f60d01b82840152610120850191909152845180860186528381526301e13f3560e71b818401526101408501528451808601865290815265e29bb5efb88f60d01b818301526101608401528351808501855282815263f09f9a8160e01b81830152610180840152835180850190945290835263f09fa6b560e01b908301526101a0810191909152620009a790601090600e620013c0565b5060408051610240810182526004610200820181815263784fc8d760e11b61022084015282528251808401845281815263f09f91b760e01b6020828101919091528084019190915283518085018552600b8082526af09fa791e2808df09f92bb60a81b8284015284860191909152845180860186528181526af09fa791e2808df09f8e9360a81b818401526060850152845180860186528181526a784fd3c8f14046f84fc65f60a91b818401526080850152845180860186528181526a1e13f4f23c5011be13f1d560ab1b8184015260a0850152845180860186528181526a3c27e9e478a0237c27e52b60aa1b8184015260c0850152845180860186528181526af09fa791e2808df09f8fab60a81b8184015260e0850152845180860186528181526af09fa791e2808df09f8db360a81b8184015261010085015284518086018652600d81526cf09fa791e2808de29a95efb88f60981b8184015261012085015284518086018652600780825266f09f95b5efb88f60c81b82850152610140860191909152855180870187528281526a784fd3c8f14046f84fcd4960a91b81850152610160860152855180870187529182526a01e13f4f23c5011be13f3560af1b828401526101808501919091528451808601865283815263f09fa5b760e01b818401526101a08501528451808601865290815266f09fa79eefb88f60c81b818301526101c0840152835180850190945290835263f09fa79b60e01b908301526101e081019190915262000be090601190601062001412565b50604080516102208101825260046101e0820181815263784fc94560e11b61020084015282528251808401845281815263f09f93b160e01b602082810191909152808401919091528351808501855282815263f09f92bb60e01b81830152838501528351808501855282815263f09f8e9960e01b8183015260608401528351808501855282815263f09f8ea560e01b81830152608084015283518085018552828152630784fcdd60e51b8183015260a08401528351808501855282815263784fca5560e11b8183015260c0840152835180850185526003815262e29b9360e81b8183015260e08401528351808501855282815263f09f92a360e01b818301526101008401528351808501855282815263f09f94ab60e01b818301526101208401528351808501855282815263f09f9abd60e01b818301526101408401528351808501855282815263f09f8e8160e01b818301526101608401528351808501855282815263f09f8e8960e01b818301526101808401528351808501855282815263784fc94760e11b818301526101a08401528351808501909452908352630f09f92b60e41b908301526101c081019190915262000da190601290600f62001464565b50604080516102208101825260046101e0820181815263f09f918d60e01b61020084015282528251808401845281815263784fc8c760e11b60208281019190915280840191909152835180850185526003815262714e4560e91b818301528385015283518085018552828152631e13f49360e31b8183015260608401528351808501855282815263f09fa48f60e01b8183015260808401528351808501855282815263f09fa49960e01b8183015260a08401528351808501855282815263f09f998f60e01b8183015260c08401528351808501855282815263f09f969560e01b8183015260e084015283518085018552828152633c27e46360e21b818301526101008401528351808501855282815263f09f918f60e01b818301526101208401528351808501855282815263f09f92a960e01b8183015261014084015283518085018552828152633c27e46160e21b818301526101608401528351808501855282815263f09f918b60e01b81830152610180840152835180850185526006815265e29c8cefb88f60d01b818301526101a0840152835180850190945290835263784fc95560e11b908301526101c081019190915262000f6590601390600f62001464565b50604080516101a0810182526007610160820181815266617420f09f8c8560c81b61018084015282528251808401845281815266185d083c27e32160ca1b60208281019190915280840191909152835180850185528281526630ba10784fc74360c91b8183015283850152835180850185528281526630ba10784fc7cf60c91b8183015260608401528351808501855282815266617420f09f8c8360c81b818301526080840152835180850185528281526630ba10784fc7d360c91b8183015260a08401528351808501855282815266617420f09f8fa560c81b8183015260c08401528351808501855282815266030ba10784fc7d60cd1b8183015260e08401528351808501855282815266617420f09f8ea160c81b81830152610100840152835180850185528281526630ba10784fc7cb60c91b81830152610120840152835180850190945290835266617420f09f8f9b60c81b90830152610140810191909152620010d790601490600b620014b6565b506040805161012081018252600460e0820181815263f09f94a560e01b610100840152825282518084018452818152631e13f19160e31b6020828101919091528084019190915283518085018552600680825265e2ad90efb88f60d01b82840152848601919091528451808601865283815263784fc64760e11b8184015260608501528451808601865290815265e29da4efb88f60d01b8183015260808401528351808501855282815263f09f92a160e01b8183015260a0840152835180850190945290835263f09f92af60e01b9083015260c0810191909152620011c190601590600762001508565b506040805161010081018252600660c0820181815265e29d97efb88f60d01b60e08401528252825180840184526003815262e29d9360e81b6020828101919091528084019190915283518085018552600480825263f09f8e8960e01b82840152848601919091528451808601865281815263784fc94760e11b81840152606085015284518086018652818152630f09f92b60e41b8184015260808501528451808601909552845263784fc74b60e11b9084015260a08201929092526200128b91601691906200155a565b503480156200129957600080fd5b50604080518082018252600680825265195b531bdbdd60d21b602080840182815285518087019096529285528401528151919291620012db91600091620015ac565b508051620012f1906001906020840190620015ac565b50506001600a555062001304336200130a565b620016ee565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054828255906000526020600020908101928215620013ae579160200282015b82811115620013ae57825180516200139d918491602090910190620015ac565b50916020019190600101906200137d565b50620013bc92915062001637565b5090565b828054828255906000526020600020908101928215620013ae579160200282015b82811115620013ae578251805162001401918491602090910190620015ac565b5091602001919060010190620013e1565b828054828255906000526020600020908101928215620013ae579160200282015b82811115620013ae578251805162001453918491602090910190620015ac565b509160200191906001019062001433565b828054828255906000526020600020908101928215620013ae579160200282015b82811115620013ae5782518051620014a5918491602090910190620015ac565b509160200191906001019062001485565b828054828255906000526020600020908101928215620013ae579160200282015b82811115620013ae5782518051620014f7918491602090910190620015ac565b5091602001919060010190620014d7565b828054828255906000526020600020908101928215620013ae579160200282015b82811115620013ae578251805162001549918491602090910190620015ac565b509160200191906001019062001529565b828054828255906000526020600020908101928215620013ae579160200282015b82811115620013ae57825180516200159b918491602090910190620015ac565b50916020019190600101906200157b565b828054620015ba90620016b1565b90600052602060002090601f016020900481019282620015de576000855562001629565b82601f10620015f957805160ff191683800117855562001629565b8280016001018555821562001629579182015b82811115620016295782518255916020019190600101906200160c565b50620013bc92915062001658565b80821115620013bc5760006200164e82826200166f565b5060010162001637565b5b80821115620013bc576000815560010162001659565b5080546200167d90620016b1565b6000825580601f106200168e575050565b601f016020900490600052602060002090810190620016ae919062001658565b50565b600181811c90821680620016c657607f821691505b60208210811415620016e857634e487b7160e01b600052602260045260246000fd5b50919050565b6134f680620016fe6000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80636275e9f211610104578063a7625c97116100a2578063d285af5311610071578063d285af53146103c7578063e985e9c5146103da578063f2fde38b14610416578063f6db1e541461042957600080fd5b8063a7625c971461037b578063b88d4fde1461038e578063bf22c457146103a1578063c87b56dd146103b457600080fd5b8063715018a6116100de578063715018a6146103475780638da5cb5b1461034f57806395d89b4114610360578063a22cb4651461036857600080fd5b80636275e9f21461030e5780636352211e1461032157806370a082311461033457600080fd5b80632f745c5911610171578063434f48c41161014b578063434f48c4146102c25780634f6ccce7146102d557806359d55194146102e85780635e8cb619146102fb57600080fd5b80632f745c5914610289578063379607f51461029c57806342842e0e146102af57600080fd5b8063095ea7b3116101ad578063095ea7b31461023c57806318160ddd146102515780631e4de8721461026357806323b872dd1461027657600080fd5b806301ffc9a7146101d457806306fdde03146101fc578063081812fc14610211575b600080fd5b6101e76101e2366004612884565b61043c565b60405190151581526020015b60405180910390f35b610204610467565b6040516101f3919061302c565b61022461021f3660046128bc565b6104f9565b6040516001600160a01b0390911681526020016101f3565b61024f61024a36600461285b565b610593565b005b6008545b6040519081526020016101f3565b6102046102713660046128bc565b6106a9565b61024f610284366004612711565b6107a3565b61025561029736600461285b565b6107d4565b61024f6102aa3660046128bc565b61086a565b61024f6102bd366004612711565b610924565b61024f6102d03660046128bc565b61093f565b6102556102e33660046128bc565b610a27565b6102046102f63660046128bc565b610ac8565b6102046103093660046128bc565b610bb8565b61020461031c3660046128bc565b610cac565b61022461032f3660046128bc565b610d9d565b6102556103423660046126be565b610e14565b61024f610e9b565b600b546001600160a01b0316610224565b610204610ed1565b61024f610376366004612821565b610ee0565b6102046103893660046128bc565b610fa5565b61024f61039c36600461274c565b61109a565b6102046103af3660046128bc565b6110d2565b6102046103c23660046128bc565b6111c2565b6102046103d53660046128bc565b6114f4565b6101e76103e83660046126df565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61024f6104243660046126be565b6115e5565b6102046104373660046128bc565b611680565b60006001600160e01b0319821663780e9d6360e01b1480610461575061046182611772565b92915050565b606060008054610476906131a5565b80601f01602080910402602001604051908101604052809291908181526020018280546104a2906131a5565b80156104ef5780601f106104c4576101008083540402835291602001916104ef565b820191906000526020600020905b8154815290600101906020018083116104d257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105775760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061059e82610d9d565b9050806001600160a01b0316836001600160a01b0316141561060c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161056e565b336001600160a01b0382161480610628575061062881336103e8565b61069a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161056e565b6106a483836117c2565b505050565b606061046182604051806040016040528060048152602001631193d3d160e21b815250600e805480602002602001604051908101604052809291908181526020016000905b8282101561079a57838290600052602060002001805461070d906131a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610739906131a5565b80156107865780601f1061075b57610100808354040283529160200191610786565b820191906000526020600020905b81548152906001019060200180831161076957829003601f168201915b5050505050815260200190600101906106ee565b50505050611830565b6107ad3382611b5d565b6107c95760405162461bcd60e51b815260040161056e906130c6565b6106a4838383611c54565b60006107df83610e14565b82106108415760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161056e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6002600a5414156108bd5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161056e565b6002600a5580158015906108d25750611e6281105b6109115760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881251081a5b9d985b1a5960821b604482015260640161056e565b61091c335b82611dff565b506001600a55565b6106a48383836040518060200160405280600081525061109a565b6002600a5414156109925760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161056e565b6002600a55600b546001600160a01b031633146109c15760405162461bcd60e51b815260040161056e90613091565b611e61811180156109d35750611f4181105b610a125760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881251081a5b9d985b1a5960821b604482015260640161056e565b61091c610916600b546001600160a01b031690565b6000610a3260085490565b8210610a955760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161056e565b60088281548110610ab657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6060610461826040518060400160405280600381526020016214115560ea1b815250600d805480602002602001604051908101604052809291908181526020016000905b8282101561079a578382906000526020600020018054610b2b906131a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610b57906131a5565b8015610ba45780601f10610b7957610100808354040283529160200191610ba4565b820191906000526020600020905b815481529060010190602001808311610b8757829003601f168201915b505050505081526020019060010190610b0c565b606061046182604051806040016040528060078152602001665452414646494360c81b8152506010805480602002602001604051908101604052809291908181526020016000905b8282101561079a578382906000526020600020018054610c1f906131a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4b906131a5565b8015610c985780601f10610c6d57610100808354040283529160200191610c98565b820191906000526020600020905b815481529060010190602001808311610c7b57829003601f168201915b505050505081526020019060010190610c00565b606061046182604051806040016040528060048152602001634641434560e01b815250600c805480602002602001604051908101604052809291908181526020016000905b8282101561079a578382906000526020600020018054610d10906131a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3c906131a5565b8015610d895780601f10610d5e57610100808354040283529160200191610d89565b820191906000526020600020905b815481529060010190602001808311610d6c57829003601f168201915b505050505081526020019060010190610cf1565b6000818152600260205260408120546001600160a01b0316806104615760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161056e565b60006001600160a01b038216610e7f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161056e565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610ec55760405162461bcd60e51b815260040161056e90613091565b610ecf6000611e1d565b565b606060018054610476906131a5565b6001600160a01b038216331415610f395760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161056e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60606104618260405180604001604052806008815260200167415454495455444560c01b8152506013805480602002602001604051908101604052809291908181526020016000905b8282101561079a57838290600052602060002001805461100d906131a5565b80601f0160208091040260200160405190810160405280929190818152602001828054611039906131a5565b80156110865780601f1061105b57610100808354040283529160200191611086565b820191906000526020600020905b81548152906001019060200180831161106957829003601f168201915b505050505081526020019060010190610fee565b6110a43383611b5d565b6110c05760405162461bcd60e51b815260040161056e906130c6565b6110cc84848484611e6f565b50505050565b606061046182604051806040016040528060038152602001622527a160e91b8152506011805480602002602001604051908101604052809291908181526020016000905b8282101561079a578382906000526020600020018054611135906131a5565b80601f0160208091040260200160405190810160405280929190818152602001828054611161906131a5565b80156111ae5780601f10611183576101008083540402835291602001916111ae565b820191906000526020600020905b81548152906001019060200180831161119157829003601f168201915b505050505081526020019060010190611116565b60606111cc612661565b60405180610120016040528060fd815260200161333360fd913981526111f183610cac565b816001602002018190525060405180606001604052806028815260200161349960289139604082015261122383610ac8565b606080830191909152604080519182019052602880825261326860208301396080820152611250836106a9565b60a0820152604080516060810190915260288082526132e2602083013960c082015261127b83611680565b60e08201526040805160608101909152602980825261330a60208301396101008201526112a783610bb8565b610120820152604080516060810190915260298082526132b960208301396101408201526112d4836110d2565b610160820152604080516060810190915260298082526134306020830139610180820152611301836114f4565b6101a08201526040805160608101909152602980825261329060208301396101c082015261132e83610fa5565b6101e0820152604080518082018252600d81526c1e17ba32bc3a1f1e17b9bb339f60991b602080830191909152610200840191909152825181840151838501516060860151608087015160a088015160c089015160e08a01516101008b0151995160009a61139e9a909101612967565b60408051808303601f19018152908290526101208401516101408501516101608601516101808701516101a08801516101c08901516101e08a01516102008b01519799506113f1988a9890602001612967565b604051602081830303815290604052905060006114c861141086611ea2565b61141984611fbc565b602080870151606088015160a08901516040516114369401612cdc565b60408051808303601f190181529082905260e08801516101208901516101608a015192936114679390602001612efd565b60408051808303601f19018152908290526101a08901516101e08a015191926114939290602001612c28565b60408051601f19818403018152908290526114b49594939291602001612ae5565b604051602081830303815290604052611fbc565b9050806040516020016114db9190612eb8565b60408051601f1981840301815291905295945050505050565b606061046182604051806040016040528060048152602001631513d3d360e21b8152506012805480602002602001604051908101604052809291908181526020016000905b8282101561079a578382906000526020600020018054611558906131a5565b80601f0160208091040260200160405190810160405280929190818152602001828054611584906131a5565b80156115d15780601f106115a6576101008083540402835291602001916115d1565b820191906000526020600020905b8154815290600101906020018083116115b457829003601f168201915b505050505081526020019060010190611539565b600b546001600160a01b0316331461160f5760405162461bcd60e51b815260040161056e90613091565b6001600160a01b0381166116745760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161056e565b61167d81611e1d565b50565b6060610461826040518060400160405280600581526020016414d413d49560da1b815250600f805480602002602001604051908101604052809291908181526020016000905b8282101561079a5783829060005260206000200180546116e5906131a5565b80601f0160208091040260200160405190810160405280929190818152602001828054611711906131a5565b801561175e5780601f106117335761010080835404028352916020019161175e565b820191906000526020600020905b81548152906001019060200180831161174157829003601f168201915b5050505050815260200190600101906116c6565b60006001600160e01b031982166380ac58cd60e01b14806117a357506001600160e01b03198216635b5e139f60e01b145b8061046157506301ffc9a760e01b6001600160e01b0319831614610461565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117f782610d9d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b606060006118668461184187611ea2565b604051602001611852929190612938565b604051602081830303815290604052612130565b905060008384518361187891906131fb565b8151811061189657634e487b7160e01b600052603260045260246000fd5b6020026020010151905060006015836118af91906131fb565b9050600e81111561191657601480548391906118cb90866131fb565b815481106118e957634e487b7160e01b600052603260045260246000fd5b90600052602060002001604051602001611904929190612a27565b60405160208183030381529060405291505b60138110611b5357611926612689565b6015805461193490866131fb565b8154811061195257634e487b7160e01b600052603260045260246000fd5b906000526020600020018054611967906131a5565b80601f0160208091040260200160405190810160405280929190818152602001828054611993906131a5565b80156119e05780601f106119b5576101008083540402835291602001916119e0565b820191906000526020600020905b8154815290600101906020018083116119c357829003601f168201915b505050505081600060028110611a0657634e487b7160e01b600052603260045260246000fd5b602002015260168054611a1990866131fb565b81548110611a3757634e487b7160e01b600052603260045260246000fd5b906000526020600020018054611a4c906131a5565b80601f0160208091040260200160405190810160405280929190818152602001828054611a78906131a5565b8015611ac55780601f10611a9a57610100808354040283529160200191611ac5565b820191906000526020600020905b815481529060010190602001808311611aa857829003601f168201915b505050505081600160028110611aeb57634e487b7160e01b600052603260045260246000fd5b60200201526013821415611b27578051602080830151604051611b119392879101612e39565b6040516020818303038152906040529250611b51565b8051602080830151604051611b3f9392879101612dcc565b60405160208183030381529060405292505b505b5095945050505050565b6000818152600260205260408120546001600160a01b0316611bd65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161056e565b6000611be183610d9d565b9050806001600160a01b0316846001600160a01b03161480611c1c5750836001600160a01b0316611c11846104f9565b6001600160a01b0316145b80611c4c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c6782610d9d565b6001600160a01b031614611ccf5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161056e565b6001600160a01b038216611d315760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161056e565b611d3c838383612161565b611d476000826117c2565b6001600160a01b0383166000908152600360205260408120805460019290611d70908490613162565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d9e908490613117565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611e19828260405180602001604052806000815250612219565b5050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611e7a848484611c54565b611e868484848461224c565b6110cc5760405162461bcd60e51b815260040161056e9061303f565b606081611ec65750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ef05780611eda816131e0565b9150611ee99050600a8361312f565b9150611eca565b60008167ffffffffffffffff811115611f1957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611f43576020820181803683370190505b5090505b8415611c4c57611f58600183613162565b9150611f65600a866131fb565b611f70906030613117565b60f81b818381518110611f9357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611fb5600a8661312f565b9450611f47565b805160609080611fdc575050604080516020810190915260008152919050565b60006003611feb836002613117565b611ff5919061312f565b612000906004613143565b9050600061200f826020613117565b67ffffffffffffffff81111561203557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561205f576020820181803683370190505b5090506000604051806060016040528060408152602001613459604091399050600181016020830160005b868110156120eb576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b83526004909201910161208a565b506003860660018114612105576002811461211657612122565b613d3d60f01b600119830152612122565b603d60f81b6000198301525b505050918152949350505050565b600081604051602001612143919061291c565b60408051601f19818403018152919052805160209091012092915050565b6001600160a01b0383166121bc576121b781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6121df565b816001600160a01b0316836001600160a01b0316146121df576121df8382612359565b6001600160a01b0382166121f6576106a4816123f6565b826001600160a01b0316826001600160a01b0316146106a4576106a482826124cf565b6122238383612513565b612230600084848461224c565b6106a45760405162461bcd60e51b815260040161056e9061303f565b60006001600160a01b0384163b1561234e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612290903390899088908890600401612fef565b602060405180830381600087803b1580156122aa57600080fd5b505af19250505080156122da575060408051601f3d908101601f191682019092526122d7918101906128a0565b60015b612334573d808015612308576040519150601f19603f3d011682016040523d82523d6000602084013e61230d565b606091505b50805161232c5760405162461bcd60e51b815260040161056e9061303f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c4c565b506001949350505050565b6000600161236684610e14565b6123709190613162565b6000838152600760205260409020549091508082146123c3576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061240890600190613162565b6000838152600960205260408120546008805493945090928490811061243e57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061246d57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806124b357634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006124da83610e14565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166125695760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161056e565b6000818152600260205260409020546001600160a01b0316156125ce5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161056e565b6125da60008383612161565b6001600160a01b0382166000908152600360205260408120805460019290612603908490613117565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6040518061022001604052806011905b60608152602001906001900390816126715790505090565b6040805180820190915260608152600160208201612671565b80356001600160a01b03811681146126b957600080fd5b919050565b6000602082840312156126cf578081fd5b6126d8826126a2565b9392505050565b600080604083850312156126f1578081fd5b6126fa836126a2565b9150612708602084016126a2565b90509250929050565b600080600060608486031215612725578081fd5b61272e846126a2565b925061273c602085016126a2565b9150604084013590509250925092565b60008060008060808587031215612761578081fd5b61276a856126a2565b9350612778602086016126a2565b925060408501359150606085013567ffffffffffffffff8082111561279b578283fd5b818701915087601f8301126127ae578283fd5b8135818111156127c0576127c061323b565b604051601f8201601f19908116603f011681019083821181831017156127e8576127e861323b565b816040528281528a6020848701011115612800578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215612833578182fd5b61283c836126a2565b915060208301358015158114612850578182fd5b809150509250929050565b6000806040838503121561286d578182fd5b612876836126a2565b946020939093013593505050565b600060208284031215612895578081fd5b81356126d881613251565b6000602082840312156128b1578081fd5b81516126d881613251565b6000602082840312156128cd578081fd5b5035919050565b600081518084526128ec816020860160208601613179565b601f01601f19169290920160200192915050565b60008151612912818560208601613179565b9290920192915050565b6000825161292e818460208701613179565b9190910192915050565b6000835161294a818460208801613179565b83519083019061295e818360208801613179565b01949350505050565b60008a51612979818460208f01613179565b8a5161298b8183860160208f01613179565b8a5191840101906129a0818360208e01613179565b89516129b28183850160208e01613179565b89519290910101906129c8818360208c01613179565b87516129da8183850160208c01613179565b87519290910101906129f0818360208a01613179565b8551910190612a03818360208901613179565b8451612a158183850160208901613179565b9101019b9a5050505050505050505050565b600083516020612a3a8285838901613179565b600160fd1b9184019182528454600190849080831c81841680612a5e57607f821691505b858210811415612a7c57634e487b7160e01b88526022600452602488fd5b808015612a905760018114612aa557612ad5565b60ff1984168887015282880186019450612ad5565b60008b815260209020895b84811015612acb5781548a8201890152908701908801612ab0565b5050858389010194505b50929a9950505050505050505050565b717b226e616d65223a2022506572736f6e202360701b81528551600090612b13816012850160208b01613179565b7f222c20226465736372697074696f6e223a2022456d6f6a69204c6f6f742075736012918401918201527f657320656d6f6a6920746f20646573637269626520616e20616273747261637460328201527f20706572736f6e222c2022696d616765223a2022646174613a696d6167652f7360528201526d1d99cade1b5b0ed8985cd94d8d0b60921b60728201528651612bb3816080840160208b01613179565b70222c2261747472696275746573223a205b60781b608092909101918201528551612be5816091840160208a01613179565b8551910190612bfb816091840160208901613179565b612c1b612c0d60918385010187612900565b615d7d60f01b815260020190565b9998505050505050505050565b7f7b2274726169745f74797065223a2022546f6f6c222c202276616c7565223a208152601160f91b602082015260008351612c6a816021850160208801613179565b62089f4b60ea1b6021918401918201527f7b2274726169745f74797065223a20224174746974756465222c202276616c7560248201526432911d101160d91b60448201528351612cc1816049840160208801613179565b61227d60f01b60499290910191820152604b01949350505050565b7f7b2274726169745f74797065223a202246616365222c202276616c7565223a2081526000601160f91b8060208401528551612d1f816021860160208a01613179565b62089f4b60ea1b60219185019182018190527f7b2274726169745f74797065223a2022506574222c202276616c7565223a202260248301528651612d6a816044850160208b01613179565b604492019182018190527f7b2274726169745f74797065223a2022466f6f64222c202276616c7565223a2060478301526067820192909252845191612db6836068840160208901613179565b91016068810191909152606b0195945050505050565b602360f81b815260008451612de8816001850160208901613179565b600160fd1b6001918401918201528451612e09816002840160208901613179565b61011960f51b600292909101918201528351612e2c816004840160208801613179565b0160040195945050505050565b602360f81b815260008451612e55816001850160208901613179565b600160fd1b6001918401918201528451612e76816002840160208901613179565b61011960f51b600292909101918201528351612e99816004840160208801613179565b6410784fc7c360d91b6004929091019182015260090195945050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251612ef081601d850160208701613179565b91909101601d0192915050565b7f7b2274726169745f74797065223a202253706f7274222c202276616c7565223a815261101160f11b602082015260008451612f40816022850160208901613179565b62089f4b60ea1b60229184019182018190527f7b2274726169745f74797065223a202254726166666963222c202276616c7565602583015263111d101160e11b60458301528551612f98816049850160208a01613179565b604992019182018190527f7b2274726169745f74797065223a20224a6f62222c202276616c7565223a2022604c8301528451612fdb81606c850160208901613179565b606c920191820152606f0195945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613022908301846128d4565b9695505050505050565b6020815260006126d860208301846128d4565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561312a5761312a61320f565b500190565b60008261313e5761313e613225565b500490565b600081600019048311821515161561315d5761315d61320f565b500290565b6000828210156131745761317461320f565b500390565b60005b8381101561319457818101518382015260200161317c565b838111156110cc5750506000910152565b600181811c908216806131b957607f821691505b602082108114156131da57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156131f4576131f461320f565b5060010190565b60008261320a5761320a613225565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461167d57600080fdfe3c2f746578743e3c7465787420783d2231302220793d2236302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223136302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223132302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d2238302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223130302220636c6173733d2262617365223e3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e62617365207b2066696c6c3a2077686974653b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20313470783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d22626c61636b22202f3e3c7465787420783d2231302220793d2232302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223134302220636c6173733d2262617365223e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c2f746578743e3c7465787420783d2231302220793d2234302220636c6173733d2262617365223ea2646970667358221220963d6d799511d571ca834ae682f3ca9520c3d55c702341a7e335c8baec33a38064736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80636275e9f211610104578063a7625c97116100a2578063d285af5311610071578063d285af53146103c7578063e985e9c5146103da578063f2fde38b14610416578063f6db1e541461042957600080fd5b8063a7625c971461037b578063b88d4fde1461038e578063bf22c457146103a1578063c87b56dd146103b457600080fd5b8063715018a6116100de578063715018a6146103475780638da5cb5b1461034f57806395d89b4114610360578063a22cb4651461036857600080fd5b80636275e9f21461030e5780636352211e1461032157806370a082311461033457600080fd5b80632f745c5911610171578063434f48c41161014b578063434f48c4146102c25780634f6ccce7146102d557806359d55194146102e85780635e8cb619146102fb57600080fd5b80632f745c5914610289578063379607f51461029c57806342842e0e146102af57600080fd5b8063095ea7b3116101ad578063095ea7b31461023c57806318160ddd146102515780631e4de8721461026357806323b872dd1461027657600080fd5b806301ffc9a7146101d457806306fdde03146101fc578063081812fc14610211575b600080fd5b6101e76101e2366004612884565b61043c565b60405190151581526020015b60405180910390f35b610204610467565b6040516101f3919061302c565b61022461021f3660046128bc565b6104f9565b6040516001600160a01b0390911681526020016101f3565b61024f61024a36600461285b565b610593565b005b6008545b6040519081526020016101f3565b6102046102713660046128bc565b6106a9565b61024f610284366004612711565b6107a3565b61025561029736600461285b565b6107d4565b61024f6102aa3660046128bc565b61086a565b61024f6102bd366004612711565b610924565b61024f6102d03660046128bc565b61093f565b6102556102e33660046128bc565b610a27565b6102046102f63660046128bc565b610ac8565b6102046103093660046128bc565b610bb8565b61020461031c3660046128bc565b610cac565b61022461032f3660046128bc565b610d9d565b6102556103423660046126be565b610e14565b61024f610e9b565b600b546001600160a01b0316610224565b610204610ed1565b61024f610376366004612821565b610ee0565b6102046103893660046128bc565b610fa5565b61024f61039c36600461274c565b61109a565b6102046103af3660046128bc565b6110d2565b6102046103c23660046128bc565b6111c2565b6102046103d53660046128bc565b6114f4565b6101e76103e83660046126df565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61024f6104243660046126be565b6115e5565b6102046104373660046128bc565b611680565b60006001600160e01b0319821663780e9d6360e01b1480610461575061046182611772565b92915050565b606060008054610476906131a5565b80601f01602080910402602001604051908101604052809291908181526020018280546104a2906131a5565b80156104ef5780601f106104c4576101008083540402835291602001916104ef565b820191906000526020600020905b8154815290600101906020018083116104d257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105775760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061059e82610d9d565b9050806001600160a01b0316836001600160a01b0316141561060c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161056e565b336001600160a01b0382161480610628575061062881336103e8565b61069a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161056e565b6106a483836117c2565b505050565b606061046182604051806040016040528060048152602001631193d3d160e21b815250600e805480602002602001604051908101604052809291908181526020016000905b8282101561079a57838290600052602060002001805461070d906131a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610739906131a5565b80156107865780601f1061075b57610100808354040283529160200191610786565b820191906000526020600020905b81548152906001019060200180831161076957829003601f168201915b5050505050815260200190600101906106ee565b50505050611830565b6107ad3382611b5d565b6107c95760405162461bcd60e51b815260040161056e906130c6565b6106a4838383611c54565b60006107df83610e14565b82106108415760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161056e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6002600a5414156108bd5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161056e565b6002600a5580158015906108d25750611e6281105b6109115760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881251081a5b9d985b1a5960821b604482015260640161056e565b61091c335b82611dff565b506001600a55565b6106a48383836040518060200160405280600081525061109a565b6002600a5414156109925760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161056e565b6002600a55600b546001600160a01b031633146109c15760405162461bcd60e51b815260040161056e90613091565b611e61811180156109d35750611f4181105b610a125760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881251081a5b9d985b1a5960821b604482015260640161056e565b61091c610916600b546001600160a01b031690565b6000610a3260085490565b8210610a955760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161056e565b60088281548110610ab657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6060610461826040518060400160405280600381526020016214115560ea1b815250600d805480602002602001604051908101604052809291908181526020016000905b8282101561079a578382906000526020600020018054610b2b906131a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610b57906131a5565b8015610ba45780601f10610b7957610100808354040283529160200191610ba4565b820191906000526020600020905b815481529060010190602001808311610b8757829003601f168201915b505050505081526020019060010190610b0c565b606061046182604051806040016040528060078152602001665452414646494360c81b8152506010805480602002602001604051908101604052809291908181526020016000905b8282101561079a578382906000526020600020018054610c1f906131a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4b906131a5565b8015610c985780601f10610c6d57610100808354040283529160200191610c98565b820191906000526020600020905b815481529060010190602001808311610c7b57829003601f168201915b505050505081526020019060010190610c00565b606061046182604051806040016040528060048152602001634641434560e01b815250600c805480602002602001604051908101604052809291908181526020016000905b8282101561079a578382906000526020600020018054610d10906131a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3c906131a5565b8015610d895780601f10610d5e57610100808354040283529160200191610d89565b820191906000526020600020905b815481529060010190602001808311610d6c57829003601f168201915b505050505081526020019060010190610cf1565b6000818152600260205260408120546001600160a01b0316806104615760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161056e565b60006001600160a01b038216610e7f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161056e565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610ec55760405162461bcd60e51b815260040161056e90613091565b610ecf6000611e1d565b565b606060018054610476906131a5565b6001600160a01b038216331415610f395760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161056e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60606104618260405180604001604052806008815260200167415454495455444560c01b8152506013805480602002602001604051908101604052809291908181526020016000905b8282101561079a57838290600052602060002001805461100d906131a5565b80601f0160208091040260200160405190810160405280929190818152602001828054611039906131a5565b80156110865780601f1061105b57610100808354040283529160200191611086565b820191906000526020600020905b81548152906001019060200180831161106957829003601f168201915b505050505081526020019060010190610fee565b6110a43383611b5d565b6110c05760405162461bcd60e51b815260040161056e906130c6565b6110cc84848484611e6f565b50505050565b606061046182604051806040016040528060038152602001622527a160e91b8152506011805480602002602001604051908101604052809291908181526020016000905b8282101561079a578382906000526020600020018054611135906131a5565b80601f0160208091040260200160405190810160405280929190818152602001828054611161906131a5565b80156111ae5780601f10611183576101008083540402835291602001916111ae565b820191906000526020600020905b81548152906001019060200180831161119157829003601f168201915b505050505081526020019060010190611116565b60606111cc612661565b60405180610120016040528060fd815260200161333360fd913981526111f183610cac565b816001602002018190525060405180606001604052806028815260200161349960289139604082015261122383610ac8565b606080830191909152604080519182019052602880825261326860208301396080820152611250836106a9565b60a0820152604080516060810190915260288082526132e2602083013960c082015261127b83611680565b60e08201526040805160608101909152602980825261330a60208301396101008201526112a783610bb8565b610120820152604080516060810190915260298082526132b960208301396101408201526112d4836110d2565b610160820152604080516060810190915260298082526134306020830139610180820152611301836114f4565b6101a08201526040805160608101909152602980825261329060208301396101c082015261132e83610fa5565b6101e0820152604080518082018252600d81526c1e17ba32bc3a1f1e17b9bb339f60991b602080830191909152610200840191909152825181840151838501516060860151608087015160a088015160c089015160e08a01516101008b0151995160009a61139e9a909101612967565b60408051808303601f19018152908290526101208401516101408501516101608601516101808701516101a08801516101c08901516101e08a01516102008b01519799506113f1988a9890602001612967565b604051602081830303815290604052905060006114c861141086611ea2565b61141984611fbc565b602080870151606088015160a08901516040516114369401612cdc565b60408051808303601f190181529082905260e08801516101208901516101608a015192936114679390602001612efd565b60408051808303601f19018152908290526101a08901516101e08a015191926114939290602001612c28565b60408051601f19818403018152908290526114b49594939291602001612ae5565b604051602081830303815290604052611fbc565b9050806040516020016114db9190612eb8565b60408051601f1981840301815291905295945050505050565b606061046182604051806040016040528060048152602001631513d3d360e21b8152506012805480602002602001604051908101604052809291908181526020016000905b8282101561079a578382906000526020600020018054611558906131a5565b80601f0160208091040260200160405190810160405280929190818152602001828054611584906131a5565b80156115d15780601f106115a6576101008083540402835291602001916115d1565b820191906000526020600020905b8154815290600101906020018083116115b457829003601f168201915b505050505081526020019060010190611539565b600b546001600160a01b0316331461160f5760405162461bcd60e51b815260040161056e90613091565b6001600160a01b0381166116745760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161056e565b61167d81611e1d565b50565b6060610461826040518060400160405280600581526020016414d413d49560da1b815250600f805480602002602001604051908101604052809291908181526020016000905b8282101561079a5783829060005260206000200180546116e5906131a5565b80601f0160208091040260200160405190810160405280929190818152602001828054611711906131a5565b801561175e5780601f106117335761010080835404028352916020019161175e565b820191906000526020600020905b81548152906001019060200180831161174157829003601f168201915b5050505050815260200190600101906116c6565b60006001600160e01b031982166380ac58cd60e01b14806117a357506001600160e01b03198216635b5e139f60e01b145b8061046157506301ffc9a760e01b6001600160e01b0319831614610461565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117f782610d9d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b606060006118668461184187611ea2565b604051602001611852929190612938565b604051602081830303815290604052612130565b905060008384518361187891906131fb565b8151811061189657634e487b7160e01b600052603260045260246000fd5b6020026020010151905060006015836118af91906131fb565b9050600e81111561191657601480548391906118cb90866131fb565b815481106118e957634e487b7160e01b600052603260045260246000fd5b90600052602060002001604051602001611904929190612a27565b60405160208183030381529060405291505b60138110611b5357611926612689565b6015805461193490866131fb565b8154811061195257634e487b7160e01b600052603260045260246000fd5b906000526020600020018054611967906131a5565b80601f0160208091040260200160405190810160405280929190818152602001828054611993906131a5565b80156119e05780601f106119b5576101008083540402835291602001916119e0565b820191906000526020600020905b8154815290600101906020018083116119c357829003601f168201915b505050505081600060028110611a0657634e487b7160e01b600052603260045260246000fd5b602002015260168054611a1990866131fb565b81548110611a3757634e487b7160e01b600052603260045260246000fd5b906000526020600020018054611a4c906131a5565b80601f0160208091040260200160405190810160405280929190818152602001828054611a78906131a5565b8015611ac55780601f10611a9a57610100808354040283529160200191611ac5565b820191906000526020600020905b815481529060010190602001808311611aa857829003601f168201915b505050505081600160028110611aeb57634e487b7160e01b600052603260045260246000fd5b60200201526013821415611b27578051602080830151604051611b119392879101612e39565b6040516020818303038152906040529250611b51565b8051602080830151604051611b3f9392879101612dcc565b60405160208183030381529060405292505b505b5095945050505050565b6000818152600260205260408120546001600160a01b0316611bd65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161056e565b6000611be183610d9d565b9050806001600160a01b0316846001600160a01b03161480611c1c5750836001600160a01b0316611c11846104f9565b6001600160a01b0316145b80611c4c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c6782610d9d565b6001600160a01b031614611ccf5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161056e565b6001600160a01b038216611d315760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161056e565b611d3c838383612161565b611d476000826117c2565b6001600160a01b0383166000908152600360205260408120805460019290611d70908490613162565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d9e908490613117565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611e19828260405180602001604052806000815250612219565b5050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611e7a848484611c54565b611e868484848461224c565b6110cc5760405162461bcd60e51b815260040161056e9061303f565b606081611ec65750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ef05780611eda816131e0565b9150611ee99050600a8361312f565b9150611eca565b60008167ffffffffffffffff811115611f1957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611f43576020820181803683370190505b5090505b8415611c4c57611f58600183613162565b9150611f65600a866131fb565b611f70906030613117565b60f81b818381518110611f9357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611fb5600a8661312f565b9450611f47565b805160609080611fdc575050604080516020810190915260008152919050565b60006003611feb836002613117565b611ff5919061312f565b612000906004613143565b9050600061200f826020613117565b67ffffffffffffffff81111561203557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561205f576020820181803683370190505b5090506000604051806060016040528060408152602001613459604091399050600181016020830160005b868110156120eb576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b83526004909201910161208a565b506003860660018114612105576002811461211657612122565b613d3d60f01b600119830152612122565b603d60f81b6000198301525b505050918152949350505050565b600081604051602001612143919061291c565b60408051601f19818403018152919052805160209091012092915050565b6001600160a01b0383166121bc576121b781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6121df565b816001600160a01b0316836001600160a01b0316146121df576121df8382612359565b6001600160a01b0382166121f6576106a4816123f6565b826001600160a01b0316826001600160a01b0316146106a4576106a482826124cf565b6122238383612513565b612230600084848461224c565b6106a45760405162461bcd60e51b815260040161056e9061303f565b60006001600160a01b0384163b1561234e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612290903390899088908890600401612fef565b602060405180830381600087803b1580156122aa57600080fd5b505af19250505080156122da575060408051601f3d908101601f191682019092526122d7918101906128a0565b60015b612334573d808015612308576040519150601f19603f3d011682016040523d82523d6000602084013e61230d565b606091505b50805161232c5760405162461bcd60e51b815260040161056e9061303f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c4c565b506001949350505050565b6000600161236684610e14565b6123709190613162565b6000838152600760205260409020549091508082146123c3576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061240890600190613162565b6000838152600960205260408120546008805493945090928490811061243e57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061246d57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806124b357634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006124da83610e14565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166125695760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161056e565b6000818152600260205260409020546001600160a01b0316156125ce5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161056e565b6125da60008383612161565b6001600160a01b0382166000908152600360205260408120805460019290612603908490613117565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6040518061022001604052806011905b60608152602001906001900390816126715790505090565b6040805180820190915260608152600160208201612671565b80356001600160a01b03811681146126b957600080fd5b919050565b6000602082840312156126cf578081fd5b6126d8826126a2565b9392505050565b600080604083850312156126f1578081fd5b6126fa836126a2565b9150612708602084016126a2565b90509250929050565b600080600060608486031215612725578081fd5b61272e846126a2565b925061273c602085016126a2565b9150604084013590509250925092565b60008060008060808587031215612761578081fd5b61276a856126a2565b9350612778602086016126a2565b925060408501359150606085013567ffffffffffffffff8082111561279b578283fd5b818701915087601f8301126127ae578283fd5b8135818111156127c0576127c061323b565b604051601f8201601f19908116603f011681019083821181831017156127e8576127e861323b565b816040528281528a6020848701011115612800578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215612833578182fd5b61283c836126a2565b915060208301358015158114612850578182fd5b809150509250929050565b6000806040838503121561286d578182fd5b612876836126a2565b946020939093013593505050565b600060208284031215612895578081fd5b81356126d881613251565b6000602082840312156128b1578081fd5b81516126d881613251565b6000602082840312156128cd578081fd5b5035919050565b600081518084526128ec816020860160208601613179565b601f01601f19169290920160200192915050565b60008151612912818560208601613179565b9290920192915050565b6000825161292e818460208701613179565b9190910192915050565b6000835161294a818460208801613179565b83519083019061295e818360208801613179565b01949350505050565b60008a51612979818460208f01613179565b8a5161298b8183860160208f01613179565b8a5191840101906129a0818360208e01613179565b89516129b28183850160208e01613179565b89519290910101906129c8818360208c01613179565b87516129da8183850160208c01613179565b87519290910101906129f0818360208a01613179565b8551910190612a03818360208901613179565b8451612a158183850160208901613179565b9101019b9a5050505050505050505050565b600083516020612a3a8285838901613179565b600160fd1b9184019182528454600190849080831c81841680612a5e57607f821691505b858210811415612a7c57634e487b7160e01b88526022600452602488fd5b808015612a905760018114612aa557612ad5565b60ff1984168887015282880186019450612ad5565b60008b815260209020895b84811015612acb5781548a8201890152908701908801612ab0565b5050858389010194505b50929a9950505050505050505050565b717b226e616d65223a2022506572736f6e202360701b81528551600090612b13816012850160208b01613179565b7f222c20226465736372697074696f6e223a2022456d6f6a69204c6f6f742075736012918401918201527f657320656d6f6a6920746f20646573637269626520616e20616273747261637460328201527f20706572736f6e222c2022696d616765223a2022646174613a696d6167652f7360528201526d1d99cade1b5b0ed8985cd94d8d0b60921b60728201528651612bb3816080840160208b01613179565b70222c2261747472696275746573223a205b60781b608092909101918201528551612be5816091840160208a01613179565b8551910190612bfb816091840160208901613179565b612c1b612c0d60918385010187612900565b615d7d60f01b815260020190565b9998505050505050505050565b7f7b2274726169745f74797065223a2022546f6f6c222c202276616c7565223a208152601160f91b602082015260008351612c6a816021850160208801613179565b62089f4b60ea1b6021918401918201527f7b2274726169745f74797065223a20224174746974756465222c202276616c7560248201526432911d101160d91b60448201528351612cc1816049840160208801613179565b61227d60f01b60499290910191820152604b01949350505050565b7f7b2274726169745f74797065223a202246616365222c202276616c7565223a2081526000601160f91b8060208401528551612d1f816021860160208a01613179565b62089f4b60ea1b60219185019182018190527f7b2274726169745f74797065223a2022506574222c202276616c7565223a202260248301528651612d6a816044850160208b01613179565b604492019182018190527f7b2274726169745f74797065223a2022466f6f64222c202276616c7565223a2060478301526067820192909252845191612db6836068840160208901613179565b91016068810191909152606b0195945050505050565b602360f81b815260008451612de8816001850160208901613179565b600160fd1b6001918401918201528451612e09816002840160208901613179565b61011960f51b600292909101918201528351612e2c816004840160208801613179565b0160040195945050505050565b602360f81b815260008451612e55816001850160208901613179565b600160fd1b6001918401918201528451612e76816002840160208901613179565b61011960f51b600292909101918201528351612e99816004840160208801613179565b6410784fc7c360d91b6004929091019182015260090195945050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251612ef081601d850160208701613179565b91909101601d0192915050565b7f7b2274726169745f74797065223a202253706f7274222c202276616c7565223a815261101160f11b602082015260008451612f40816022850160208901613179565b62089f4b60ea1b60229184019182018190527f7b2274726169745f74797065223a202254726166666963222c202276616c7565602583015263111d101160e11b60458301528551612f98816049850160208a01613179565b604992019182018190527f7b2274726169745f74797065223a20224a6f62222c202276616c7565223a2022604c8301528451612fdb81606c850160208901613179565b606c920191820152606f0195945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613022908301846128d4565b9695505050505050565b6020815260006126d860208301846128d4565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561312a5761312a61320f565b500190565b60008261313e5761313e613225565b500490565b600081600019048311821515161561315d5761315d61320f565b500290565b6000828210156131745761317461320f565b500390565b60005b8381101561319457818101518382015260200161317c565b838111156110cc5750506000910152565b600181811c908216806131b957607f821691505b602082108114156131da57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156131f4576131f461320f565b5060010190565b60008261320a5761320a613225565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461167d57600080fdfe3c2f746578743e3c7465787420783d2231302220793d2236302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223136302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223132302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d2238302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223130302220636c6173733d2262617365223e3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e62617365207b2066696c6c3a2077686974653b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20313470783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d22626c61636b22202f3e3c7465787420783d2231302220793d2232302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223134302220636c6173733d2262617365223e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c2f746578743e3c7465787420783d2231302220793d2234302220636c6173733d2262617365223ea2646970667358221220963d6d799511d571ca834ae682f3ca9520c3d55c702341a7e335c8baec33a38064736f6c63430008040033

Deployed Bytecode Sourcemap

46401:12166:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39989:300;;;;;;:::i;:::-;;:::i;:::-;;;18598:14:1;;18591:22;18573:41;;18561:2;18546:18;39989:300:0;;;;;;;;26354:100;;;:::i;:::-;;;;;;;:::i;28047:308::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;17885:32:1;;;17867:51;;17855:2;17840:18;28047:308:0;17822:102:1;27570:411:0;;;;;;:::i;:::-;;:::i;:::-;;40792:113;40880:10;:17;40792:113;;;26502:25:1;;;26490:2;26475:18;40792:113:0;26457:76:1;51216:124:0;;;;;;:::i;:::-;;:::i;29106:376::-;;;;;;:::i;:::-;;:::i;40373:343::-;;;;;;:::i;:::-;;:::i;57407:172::-;;;;;;:::i;:::-;;:::i;29553:185::-;;;;;;:::i;:::-;;:::i;57587:::-;;;;;;:::i;:::-;;:::i;40982:320::-;;;;;;:::i;:::-;;:::i;51087:121::-;;;;;;:::i;:::-;;:::i;51483:133::-;;;;;;:::i;:::-;;:::i;50955:124::-;;;;;;:::i;:::-;;:::i;25961:326::-;;;;;;:::i;:::-;;:::i;25604:295::-;;;;;;:::i;:::-;;:::i;10037:94::-;;;:::i;9386:87::-;9459:6;;-1:-1:-1;;;;;9459:6:0;9386:87;;26523:104;;;:::i;28427:327::-;;;;;;:::i;:::-;;:::i;51885:136::-;;;;;;:::i;:::-;;:::i;29809:365::-;;;;;;:::i;:::-;;:::i;51624:121::-;;;;;;:::i;:::-;;:::i;53384:4015::-;;;;;;:::i;:::-;;:::i;51753:124::-;;;;;;:::i;:::-;;:::i;28825:214::-;;;;;;:::i;:::-;-1:-1:-1;;;;;28996:25:0;;;28967:4;28996:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28825:214;10286:229;;;;;;:::i;:::-;;:::i;51348:127::-;;;;;;:::i;:::-;;:::i;39989:300::-;40136:4;-1:-1:-1;;;;;;40178:50:0;;-1:-1:-1;;;40178:50:0;;:103;;;40245:36;40269:11;40245:23;:36::i;:::-;40158:123;39989:300;-1:-1:-1;;39989:300:0:o;26354:100::-;26408:13;26441:5;26434:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26354:100;:::o;28047:308::-;28168:7;31810:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31810:16:0;28193:110;;;;-1:-1:-1;;;28193:110:0;;23436:2:1;28193:110:0;;;23418:21:1;23475:2;23455:18;;;23448:30;23514:34;23494:18;;;23487:62;-1:-1:-1;;;23565:18:1;;;23558:42;23617:19;;28193:110:0;;;;;;;;;-1:-1:-1;28323:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28323:24:0;;28047:308::o;27570:411::-;27651:13;27667:23;27682:7;27667:14;:23::i;:::-;27651:39;;27715:5;-1:-1:-1;;;;;27709:11:0;:2;-1:-1:-1;;;;;27709:11:0;;;27701:57;;;;-1:-1:-1;;;27701:57:0;;24965:2:1;27701:57:0;;;24947:21:1;25004:2;24984:18;;;24977:30;25043:34;25023:18;;;25016:62;-1:-1:-1;;;25094:18:1;;;25087:31;25135:19;;27701:57:0;24937:223:1;27701:57:0;8317:10;-1:-1:-1;;;;;27793:21:0;;;;:62;;-1:-1:-1;27818:37:0;27835:5;8317:10;28825:214;:::i;27818:37::-;27771:168;;;;-1:-1:-1;;;27771:168:0;;21829:2:1;27771:168:0;;;21811:21:1;21868:2;21848:18;;;21841:30;21907:34;21887:18;;;21880:62;21978:26;21958:18;;;21951:54;22022:19;;27771:168:0;21801:246:1;27771:168:0;27952:21;27961:2;27965:7;27952:8;:21::i;:::-;27570:411;;;:::o;51216:124::-;51271:13;51304:28;51310:7;51304:28;;;;;;;;;;;;;-1:-1:-1;;;51304:28:0;;;51327:4;51304:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;:28::i;29106:376::-;29315:41;8317:10;29348:7;29315:18;:41::i;:::-;29293:140;;;;-1:-1:-1;;;29293:140:0;;;;;;;:::i;:::-;29446:28;29456:4;29462:2;29466:7;29446:9;:28::i;40373:343::-;40515:7;40570:23;40587:5;40570:16;:23::i;:::-;40562:5;:31;40540:124;;;;-1:-1:-1;;;40540:124:0;;19062:2:1;40540:124:0;;;19044:21:1;19101:2;19081:18;;;19074:30;19140:34;19120:18;;;19113:62;-1:-1:-1;;;19191:18:1;;;19184:41;19242:19;;40540:124:0;19034:233:1;40540:124:0;-1:-1:-1;;;;;;40682:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40373:343::o;57407:172::-;12354:1;12950:7;;:19;;12942:63;;;;-1:-1:-1;;;12942:63:0;;26198:2:1;12942:63:0;;;26180:21:1;26237:2;26217:18;;;26210:30;26276:33;26256:18;;;26249:61;26327:18;;12942:63:0;26170:181:1;12942:63:0;12354:1;13083:7;:18;57478:11;;;;;:29:::1;;;57503:4;57493:7;:14;57478:29;57470:58;;;::::0;-1:-1:-1;;;57470:58:0;;24210:2:1;57470:58:0::1;::::0;::::1;24192:21:1::0;24249:2;24229:18;;;24222:30;-1:-1:-1;;;24268:18:1;;;24261:46;24324:18;;57470:58:0::1;24182:166:1::0;57470:58:0::1;57539:32;8317:10:::0;57549:12:::1;57563:7;57539:9;:32::i;:::-;-1:-1:-1::0;12310:1:0;13262:7;:22;57407:172::o;29553:185::-;29691:39;29708:4;29714:2;29718:7;29691:39;;;;;;;;;;;;:16;:39::i;57587:185::-;12354:1;12950:7;;:19;;12942:63;;;;-1:-1:-1;;;12942:63:0;;26198:2:1;12942:63:0;;;26180:21:1;26237:2;26217:18;;;26210:30;26276:33;26256:18;;;26249:61;26327:18;;12942:63:0;26170:181:1;12942:63:0;12354:1;13083:7;:18;9459:6;;-1:-1:-1;;;;;9459:6:0;8317:10;9606:23:::1;9598:68;;;;-1:-1:-1::0;;;9598:68:0::1;;;;;;;:::i;:::-;57683:4:::2;57673:7;:14;:32;;;;;57701:4;57691:7;:14;57673:32;57665:61;;;::::0;-1:-1:-1;;;57665:61:0;;24210:2:1;57665:61:0::2;::::0;::::2;24192:21:1::0;24249:2;24229:18;;;24222:30;-1:-1:-1;;;24268:18:1;;;24261:46;24324:18;;57665:61:0::2;24182:166:1::0;57665:61:0::2;57737:27;57747:7;9459:6:::0;;-1:-1:-1;;;;;9459:6:0;;9386:87;40982:320;41102:7;41157:30;40880:10;:17;;40792:113;41157:30;41149:5;:38;41127:132;;;;-1:-1:-1;;;41127:132:0;;25785:2:1;41127:132:0;;;25767:21:1;25824:2;25804:18;;;25797:30;25863:34;25843:18;;;25836:62;-1:-1:-1;;;25914:18:1;;;25907:42;25966:19;;41127:132:0;25757:234:1;41127:132:0;41277:10;41288:5;41277:17;;;;;;-1:-1:-1;;;41277:17:0;;;;;;;;;;;;;;;;;41270:24;;40982:320;;;:::o;51087:121::-;51141:13;51174:26;51180:7;51174:26;;;;;;;;;;;;;-1:-1:-1;;;51174:26:0;;;51196:3;51174:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51483:133;51541:13;51574:34;51580:7;51574:34;;;;;;;;;;;;;-1:-1:-1;;;51574:34:0;;;51600:7;51574:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50955:124;51010:13;51043:28;51049:7;51043:28;;;;;;;;;;;;;-1:-1:-1;;;51043:28:0;;;51066:4;51043:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25961:326;26078:7;26119:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26119:16:0;26168:19;26146:110;;;;-1:-1:-1;;;26146:110:0;;22665:2:1;26146:110:0;;;22647:21:1;22704:2;22684:18;;;22677:30;22743:34;22723:18;;;22716:62;-1:-1:-1;;;22794:18:1;;;22787:39;22843:19;;26146:110:0;22637:231:1;25604:295:0;25721:7;-1:-1:-1;;;;;25768:19:0;;25746:111;;;;-1:-1:-1;;;25746:111:0;;22254:2:1;25746:111:0;;;22236:21:1;22293:2;22273:18;;;22266:30;22332:34;22312:18;;;22305:62;-1:-1:-1;;;22383:18:1;;;22376:40;22433:19;;25746:111:0;22226:232:1;25746:111:0;-1:-1:-1;;;;;;25875:16:0;;;;;:9;:16;;;;;;;25604:295::o;10037:94::-;9459:6;;-1:-1:-1;;;;;9459:6:0;8317:10;9606:23;9598:68;;;;-1:-1:-1;;;9598:68:0;;;;;;;:::i;:::-;10102:21:::1;10120:1;10102:9;:21::i;:::-;10037:94::o:0;26523:104::-;26579:13;26612:7;26605:14;;;;;:::i;28427:327::-;-1:-1:-1;;;;;28562:24:0;;8317:10;28562:24;;28554:62;;;;-1:-1:-1;;;28554:62:0;;21062:2:1;28554:62:0;;;21044:21:1;21101:2;21081:18;;;21074:30;21140:27;21120:18;;;21113:55;21185:18;;28554:62:0;21034:175:1;28554:62:0;8317:10;28629:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28629:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28629:53:0;;;;;;;;;;28698:48;;18573:41:1;;;28629:42:0;;8317:10;28698:48;;18546:18:1;28698:48:0;;;;;;;28427:327;;:::o;51885:136::-;51944:13;51977:36;51983:7;51977:36;;;;;;;;;;;;;-1:-1:-1;;;51977:36:0;;;52004:8;51977:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29809:365;29998:41;8317:10;30031:7;29998:18;:41::i;:::-;29976:140;;;;-1:-1:-1;;;29976:140:0;;;;;;;:::i;:::-;30127:39;30141:4;30147:2;30151:7;30160:5;30127:13;:39::i;:::-;29809:365;;;;:::o;51624:121::-;51678:13;51711:26;51717:7;51711:26;;;;;;;;;;;;;-1:-1:-1;;;51711:26:0;;;51733:3;51711:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53384:4015;53485:13;53516:23;;:::i;:::-;53550:290;;;;;;;;;;;;;;;;;;;53864:16;53872:7;53864;:16::i;:::-;53853:5;53859:1;53853:8;;;:27;;;;53893:53;;;;;;;;;;;;;;;;;:8;;;:53;53970:15;53977:7;53970:6;:15::i;:::-;53959:8;;;;:26;;;;53998:53;;;;;;;;;;;;;53959:8;53998:53;;;:8;;;:53;54075:16;54083:7;54075;:16::i;:::-;54064:8;;;:27;54104:53;;;;;;;;;;;;;;54064:8;54104:53;;;:8;;;:53;54181:17;54190:7;54181:8;:17::i;:::-;54170:8;;;:28;54211:54;;;;;;;;;;;;;;54170:8;54211:54;;;:8;;;:54;54289:19;54300:7;54289:10;:19::i;:::-;54278:8;;;:30;54321:55;;;;;;;;;;;;;;54278:8;54321:55;;;:9;;;:55;54401:15;54408:7;54401:6;:15::i;:::-;54389:9;;;:27;54429:55;;;;;;;;;;;;;;54389:9;54429:55;;;:9;;;:55;54509:16;54517:7;54509;:16::i;:::-;54497:9;;;:28;54538:55;;;;;;;;;;;;;;54497:9;54538:55;;;:9;;;:55;54618:20;54630:7;54618:11;:20::i;:::-;54606:9;;;:32;54651:27;;;;;;;;;;;-1:-1:-1;;;54606:9:0;54651:27;;;;;;;:9;;;:27;;;;54770:8;;54797;;;;54824;;;;54851;;;;54878;;;;54905;;;;54932;;;;54959;;;;54986;;;;54735:274;;-1:-1:-1;;54735:274:0;;54986:8;;54735:274;;:::i;:::-;;;;;;;-1:-1:-1;;54735:274:0;;;;;;;55121:8;;;;55148:9;;;;55176;;;;55204;;;;55232;;;;55260;;;;55288;;;;55316;;;;54735:274;;-1:-1:-1;55061:279:0;;54735:274;;55316:9;55121:8;55061:279;;:::i;:::-;;;;;;;;;;;;;55031:320;;55364:18;55385:1873;55556:17;55565:7;55556:8;:17::i;:::-;55739:28;55759:6;55739:13;:28::i;:::-;55953:8;;;;;56093;;;;56234;;;;55840:465;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;55840:465:0;;;;;;;56446:8;;;;56590;;;;56730:9;;;;55840:465;;56332:470;;56730:9;56446:8;56332:470;;:::i;:::-;;;;;;;-1:-1:-1;;56332:470:0;;;;;;;56942:9;;;;57088;;;;56332:470;;56829:330;;57088:9;56942;56829:330;;:::i;:::-;;;;-1:-1:-1;;56829:330:0;;;;;;;;;;55466:1747;;;;;;56829:330;55466:1747;;:::i;:::-;;;;;;;;;;;;;55385:13;:1873::i;:::-;55364:1894;;57349:4;57299:55;;;;;;;;:::i;:::-;;;;-1:-1:-1;;57299:55:0;;;;;;;;;;53384:4015;-1:-1:-1;;;;;53384:4015:0:o;51753:124::-;51808:13;51841:28;51847:7;51841:28;;;;;;;;;;;;;-1:-1:-1;;;51841:28:0;;;51864:4;51841:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10286:229;9459:6;;-1:-1:-1;;;;;9459:6:0;8317:10;9606:23;9598:68;;;;-1:-1:-1;;;9598:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10389:22:0;::::1;10367:110;;;::::0;-1:-1:-1;;;10367:110:0;;19893:2:1;10367:110:0::1;::::0;::::1;19875:21:1::0;19932:2;19912:18;;;19905:30;19971:34;19951:18;;;19944:62;-1:-1:-1;;;20022:18:1;;;20015:36;20068:19;;10367:110:0::1;19865:228:1::0;10367:110:0::1;10488:19;10498:8;10488:9;:19::i;:::-;10286:229:::0;:::o;51348:127::-;51404:13;51437:30;51443:7;51437:30;;;;;;;;;;;;;-1:-1:-1;;;51437:30:0;;;51461:5;51437:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25185:355;25332:4;-1:-1:-1;;;;;;25374:40:0;;-1:-1:-1;;;25374:40:0;;:105;;-1:-1:-1;;;;;;;25431:48:0;;-1:-1:-1;;;25431:48:0;25374:105;:158;;;-1:-1:-1;;;;;;;;;;23900:40:0;;;25496:36;23741:207;35844:174;35919:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35919:29:0;-1:-1:-1;;;;;35919:29:0;;;;;;;;:24;;35973:23;35919:24;35973:14;:23::i;:::-;-1:-1:-1;;;;;35964:46:0;;;;;;;;;;;35844:174;;:::o;52029:1347::-;52172:13;52198:12;52213:86;52258:9;52269:17;52278:7;52269:8;:17::i;:::-;52241:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52213:6;:86::i;:::-;52198:101;;52310:20;52333:11;52352;:18;52345:4;:25;;;;:::i;:::-;52333:38;;;;;;-1:-1:-1;;;52333:38:0;;;;;;;;;;;;;;;52310:61;;52382:17;52409:2;52402:4;:9;;;;:::i;:::-;52382:29;;52438:2;52426:9;:14;52422:159;;;52521:8;52537:15;;52508:6;;52521:8;52530:22;;:4;:22;:::i;:::-;52521:32;;;;;;-1:-1:-1;;;52521:32:0;;;;;;;;;;;;;;;;52491:63;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52457:112;;52422:159;52608:2;52595:9;:15;52591:754;;52627:21;;:::i;:::-;52673:12;52693:19;;52686:26;;:4;:26;:::i;:::-;52673:40;;;;;;-1:-1:-1;;;52673:40:0;;;;;;;;;;;;;;;;52663:50;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:4;52668:1;52663:7;;;;;-1:-1:-1;;;52663:7:0;;;;;;;;;;;;:50;52738:12;52758:19;;52751:26;;:4;:26;:::i;:::-;52738:40;;;;;;-1:-1:-1;;;52738:40:0;;;;;;;;;;;;;;;;52728:50;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:4;52733:1;52728:7;;;;;-1:-1:-1;;;52728:7:0;;;;;;;;;;;;:50;52810:2;52797:15;;52793:541;;;52944:7;;;53008;;;;52871:272;;;;52944:7;53073:6;;52871:272;;:::i;:::-;;;;;;;;;;;;;52833:329;;52793:541;;;53263:7;;;53277;;;;53241:58;;;;53263:7;53292:6;;53241:58;;:::i;:::-;;;;;;;;;;;;;53203:115;;52793:541;52591:754;;-1:-1:-1;53362:6:0;52029:1347;-1:-1:-1;;;;;52029:1347:0:o;32015:452::-;32144:4;31810:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31810:16:0;32166:110;;;;-1:-1:-1;;;32166:110:0;;21416:2:1;32166:110:0;;;21398:21:1;21455:2;21435:18;;;21428:30;21494:34;21474:18;;;21467:62;-1:-1:-1;;;21545:18:1;;;21538:42;21597:19;;32166:110:0;21388:234:1;32166:110:0;32287:13;32303:23;32318:7;32303:14;:23::i;:::-;32287:39;;32356:5;-1:-1:-1;;;;;32345:16:0;:7;-1:-1:-1;;;;;32345:16:0;;:64;;;;32402:7;-1:-1:-1;;;;;32378:31:0;:20;32390:7;32378:11;:20::i;:::-;-1:-1:-1;;;;;32378:31:0;;32345:64;:113;;;-1:-1:-1;;;;;;28996:25:0;;;28967:4;28996:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32426:32;32337:122;32015:452;-1:-1:-1;;;;32015:452:0:o;35111:615::-;35284:4;-1:-1:-1;;;;;35257:31:0;:23;35272:7;35257:14;:23::i;:::-;-1:-1:-1;;;;;35257:31:0;;35235:122;;;;-1:-1:-1;;;35235:122:0;;24555:2:1;35235:122:0;;;24537:21:1;24594:2;24574:18;;;24567:30;24633:34;24613:18;;;24606:62;-1:-1:-1;;;24684:18:1;;;24677:39;24733:19;;35235:122:0;24527:231:1;35235:122:0;-1:-1:-1;;;;;35376:16:0;;35368:65;;;;-1:-1:-1;;;35368:65:0;;20657:2:1;35368:65:0;;;20639:21:1;20696:2;20676:18;;;20669:30;20735:34;20715:18;;;20708:62;-1:-1:-1;;;20786:18:1;;;20779:34;20830:19;;35368:65:0;20629:226:1;35368:65:0;35446:39;35467:4;35473:2;35477:7;35446:20;:39::i;:::-;35550:29;35567:1;35571:7;35550:8;:29::i;:::-;-1:-1:-1;;;;;35592:15:0;;;;;;:9;:15;;;;;:20;;35611:1;;35592:15;:20;;35611:1;;35592:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35623:13:0;;;;;;:9;:13;;;;;:18;;35640:1;;35623:13;:18;;35640:1;;35623:18;:::i;:::-;;;;-1:-1:-1;;35652:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35652:21:0;-1:-1:-1;;;;;35652:21:0;;;;;;;;;35691:27;;35652:16;;35691:27;;;;;;;35111:615;;;:::o;32809:110::-;32885:26;32895:2;32899:7;32885:26;;;;;;;;;;;;:9;:26::i;:::-;32809:110;;:::o;10523:173::-;10598:6;;;-1:-1:-1;;;;;10615:17:0;;;-1:-1:-1;;;;;;10615:17:0;;;;;;;10648:40;;10598:6;;;10615:17;10598:6;;10648:40;;10579:16;;10648:40;10523:173;;:::o;31056:352::-;31213:28;31223:4;31229:2;31233:7;31213:9;:28::i;:::-;31274:48;31297:4;31303:2;31307:7;31316:5;31274:22;:48::i;:::-;31252:148;;;;-1:-1:-1;;;31252:148:0;;;;;;;:::i;57780:723::-;57836:13;58057:10;58053:53;;-1:-1:-1;;58084:10:0;;;;;;;;;;;;-1:-1:-1;;;58084:10:0;;;;;57780:723::o;58053:53::-;58131:5;58116:12;58172:78;58179:9;;58172:78;;58205:8;;;;:::i;:::-;;-1:-1:-1;58228:10:0;;-1:-1:-1;58236:2:0;58228:10;;:::i;:::-;;;58172:78;;;58260:19;58292:6;58282:17;;;;;;-1:-1:-1;;;58282:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58282:17:0;;58260:39;;58310:154;58317:10;;58310:154;;58344:11;58354:1;58344:11;;:::i;:::-;;-1:-1:-1;58413:10:0;58421:2;58413:5;:10;:::i;:::-;58400:24;;:2;:24;:::i;:::-;58387:39;;58370:6;58377;58370:14;;;;;;-1:-1:-1;;;58370:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;58370:56:0;;;;;;;;-1:-1:-1;58441:11:0;58450:2;58441:11;;:::i;:::-;;;58310:154;;58774:1790;58872:11;;58832:13;;58898:8;58894:23;;-1:-1:-1;;58908:9:0;;;;;;;;;-1:-1:-1;58908:9:0;;;58774:1790;-1:-1:-1;58774:1790:0:o;58894:23::-;58969:18;59007:1;58996:7;:3;59002:1;58996:7;:::i;:::-;58995:13;;;;:::i;:::-;58990:19;;:1;:19;:::i;:::-;58969:40;-1:-1:-1;59067:19:0;59099:15;58969:40;59112:2;59099:15;:::i;:::-;59089:26;;;;;;-1:-1:-1;;;59089:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59089:26:0;;59067:48;;59128:18;59149:5;;;;;;;;;;;;;;;;;59128:26;;59218:1;59211:5;59207:13;59263:2;59255:6;59251:15;59314:1;59282:960;59337:3;59334:1;59331:10;59282:960;;;59392:1;59435:12;;;;;59429:19;59530:4;59518:2;59514:14;;;;;59496:40;;59490:47;59682:2;59678:14;;;59674:25;;59660:40;;59654:47;59872:1;59868:13;;;59864:24;;59850:39;;59844:46;60053:16;;;;60039:31;;60033:38;59566:1;59562:11;;;59703:4;59650:58;;;59598:129;59752:11;;59840:57;;;59788:128;;;;59941:11;;60029:49;;59977:120;60126:3;60122:13;60155:22;;60225:1;60210:17;;;;59385:9;59282:960;;;59286:44;60274:1;60269:3;60265:11;60295:1;60290:84;;;;60393:1;60388:82;;;;60258:212;;60290:84;-1:-1:-1;;;;;60323:17:0;;60316:43;60290:84;;60388:82;-1:-1:-1;;;;;60421:17:0;;60414:41;60258:212;-1:-1:-1;;;60486:26:0;;;60493:6;58774:1790;-1:-1:-1;;;;58774:1790:0:o;50809:138::-;50869:7;50931:5;50914:23;;;;;;;;:::i;:::-;;;;-1:-1:-1;;50914:23:0;;;;;;;;;50904:34;;50914:23;50904:34;;;;;50809:138;-1:-1:-1;;50809:138:0:o;41915:589::-;-1:-1:-1;;;;;42121:18:0;;42117:187;;42156:40;42188:7;43331:10;:17;;43304:24;;;;:15;:24;;;;;:44;;;43359:24;;;;;;;;;;;;43227:164;42156:40;42117:187;;;42226:2;-1:-1:-1;;;;;42218:10:0;:4;-1:-1:-1;;;;;42218:10:0;;42214:90;;42245:47;42278:4;42284:7;42245:32;:47::i;:::-;-1:-1:-1;;;;;42318:16:0;;42314:183;;42351:45;42388:7;42351:36;:45::i;42314:183::-;42424:4;-1:-1:-1;;;;;42418:10:0;:2;-1:-1:-1;;;;;42418:10:0;;42414:83;;42445:40;42473:2;42477:7;42445:27;:40::i;33146:321::-;33276:18;33282:2;33286:7;33276:5;:18::i;:::-;33327:54;33358:1;33362:2;33366:7;33375:5;33327:22;:54::i;:::-;33305:154;;;;-1:-1:-1;;;33305:154:0;;;;;;;:::i;36583:984::-;36738:4;-1:-1:-1;;;;;36759:13:0;;15785:20;15833:8;36755:805;;36812:175;;-1:-1:-1;;;36812:175:0;;-1:-1:-1;;;;;36812:36:0;;;;;:175;;8317:10;;36906:4;;36933:7;;36963:5;;36812:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36812:175:0;;;;;;;;-1:-1:-1;;36812:175:0;;;;;;;;;;;;:::i;:::-;;;36791:714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37174:13:0;;37170:320;;37217:108;;-1:-1:-1;;;37217:108:0;;;;;;;:::i;37170:320::-;37440:6;37434:13;37425:6;37421:2;37417:15;37410:38;36791:714;-1:-1:-1;;;;;;37051:55:0;-1:-1:-1;;;37051:55:0;;-1:-1:-1;37044:62:0;;36755:805;-1:-1:-1;37544:4:0;36583:984;;;;;;:::o;44018:1002::-;44298:22;44348:1;44323:22;44340:4;44323:16;:22::i;:::-;:26;;;;:::i;:::-;44360:18;44381:26;;;:17;:26;;;;;;44298:51;;-1:-1:-1;44514:28:0;;;44510:328;;-1:-1:-1;;;;;44581:18:0;;44559:19;44581:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44632:30;;;;;;:44;;;44749:30;;:17;:30;;;;;:43;;;44510:328;-1:-1:-1;44934:26:0;;;;:17;:26;;;;;;;;44927:33;;;-1:-1:-1;;;;;44978:18:0;;;;;:12;:18;;;;;:34;;;;;;;44971:41;44018:1002::o;45315:1079::-;45593:10;:17;45568:22;;45593:21;;45613:1;;45593:21;:::i;:::-;45625:18;45646:24;;;:15;:24;;;;;;46019:10;:26;;45568:46;;-1:-1:-1;45646:24:0;;45568:46;;46019:26;;;;-1:-1:-1;;;46019:26:0;;;;;;;;;;;;;;;;;45997:48;;46083:11;46058:10;46069;46058:22;;;;;;-1:-1:-1;;;46058:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;46163:28;;;:15;:28;;;;;;;:41;;;46335:24;;;;;46328:31;46370:10;:16;;;;;-1:-1:-1;;;46370:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;45315:1079;;;;:::o;42805:221::-;42890:14;42907:20;42924:2;42907:16;:20::i;:::-;-1:-1:-1;;;;;42938:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42983:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42805:221:0:o;33803:382::-;-1:-1:-1;;;;;33883:16:0;;33875:61;;;;-1:-1:-1;;;33875:61:0;;23075:2:1;33875:61:0;;;23057:21:1;;;23094:18;;;23087:30;23153:34;23133:18;;;23126:62;23205:18;;33875:61:0;23047:182:1;33875:61:0;31786:4;31810:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31810:16:0;:30;33947:58;;;;-1:-1:-1;;;33947:58:0;;20300:2:1;33947:58:0;;;20282:21:1;20339:2;20319:18;;;20312:30;20378;20358:18;;;20351:58;20426:18;;33947:58:0;20272:178:1;33947:58:0;34018:45;34047:1;34051:2;34055:7;34018:20;:45::i;:::-;-1:-1:-1;;;;;34076:13:0;;;;;;:9;:13;;;;;:18;;34093:1;;34076:13;:18;;34093:1;;34076:18;:::i;:::-;;;;-1:-1:-1;;34105:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34105:21:0;-1:-1:-1;;;;;34105:21:0;;;;;;;;34144:33;;34105:16;;;34144:33;;34105:16;;34144:33;33803:382;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;:::-;343:39;262:126;-1:-1:-1;;;262:126:1:o;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:1183::-;1106:6;1114;1122;1130;1183:3;1171:9;1162:7;1158:23;1154:33;1151:2;;;1205:6;1197;1190:22;1151:2;1233:29;1252:9;1233:29;:::i;:::-;1223:39;;1281:38;1315:2;1304:9;1300:18;1281:38;:::i;:::-;1271:48;;1366:2;1355:9;1351:18;1338:32;1328:42;;1421:2;1410:9;1406:18;1393:32;1444:18;1485:2;1477:6;1474:14;1471:2;;;1506:6;1498;1491:22;1471:2;1549:6;1538:9;1534:22;1524:32;;1594:7;1587:4;1583:2;1579:13;1575:27;1565:2;;1621:6;1613;1606:22;1565:2;1662;1649:16;1684:2;1680;1677:10;1674:2;;;1690:18;;:::i;:::-;1765:2;1759:9;1733:2;1819:13;;-1:-1:-1;;1815:22:1;;;1839:2;1811:31;1807:40;1795:53;;;1863:18;;;1883:22;;;1860:46;1857:2;;;1909:18;;:::i;:::-;1949:10;1945:2;1938:22;1984:2;1976:6;1969:18;2024:7;2019:2;2014;2010;2006:11;2002:20;1999:33;1996:2;;;2050:6;2042;2035:22;1996:2;2111;2106;2102;2098:11;2093:2;2085:6;2081:15;2068:46;2134:15;;;2151:2;2130:24;2123:40;;;;1141:1053;;;;-1:-1:-1;1141:1053:1;;-1:-1:-1;;;;1141:1053:1:o;2199:367::-;2264:6;2272;2325:2;2313:9;2304:7;2300:23;2296:32;2293:2;;;2346:6;2338;2331:22;2293:2;2374:29;2393:9;2374:29;:::i;:::-;2364:39;;2453:2;2442:9;2438:18;2425:32;2500:5;2493:13;2486:21;2479:5;2476:32;2466:2;;2527:6;2519;2512:22;2466:2;2555:5;2545:15;;;2283:283;;;;;:::o;2571:264::-;2639:6;2647;2700:2;2688:9;2679:7;2675:23;2671:32;2668:2;;;2721:6;2713;2706:22;2668:2;2749:29;2768:9;2749:29;:::i;:::-;2739:39;2825:2;2810:18;;;;2797:32;;-1:-1:-1;;;2658:177:1:o;2840:255::-;2898:6;2951:2;2939:9;2930:7;2926:23;2922:32;2919:2;;;2972:6;2964;2957:22;2919:2;3016:9;3003:23;3035:30;3059:5;3035:30;:::i;3100:259::-;3169:6;3222:2;3210:9;3201:7;3197:23;3193:32;3190:2;;;3243:6;3235;3228:22;3190:2;3280:9;3274:16;3299:30;3323:5;3299:30;:::i;3364:190::-;3423:6;3476:2;3464:9;3455:7;3451:23;3447:32;3444:2;;;3497:6;3489;3482:22;3444:2;-1:-1:-1;3525:23:1;;3434:120;-1:-1:-1;3434:120:1:o;3559:268::-;3611:3;3649:5;3643:12;3676:6;3671:3;3664:19;3692:63;3748:6;3741:4;3736:3;3732:14;3725:4;3718:5;3714:16;3692:63;:::i;:::-;3809:2;3788:15;-1:-1:-1;;3784:29:1;3775:39;;;;3816:4;3771:50;;3619:208;-1:-1:-1;;3619:208:1:o;3832:184::-;3873:3;3911:5;3905:12;3926:52;3971:6;3966:3;3959:4;3952:5;3948:16;3926:52;:::i;:::-;3994:16;;;;;3881:135;-1:-1:-1;;3881:135:1:o;4141:276::-;4272:3;4310:6;4304:13;4326:53;4372:6;4367:3;4360:4;4352:6;4348:17;4326:53;:::i;:::-;4395:16;;;;;4280:137;-1:-1:-1;;4280:137:1:o;4422:470::-;4601:3;4639:6;4633:13;4655:53;4701:6;4696:3;4689:4;4681:6;4677:17;4655:53;:::i;:::-;4771:13;;4730:16;;;;4793:57;4771:13;4730:16;4827:4;4815:17;;4793:57;:::i;:::-;4866:20;;4609:283;-1:-1:-1;;;;4609:283:1:o;4897:1776::-;5412:3;5450:6;5444:13;5466:53;5512:6;5507:3;5500:4;5492:6;5488:17;5466:53;:::i;:::-;5550:6;5544:13;5566:68;5625:8;5616:6;5611:3;5607:16;5600:4;5592:6;5588:17;5566:68;:::i;:::-;5712:13;;5660:16;;;5656:31;;5734:57;5712:13;5656:31;5768:4;5756:17;;5734:57;:::i;:::-;5822:6;5816:13;5838:72;5901:8;5890;5883:5;5879:20;5872:4;5864:6;5860:17;5838:72;:::i;:::-;5992:13;;5936:20;;;;5932:35;;6014:57;5992:13;5932:35;6048:4;6036:17;;6014:57;:::i;:::-;6102:6;6096:13;6118:72;6181:8;6170;6163:5;6159:20;6152:4;6144:6;6140:17;6118:72;:::i;:::-;6272:13;;6216:20;;;;6212:35;;6294:57;6272:13;6212:35;6328:4;6316:17;;6294:57;:::i;:::-;6418:13;;6373:20;;;6440:57;6418:13;6373:20;6474:4;6462:17;;6440:57;:::i;:::-;6528:6;6522:13;6544:72;6607:8;6596;6589:5;6585:20;6578:4;6570:6;6566:17;6544:72;:::i;:::-;6636:20;;6632:35;;5420:1253;-1:-1:-1;;;;;;;;;;;5420:1253:1:o;6678:1503::-;6955:3;6993:6;6987:13;7019:4;7032:51;7076:6;7071:3;7066:2;7058:6;7054:15;7032:51;:::i;:::-;-1:-1:-1;;;7105:16:1;;;7130:18;;;7217:13;;7167:1;;7188:3;;7279:18;;;7332;;;;7359:2;;7437:4;7427:8;7423:19;7411:31;;7359:2;7500;7490:8;7487:16;7467:18;7464:40;7461:2;;;-1:-1:-1;;;7527:33:1;;7583:4;7580:1;7573:15;7613:4;7534:3;7601:17;7461:2;7644:18;7671:128;;;;7813:1;7808:348;;;;7637:519;;7671:128;-1:-1:-1;;7715:24:1;;7699:14;;;7692:48;7764:20;;;7760:29;;;-1:-1:-1;7671:128:1;;7808:348;26585:4;26604:17;;;26654:4;26638:21;;7903:3;7919:178;7933:8;7930:1;7927:15;7919:178;;;8024:14;;8004:13;;;8000:22;;7993:46;8067:16;;;;7950:10;;7919:178;;;7923:3;;8143:2;8132:8;8125:5;8121:20;8117:29;8110:36;;7637:519;-1:-1:-1;8172:3:1;;6963:1218;-1:-1:-1;;;;;;;;;;6963:1218:1:o;8186:1833::-;-1:-1:-1;;;8925:61:1;;9009:13;;8907:3;;9031:62;9009:13;9081:2;9072:12;;9065:4;9053:17;;9031:62;:::i;:::-;9157:66;9152:2;9112:16;;;9144:11;;;9137:87;9253:34;9248:2;9240:11;;9233:55;9317:66;9312:2;9304:11;;9297:87;-1:-1:-1;;;9408:3:1;9400:12;;9393:38;9456:13;;9478:64;9456:13;9527:3;9519:12;;9512:4;9500:17;;9478:64;:::i;:::-;-1:-1:-1;;;9602:3:1;9561:17;;;;9594:12;;;9587:68;9680:13;;9702:64;9680:13;9751:3;9743:12;;9736:4;9724:17;;9702:64;:::i;:::-;9827:13;;9785:17;;;9849:64;9827:13;9898:3;9890:12;;9883:4;9871:17;;9849:64;:::i;:::-;9929:84;9959:53;10007:3;9996:8;9992:2;9988:17;9984:27;9976:6;9959:53;:::i;:::-;-1:-1:-1;;;4086:17:1;;4128:1;4119:11;;4076:60;9929:84;9922:91;8915:1104;-1:-1:-1;;;;;;;;;8915:1104:1:o;10024:1278::-;10637:66;10632:3;10625:79;10743:2;10738:3;10734:12;10729:2;10724:3;10720:12;10713:34;10607:3;10776:6;10770:13;10792:60;10845:6;10840:2;10835:3;10831:12;10826:2;10818:6;10814:15;10792:60;:::i;:::-;-1:-1:-1;;;10911:2:1;10871:16;;;10903:11;;;10896:37;10962:66;10957:2;10949:11;;10942:87;-1:-1:-1;;;11053:2:1;11045:11;;11038:43;11106:13;;11128:61;11106:13;11175:2;11167:11;;11162:2;11150:15;;11128:61;:::i;:::-;-1:-1:-1;;;11249:2:1;11208:17;;;;11241:11;;;11234:35;11293:2;11285:11;;10615:687;-1:-1:-1;;;;10615:687:1:o;11307:1814::-;12170:66;12165:3;12158:79;12140:3;12265:2;12260:3;12256:12;12298:2;12293;12288:3;12284:12;12277:24;12330:6;12324:13;12346:60;12399:6;12394:2;12389:3;12385:12;12380:2;12372:6;12368:15;12346:60;:::i;:::-;-1:-1:-1;;;12500:2:1;12425:16;;;12492:11;;;12485:23;;;12537:66;12532:2;12524:11;;12517:87;12629:13;;12651:61;12629:13;12698:2;12690:11;;12685:2;12673:15;;12651:61;:::i;:::-;12772:2;12731:17;;12764:11;;;12757:23;;;12809:66;12804:2;12796:11;;12789:87;12900:3;12892:12;;12885:24;;;;12934:13;;;12956:62;12934:13;13003:3;12995:12;;12990:2;12978:15;;12956:62;:::i;:::-;13037:17;;13078:3;13070:12;;13063:24;;;;13111:3;13103:12;;;-1:-1:-1;;;;;12148:973:1:o;13126:1071::-;-1:-1:-1;;;13681:3:1;13674:16;13656:3;13719:6;13713:13;13735:61;13789:6;13785:1;13780:3;13776:11;13769:4;13761:6;13757:17;13735:61;:::i;:::-;-1:-1:-1;;;13855:1:1;13815:16;;;13847:10;;;13840:23;13888:13;;13910:62;13888:13;13959:1;13951:10;;13944:4;13932:17;;13910:62;:::i;:::-;-1:-1:-1;;;14032:1:1;13991:17;;;;14024:10;;;14017:24;14066:13;;14088:62;14066:13;14137:1;14129:10;;14122:4;14110:17;;14088:62;:::i;:::-;14170:17;14189:1;14166:25;;13664:533;-1:-1:-1;;;;;13664:533:1:o;14202:1244::-;-1:-1:-1;;;14858:3:1;14851:16;14833:3;14896:6;14890:13;14912:61;14966:6;14962:1;14957:3;14953:11;14946:4;14938:6;14934:17;14912:61;:::i;:::-;-1:-1:-1;;;15032:1:1;14992:16;;;15024:10;;;15017:23;15065:13;;15087:62;15065:13;15136:1;15128:10;;15121:4;15109:17;;15087:62;:::i;:::-;-1:-1:-1;;;15209:1:1;15168:17;;;;15201:10;;;15194:24;15243:13;;15265:62;15243:13;15314:1;15306:10;;15299:4;15287:17;;15265:62;:::i;:::-;-1:-1:-1;;;15387:1:1;15346:17;;;;15379:10;;;15372:42;15438:1;15430:10;;14841:605;-1:-1:-1;;;;;14841:605:1:o;15451:448::-;15713:31;15708:3;15701:44;15683:3;15774:6;15768:13;15790:62;15845:6;15840:2;15835:3;15831:12;15824:4;15816:6;15812:17;15790:62;:::i;:::-;15872:16;;;;15890:2;15868:25;;15691:208;-1:-1:-1;;15691:208:1:o;15904:1812::-;16767:66;16762:3;16755:79;16873:4;16868:3;16864:14;16859:2;16854:3;16850:12;16843:36;16737:3;16908:6;16902:13;16924:60;16977:6;16972:2;16967:3;16963:12;16958:2;16950:6;16946:15;16924:60;:::i;:::-;-1:-1:-1;;;17078:2:1;17003:16;;;17070:11;;;17063:23;;;17115:66;17110:2;17102:11;;17095:87;-1:-1:-1;;;17206:2:1;17198:11;;17191:41;17257:13;;17279:61;17257:13;17326:2;17318:11;;17313:2;17301:15;;17279:61;:::i;:::-;17400:2;17359:17;;17392:11;;;17385:23;;;17437:66;17432:2;17424:11;;17417:87;17529:13;;17551:62;17529:13;17598:3;17590:12;;17585:2;17573:15;;17551:62;:::i;:::-;17673:3;17632:17;;17665:12;;;17658:24;17706:3;17698:12;;16745:971;-1:-1:-1;;;;;16745:971:1:o;17929:499::-;-1:-1:-1;;;;;18198:15:1;;;18180:34;;18250:15;;18245:2;18230:18;;18223:43;18297:2;18282:18;;18275:34;;;18345:3;18340:2;18325:18;;18318:31;;;18123:4;;18366:56;;18402:19;;18394:6;18366:56;:::i;:::-;18358:64;18132:296;-1:-1:-1;;;;;;18132:296:1:o;18625:230::-;18774:2;18763:9;18756:21;18737:4;18794:55;18845:2;18834:9;18830:18;18822:6;18794:55;:::i;19272:414::-;19474:2;19456:21;;;19513:2;19493:18;;;19486:30;19552:34;19547:2;19532:18;;19525:62;-1:-1:-1;;;19618:2:1;19603:18;;19596:48;19676:3;19661:19;;19446:240::o;23647:356::-;23849:2;23831:21;;;23868:18;;;23861:30;23927:34;23922:2;23907:18;;23900:62;23994:2;23979:18;;23821:182::o;25165:413::-;25367:2;25349:21;;;25406:2;25386:18;;;25379:30;25445:34;25440:2;25425:18;;25418:62;-1:-1:-1;;;25511:2:1;25496:18;;25489:47;25568:3;25553:19;;25339:239::o;26670:128::-;26710:3;26741:1;26737:6;26734:1;26731:13;26728:2;;;26747:18;;:::i;:::-;-1:-1:-1;26783:9:1;;26718:80::o;26803:120::-;26843:1;26869;26859:2;;26874:18;;:::i;:::-;-1:-1:-1;26908:9:1;;26849:74::o;26928:168::-;26968:7;27034:1;27030;27026:6;27022:14;27019:1;27016:21;27011:1;27004:9;26997:17;26993:45;26990:2;;;27041:18;;:::i;:::-;-1:-1:-1;27081:9:1;;26980:116::o;27101:125::-;27141:4;27169:1;27166;27163:8;27160:2;;;27174:18;;:::i;:::-;-1:-1:-1;27211:9:1;;27150:76::o;27231:258::-;27303:1;27313:113;27327:6;27324:1;27321:13;27313:113;;;27403:11;;;27397:18;27384:11;;;27377:39;27349:2;27342:10;27313:113;;;27444:6;27441:1;27438:13;27435:2;;;-1:-1:-1;;27479:1:1;27461:16;;27454:27;27284:205::o;27494:380::-;27573:1;27569:12;;;;27616;;;27637:2;;27691:4;27683:6;27679:17;27669:27;;27637:2;27744;27736:6;27733:14;27713:18;27710:38;27707:2;;;27790:10;27785:3;27781:20;27778:1;27771:31;27825:4;27822:1;27815:15;27853:4;27850:1;27843:15;27707:2;;27549:325;;;:::o;27879:135::-;27918:3;-1:-1:-1;;27939:17:1;;27936:2;;;27959:18;;:::i;:::-;-1:-1:-1;28006:1:1;27995:13;;27926:88::o;28019:112::-;28051:1;28077;28067:2;;28082:18;;:::i;:::-;-1:-1:-1;28116:9:1;;28057:74::o;28136:127::-;28197:10;28192:3;28188:20;28185:1;28178:31;28228:4;28225:1;28218:15;28252:4;28249:1;28242:15;28268:127;28329:10;28324:3;28320:20;28317:1;28310:31;28360:4;28357:1;28350:15;28384:4;28381:1;28374:15;28400:127;28461:10;28456:3;28452:20;28449:1;28442:31;28492:4;28489:1;28482:15;28516:4;28513:1;28506:15;28532:131;-1:-1:-1;;;;;;28606:32:1;;28596:43;;28586:2;;28653:1;28650;28643:12

Swarm Source

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