ETH Price: $3,233.68 (-10.09%)
Gas: 40 Gwei

Contract

0xFF9C1b15B16263C61d017ee9F65C50e4AE0113D7
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

TokenTracker

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Safe Transfer Fr...194658612024-03-19 2:35:476 hrs ago1710815747IN
Loot: LOOT Token
0 ETH0.0024893128.73673062
Set Approval For...194649302024-03-18 23:26:359 hrs ago1710804395IN
Loot: LOOT Token
0 ETH0.0011692525.33875393
Set Approval For...194645832024-03-18 22:16:1110 hrs ago1710800171IN
Loot: LOOT Token
0 ETH0.0015659833.99803386
Set Approval For...194645832024-03-18 22:16:1110 hrs ago1710800171IN
Loot: LOOT Token
0 ETH0.0015688333.99803386
Set Approval For...194644702024-03-18 21:53:3511 hrs ago1710798815IN
Loot: LOOT Token
0 ETH0.0015624333.92092468
Set Approval For...194596292024-03-18 5:33:5927 hrs ago1710740039IN
Loot: LOOT Token
0 ETH0.0005522622.8463808
Set Approval For...194571212024-03-17 21:04:5935 hrs ago1710709499IN
Loot: LOOT Token
0 ETH0.0013930830.24439992
Set Approval For...194542102024-03-17 11:16:1145 hrs ago1710674171IN
Loot: LOOT Token
0 ETH0.0011532424.99826447
Set Approval For...194500012024-03-16 21:04:112 days ago1710623051IN
Loot: LOOT Token
0 ETH0.0018110939.24800958
Set Approval For...194496742024-03-16 19:58:112 days ago1710619091IN
Loot: LOOT Token
0 ETH0.0019001241.17734034
Approve194391842024-03-15 8:34:354 days ago1710491675IN
Loot: LOOT Token
0 ETH0.0029427960.41575382
Set Approval For...194374942024-03-15 2:51:474 days ago1710471107IN
Loot: LOOT Token
0 ETH0.0020830745.22417832
Set Approval For...194345162024-03-14 16:46:474 days ago1710434807IN
Loot: LOOT Token
0 ETH0.0022937349.72007836
Set Approval For...194332752024-03-14 12:33:474 days ago1710419627IN
Loot: LOOT Token
0 ETH0.002439852.88626065
Set Approval For...194250792024-03-13 8:52:116 days ago1710319931IN
Loot: LOOT Token
0 ETH0.0019352541.9385046
Set Approval For...194199912024-03-12 15:47:356 days ago1710258455IN
Loot: LOOT Token
0 ETH0.0032423970.39341429
Set Approval For...193780052024-03-06 18:44:5912 days ago1709750699IN
Loot: LOOT Token
0 ETH0.0041094989.21843194
Set Approval For...193780012024-03-06 18:44:1112 days ago1709750651IN
Loot: LOOT Token
0 ETH0.0042657392.44197386
Set Approval For...193748312024-03-06 8:07:1113 days ago1709712431IN
Loot: LOOT Token
0 ETH0.002824961.32963883
Set Approval For...193738452024-03-06 4:48:4713 days ago1709700527IN
Loot: LOOT Token
0 ETH0.0022212348.22369118
Set Approval For...193737982024-03-06 4:39:1113 days ago1709699951IN
Loot: LOOT Token
0 ETH0.0020274744.01727914
Set Approval For...193730562024-03-06 2:09:5913 days ago1709690999IN
Loot: LOOT Token
0 ETH0.0027303859.16976877
Set Approval For...193700302024-03-05 16:02:2313 days ago1709654543IN
Loot: LOOT Token
0 ETH0.00594276129.01947061
Set Approval For...193642202024-03-04 20:34:2314 days ago1709584463IN
Loot: LOOT Token
0 ETH0.00603475131.01667772
Set Approval For...193637992024-03-04 19:09:5914 days ago1709579399IN
Loot: LOOT Token
0 ETH0.00571168124.00252206
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Loot

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-08-27
*/

// 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 Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

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

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

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

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




/*
 * @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 Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}







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

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

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

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

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

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

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

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

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

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

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

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

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

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


contract Loot is ERC721Enumerable, ReentrancyGuard, Ownable {

        string[] private weapons = [
        "Warhammer",
        "Quarterstaff",
        "Maul",
        "Mace",
        "Club",
        "Katana",
        "Falchion",
        "Scimitar",
        "Long Sword",
        "Short Sword",
        "Ghost Wand",
        "Grave Wand",
        "Bone Wand",
        "Wand",
        "Grimoire",
        "Chronicle",
        "Tome",
        "Book"
    ];
    
    string[] private chestArmor = [
        "Divine Robe",
        "Silk Robe",
        "Linen Robe",
        "Robe",
        "Shirt",
        "Demon Husk",
        "Dragonskin Armor",
        "Studded Leather Armor",
        "Hard Leather Armor",
        "Leather Armor",
        "Holy Chestplate",
        "Ornate Chestplate",
        "Plate Mail",
        "Chain Mail",
        "Ring Mail"
    ];
    
    string[] private headArmor = [
        "Ancient Helm",
        "Ornate Helm",
        "Great Helm",
        "Full Helm",
        "Helm",
        "Demon Crown",
        "Dragon's Crown",
        "War Cap",
        "Leather Cap",
        "Cap",
        "Crown",
        "Divine Hood",
        "Silk Hood",
        "Linen Hood",
        "Hood"
    ];
    
    string[] private waistArmor = [
        "Ornate Belt",
        "War Belt",
        "Plated Belt",
        "Mesh Belt",
        "Heavy Belt",
        "Demonhide Belt",
        "Dragonskin Belt",
        "Studded Leather Belt",
        "Hard Leather Belt",
        "Leather Belt",
        "Brightsilk Sash",
        "Silk Sash",
        "Wool Sash",
        "Linen Sash",
        "Sash"
    ];
    
    string[] private footArmor = [
        "Holy Greaves",
        "Ornate Greaves",
        "Greaves",
        "Chain Boots",
        "Heavy Boots",
        "Demonhide Boots",
        "Dragonskin Boots",
        "Studded Leather Boots",
        "Hard Leather Boots",
        "Leather Boots",
        "Divine Slippers",
        "Silk Slippers",
        "Wool Shoes",
        "Linen Shoes",
        "Shoes"
    ];
    
    string[] private handArmor = [
        "Holy Gauntlets",
        "Ornate Gauntlets",
        "Gauntlets",
        "Chain Gloves",
        "Heavy Gloves",
        "Demon's Hands",
        "Dragonskin Gloves",
        "Studded Leather Gloves",
        "Hard Leather Gloves",
        "Leather Gloves",
        "Divine Gloves",
        "Silk Gloves",
        "Wool Gloves",
        "Linen Gloves",
        "Gloves"
    ];
    
    string[] private necklaces = [
        "Necklace",
        "Amulet",
        "Pendant"
    ];
    
    string[] private rings = [
        "Gold Ring",
        "Silver Ring",
        "Bronze Ring",
        "Platinum Ring",
        "Titanium Ring"
    ];
    
    string[] private suffixes = [
        "of Power",
        "of Giants",
        "of Titans",
        "of Skill",
        "of Perfection",
        "of Brilliance",
        "of Enlightenment",
        "of Protection",
        "of Anger",
        "of Rage",
        "of Fury",
        "of Vitriol",
        "of the Fox",
        "of Detection",
        "of Reflection",
        "of the Twins"
    ];
    
    string[] private namePrefixes = [
        "Agony", "Apocalypse", "Armageddon", "Beast", "Behemoth", "Blight", "Blood", "Bramble", 
        "Brimstone", "Brood", "Carrion", "Cataclysm", "Chimeric", "Corpse", "Corruption", "Damnation", 
        "Death", "Demon", "Dire", "Dragon", "Dread", "Doom", "Dusk", "Eagle", "Empyrean", "Fate", "Foe", 
        "Gale", "Ghoul", "Gloom", "Glyph", "Golem", "Grim", "Hate", "Havoc", "Honour", "Horror", "Hypnotic", 
        "Kraken", "Loath", "Maelstrom", "Mind", "Miracle", "Morbid", "Oblivion", "Onslaught", "Pain", 
        "Pandemonium", "Phoenix", "Plague", "Rage", "Rapture", "Rune", "Skull", "Sol", "Soul", "Sorrow", 
        "Spirit", "Storm", "Tempest", "Torment", "Vengeance", "Victory", "Viper", "Vortex", "Woe", "Wrath",
        "Light's", "Shimmering"  
    ];
    
    string[] private nameSuffixes = [
        "Bane",
        "Root",
        "Bite",
        "Song",
        "Roar",
        "Grasp",
        "Instrument",
        "Glow",
        "Bender",
        "Shadow",
        "Whisper",
        "Shout",
        "Growl",
        "Tear",
        "Peak",
        "Form",
        "Sun",
        "Moon"
    ];
    
    function random(string memory input) internal pure returns (uint256) {
        return uint256(keccak256(abi.encodePacked(input)));
    }
    
    function getWeapon(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, "WEAPON", weapons);
    }
    
    function getChest(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, "CHEST", chestArmor);
    }
    
    function getHead(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, "HEAD", headArmor);
    }
    
    function getWaist(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, "WAIST", waistArmor);
    }

    function getFoot(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, "FOOT", footArmor);
    }
    
    function getHand(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, "HAND", handArmor);
    }
    
    function getNeck(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, "NECK", necklaces);
    }
    
    function getRing(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, "RING", rings);
    }
    
    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));
            } else {
                output = string(abi.encodePacked('"', name[0], ' ', name[1], '" ', output, " +1"));
            }
        }
        return output;
    }

    function tokenURI(uint256 tokenId) override public view 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] = getWeapon(tokenId);

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

        parts[3] = getChest(tokenId);

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

        parts[5] = getHead(tokenId);

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

        parts[7] = getWaist(tokenId);

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

        parts[9] = getFoot(tokenId);

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

        parts[11] = getHand(tokenId);

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

        parts[13] = getNeck(tokenId);

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

        parts[15] = getRing(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": "Bag #', toString(tokenId), '", "description": "Loot is randomized adventurer gear generated and stored on chain. Stats, images, and other functionality are intentionally omitted for others to interpret. Feel free to use Loot in any way you want.", "image": "data:image/svg+xml;base64,', Base64.encode(bytes(output)), '"}'))));
        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("Loot", "LOOT") Ownable() {}
}

/// [MIT License]
/// @title Base64
/// @notice Provides a function for encoding some bytes in base64
/// @author Brecht Devos <[email protected]>
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":"getChest","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFoot","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getHand","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getHead","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getNeck","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getRing","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getWaist","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getWeapon","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"}]

60096102c0818152682bb0b93430b6b6b2b960b91b6102e0526080908152600c6103008181526b28bab0b93a32b939ba30b33360a11b6103205260a05260046103408181526313585d5b60e21b6103605260c052610380818152634d61636560e01b6103a05260e0526103c08181526321b63ab160e11b6103e052610100526006610400908152654b6174616e6160d01b61042052610120526008610440818152672330b631b434b7b760c11b61046052610140526104808181526729b1b4b6b4ba30b960c11b6104a05261016052600a6104c081815269131bdb99c814dddbdc9960b21b6104e05261018052600b6105009081526a14da1bdc9d0814dddbdc9960aa1b610520526101a0526105408181526911da1bdcdd0815d85b9960b21b610560526101c0526105809081526911dc985d994815d85b9960b21b6105a0526101e0526105c085815268109bdb994815d85b9960ba1b6105e052610200526106008281526315d85b9960e21b6106205261022052610640908152674772696d6f69726560c01b6106605261024052610680938452684368726f6e69636c6560b81b6106a052610260939093526106c083815263546f6d6560e01b6106e0526102805261074060405261070092835263426f6f6b60e01b610720526102a092909252620001ef9190601262001d24565b506040805161022081018252600b6101e082019081526a446976696e6520526f626560a81b61020083015281528151808301835260098082526853696c6b20526f626560b81b6020838101919091528084019290925283518085018552600a808252694c696e656e20526f626560b01b8285015284860191909152845180860186526004815263526f626560e01b81850152606085015284518086018652600581526414da1a5c9d60da1b818501526080850152845180860186528181526944656d6f6e204875736b60b01b8185015260a085015284518086018652601081526f223930b3b7b739b5b4b71020b936b7b960811b8185015260c085015284518086018652601581527f53747564646564204c6561746865722041726d6f7200000000000000000000008185015260e08501528451808601865260128152712430b932102632b0ba3432b91020b936b7b960711b8185015261010085015284518086018652600d8082526c2632b0ba3432b91020b936b7b960991b8286015261012086019190915285518087018752600f8082526e486f6c79204368657374706c61746560881b828701526101408701919091528651808801885260118152704f726e617465204368657374706c61746560781b818701526101608701528651808801885283815269141b185d194813585a5b60b21b81870152610180870152865180880188529283526910da185a5b8813585a5b60b21b838601526101a0860192909252855180870190965291855268149a5b99c813585a5b60ba1b928501929092526101c08301939093526200044892919062001d88565b50604051806101e001604052806040518060400160405280600c81526020016b416e6369656e742048656c6d60a01b81525081526020016040518060400160405280600b81526020016a4f726e6174652048656c6d60a81b81525081526020016040518060400160405280600a81526020016947726561742048656c6d60b01b81525081526020016040518060400160405280600981526020016846756c6c2048656c6d60b81b81525081526020016040518060400160405280600481526020016348656c6d60e01b81525081526020016040518060400160405280600b81526020016a2232b6b7b71021b937bbb760a91b81525081526020016040518060400160405280600e81526020016d223930b3b7b713b99021b937bbb760911b8152508152602001604051806040016040528060078152602001660576172204361760cc1b81525081526020016040518060400160405280600b81526020016a04c656174686572204361760ac1b81525081526020016040518060400160405280600381526020016204361760ec1b81525081526020016040518060400160405280600581526020016421b937bbb760d91b81525081526020016040518060400160405280600b81526020016a111a5d9a5b9948121bdbd960aa1b81525081526020016040518060400160405280600981526020016814da5b1ac8121bdbd960ba1b81525081526020016040518060400160405280600a815260200169131a5b995b88121bdbd960b21b815250815260200160405180604001604052806004815260200163121bdbd960e21b815250815250600e90600f620006aa92919062001d88565b506040805161022081018252600b6101e082018181526a13dc9b985d194810995b1d60aa1b610200840152825282518084018452600881526715d85c8810995b1d60c21b60208281019190915280840191909152835180850185529182526a141b185d19590810995b1d60aa1b82820152828401919091528251808401845260098082526813595cda0810995b1d60ba1b82840152606084019190915283518085018552600a808252691219585d9e4810995b1d60b21b82850152608085019190915284518086018652600e81526d11195b5bdb9a1a59194810995b1d60921b8185015260a085015284518086018652600f8082526e111c9859dbdb9cdada5b8810995b1d608a1b8286015260c086019190915285518087018752601481527f53747564646564204c6561746865722042656c740000000000000000000000008186015260e086015285518087018752601181527012185c99081319585d1a195c8810995b1d607a1b8186015261010086015285518087018752600c81526b1319585d1a195c8810995b1d60a21b81860152610120860152855180870187528181526e084e4d2ced0e8e6d2d8d640a6c2e6d608b1b8186015261014086015285518087018752838152680a6d2d8d640a6c2e6d60bb1b8186015261016086015285518087018752928352680aededed840a6c2e6d60bb1b838501526101808501929092528451808601865290815269098d2dccadc40a6c2e6d60b31b818401526101a0840152835180850190945260048452630a6c2e6d60e31b918401919091526101c08201929092526200090191908162001d88565b506040805161022081018252600c6101e082019081526b486f6c79204772656176657360a01b610200830152815281518083018352600e81526d4f726e617465204772656176657360901b602082810191909152808301919091528251808401845260078152664772656176657360c81b818301528284015282518084018452600b8082526a436861696e20426f6f747360a81b828401526060840191909152835180850185528181526a486561767920426f6f747360a81b81840152608084015283518085018552600f8082526e44656d6f6e6869646520426f6f747360881b8285015260a08501919091528451808601865260108082526f447261676f6e736b696e20426f6f747360801b8286015260c086019190915285518087018752601581527f53747564646564204c65617468657220426f6f747300000000000000000000008186015260e086015285518087018752601281527148617264204c65617468657220426f6f747360701b8186015261010086015285518087018752600d8082526c4c65617468657220426f6f747360981b82870152610120870191909152865180880188528381526e446976696e6520536c69707065727360881b81870152610140870152865180880188529081526c53696c6b20536c69707065727360981b8186015261016086015285518087018752600a815269576f6f6c2053686f657360b01b81860152610180860152855180870187529283526a4c696e656e2053686f657360a81b838501526101a08501929092528451808601909552600585526453686f657360d81b928501929092526101c083019390935262000b6b92919062001d88565b506040805161022081018252600e6101e082018181526d486f6c79204761756e746c65747360901b610200840152825282518084018452601081526f4f726e617465204761756e746c65747360801b602082810191909152808401919091528351808501855260098152684761756e746c65747360b81b818301528385015283518085018552600c8082526b436861696e20476c6f76657360a01b828401526060850191909152845180860186528181526b486561767920476c6f76657360a01b81840152608085015284518086018652600d8082526c44656d6f6e27732048616e647360981b8285015260a086019190915285518087018752601180825270447261676f6e736b696e20476c6f76657360781b8286015260c087019190915286518088018852601681527f53747564646564204c65617468657220476c6f766573000000000000000000008186015260e087015286518088018852601381527f48617264204c65617468657220476c6f7665730000000000000000000000000081860152610100870152865180880188529485526d4c65617468657220476c6f76657360901b85850152610120860194909452855180870187529081526c446976696e6520476c6f76657360981b8184015261014085015284518086018652600b8082526a53696c6b20476c6f76657360a81b82850152610160860191909152855180870187529081526a576f6f6c20476c6f76657360a81b81840152610180850152845180860186529081526b4c696e656e20476c6f76657360a01b818301526101a084015283518085019094526006845265476c6f76657360d01b908401526101c082019290925262000de49190600f62001d88565b506040518060600160405280604051806040016040528060088152602001674e65636b6c61636560c01b815250815260200160405180604001604052806006815260200165105b5d5b195d60d21b81525081526020016040518060400160405280600781526020016614195b99185b9d60ca1b815250815250601290600362000e6f92919062001dda565b506040805160e081018252600960a0820190815268476f6c642052696e6760b81b60c0830152815281518083018352600b8082526a53696c7665722052696e6760a81b60208381019190915280840192909252835180850185529081526a42726f6e7a652052696e6760a81b818301528284015282518084018452600d8082526c506c6174696e756d2052696e6760981b828401526060840191909152835180850190945283526c546974616e69756d2052696e6760981b90830152608081019190915262000f4390601390600562001e2c565b506040805161024081018252600861020082018181526737b3102837bbb2b960c11b6102208401528252825180840184526009808252686f66204769616e747360b81b6020838101919091528085019290925284518086018652908152686f6620546974616e7360b81b818301528385015283518085018552828152671bd98814dada5b1b60c21b81830152606084015283518085018552600d8082526c37b3102832b93332b1ba34b7b760991b828401526080850191909152845180860186528181526c6f66204272696c6c69616e636560981b8184015260a08501528451808601865260108082526f1bd988115b9b1a59da1d195b9b595b9d60821b8285015260c0860191909152855180870187528281526c37b310283937ba32b1ba34b7b760991b8185015260e0860152855180870187529384526737b31020b733b2b960c11b84840152610100850193909352845180860186526007808252666f66205261676560c81b8285015261012086019190915285518087018752908152666f66204675727960c81b8184015261014085015284518086018652600a808252691bd988159a5d1c9a5bdb60b21b8285015261016086019190915285518087018752908152690decc40e8d0ca408cdef60b31b8184015261018085015284518086018652600c8082526b37b3102232ba32b1ba34b7b760a11b828501526101a0860191909152855180870187529182526c37b3102932b33632b1ba34b7b760991b828401526101c0850191909152845180860190955284526b6f6620746865205477696e7360a01b908401526101e0820192909252620011a7916014919062001e7e565b50604080516108e08101825260056108a082018181526441676f6e7960d81b6108c0840152825282518084018452600a8082526941706f63616c7970736560b01b60208381019190915280850192909252845180860186528181526920b936b0b3b2b23237b760b11b818401528486015284518086018652838152641099585cdd60da1b81840152606085015284518086018652600880825267084cad0cadadee8d60c31b82850152608086019190915285518087018752600680825265109b1a59da1d60d21b8286015260a08701919091528651808801885285815264109b1bdbd960da1b8186015260c0870152865180880188526007808252664272616d626c6560c81b8287015260e0880191909152875180890189526009808252684272696d73746f6e6560b81b828801526101008901919091528851808a018a5287815264109c9bdbd960da1b818801526101208901528851808a018a528281526621b0b93934b7b760c91b818801526101408901528851808a018a528181526843617461636c79736d60b81b818801526101608901528851808a018a52848152674368696d6572696360c01b818801526101808901528851808a018a5283815265436f7270736560d01b818801526101a08901528851808a018a528581526921b7b9393ab83a34b7b760b11b818801526101c08901528851808a018a52818152682230b6b730ba34b7b760b91b818801526101e08901528851808a018a5287815264088cac2e8d60db1b818801526102008901528851808a018a52878152642232b6b7b760d91b818801526102208901528851808a018a526004808252634469726560e01b828901526102408a01919091528951808b018b5284815265223930b3b7b760d11b818901526102608a01528951808b018b5288815264111c99585960da1b818901526102808a01528951808b018b5281815263446f6f6d60e01b818901526102a08a01528951808b018b52818152634475736b60e01b818901526102c08a01528951808b018b52888152644561676c6560d81b818901526102e08a01528951808b018b528581526722b6b83cb932b0b760c11b818901526103008a01528951808b018b52818152634661746560e01b818901526103208a01528951808b018b52600380825262466f6560e81b828a01526103408b01919091528a51808c018c528281526347616c6560e01b818a01526103608b01528a51808c018c528981526411da1bdd5b60da1b818a01526103808b01528a51808c018c5289815264476c6f6f6d60d81b818a01526103a08b01528a51808c018c528981526408ed8f2e0d60db1b818a01526103c08b01528a51808c018c5289815264476f6c656d60d81b818a01526103e08b01528a51808c018c52828152634772696d60e01b818a01526104008b01528a51808c018c52828152634861746560e01b818a01526104208b01528a51808c018c52898152644861766f6360d81b818a01526104408b01528a51808c018c52858152652437b737bab960d11b818a01526104608b01528a51808c018c52858152652437b93937b960d11b818a01526104808b01528a51808c018c52868152674879706e6f74696360c01b818a01526104a08b01528a51808c018c528581526525b930b5b2b760d11b818a01526104c08b01528a51808c018c5289815264098dec2e8d60db1b818a01526104e08b01528a51808c018c52838152684d61656c7374726f6d60b81b818a01526105008b01528a51808c018c5282815263135a5b9960e21b818a01526105208b01528a51808c018c52848152664d697261636c6560c81b818a01526105408b01528a51808c018c5285815265135bdc989a5960d21b818a01526105608b01528a51808c018c529586526727b13634bb34b7b760c11b868901526105808a01959095528951808b018b528281526813db9cdb185d59da1d60ba1b818901526105a08a01528951808b018b52818152632830b4b760e11b818901526105c08a01528951808b018b52600b81526a50616e64656d6f6e69756d60a81b818901526105e08a01528951808b018b52838152660a0d0decadcd2f60cb1b818901526106008a01528951808b018b5284815265506c6167756560d01b818901526106208a01528951808b018b52818152635261676560e01b818901526106408a01528951808b018b52838152665261707475726560c81b818901526106608a01528951808b018b528181526352756e6560e01b818901526106808a01528951808b018b528881526414dadd5b1b60da1b818901526106a08a01528951808b018b528581526214dbdb60ea1b818901526106c08a01528951808b018b529081526314dbdd5b60e21b818801526106e08901528851808a018a5283815265536f72726f7760d01b818801526107008901528851808a018a528381526514dc1a5c9a5d60d21b818801526107208901528851808a018a528781526453746f726d60d81b818801526107408901528851808a018a528281526615195b5c195cdd60ca1b818801526107608901528851808a018a5282815266151bdc9b595b9d60ca1b818801526107808901528851808a018a529081526856656e6765616e636560b81b818701526107a08801528751808901895281815266566963746f727960c81b818701526107c088015287518089018952868152642b34b832b960d91b818701526107e088015287518089018952918252650acdee4e8caf60d31b828601526108008701919091528651808801885291825262576f6560e81b8285015261082086019190915285518087018752938452640aee4c2e8d60db1b8484015261084085019390935284518086018652928352664c69676874277360c81b838301526108608401929092528351808501909452908352695368696d6d6572696e6760b01b9083015261088081019190915262001a1190601590604562001ed0565b506040805161028081018252600461024082018181526342616e6560e01b61026084015282528251808401845281815263149bdbdd60e21b6020828101919091528084019190915283518085018552828152634269746560e01b81830152838501528351808501855282815263536f6e6760e01b81830152606084015283518085018552828152632937b0b960e11b81830152608084015283518085018552600580825264047726173760dc1b8284015260a085019190915284518086018652600a815269125b9cdd1c9d5b595b9d60b21b8184015260c08501528451808601865283815263476c6f7760e01b8184015260e0850152845180860186526006808252652132b73232b960d11b828501526101008601919091528551808701875290815265536861646f7760d01b818401526101208501528451808601865260078152662bb434b9b832b960c91b81840152610140850152845180860186528181526414da1bdd5d60da1b81840152610160850152845180860186529081526411dc9bdddb60da1b8183015261018084015283518085018552828152632a32b0b960e11b818301526101a084015283518085018552828152635065616b60e01b818301526101c08401528351808501855282815263466f726d60e01b818301526101e084015283518085018552600381526229bab760e91b8183015261020084015283518085019094529083526326b7b7b760e11b9083015261022081019190915262001c4290601690601262001d24565b5034801562001c5057600080fd5b5060405180604001604052806004815260200163131bdbdd60e21b815250604051806040016040528060048152602001631313d3d560e21b815250816000908051906020019062001ca392919062001f22565b50805162001cb990600190602084019062001f22565b50506001600a555062001ccc3362001cd2565b62002064565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805482825590600052602060002090810192821562001d76579160200282015b8281111562001d76578251805162001d6591849160209091019062001f22565b509160200191906001019062001d45565b5062001d8492915062001fad565b5090565b82805482825590600052602060002090810192821562001d76579160200282015b8281111562001d76578251805162001dc991849160209091019062001f22565b509160200191906001019062001da9565b82805482825590600052602060002090810192821562001d76579160200282015b8281111562001d76578251805162001e1b91849160209091019062001f22565b509160200191906001019062001dfb565b82805482825590600052602060002090810192821562001d76579160200282015b8281111562001d76578251805162001e6d91849160209091019062001f22565b509160200191906001019062001e4d565b82805482825590600052602060002090810192821562001d76579160200282015b8281111562001d76578251805162001ebf91849160209091019062001f22565b509160200191906001019062001e9f565b82805482825590600052602060002090810192821562001d76579160200282015b8281111562001d76578251805162001f1191849160209091019062001f22565b509160200191906001019062001ef1565b82805462001f309062002027565b90600052602060002090601f01602090048101928262001f54576000855562001f9f565b82601f1062001f6f57805160ff191683800117855562001f9f565b8280016001018555821562001f9f579182015b8281111562001f9f57825182559160200191906001019062001f82565b5062001d8492915062001fce565b8082111562001d8457600062001fc4828262001fe5565b5060010162001fad565b5b8082111562001d84576000815560010162001fcf565b50805462001ff39062002027565b6000825580601f1062002004575050565b601f01602090049060005260206000209081019062002024919062001fce565b50565b600181811c908216806200203c57607f821691505b602082108114156200205e57634e487b7160e01b600052602260045260246000fd5b50919050565b61320c80620020746000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c806370a0823111610104578063a22cb465116100a2578063d47f269e11610071578063d47f269e146103c7578063e985e9c5146103da578063ef68075a14610416578063f2fde38b1461042957600080fd5b8063a22cb4651461037b578063b88d4fde1461038e578063c08a5dd5146103a1578063c87b56dd146103b457600080fd5b806395d89b41116100de57806395d89b411461033a5780639720c969146103425780639bdc1b69146103555780639e41b73f1461036857600080fd5b806370a082311461030e578063715018a6146103215780638da5cb5b1461032957600080fd5b80632f745c5911610171578063434f48c41161014b578063434f48c4146102c25780634f6ccce7146102d55780636352211e146102e857806367209aa8146102fb57600080fd5b80632f745c5914610289578063379607f51461029c57806342842e0e146102af57600080fd5b8063095ea7b3116101ad578063095ea7b31461023c5780630e99990d1461025157806318160ddd1461026457806323b872dd1461027657600080fd5b806301ffc9a7146101d457806306fdde03146101fc578063081812fc14610211575b600080fd5b6101e76101e23660046127f8565b61043c565b60405190151581526020015b60405180910390f35b610204610467565b6040516101f39190612d42565b61022461021f366004612830565b6104f9565b6040516001600160a01b0390911681526020016101f3565b61024f61024a3660046127cf565b610593565b005b61020461025f366004612830565b6106a9565b6008545b6040519081526020016101f3565b61024f610284366004612685565b6107a3565b6102686102973660046127cf565b6107d4565b61024f6102aa366004612830565b61086a565b61024f6102bd366004612685565b610924565b61024f6102d0366004612830565b61093f565b6102686102e3366004612830565b610a27565b6102246102f6366004612830565b610ac8565b610204610309366004612830565b610b3f565b61026861031c366004612632565b610c30565b61024f610cb7565b600b546001600160a01b0316610224565b610204610ced565b610204610350366004612830565b610cfc565b610204610363366004612830565b610ded565b610204610376366004612830565b610edf565b61024f610389366004612795565b610fd2565b61024f61039c3660046126c0565b611097565b6102046103af366004612830565b6110cf565b6102046103c2366004612830565b6111c0565b6102046103d5366004612830565b611468565b6101e76103e8366004612653565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610204610424366004612830565b611559565b61024f610437366004612632565b61164b565b60006001600160e01b0319821663780e9d6360e01b14806104615750610461826116e6565b92915050565b60606000805461047690612ebb565b80601f01602080910402602001604051908101604052809291908181526020018280546104a290612ebb565b80156104ef5780601f106104c4576101008083540402835291602001916104ef565b820191906000526020600020905b8154815290600101906020018083116104d257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105775760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061059e82610ac8565b9050806001600160a01b0316836001600160a01b0316141561060c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161056e565b336001600160a01b0382161480610628575061062881336103e8565b61069a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161056e565b6106a48383611736565b505050565b606061046182604051806040016040528060048152602001631193d3d560e21b8152506010805480602002602001604051908101604052809291908181526020016000905b8282101561079a57838290600052602060002001805461070d90612ebb565b80601f016020809104026020016040519081016040528092919081815260200182805461073990612ebb565b80156107865780601f1061075b57610100808354040283529160200191610786565b820191906000526020600020905b81548152906001019060200180831161076957829003601f168201915b5050505050815260200190600101906106ee565b505050506117a4565b6107ad3382611ad1565b6107c95760405162461bcd60e51b815260040161056e90612ddc565b6106a4838383611bc8565b60006107df83610c30565b82106108415760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161056e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6002600a5414156108bd5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161056e565b6002600a5580158015906108d25750611e6281105b6109115760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881251081a5b9d985b1a5960821b604482015260640161056e565b61091c335b82611d73565b506001600a55565b6106a483838360405180602001604052806000815250611097565b6002600a5414156109925760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161056e565b6002600a55600b546001600160a01b031633146109c15760405162461bcd60e51b815260040161056e90612da7565b611e61811180156109d35750611f4181105b610a125760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881251081a5b9d985b1a5960821b604482015260640161056e565b61091c610916600b546001600160a01b031690565b6000610a3260085490565b8210610a955760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161056e565b60088281548110610ab657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806104615760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161056e565b606061046182604051806040016040528060048152602001634e45434b60e01b8152506012805480602002602001604051908101604052809291908181526020016000905b8282101561079a578382906000526020600020018054610ba390612ebb565b80601f0160208091040260200160405190810160405280929190818152602001828054610bcf90612ebb565b8015610c1c5780601f10610bf157610100808354040283529160200191610c1c565b820191906000526020600020905b815481529060010190602001808311610bff57829003601f168201915b505050505081526020019060010190610b84565b60006001600160a01b038216610c9b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161056e565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610ce15760405162461bcd60e51b815260040161056e90612da7565b610ceb6000611d91565b565b60606001805461047690612ebb565b606061046182604051806040016040528060048152602001631211505160e21b815250600e805480602002602001604051908101604052809291908181526020016000905b8282101561079a578382906000526020600020018054610d6090612ebb565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8c90612ebb565b8015610dd95780601f10610dae57610100808354040283529160200191610dd9565b820191906000526020600020905b815481529060010190602001808311610dbc57829003601f168201915b505050505081526020019060010190610d41565b6060610461826040518060400160405280600581526020016415d05254d560da1b815250600f805480602002602001604051908101604052809291908181526020016000905b8282101561079a578382906000526020600020018054610e5290612ebb565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7e90612ebb565b8015610ecb5780601f10610ea057610100808354040283529160200191610ecb565b820191906000526020600020905b815481529060010190602001808311610eae57829003601f168201915b505050505081526020019060010190610e33565b606061046182604051806040016040528060068152602001652ba2a0a827a760d11b815250600c805480602002602001604051908101604052809291908181526020016000905b8282101561079a578382906000526020600020018054610f4590612ebb565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7190612ebb565b8015610fbe5780601f10610f9357610100808354040283529160200191610fbe565b820191906000526020600020905b815481529060010190602001808311610fa157829003601f168201915b505050505081526020019060010190610f26565b6001600160a01b03821633141561102b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161056e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110a13383611ad1565b6110bd5760405162461bcd60e51b815260040161056e90612ddc565b6110c984848484611de3565b50505050565b6060610461826040518060400160405280600481526020016352494e4760e01b8152506013805480602002602001604051908101604052809291908181526020016000905b8282101561079a57838290600052602060002001805461113390612ebb565b80601f016020809104026020016040519081016040528092919081815260200182805461115f90612ebb565b80156111ac5780601f10611181576101008083540402835291602001916111ac565b820191906000526020600020905b81548152906001019060200180831161118f57829003601f168201915b505050505081526020019060010190611114565b60606111ca6125d5565b60405180610120016040528060fd815260200161304960fd913981526111ef83610edf565b81600160200201819052506040518060600160405280602881526020016131af60289139604082015261122183611559565b6060808301919091526040805191820190526028808252612f7e6020830139608082015261124e83610cfc565b60a082015260408051606081019091526028808252612ff8602083013960c082015261127983610ded565b60e08201526040805160608101909152602980825261302060208301396101008201526112a5836106a9565b61012082015260408051606081019091526029808252612fcf60208301396101408201526112d283611468565b6101608201526040805160608101909152602980825261314660208301396101808201526112ff83610b3f565b6101a082015260408051606081019091526029808252612fa660208301396101c082015261132c836110cf565b6101e0820152604080518082018252600d81526c1e17ba32bc3a1f1e17b9bb339f60991b602080830191909152610200840191909152825181840151838501516060860151608087015160a088015160c089015160e08a01516101008b0151995160009a61139c9a9091016128bf565b60408051808303601f19018152908290526101208401516101408501516101608601516101808701516101a08801516101c08901516101e08a01516102008b01519799506113ef988a98906020016128bf565b6040516020818303038152906040529050600061143c61140e86611e16565b61141784611f30565b604051602001611428929190612b2a565b604051602081830303815290604052611f30565b90508060405160200161144f9190612cc0565b60408051601f1981840301815291905295945050505050565b606061046182604051806040016040528060048152602001631210539160e21b8152506011805480602002602001604051908101604052809291908181526020016000905b8282101561079a5783829060005260206000200180546114cc90612ebb565b80601f01602080910402602001604051908101604052809291908181526020018280546114f890612ebb565b80156115455780601f1061151a57610100808354040283529160200191611545565b820191906000526020600020905b81548152906001019060200180831161152857829003601f168201915b5050505050815260200190600101906114ad565b6060610461826040518060400160405280600581526020016410d21154d560da1b815250600d805480602002602001604051908101604052809291908181526020016000905b8282101561079a5783829060005260206000200180546115be90612ebb565b80601f01602080910402602001604051908101604052809291908181526020018280546115ea90612ebb565b80156116375780601f1061160c57610100808354040283529160200191611637565b820191906000526020600020905b81548152906001019060200180831161161a57829003601f168201915b50505050508152602001906001019061159f565b600b546001600160a01b031633146116755760405162461bcd60e51b815260040161056e90612da7565b6001600160a01b0381166116da5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161056e565b6116e381611d91565b50565b60006001600160e01b031982166380ac58cd60e01b148061171757506001600160e01b03198216635b5e139f60e01b145b8061046157506301ffc9a760e01b6001600160e01b0319831614610461565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061176b82610ac8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b606060006117da846117b587611e16565b6040516020016117c6929190612890565b6040516020818303038152906040526120a4565b90506000838451836117ec9190612f11565b8151811061180a57634e487b7160e01b600052603260045260246000fd5b6020026020010151905060006015836118239190612f11565b9050600e81111561188a576014805483919061183f9086612f11565b8154811061185d57634e487b7160e01b600052603260045260246000fd5b90600052602060002001604051602001611878929190612980565b60405160208183030381529060405291505b60138110611ac75761189a6125fd565b601580546118a89086612f11565b815481106118c657634e487b7160e01b600052603260045260246000fd5b9060005260206000200180546118db90612ebb565b80601f016020809104026020016040519081016040528092919081815260200182805461190790612ebb565b80156119545780601f1061192957610100808354040283529160200191611954565b820191906000526020600020905b81548152906001019060200180831161193757829003601f168201915b50505050508160006002811061197a57634e487b7160e01b600052603260045260246000fd5b60200201526016805461198d9086612f11565b815481106119ab57634e487b7160e01b600052603260045260246000fd5b9060005260206000200180546119c090612ebb565b80601f01602080910402602001604051908101604052809291908181526020018280546119ec90612ebb565b8015611a395780601f10611a0e57610100808354040283529160200191611a39565b820191906000526020600020905b815481529060010190602001808311611a1c57829003601f168201915b505050505081600160028110611a5f57634e487b7160e01b600052603260045260246000fd5b60200201526013821415611a9b578051602080830151604051611a859392879101612a3e565b6040516020818303038152906040529250611ac5565b8051602080830151604051611ab39392879101612aac565b60405160208183030381529060405292505b505b5095945050505050565b6000818152600260205260408120546001600160a01b0316611b4a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161056e565b6000611b5583610ac8565b9050806001600160a01b0316846001600160a01b03161480611b905750836001600160a01b0316611b85846104f9565b6001600160a01b0316145b80611bc057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611bdb82610ac8565b6001600160a01b031614611c435760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161056e565b6001600160a01b038216611ca55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161056e565b611cb08383836120d5565b611cbb600082611736565b6001600160a01b0383166000908152600360205260408120805460019290611ce4908490612e78565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d12908490612e2d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611d8d82826040518060200160405280600081525061218d565b5050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611dee848484611bc8565b611dfa848484846121c0565b6110c95760405162461bcd60e51b815260040161056e90612d55565b606081611e3a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e645780611e4e81612ef6565b9150611e5d9050600a83612e45565b9150611e3e565b60008167ffffffffffffffff811115611e8d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611eb7576020820181803683370190505b5090505b8415611bc057611ecc600183612e78565b9150611ed9600a86612f11565b611ee4906030612e2d565b60f81b818381518110611f0757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611f29600a86612e45565b9450611ebb565b805160609080611f50575050604080516020810190915260008152919050565b60006003611f5f836002612e2d565b611f699190612e45565b611f74906004612e59565b90506000611f83826020612e2d565b67ffffffffffffffff811115611fa957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611fd3576020820181803683370190505b509050600060405180606001604052806040815260200161316f604091399050600181016020830160005b8681101561205f576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101611ffe565b506003860660018114612079576002811461208a57612096565b613d3d60f01b600119830152612096565b603d60f81b6000198301525b505050918152949350505050565b6000816040516020016120b79190612874565b60408051601f19818403018152919052805160209091012092915050565b6001600160a01b0383166121305761212b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612153565b816001600160a01b0316836001600160a01b0316146121535761215383826122cd565b6001600160a01b03821661216a576106a48161236a565b826001600160a01b0316826001600160a01b0316146106a4576106a48282612443565b6121978383612487565b6121a460008484846121c0565b6106a45760405162461bcd60e51b815260040161056e90612d55565b60006001600160a01b0384163b156122c257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612204903390899088908890600401612d05565b602060405180830381600087803b15801561221e57600080fd5b505af192505050801561224e575060408051601f3d908101601f1916820190925261224b91810190612814565b60015b6122a8573d80801561227c576040519150601f19603f3d011682016040523d82523d6000602084013e612281565b606091505b5080516122a05760405162461bcd60e51b815260040161056e90612d55565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611bc0565b506001949350505050565b600060016122da84610c30565b6122e49190612e78565b600083815260076020526040902054909150808214612337576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061237c90600190612e78565b600083815260096020526040812054600880549394509092849081106123b257634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106123e157634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061242757634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061244e83610c30565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166124dd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161056e565b6000818152600260205260409020546001600160a01b0316156125425760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161056e565b61254e600083836120d5565b6001600160a01b0382166000908152600360205260408120805460019290612577908490612e2d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6040518061022001604052806011905b60608152602001906001900390816125e55790505090565b60408051808201909152606081526001602082016125e5565b80356001600160a01b038116811461262d57600080fd5b919050565b600060208284031215612643578081fd5b61264c82612616565b9392505050565b60008060408385031215612665578081fd5b61266e83612616565b915061267c60208401612616565b90509250929050565b600080600060608486031215612699578081fd5b6126a284612616565b92506126b060208501612616565b9150604084013590509250925092565b600080600080608085870312156126d5578081fd5b6126de85612616565b93506126ec60208601612616565b925060408501359150606085013567ffffffffffffffff8082111561270f578283fd5b818701915087601f830112612722578283fd5b81358181111561273457612734612f51565b604051601f8201601f19908116603f0116810190838211818310171561275c5761275c612f51565b816040528281528a6020848701011115612774578586fd5b82602086016020830137918201602001949094529598949750929550505050565b600080604083850312156127a7578182fd5b6127b083612616565b9150602083013580151581146127c4578182fd5b809150509250929050565b600080604083850312156127e1578182fd5b6127ea83612616565b946020939093013593505050565b600060208284031215612809578081fd5b813561264c81612f67565b600060208284031215612825578081fd5b815161264c81612f67565b600060208284031215612841578081fd5b5035919050565b60008151808452612860816020860160208601612e8f565b601f01601f19169290920160200192915050565b60008251612886818460208701612e8f565b9190910192915050565b600083516128a2818460208801612e8f565b8351908301906128b6818360208801612e8f565b01949350505050565b60008a516128d1818460208f01612e8f565b8a516128e38183860160208f01612e8f565b8a5191840101906128f8818360208e01612e8f565b895161290a8183850160208e01612e8f565b8951929091010190612920818360208c01612e8f565b87516129328183850160208c01612e8f565b8751929091010190612948818360208a01612e8f565b855161295a8183850160208a01612e8f565b8551929091010190612970818360208801612e8f565b019b9a5050505050505050505050565b6000835160206129938285838901612e8f565b600160fd1b9184019182528454600190849080831c818416806129b757607f821691505b8582108114156129d557634e487b7160e01b88526022600452602488fd5b8080156129e957600181146129fe57612a2e565b60ff1984168887015282880186019450612a2e565b60008b815260209020895b84811015612a245781548a8201890152908701908801612a09565b5050858389010194505b50929a9950505050505050505050565b601160f91b81528351600090612a5b816001850160208901612e8f565b600160fd1b6001918401918201528451612a7c816002840160208901612e8f565b61011160f51b600292909101918201528351612a9f816004840160208801612e8f565b0160040195945050505050565b601160f91b81528351600090612ac9816001850160208901612e8f565b600160fd1b6001918401918201528451612aea816002840160208901612e8f565b61011160f51b600292909101918201528351612b0d816004840160208801612e8f565b62202b3160e81b6004929091019182015260070195945050505050565b6e7b226e616d65223a2022426167202360881b81528251600090612b5581600f850160208801612e8f565b80830190507f222c20226465736372697074696f6e223a20224c6f6f742069732072616e646f600f8201527f6d697a656420616476656e747572657220676561722067656e65726174656420602f8201527f616e642073746f726564206f6e20636861696e2e2053746174732c20696d6167604f8201527f65732c20616e64206f746865722066756e6374696f6e616c6974792061726520606f8201527f696e74656e74696f6e616c6c79206f6d697474656420666f72206f7468657273608f8201527f20746f20696e746572707265742e204665656c206672656520746f207573652060af8201527f4c6f6f7420696e20616e792077617920796f752077616e742e222c2022696d6160cf8201527f6765223a2022646174613a696d6167652f7376672b786d6c3b6261736536342c60ef82015261010f8451612c9f8183850160208901612e8f565b612cb5828285010161227d60f01b815260020190565b979650505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251612cf881601d850160208701612e8f565b91909101601d0192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d3890830184612848565b9695505050505050565b60208152600061264c6020830184612848565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612e4057612e40612f25565b500190565b600082612e5457612e54612f3b565b500490565b6000816000190483118215151615612e7357612e73612f25565b500290565b600082821015612e8a57612e8a612f25565b500390565b60005b83811015612eaa578181015183820152602001612e92565b838111156110c95750506000910152565b600181811c90821680612ecf57607f821691505b60208210811415612ef057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612f0a57612f0a612f25565b5060010190565b600082612f2057612f20612f3b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146116e357600080fdfe3c2f746578743e3c7465787420783d2231302220793d2236302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223136302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223132302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d2238302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223130302220636c6173733d2262617365223e3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e62617365207b2066696c6c3a2077686974653b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20313470783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d22626c61636b22202f3e3c7465787420783d2231302220793d2232302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223134302220636c6173733d2262617365223e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c2f746578743e3c7465787420783d2231302220793d2234302220636c6173733d2262617365223ea2646970667358221220afd8a42edeeb6b78a1f2564f8301af9f1f72be2eedf980ee45200f6459d4c45064736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c806370a0823111610104578063a22cb465116100a2578063d47f269e11610071578063d47f269e146103c7578063e985e9c5146103da578063ef68075a14610416578063f2fde38b1461042957600080fd5b8063a22cb4651461037b578063b88d4fde1461038e578063c08a5dd5146103a1578063c87b56dd146103b457600080fd5b806395d89b41116100de57806395d89b411461033a5780639720c969146103425780639bdc1b69146103555780639e41b73f1461036857600080fd5b806370a082311461030e578063715018a6146103215780638da5cb5b1461032957600080fd5b80632f745c5911610171578063434f48c41161014b578063434f48c4146102c25780634f6ccce7146102d55780636352211e146102e857806367209aa8146102fb57600080fd5b80632f745c5914610289578063379607f51461029c57806342842e0e146102af57600080fd5b8063095ea7b3116101ad578063095ea7b31461023c5780630e99990d1461025157806318160ddd1461026457806323b872dd1461027657600080fd5b806301ffc9a7146101d457806306fdde03146101fc578063081812fc14610211575b600080fd5b6101e76101e23660046127f8565b61043c565b60405190151581526020015b60405180910390f35b610204610467565b6040516101f39190612d42565b61022461021f366004612830565b6104f9565b6040516001600160a01b0390911681526020016101f3565b61024f61024a3660046127cf565b610593565b005b61020461025f366004612830565b6106a9565b6008545b6040519081526020016101f3565b61024f610284366004612685565b6107a3565b6102686102973660046127cf565b6107d4565b61024f6102aa366004612830565b61086a565b61024f6102bd366004612685565b610924565b61024f6102d0366004612830565b61093f565b6102686102e3366004612830565b610a27565b6102246102f6366004612830565b610ac8565b610204610309366004612830565b610b3f565b61026861031c366004612632565b610c30565b61024f610cb7565b600b546001600160a01b0316610224565b610204610ced565b610204610350366004612830565b610cfc565b610204610363366004612830565b610ded565b610204610376366004612830565b610edf565b61024f610389366004612795565b610fd2565b61024f61039c3660046126c0565b611097565b6102046103af366004612830565b6110cf565b6102046103c2366004612830565b6111c0565b6102046103d5366004612830565b611468565b6101e76103e8366004612653565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610204610424366004612830565b611559565b61024f610437366004612632565b61164b565b60006001600160e01b0319821663780e9d6360e01b14806104615750610461826116e6565b92915050565b60606000805461047690612ebb565b80601f01602080910402602001604051908101604052809291908181526020018280546104a290612ebb565b80156104ef5780601f106104c4576101008083540402835291602001916104ef565b820191906000526020600020905b8154815290600101906020018083116104d257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105775760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061059e82610ac8565b9050806001600160a01b0316836001600160a01b0316141561060c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161056e565b336001600160a01b0382161480610628575061062881336103e8565b61069a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161056e565b6106a48383611736565b505050565b606061046182604051806040016040528060048152602001631193d3d560e21b8152506010805480602002602001604051908101604052809291908181526020016000905b8282101561079a57838290600052602060002001805461070d90612ebb565b80601f016020809104026020016040519081016040528092919081815260200182805461073990612ebb565b80156107865780601f1061075b57610100808354040283529160200191610786565b820191906000526020600020905b81548152906001019060200180831161076957829003601f168201915b5050505050815260200190600101906106ee565b505050506117a4565b6107ad3382611ad1565b6107c95760405162461bcd60e51b815260040161056e90612ddc565b6106a4838383611bc8565b60006107df83610c30565b82106108415760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161056e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6002600a5414156108bd5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161056e565b6002600a5580158015906108d25750611e6281105b6109115760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881251081a5b9d985b1a5960821b604482015260640161056e565b61091c335b82611d73565b506001600a55565b6106a483838360405180602001604052806000815250611097565b6002600a5414156109925760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161056e565b6002600a55600b546001600160a01b031633146109c15760405162461bcd60e51b815260040161056e90612da7565b611e61811180156109d35750611f4181105b610a125760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881251081a5b9d985b1a5960821b604482015260640161056e565b61091c610916600b546001600160a01b031690565b6000610a3260085490565b8210610a955760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161056e565b60088281548110610ab657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806104615760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161056e565b606061046182604051806040016040528060048152602001634e45434b60e01b8152506012805480602002602001604051908101604052809291908181526020016000905b8282101561079a578382906000526020600020018054610ba390612ebb565b80601f0160208091040260200160405190810160405280929190818152602001828054610bcf90612ebb565b8015610c1c5780601f10610bf157610100808354040283529160200191610c1c565b820191906000526020600020905b815481529060010190602001808311610bff57829003601f168201915b505050505081526020019060010190610b84565b60006001600160a01b038216610c9b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161056e565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610ce15760405162461bcd60e51b815260040161056e90612da7565b610ceb6000611d91565b565b60606001805461047690612ebb565b606061046182604051806040016040528060048152602001631211505160e21b815250600e805480602002602001604051908101604052809291908181526020016000905b8282101561079a578382906000526020600020018054610d6090612ebb565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8c90612ebb565b8015610dd95780601f10610dae57610100808354040283529160200191610dd9565b820191906000526020600020905b815481529060010190602001808311610dbc57829003601f168201915b505050505081526020019060010190610d41565b6060610461826040518060400160405280600581526020016415d05254d560da1b815250600f805480602002602001604051908101604052809291908181526020016000905b8282101561079a578382906000526020600020018054610e5290612ebb565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7e90612ebb565b8015610ecb5780601f10610ea057610100808354040283529160200191610ecb565b820191906000526020600020905b815481529060010190602001808311610eae57829003601f168201915b505050505081526020019060010190610e33565b606061046182604051806040016040528060068152602001652ba2a0a827a760d11b815250600c805480602002602001604051908101604052809291908181526020016000905b8282101561079a578382906000526020600020018054610f4590612ebb565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7190612ebb565b8015610fbe5780601f10610f9357610100808354040283529160200191610fbe565b820191906000526020600020905b815481529060010190602001808311610fa157829003601f168201915b505050505081526020019060010190610f26565b6001600160a01b03821633141561102b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161056e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110a13383611ad1565b6110bd5760405162461bcd60e51b815260040161056e90612ddc565b6110c984848484611de3565b50505050565b6060610461826040518060400160405280600481526020016352494e4760e01b8152506013805480602002602001604051908101604052809291908181526020016000905b8282101561079a57838290600052602060002001805461113390612ebb565b80601f016020809104026020016040519081016040528092919081815260200182805461115f90612ebb565b80156111ac5780601f10611181576101008083540402835291602001916111ac565b820191906000526020600020905b81548152906001019060200180831161118f57829003601f168201915b505050505081526020019060010190611114565b60606111ca6125d5565b60405180610120016040528060fd815260200161304960fd913981526111ef83610edf565b81600160200201819052506040518060600160405280602881526020016131af60289139604082015261122183611559565b6060808301919091526040805191820190526028808252612f7e6020830139608082015261124e83610cfc565b60a082015260408051606081019091526028808252612ff8602083013960c082015261127983610ded565b60e08201526040805160608101909152602980825261302060208301396101008201526112a5836106a9565b61012082015260408051606081019091526029808252612fcf60208301396101408201526112d283611468565b6101608201526040805160608101909152602980825261314660208301396101808201526112ff83610b3f565b6101a082015260408051606081019091526029808252612fa660208301396101c082015261132c836110cf565b6101e0820152604080518082018252600d81526c1e17ba32bc3a1f1e17b9bb339f60991b602080830191909152610200840191909152825181840151838501516060860151608087015160a088015160c089015160e08a01516101008b0151995160009a61139c9a9091016128bf565b60408051808303601f19018152908290526101208401516101408501516101608601516101808701516101a08801516101c08901516101e08a01516102008b01519799506113ef988a98906020016128bf565b6040516020818303038152906040529050600061143c61140e86611e16565b61141784611f30565b604051602001611428929190612b2a565b604051602081830303815290604052611f30565b90508060405160200161144f9190612cc0565b60408051601f1981840301815291905295945050505050565b606061046182604051806040016040528060048152602001631210539160e21b8152506011805480602002602001604051908101604052809291908181526020016000905b8282101561079a5783829060005260206000200180546114cc90612ebb565b80601f01602080910402602001604051908101604052809291908181526020018280546114f890612ebb565b80156115455780601f1061151a57610100808354040283529160200191611545565b820191906000526020600020905b81548152906001019060200180831161152857829003601f168201915b5050505050815260200190600101906114ad565b6060610461826040518060400160405280600581526020016410d21154d560da1b815250600d805480602002602001604051908101604052809291908181526020016000905b8282101561079a5783829060005260206000200180546115be90612ebb565b80601f01602080910402602001604051908101604052809291908181526020018280546115ea90612ebb565b80156116375780601f1061160c57610100808354040283529160200191611637565b820191906000526020600020905b81548152906001019060200180831161161a57829003601f168201915b50505050508152602001906001019061159f565b600b546001600160a01b031633146116755760405162461bcd60e51b815260040161056e90612da7565b6001600160a01b0381166116da5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161056e565b6116e381611d91565b50565b60006001600160e01b031982166380ac58cd60e01b148061171757506001600160e01b03198216635b5e139f60e01b145b8061046157506301ffc9a760e01b6001600160e01b0319831614610461565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061176b82610ac8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b606060006117da846117b587611e16565b6040516020016117c6929190612890565b6040516020818303038152906040526120a4565b90506000838451836117ec9190612f11565b8151811061180a57634e487b7160e01b600052603260045260246000fd5b6020026020010151905060006015836118239190612f11565b9050600e81111561188a576014805483919061183f9086612f11565b8154811061185d57634e487b7160e01b600052603260045260246000fd5b90600052602060002001604051602001611878929190612980565b60405160208183030381529060405291505b60138110611ac75761189a6125fd565b601580546118a89086612f11565b815481106118c657634e487b7160e01b600052603260045260246000fd5b9060005260206000200180546118db90612ebb565b80601f016020809104026020016040519081016040528092919081815260200182805461190790612ebb565b80156119545780601f1061192957610100808354040283529160200191611954565b820191906000526020600020905b81548152906001019060200180831161193757829003601f168201915b50505050508160006002811061197a57634e487b7160e01b600052603260045260246000fd5b60200201526016805461198d9086612f11565b815481106119ab57634e487b7160e01b600052603260045260246000fd5b9060005260206000200180546119c090612ebb565b80601f01602080910402602001604051908101604052809291908181526020018280546119ec90612ebb565b8015611a395780601f10611a0e57610100808354040283529160200191611a39565b820191906000526020600020905b815481529060010190602001808311611a1c57829003601f168201915b505050505081600160028110611a5f57634e487b7160e01b600052603260045260246000fd5b60200201526013821415611a9b578051602080830151604051611a859392879101612a3e565b6040516020818303038152906040529250611ac5565b8051602080830151604051611ab39392879101612aac565b60405160208183030381529060405292505b505b5095945050505050565b6000818152600260205260408120546001600160a01b0316611b4a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161056e565b6000611b5583610ac8565b9050806001600160a01b0316846001600160a01b03161480611b905750836001600160a01b0316611b85846104f9565b6001600160a01b0316145b80611bc057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611bdb82610ac8565b6001600160a01b031614611c435760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161056e565b6001600160a01b038216611ca55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161056e565b611cb08383836120d5565b611cbb600082611736565b6001600160a01b0383166000908152600360205260408120805460019290611ce4908490612e78565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d12908490612e2d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611d8d82826040518060200160405280600081525061218d565b5050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611dee848484611bc8565b611dfa848484846121c0565b6110c95760405162461bcd60e51b815260040161056e90612d55565b606081611e3a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e645780611e4e81612ef6565b9150611e5d9050600a83612e45565b9150611e3e565b60008167ffffffffffffffff811115611e8d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611eb7576020820181803683370190505b5090505b8415611bc057611ecc600183612e78565b9150611ed9600a86612f11565b611ee4906030612e2d565b60f81b818381518110611f0757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611f29600a86612e45565b9450611ebb565b805160609080611f50575050604080516020810190915260008152919050565b60006003611f5f836002612e2d565b611f699190612e45565b611f74906004612e59565b90506000611f83826020612e2d565b67ffffffffffffffff811115611fa957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611fd3576020820181803683370190505b509050600060405180606001604052806040815260200161316f604091399050600181016020830160005b8681101561205f576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101611ffe565b506003860660018114612079576002811461208a57612096565b613d3d60f01b600119830152612096565b603d60f81b6000198301525b505050918152949350505050565b6000816040516020016120b79190612874565b60408051601f19818403018152919052805160209091012092915050565b6001600160a01b0383166121305761212b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612153565b816001600160a01b0316836001600160a01b0316146121535761215383826122cd565b6001600160a01b03821661216a576106a48161236a565b826001600160a01b0316826001600160a01b0316146106a4576106a48282612443565b6121978383612487565b6121a460008484846121c0565b6106a45760405162461bcd60e51b815260040161056e90612d55565b60006001600160a01b0384163b156122c257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612204903390899088908890600401612d05565b602060405180830381600087803b15801561221e57600080fd5b505af192505050801561224e575060408051601f3d908101601f1916820190925261224b91810190612814565b60015b6122a8573d80801561227c576040519150601f19603f3d011682016040523d82523d6000602084013e612281565b606091505b5080516122a05760405162461bcd60e51b815260040161056e90612d55565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611bc0565b506001949350505050565b600060016122da84610c30565b6122e49190612e78565b600083815260076020526040902054909150808214612337576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061237c90600190612e78565b600083815260096020526040812054600880549394509092849081106123b257634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106123e157634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061242757634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061244e83610c30565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166124dd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161056e565b6000818152600260205260409020546001600160a01b0316156125425760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161056e565b61254e600083836120d5565b6001600160a01b0382166000908152600360205260408120805460019290612577908490612e2d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6040518061022001604052806011905b60608152602001906001900390816125e55790505090565b60408051808201909152606081526001602082016125e5565b80356001600160a01b038116811461262d57600080fd5b919050565b600060208284031215612643578081fd5b61264c82612616565b9392505050565b60008060408385031215612665578081fd5b61266e83612616565b915061267c60208401612616565b90509250929050565b600080600060608486031215612699578081fd5b6126a284612616565b92506126b060208501612616565b9150604084013590509250925092565b600080600080608085870312156126d5578081fd5b6126de85612616565b93506126ec60208601612616565b925060408501359150606085013567ffffffffffffffff8082111561270f578283fd5b818701915087601f830112612722578283fd5b81358181111561273457612734612f51565b604051601f8201601f19908116603f0116810190838211818310171561275c5761275c612f51565b816040528281528a6020848701011115612774578586fd5b82602086016020830137918201602001949094529598949750929550505050565b600080604083850312156127a7578182fd5b6127b083612616565b9150602083013580151581146127c4578182fd5b809150509250929050565b600080604083850312156127e1578182fd5b6127ea83612616565b946020939093013593505050565b600060208284031215612809578081fd5b813561264c81612f67565b600060208284031215612825578081fd5b815161264c81612f67565b600060208284031215612841578081fd5b5035919050565b60008151808452612860816020860160208601612e8f565b601f01601f19169290920160200192915050565b60008251612886818460208701612e8f565b9190910192915050565b600083516128a2818460208801612e8f565b8351908301906128b6818360208801612e8f565b01949350505050565b60008a516128d1818460208f01612e8f565b8a516128e38183860160208f01612e8f565b8a5191840101906128f8818360208e01612e8f565b895161290a8183850160208e01612e8f565b8951929091010190612920818360208c01612e8f565b87516129328183850160208c01612e8f565b8751929091010190612948818360208a01612e8f565b855161295a8183850160208a01612e8f565b8551929091010190612970818360208801612e8f565b019b9a5050505050505050505050565b6000835160206129938285838901612e8f565b600160fd1b9184019182528454600190849080831c818416806129b757607f821691505b8582108114156129d557634e487b7160e01b88526022600452602488fd5b8080156129e957600181146129fe57612a2e565b60ff1984168887015282880186019450612a2e565b60008b815260209020895b84811015612a245781548a8201890152908701908801612a09565b5050858389010194505b50929a9950505050505050505050565b601160f91b81528351600090612a5b816001850160208901612e8f565b600160fd1b6001918401918201528451612a7c816002840160208901612e8f565b61011160f51b600292909101918201528351612a9f816004840160208801612e8f565b0160040195945050505050565b601160f91b81528351600090612ac9816001850160208901612e8f565b600160fd1b6001918401918201528451612aea816002840160208901612e8f565b61011160f51b600292909101918201528351612b0d816004840160208801612e8f565b62202b3160e81b6004929091019182015260070195945050505050565b6e7b226e616d65223a2022426167202360881b81528251600090612b5581600f850160208801612e8f565b80830190507f222c20226465736372697074696f6e223a20224c6f6f742069732072616e646f600f8201527f6d697a656420616476656e747572657220676561722067656e65726174656420602f8201527f616e642073746f726564206f6e20636861696e2e2053746174732c20696d6167604f8201527f65732c20616e64206f746865722066756e6374696f6e616c6974792061726520606f8201527f696e74656e74696f6e616c6c79206f6d697474656420666f72206f7468657273608f8201527f20746f20696e746572707265742e204665656c206672656520746f207573652060af8201527f4c6f6f7420696e20616e792077617920796f752077616e742e222c2022696d6160cf8201527f6765223a2022646174613a696d6167652f7376672b786d6c3b6261736536342c60ef82015261010f8451612c9f8183850160208901612e8f565b612cb5828285010161227d60f01b815260020190565b979650505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251612cf881601d850160208701612e8f565b91909101601d0192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d3890830184612848565b9695505050505050565b60208152600061264c6020830184612848565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612e4057612e40612f25565b500190565b600082612e5457612e54612f3b565b500490565b6000816000190483118215151615612e7357612e73612f25565b500290565b600082821015612e8a57612e8a612f25565b500390565b60005b83811015612eaa578181015183820152602001612e92565b838111156110c95750506000910152565b600181811c90821680612ecf57607f821691505b60208210811415612ef057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612f0a57612f0a612f25565b5060010190565b600082612f2057612f20612f3b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146116e357600080fdfe3c2f746578743e3c7465787420783d2231302220793d2236302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223136302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223132302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d2238302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223130302220636c6173733d2262617365223e3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e62617365207b2066696c6c3a2077686974653b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20313470783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d22626c61636b22202f3e3c7465787420783d2231302220793d2232302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223134302220636c6173733d2262617365223e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c2f746578743e3c7465787420783d2231302220793d2234302220636c6173733d2262617365223ea2646970667358221220afd8a42edeeb6b78a1f2564f8301af9f1f72be2eedf980ee45200f6459d4c45064736f6c63430008040033

Deployed Bytecode Sourcemap

44500:9967:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38350:224;;;;;;:::i;:::-;;:::i;:::-;;;13176:14:1;;13169:22;13151:41;;13139:2;13124:18;38350:224:0;;;;;;;;25464:100;;;:::i;:::-;;;;;;;:::i;27023:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;12474:32:1;;;12456:51;;12444:2;12429:18;27023:221:0;12411:102:1;26546:411:0;;;;;;:::i;:::-;;:::i;:::-;;49706:129;;;;;;:::i;:::-;;:::i;38990:113::-;39078:10;:17;38990:113;;;21069:25:1;;;21057:2;21042:18;38990:113:0;21024:76:1;27913:339:0;;;;;;:::i;:::-;;:::i;38658:256::-;;;;;;:::i;:::-;;:::i;53307:172::-;;;;;;:::i;:::-;;:::i;28323:185::-;;;;;;:::i;:::-;;:::i;53491:::-;;;;;;:::i;:::-;;:::i;39180:233::-;;;;;;:::i;:::-;;:::i;25158:239::-;;;;;;:::i;:::-;;:::i;49988:129::-;;;;;;:::i;:::-;;:::i;24888:208::-;;;;;;:::i;:::-;;:::i;9856:94::-;;;:::i;9205:87::-;9278:6;;-1:-1:-1;;;;;9278:6:0;9205:87;;25633:104;;;:::i;49425:129::-;;;;;;:::i;:::-;;:::i;49566:132::-;;;;;;:::i;:::-;;:::i;49138:131::-;;;;;;:::i;:::-;;:::i;27316:295::-;;;;;;:::i;:::-;;:::i;28579:328::-;;;;;;:::i;:::-;;:::i;50129:125::-;;;;;;:::i;:::-;;:::i;51244:2055::-;;;;;;:::i;:::-;;:::i;49847:129::-;;;;;;:::i;:::-;;:::i;27682:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;27803:25:0;;;27779:4;27803:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27682:164;49281:132;;;;;;:::i;:::-;;:::i;10105:192::-;;;;;;:::i;:::-;;:::i;38350:224::-;38452:4;-1:-1:-1;;;;;;38476:50:0;;-1:-1:-1;;;38476:50:0;;:90;;;38530:36;38554:11;38530:23;:36::i;:::-;38469:97;38350:224;-1:-1:-1;;38350:224:0:o;25464:100::-;25518:13;25551:5;25544:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25464:100;:::o;27023:221::-;27099:7;30506:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30506:16:0;27119:73;;;;-1:-1:-1;;;27119:73:0;;18003:2:1;27119:73:0;;;17985:21:1;18042:2;18022:18;;;18015:30;18081:34;18061:18;;;18054:62;-1:-1:-1;;;18132:18:1;;;18125:42;18184:19;;27119:73:0;;;;;;;;;-1:-1:-1;27212:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27212:24:0;;27023:221::o;26546:411::-;26627:13;26643:23;26658:7;26643:14;:23::i;:::-;26627:39;;26691:5;-1:-1:-1;;;;;26685:11:0;:2;-1:-1:-1;;;;;26685:11:0;;;26677:57;;;;-1:-1:-1;;;26677:57:0;;19532:2:1;26677:57:0;;;19514:21:1;19571:2;19551:18;;;19544:30;19610:34;19590:18;;;19583:62;-1:-1:-1;;;19661:18:1;;;19654:31;19702:19;;26677:57:0;19504:223:1;26677:57:0;8145:10;-1:-1:-1;;;;;26769:21:0;;;;:62;;-1:-1:-1;26794:37:0;26811:5;8145:10;27682:164;:::i;26794:37::-;26747:168;;;;-1:-1:-1;;;26747:168:0;;16396:2:1;26747:168:0;;;16378:21:1;16435:2;16415:18;;;16408:30;16474:34;16454:18;;;16447:62;16545:26;16525:18;;;16518:54;16589:19;;26747:168:0;16368:246:1;26747:168:0;26928:21;26937:2;26941:7;26928:8;:21::i;:::-;26546:411;;;:::o;49706:129::-;49761:13;49794:33;49800:7;49794:33;;;;;;;;;;;;;-1:-1:-1;;;49794:33:0;;;49817:9;49794:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;:33::i;27913:339::-;28108:41;8145:10;28141:7;28108:18;:41::i;:::-;28100:103;;;;-1:-1:-1;;;28100:103:0;;;;;;;:::i;:::-;28216:28;28226:4;28232:2;28236:7;28216:9;:28::i;38658:256::-;38755:7;38791:23;38808:5;38791:16;:23::i;:::-;38783:5;:31;38775:87;;;;-1:-1:-1;;;38775:87:0;;13629:2:1;38775:87:0;;;13611:21:1;13668:2;13648:18;;;13641:30;13707:34;13687:18;;;13680:62;-1:-1:-1;;;13758:18:1;;;13751:41;13809:19;;38775:87:0;13601:233:1;38775:87:0;-1:-1:-1;;;;;;38880:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38658:256::o;53307:172::-;12144:1;12740:7;;:19;;12732:63;;;;-1:-1:-1;;;12732:63:0;;20765:2:1;12732:63:0;;;20747:21:1;20804:2;20784:18;;;20777:30;20843:33;20823:18;;;20816:61;20894:18;;12732:63:0;20737:181:1;12732:63:0;12144:1;12873:7;:18;53378:11;;;;;:29:::1;;;53403:4;53393:7;:14;53378:29;53370:58;;;::::0;-1:-1:-1;;;53370:58:0;;18777:2:1;53370:58:0::1;::::0;::::1;18759:21:1::0;18816:2;18796:18;;;18789:30;-1:-1:-1;;;18835:18:1;;;18828:46;18891:18;;53370:58:0::1;18749:166:1::0;53370:58:0::1;53439:32;8145:10:::0;53449:12:::1;53463:7;53439:9;:32::i;:::-;-1:-1:-1::0;12100:1:0;13052:7;:22;53307:172::o;28323:185::-;28461:39;28478:4;28484:2;28488:7;28461:39;;;;;;;;;;;;:16;:39::i;53491:185::-;12144:1;12740:7;;:19;;12732:63;;;;-1:-1:-1;;;12732:63:0;;20765:2:1;12732:63:0;;;20747:21:1;20804:2;20784:18;;;20777:30;20843:33;20823:18;;;20816:61;20894:18;;12732:63:0;20737:181:1;12732:63:0;12144:1;12873:7;:18;9278:6;;-1:-1:-1;;;;;9278:6:0;8145:10;9425:23:::1;9417:68;;;;-1:-1:-1::0;;;9417:68:0::1;;;;;;;:::i;:::-;53587:4:::2;53577:7;:14;:32;;;;;53605:4;53595:7;:14;53577:32;53569:61;;;::::0;-1:-1:-1;;;53569:61:0;;18777:2:1;53569:61:0::2;::::0;::::2;18759:21:1::0;18816:2;18796:18;;;18789:30;-1:-1:-1;;;18835:18:1;;;18828:46;18891:18;;53569:61:0::2;18749:166:1::0;53569:61:0::2;53641:27;53651:7;9278:6:::0;;-1:-1:-1;;;;;9278:6:0;;9205:87;39180:233;39255:7;39291:30;39078:10;:17;;38990:113;39291:30;39283:5;:38;39275:95;;;;-1:-1:-1;;;39275:95:0;;20352:2:1;39275:95:0;;;20334:21:1;20391:2;20371:18;;;20364:30;20430:34;20410:18;;;20403:62;-1:-1:-1;;;20481:18:1;;;20474:42;20533:19;;39275:95:0;20324:234:1;39275:95:0;39388:10;39399:5;39388:17;;;;;;-1:-1:-1;;;39388:17:0;;;;;;;;;;;;;;;;;39381:24;;39180:233;;;:::o;25158:239::-;25230:7;25266:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25266:16:0;25301:19;25293:73;;;;-1:-1:-1;;;25293:73:0;;17232:2:1;25293:73:0;;;17214:21:1;17271:2;17251:18;;;17244:30;17310:34;17290:18;;;17283:62;-1:-1:-1;;;17361:18:1;;;17354:39;17410:19;;25293:73:0;17204:231:1;49988:129:0;50043:13;50076:33;50082:7;50076:33;;;;;;;;;;;;;-1:-1:-1;;;50076:33:0;;;50099:9;50076:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24888:208;24960:7;-1:-1:-1;;;;;24988:19:0;;24980:74;;;;-1:-1:-1;;;24980:74:0;;16821:2:1;24980:74:0;;;16803:21:1;16860:2;16840:18;;;16833:30;16899:34;16879:18;;;16872:62;-1:-1:-1;;;16950:18:1;;;16943:40;17000:19;;24980:74:0;16793:232:1;24980:74:0;-1:-1:-1;;;;;;25072:16:0;;;;;:9;:16;;;;;;;24888:208::o;9856:94::-;9278:6;;-1:-1:-1;;;;;9278:6:0;8145:10;9425:23;9417:68;;;;-1:-1:-1;;;9417:68:0;;;;;;;:::i;:::-;9921:21:::1;9939:1;9921:9;:21::i;:::-;9856:94::o:0;25633:104::-;25689:13;25722:7;25715:14;;;;;:::i;49425:129::-;49480:13;49513:33;49519:7;49513:33;;;;;;;;;;;;;-1:-1:-1;;;49513:33:0;;;49536:9;49513:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49566:132;49622:13;49655:35;49661:7;49655:35;;;;;;;;;;;;;-1:-1:-1;;;49655:35:0;;;49679:10;49655:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49138:131;49195:13;49228:33;49234:7;49228:33;;;;;;;;;;;;;-1:-1:-1;;;49228:33:0;;;49253:7;49228:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27316:295;-1:-1:-1;;;;;27419:24:0;;8145:10;27419:24;;27411:62;;;;-1:-1:-1;;;27411:62:0;;15629:2:1;27411:62:0;;;15611:21:1;15668:2;15648:18;;;15641:30;15707:27;15687:18;;;15680:55;15752:18;;27411:62:0;15601:175:1;27411:62:0;8145:10;27486:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27486:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27486:53:0;;;;;;;;;;27555:48;;13151:41:1;;;27486:42:0;;8145:10;27555:48;;13124:18:1;27555:48:0;;;;;;;27316:295;;:::o;28579:328::-;28754:41;8145:10;28787:7;28754:18;:41::i;:::-;28746:103;;;;-1:-1:-1;;;28746:103:0;;;;;;;:::i;:::-;28860:39;28874:4;28880:2;28884:7;28893:5;28860:13;:39::i;:::-;28579:328;;;;:::o;50129:125::-;50184:13;50217:29;50223:7;50217:29;;;;;;;;;;;;;-1:-1:-1;;;50217:29:0;;;50240:5;50217:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51244:2055;51309:13;51335:23;;:::i;:::-;51369:266;;;;;;;;;;;;;;;;;;;51659:18;51669:7;51659:9;:18::i;:::-;51648:5;51654:1;51648:8;;;:29;;;;51690:53;;;;;;;;;;;;;;;;;:8;;;:53;51767:17;51776:7;51767:8;:17::i;:::-;51756:8;;;;:28;;;;51797:53;;;;;;;;;;;;;51756:8;51797:53;;;:8;;;:53;51874:16;51882:7;51874;:16::i;:::-;51863:8;;;:27;51903:53;;;;;;;;;;;;;;51863:8;51903:53;;;:8;;;:53;51980:17;51989:7;51980:8;:17::i;:::-;51969:8;;;:28;52010:54;;;;;;;;;;;;;;51969:8;52010:54;;;:8;;;:54;52088:16;52096:7;52088;:16::i;:::-;52077:8;;;:27;52117:55;;;;;;;;;;;;;;52077:8;52117:55;;;:9;;;:55;52197:16;52205:7;52197;:16::i;:::-;52185:9;;;:28;52226:55;;;;;;;;;;;;;;52185:9;52226:55;;;:9;;;:55;52306:16;52314:7;52306;:16::i;:::-;52294:9;;;:28;52335:55;;;;;;;;;;;;;;52294:9;52335:55;;;:9;;;:55;52415:16;52423:7;52415;:16::i;:::-;52403:9;;;:28;52444:27;;;;;;;;;;;-1:-1:-1;;;52403:9:0;52444:27;;;;;;;:9;;;:27;;;;52531:8;;52541;;;;52551;;;;52561;;;;52571;;;;52581;;;;52591;;;;52601;;;;52611;;;;52514:106;;-1:-1:-1;;52514:106:0;;52611:8;;52514:106;;:::i;:::-;;;;;;;-1:-1:-1;;52514:106:0;;;;;;;52673:8;;;;52683:9;;;;52694;;;;52705;;;;52716;;;;52727;;;;52738;;;;52749;;;;52514:106;;-1:-1:-1;52648:111:0;;52514:106;;52749:9;52673:8;52648:111;;:::i;:::-;;;;;;;;;;;;;52632:128;;52781:18;52802:380;52865:17;52874:7;52865:8;:17::i;:::-;53144:28;53164:6;53144:13;:28::i;:::-;52829:350;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52802:13;:380::i;:::-;52781:401;;53259:4;53209:55;;;;;;;;:::i;:::-;;;;-1:-1:-1;;53209:55:0;;;;;;;;;;51244:2055;-1:-1:-1;;;;;51244:2055:0:o;49847:129::-;49902:13;49935:33;49941:7;49935:33;;;;;;;;;;;;;-1:-1:-1;;;49935:33:0;;;49958:9;49935:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49281:132;49337:13;49370:35;49376:7;49370:35;;;;;;;;;;;;;-1:-1:-1;;;49370:35:0;;;49394:10;49370:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10105:192;9278:6;;-1:-1:-1;;;;;9278:6:0;8145:10;9425:23;9417:68;;;;-1:-1:-1;;;9417:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10194:22:0;::::1;10186:73;;;::::0;-1:-1:-1;;;10186:73:0;;14460:2:1;10186:73:0::1;::::0;::::1;14442:21:1::0;14499:2;14479:18;;;14472:30;14538:34;14518:18;;;14511:62;-1:-1:-1;;;14589:18:1;;;14582:36;14635:19;;10186:73:0::1;14432:228:1::0;10186:73:0::1;10270:19;10280:8;10270:9;:19::i;:::-;10105:192:::0;:::o;24519:305::-;24621:4;-1:-1:-1;;;;;;24658:40:0;;-1:-1:-1;;;24658:40:0;;:105;;-1:-1:-1;;;;;;;24715:48:0;;-1:-1:-1;;;24715:48:0;24658:105;:158;;;-1:-1:-1;;;;;;;;;;23235:40:0;;;24780:36;23126:157;34399:174;34474:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34474:29:0;-1:-1:-1;;;;;34474:29:0;;;;;;;;:24;;34528:23;34474:24;34528:14;:23::i;:::-;-1:-1:-1;;;;;34519:46:0;;;;;;;;;;;34399:174;;:::o;50266:970::-;50375:13;50401:12;50416:62;50447:9;50458:17;50467:7;50458:8;:17::i;:::-;50430:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50416:6;:62::i;:::-;50401:77;;50489:20;50512:11;50531;:18;50524:4;:25;;;;:::i;:::-;50512:38;;;;;;-1:-1:-1;;;50512:38:0;;;;;;;;;;;;;;;50489:61;;50561:17;50588:2;50581:4;:9;;;;:::i;:::-;50561:29;;50617:2;50605:9;:14;50601:127;;;50682:8;50698:15;;50669:6;;50682:8;50691:22;;:4;:22;:::i;:::-;50682:32;;;;;;-1:-1:-1;;;50682:32:0;;;;;;;;;;;;;;;;50652:63;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50636:80;;50601:127;50755:2;50742:9;:15;50738:467;;50774:21;;:::i;:::-;50820:12;50840:19;;50833:26;;:4;:26;:::i;:::-;50820:40;;;;;;-1:-1:-1;;;50820:40:0;;;;;;;;;;;;;;;;50810:50;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:4;50815:1;50810:7;;;;;-1:-1:-1;;;50810:7:0;;;;;;;;;;;;:50;50885:12;50905:19;;50898:26;;:4;:26;:::i;:::-;50885:40;;;;;;-1:-1:-1;;;50885:40:0;;;;;;;;;;;;;;;;50875:50;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:4;50880:1;50875:7;;;;;-1:-1:-1;;;50875:7:0;;;;;;;;;;;;:50;50957:2;50944:15;;50940:254;;;51018:7;;;51032;;;;50996:58;;;;51018:7;51047:6;;50996:58;;:::i;:::-;;;;;;;;;;;;;50980:75;;50940:254;;;51134:7;;;51148;;;;51112:65;;;;51134:7;51163:6;;51112:65;;:::i;:::-;;;;;;;;;;;;;51096:82;;50940:254;50738:467;;-1:-1:-1;51222:6:0;50266:970;-1:-1:-1;;;;;50266:970:0:o;30711:348::-;30804:4;30506:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30506:16:0;30821:73;;;;-1:-1:-1;;;30821:73:0;;15983:2:1;30821:73:0;;;15965:21:1;16022:2;16002:18;;;15995:30;16061:34;16041:18;;;16034:62;-1:-1:-1;;;16112:18:1;;;16105:42;16164:19;;30821:73:0;15955:234:1;30821:73:0;30905:13;30921:23;30936:7;30921:14;:23::i;:::-;30905:39;;30974:5;-1:-1:-1;;;;;30963:16:0;:7;-1:-1:-1;;;;;30963:16:0;;:51;;;;31007:7;-1:-1:-1;;;;;30983:31:0;:20;30995:7;30983:11;:20::i;:::-;-1:-1:-1;;;;;30983:31:0;;30963:51;:87;;;-1:-1:-1;;;;;;27803:25:0;;;27779:4;27803:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31018:32;30955:96;30711:348;-1:-1:-1;;;;30711:348:0:o;33703:578::-;33862:4;-1:-1:-1;;;;;33835:31:0;:23;33850:7;33835:14;:23::i;:::-;-1:-1:-1;;;;;33835:31:0;;33827:85;;;;-1:-1:-1;;;33827:85:0;;19122:2:1;33827:85:0;;;19104:21:1;19161:2;19141:18;;;19134:30;19200:34;19180:18;;;19173:62;-1:-1:-1;;;19251:18:1;;;19244:39;19300:19;;33827:85:0;19094:231:1;33827:85:0;-1:-1:-1;;;;;33931:16:0;;33923:65;;;;-1:-1:-1;;;33923:65:0;;15224:2:1;33923:65:0;;;15206:21:1;15263:2;15243:18;;;15236:30;15302:34;15282:18;;;15275:62;-1:-1:-1;;;15353:18:1;;;15346:34;15397:19;;33923:65:0;15196:226:1;33923:65:0;34001:39;34022:4;34028:2;34032:7;34001:20;:39::i;:::-;34105:29;34122:1;34126:7;34105:8;:29::i;:::-;-1:-1:-1;;;;;34147:15:0;;;;;;:9;:15;;;;;:20;;34166:1;;34147:15;:20;;34166:1;;34147:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34178:13:0;;;;;;:9;:13;;;;;:18;;34195:1;;34178:13;:18;;34195:1;;34178:18;:::i;:::-;;;;-1:-1:-1;;34207:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34207:21:0;-1:-1:-1;;;;;34207:21:0;;;;;;;;;34246:27;;34207:16;;34246:27;;;;;;;33703:578;;;:::o;31401:110::-;31477:26;31487:2;31491:7;31477:26;;;;;;;;;;;;:9;:26::i;:::-;31401:110;;:::o;10305:173::-;10380:6;;;-1:-1:-1;;;;;10397:17:0;;;-1:-1:-1;;;;;;10397:17:0;;;;;;;10430:40;;10380:6;;;10397:17;10380:6;;10430:40;;10361:16;;10430:40;10305:173;;:::o;29789:315::-;29946:28;29956:4;29962:2;29966:7;29946:9;:28::i;:::-;29993:48;30016:4;30022:2;30026:7;30035:5;29993:22;:48::i;:::-;29985:111;;;;-1:-1:-1;;;29985:111:0;;;;;;;:::i;53688:715::-;53744:13;53957:10;53953:53;;-1:-1:-1;;53984:10:0;;;;;;;;;;;;-1:-1:-1;;;53984:10:0;;;;;53688:715::o;53953:53::-;54031:5;54016:12;54072:78;54079:9;;54072:78;;54105:8;;;;:::i;:::-;;-1:-1:-1;54128:10:0;;-1:-1:-1;54136:2:0;54128:10;;:::i;:::-;;;54072:78;;;54160:19;54192:6;54182:17;;;;;;-1:-1:-1;;;54182:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54182:17:0;;54160:39;;54210:154;54217:10;;54210:154;;54244:11;54254:1;54244:11;;:::i;:::-;;-1:-1:-1;54313:10:0;54321:2;54313:5;:10;:::i;:::-;54300:24;;:2;:24;:::i;:::-;54287:39;;54270:6;54277;54270:14;;;;;;-1:-1:-1;;;54270:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;54270:56:0;;;;;;;;-1:-1:-1;54341:11:0;54350:2;54341:11;;:::i;:::-;;;54210:154;;54818:1607;54916:11;;54876:13;;54942:8;54938:23;;-1:-1:-1;;54952:9:0;;;;;;;;;-1:-1:-1;54952:9:0;;;54818:1607;-1:-1:-1;54818:1607:0:o;54938:23::-;55013:18;55051:1;55040:7;:3;55046:1;55040:7;:::i;:::-;55039:13;;;;:::i;:::-;55034:19;;:1;:19;:::i;:::-;55013:40;-1:-1:-1;55111:19:0;55143:15;55013:40;55156:2;55143:15;:::i;:::-;55133:26;;;;;;-1:-1:-1;;;55133:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55133:26:0;;55111:48;;55172:18;55193:5;;;;;;;;;;;;;;;;;55172:26;;55262:1;55255:5;55251:13;55307:2;55299:6;55295:15;55358:1;55326:777;55381:3;55378:1;55375:10;55326:777;;;55436:1;55479:12;;;;;55473:19;55574:4;55562:2;55558:14;;;;;55540:40;;55534:47;55683:2;55679:14;;;55675:25;;55661:40;;55655:47;55812:1;55808:13;;;55804:24;;55790:39;;55784:46;55932:16;;;;55918:31;;55912:38;55610:1;55606:11;;;55704:4;55651:58;;;55642:68;55735:11;;55780:57;;;55771:67;;;;55863:11;;55908:49;;55899:59;55987:3;55983:13;56016:22;;56086:1;56071:17;;;;55429:9;55326:777;;;55330:44;56135:1;56130:3;56126:11;56156:1;56151:84;;;;56254:1;56249:82;;;;56119:212;;56151:84;-1:-1:-1;;;;;56184:17:0;;56177:43;56151:84;;56249:82;-1:-1:-1;;;;;56282:17:0;;56275:41;56119:212;-1:-1:-1;;;56347:26:0;;;56354:6;54818:1607;-1:-1:-1;;;;54818:1607:0:o;48988:138::-;49048:7;49110:5;49093:23;;;;;;;;:::i;:::-;;;;-1:-1:-1;;49093:23:0;;;;;;;;;49083:34;;49093:23;49083:34;;;;;48988:138;-1:-1:-1;;48988:138:0:o;40026:589::-;-1:-1:-1;;;;;40232:18:0;;40228:187;;40267:40;40299:7;41442:10;:17;;41415:24;;;;:15;:24;;;;;:44;;;41470:24;;;;;;;;;;;;41338:164;40267:40;40228:187;;;40337:2;-1:-1:-1;;;;;40329:10:0;:4;-1:-1:-1;;;;;40329:10:0;;40325:90;;40356:47;40389:4;40395:7;40356:32;:47::i;:::-;-1:-1:-1;;;;;40429:16:0;;40425:183;;40462:45;40499:7;40462:36;:45::i;40425:183::-;40535:4;-1:-1:-1;;;;;40529:10:0;:2;-1:-1:-1;;;;;40529:10:0;;40525:83;;40556:40;40584:2;40588:7;40556:27;:40::i;31738:321::-;31868:18;31874:2;31878:7;31868:5;:18::i;:::-;31919:54;31950:1;31954:2;31958:7;31967:5;31919:22;:54::i;:::-;31897:154;;;;-1:-1:-1;;;31897:154:0;;;;;;;:::i;35138:803::-;35293:4;-1:-1:-1;;;;;35314:13:0;;15621:20;15669:8;35310:624;;35350:72;;-1:-1:-1;;;35350:72:0;;-1:-1:-1;;;;;35350:36:0;;;;;:72;;8145:10;;35401:4;;35407:7;;35416:5;;35350:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35350:72:0;;;;;;;;-1:-1:-1;;35350:72:0;;;;;;;;;;;;:::i;:::-;;;35346:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35596:13:0;;35592:272;;35639:60;;-1:-1:-1;;;35639:60:0;;;;;;;:::i;35592:272::-;35814:6;35808:13;35799:6;35795:2;35791:15;35784:38;35346:533;-1:-1:-1;;;;;;35473:55:0;-1:-1:-1;;;35473:55:0;;-1:-1:-1;35466:62:0;;35310:624;-1:-1:-1;35918:4:0;35138:803;;;;;;:::o;42129:988::-;42395:22;42445:1;42420:22;42437:4;42420:16;:22::i;:::-;:26;;;;:::i;:::-;42457:18;42478:26;;;:17;:26;;;;;;42395:51;;-1:-1:-1;42611:28:0;;;42607:328;;-1:-1:-1;;;;;42678:18:0;;42656:19;42678:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42729:30;;;;;;:44;;;42846:30;;:17;:30;;;;;:43;;;42607:328;-1:-1:-1;43031:26:0;;;;:17;:26;;;;;;;;43024:33;;;-1:-1:-1;;;;;43075:18:0;;;;;:12;:18;;;;;:34;;;;;;;43068:41;42129:988::o;43412:1079::-;43690:10;:17;43665:22;;43690:21;;43710:1;;43690:21;:::i;:::-;43722:18;43743:24;;;:15;:24;;;;;;44116:10;:26;;43665:46;;-1:-1:-1;43743:24:0;;43665:46;;44116:26;;;;-1:-1:-1;;;44116:26:0;;;;;;;;;;;;;;;;;44094:48;;44180:11;44155:10;44166;44155:22;;;;;;-1:-1:-1;;;44155:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;44260:28;;;:15;:28;;;;;;;:41;;;44432:24;;;;;44425:31;44467:10;:16;;;;;-1:-1:-1;;;44467:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;43412:1079;;;;:::o;40916:221::-;41001:14;41018:20;41035:2;41018:16;:20::i;:::-;-1:-1:-1;;;;;41049:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41094:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40916:221:0:o;32395:382::-;-1:-1:-1;;;;;32475:16:0;;32467:61;;;;-1:-1:-1;;;32467:61:0;;17642:2:1;32467:61:0;;;17624:21:1;;;17661:18;;;17654:30;17720:34;17700:18;;;17693:62;17772:18;;32467:61:0;17614:182:1;32467:61:0;30482:4;30506:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30506:16:0;:30;32539:58;;;;-1:-1:-1;;;32539:58:0;;14867:2:1;32539:58:0;;;14849:21:1;14906:2;14886:18;;;14879:30;14945;14925:18;;;14918:58;14993:18;;32539:58:0;14839:178:1;32539:58:0;32610:45;32639:1;32643:2;32647:7;32610:20;:45::i;:::-;-1:-1:-1;;;;;32668:13:0;;;;;;:9;:13;;;;;:18;;32685:1;;32668:13;:18;;32685:1;;32668:18;:::i;:::-;;;;-1:-1:-1;;32697:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32697:21:0;-1:-1:-1;;;;;32697:21:0;;;;;;;;32736:33;;32697:16;;;32736:33;;32697:16;;32736:33;32395: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:257::-;3600:3;3638:5;3632:12;3665:6;3660:3;3653:19;3681:63;3737:6;3730:4;3725:3;3721:14;3714:4;3707:5;3703:16;3681:63;:::i;:::-;3798:2;3777:15;-1:-1:-1;;3773:29:1;3764:39;;;;3805:4;3760:50;;3608:208;-1:-1:-1;;3608:208:1:o;3951:276::-;4082:3;4120:6;4114:13;4136:53;4182:6;4177:3;4170:4;4162:6;4158:17;4136:53;:::i;:::-;4205:16;;;;;4090:137;-1:-1:-1;;4090:137:1:o;4232:470::-;4411:3;4449:6;4443:13;4465:53;4511:6;4506:3;4499:4;4491:6;4487:17;4465:53;:::i;:::-;4581:13;;4540:16;;;;4603:57;4581:13;4540:16;4637:4;4625:17;;4603:57;:::i;:::-;4676:20;;4419:283;-1:-1:-1;;;;4419:283:1:o;4707:1767::-;5222:3;5260:6;5254:13;5276:53;5322:6;5317:3;5310:4;5302:6;5298:17;5276:53;:::i;:::-;5360:6;5354:13;5376:68;5435:8;5426:6;5421:3;5417:16;5410:4;5402:6;5398:17;5376:68;:::i;:::-;5522:13;;5470:16;;;5466:31;;5544:57;5522:13;5466:31;5578:4;5566:17;;5544:57;:::i;:::-;5632:6;5626:13;5648:72;5711:8;5700;5693:5;5689:20;5682:4;5674:6;5670:17;5648:72;:::i;:::-;5802:13;;5746:20;;;;5742:35;;5824:57;5802:13;5742:35;5858:4;5846:17;;5824:57;:::i;:::-;5912:6;5906:13;5928:72;5991:8;5980;5973:5;5969:20;5962:4;5954:6;5950:17;5928:72;:::i;:::-;6082:13;;6026:20;;;;6022:35;;6104:57;6082:13;6022:35;6138:4;6126:17;;6104:57;:::i;:::-;6192:6;6186:13;6208:72;6271:8;6260;6253:5;6249:20;6242:4;6234:6;6230:17;6208:72;:::i;:::-;6359:13;;6303:20;;;;6299:35;;6381:54;6359:13;6299:35;6415:4;6403:17;;6381:54;:::i;:::-;6451:17;;5230:1244;-1:-1:-1;;;;;;;;;;;5230:1244:1:o;6479:1503::-;6756:3;6794:6;6788:13;6820:4;6833:51;6877:6;6872:3;6867:2;6859:6;6855:15;6833:51;:::i;:::-;-1:-1:-1;;;6906:16:1;;;6931:18;;;7018:13;;6968:1;;6989:3;;7080:18;;;7133;;;;7160:2;;7238:4;7228:8;7224:19;7212:31;;7160:2;7301;7291:8;7288:16;7268:18;7265:40;7262:2;;;-1:-1:-1;;;7328:33:1;;7384:4;7381:1;7374:15;7414:4;7335:3;7402:17;7262:2;7445:18;7472:128;;;;7614:1;7609:348;;;;7438:519;;7472:128;-1:-1:-1;;7516:24:1;;7500:14;;;7493:48;7565:20;;;7561:29;;;-1:-1:-1;7472:128:1;;7609:348;21152:4;21171:17;;;21221:4;21205:21;;7704:3;7720:178;7734:8;7731:1;7728:15;7720:178;;;7825:14;;7805:13;;;7801:22;;7794:46;7868:16;;;;7751:10;;7720:178;;;7724:3;;7944:2;7933:8;7926:5;7922:20;7918:29;7911:36;;7438:519;-1:-1:-1;7973:3:1;;6764:1218;-1:-1:-1;;;;;;;;;;6764:1218:1:o;7987:1089::-;-1:-1:-1;;;8535:25:1;;8583:13;;8517:3;;8605:61;8583:13;8655:1;8646:11;;8639:4;8627:17;;8605:61;:::i;:::-;-1:-1:-1;;;8725:1:1;8685:16;;;8717:10;;;8710:23;8758:13;;8780:62;8758:13;8829:1;8821:10;;8814:4;8802:17;;8780:62;:::i;:::-;-1:-1:-1;;;8902:1:1;8861:17;;;;8894:10;;;8887:33;8945:13;;8967:62;8945:13;9016:1;9008:10;;9001:4;8989:17;;8967:62;:::i;:::-;9049:17;9068:1;9045:25;;8525:551;-1:-1:-1;;;;;8525:551:1:o;9081:1245::-;-1:-1:-1;;;9730:25:1;;9778:13;;9712:3;;9800:61;9778:13;9850:1;9841:11;;9834:4;9822:17;;9800:61;:::i;:::-;-1:-1:-1;;;9920:1:1;9880:16;;;9912:10;;;9905:23;9953:13;;9975:62;9953:13;10024:1;10016:10;;10009:4;9997:17;;9975:62;:::i;:::-;-1:-1:-1;;;10097:1:1;10056:17;;;;10089:10;;;10082:33;10140:13;;10162:62;10140:13;10211:1;10203:10;;10196:4;10184:17;;10162:62;:::i;:::-;-1:-1:-1;;;10284:1:1;10243:17;;;;10276:10;;;10269:25;10318:1;10310:10;;9720:606;-1:-1:-1;;;;;9720:606:1:o;10331:1521::-;-1:-1:-1;;;10831:55:1;;10909:13;;10813:3;;10931:62;10909:13;10981:2;10972:12;;10965:4;10953:17;;10931:62;:::i;:::-;11021:6;11016:3;11012:16;11002:26;;11057:66;11052:2;11048;11044:11;11037:87;11153:34;11148:2;11144;11140:11;11133:55;11217:34;11212:2;11208;11204:11;11197:55;11282:34;11276:3;11272:2;11268:12;11261:56;11347:34;11341:3;11337:2;11333:12;11326:56;11412:34;11406:3;11402:2;11398:12;11391:56;11477:66;11471:3;11467:2;11463:12;11456:88;11574:66;11568:3;11564:2;11560:12;11553:88;11660:3;11694:6;11688:13;11710:63;11764:8;11759:2;11755;11751:11;11744:4;11736:6;11732:17;11710:63;:::i;:::-;11789:57;11842:2;11831:8;11827:2;11823:17;11819:26;-1:-1:-1;;;3886:27:1;;3938:1;3929:11;;3876:70;11789:57;11782:64;10821:1031;-1:-1:-1;;;;;;;10821:1031:1:o;11857:448::-;12119:31;12114:3;12107:44;12089:3;12180:6;12174:13;12196:62;12251:6;12246:2;12241:3;12237:12;12230:4;12222:6;12218:17;12196:62;:::i;:::-;12278:16;;;;12296:2;12274:25;;12097:208;-1:-1:-1;;12097:208:1:o;12518:488::-;-1:-1:-1;;;;;12787:15:1;;;12769:34;;12839:15;;12834:2;12819:18;;12812:43;12886:2;12871:18;;12864:34;;;12934:3;12929:2;12914:18;;12907:31;;;12712:4;;12955:45;;12980:19;;12972:6;12955:45;:::i;:::-;12947:53;12721:285;-1:-1:-1;;;;;;12721:285:1:o;13203:219::-;13352:2;13341:9;13334:21;13315:4;13372:44;13412:2;13401:9;13397:18;13389:6;13372:44;:::i;13839:414::-;14041:2;14023:21;;;14080:2;14060:18;;;14053:30;14119:34;14114:2;14099:18;;14092:62;-1:-1:-1;;;14185:2:1;14170:18;;14163:48;14243:3;14228:19;;14013:240::o;18214:356::-;18416:2;18398:21;;;18435:18;;;18428:30;18494:34;18489:2;18474:18;;18467:62;18561:2;18546:18;;18388:182::o;19732:413::-;19934:2;19916:21;;;19973:2;19953:18;;;19946:30;20012:34;20007:2;19992:18;;19985:62;-1:-1:-1;;;20078:2:1;20063:18;;20056:47;20135:3;20120:19;;19906:239::o;21237:128::-;21277:3;21308:1;21304:6;21301:1;21298:13;21295:2;;;21314:18;;:::i;:::-;-1:-1:-1;21350:9:1;;21285:80::o;21370:120::-;21410:1;21436;21426:2;;21441:18;;:::i;:::-;-1:-1:-1;21475:9:1;;21416:74::o;21495:168::-;21535:7;21601:1;21597;21593:6;21589:14;21586:1;21583:21;21578:1;21571:9;21564:17;21560:45;21557:2;;;21608:18;;:::i;:::-;-1:-1:-1;21648:9:1;;21547:116::o;21668:125::-;21708:4;21736:1;21733;21730:8;21727:2;;;21741:18;;:::i;:::-;-1:-1:-1;21778:9:1;;21717:76::o;21798:258::-;21870:1;21880:113;21894:6;21891:1;21888:13;21880:113;;;21970:11;;;21964:18;21951:11;;;21944:39;21916:2;21909:10;21880:113;;;22011:6;22008:1;22005:13;22002:2;;;-1:-1:-1;;22046:1:1;22028:16;;22021:27;21851:205::o;22061:380::-;22140:1;22136:12;;;;22183;;;22204:2;;22258:4;22250:6;22246:17;22236:27;;22204:2;22311;22303:6;22300:14;22280:18;22277:38;22274:2;;;22357:10;22352:3;22348:20;22345:1;22338:31;22392:4;22389:1;22382:15;22420:4;22417:1;22410:15;22274:2;;22116:325;;;:::o;22446:135::-;22485:3;-1:-1:-1;;22506:17:1;;22503:2;;;22526:18;;:::i;:::-;-1:-1:-1;22573:1:1;22562:13;;22493:88::o;22586:112::-;22618:1;22644;22634:2;;22649:18;;:::i;:::-;-1:-1:-1;22683:9:1;;22624:74::o;22703:127::-;22764:10;22759:3;22755:20;22752:1;22745:31;22795:4;22792:1;22785:15;22819:4;22816:1;22809:15;22835:127;22896:10;22891:3;22887:20;22884:1;22877:31;22927:4;22924:1;22917:15;22951:4;22948:1;22941:15;22967:127;23028:10;23023:3;23019:20;23016:1;23009:31;23059:4;23056:1;23049:15;23083:4;23080:1;23073:15;23099:131;-1:-1:-1;;;;;;23173:32:1;;23163:43;;23153:2;;23220:1;23217;23210:12

Swarm Source

ipfs://afd8a42edeeb6b78a1f2564f8301af9f1f72be2eedf980ee45200f6459d4c450

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

Loot is randomized adventurer gear generated and stored on chain. Stats, images, and other functionality are intentionally omitted for others to interpret.

Validator Index Block Amount
View All Withdrawals

Txn Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.