ETH Price: $2,868.97 (-9.37%)
Gas: 13 Gwei

Contract

0x38Cd9992E44064Cb8bd68cDF17D164b82b25277c
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Claim199784312024-05-29 22:16:1136 days ago1717020971IN
TravelerLoot: TRVLR Token
0 ETH0.0018730410.0331102
Claim199226142024-05-22 3:00:4744 days ago1716346847IN
TravelerLoot: TRVLR Token
0 ETH0.0019459810.42385612
Claim199226022024-05-22 2:58:2344 days ago1716346703IN
TravelerLoot: TRVLR Token
0 ETH0.001861619.9719086
Claim199226002024-05-22 2:57:5944 days ago1716346679IN
TravelerLoot: TRVLR Token
0 ETH0.001838449.84779554
Claim199086322024-05-20 4:03:4746 days ago1716177827IN
TravelerLoot: TRVLR Token
0 ETH0.000955565.11854767
Claim199086062024-05-20 3:58:3546 days ago1716177515IN
TravelerLoot: TRVLR Token
0 ETH0.001003295.37422119
Claim199086042024-05-20 3:58:1146 days ago1716177491IN
TravelerLoot: TRVLR Token
0 ETH0.000959825.14137939
Claim199086002024-05-20 3:57:2346 days ago1716177443IN
TravelerLoot: TRVLR Token
0 ETH0.000994275.32593956
Claim199085972024-05-20 3:56:4746 days ago1716177407IN
TravelerLoot: TRVLR Token
0 ETH0.001013215.42738796
Claim198305212024-05-09 5:53:2357 days ago1715234003IN
TravelerLoot: TRVLR Token
0 ETH0.001255796.7267973
Claim198305182024-05-09 5:52:4757 days ago1715233967IN
TravelerLoot: TRVLR Token
0 ETH0.001266516.78418281
Claim198305162024-05-09 5:52:2357 days ago1715233943IN
TravelerLoot: TRVLR Token
0 ETH0.001299876.96291848
Claim198304792024-05-09 5:44:4757 days ago1715233487IN
TravelerLoot: TRVLR Token
0 ETH0.001244466.666075
Claim198304752024-05-09 5:43:5957 days ago1715233439IN
TravelerLoot: TRVLR Token
0 ETH0.001321377.07808746
Claim198304302024-05-09 5:34:3557 days ago1715232875IN
TravelerLoot: TRVLR Token
0 ETH0.001186636.35629097
Claim198304262024-05-09 5:33:4757 days ago1715232827IN
TravelerLoot: TRVLR Token
0 ETH0.001172246.27924513
Claim198304232024-05-09 5:33:1157 days ago1715232791IN
TravelerLoot: TRVLR Token
0 ETH0.001118075.98908502
Claim198304182024-05-09 5:32:1157 days ago1715232731IN
TravelerLoot: TRVLR Token
0 ETH0.001198766.42130305
Claim198304152024-05-09 5:31:3557 days ago1715232695IN
TravelerLoot: TRVLR Token
0 ETH0.001215196.50931937
Claim198304112024-05-09 5:30:4757 days ago1715232647IN
TravelerLoot: TRVLR Token
0 ETH0.001198176.41814652
Set Approval For...198299392024-05-09 3:55:2357 days ago1715226923IN
TravelerLoot: TRVLR Token
0 ETH0.000178013.8633198
Claim198292622024-05-09 1:38:4757 days ago1715218727IN
TravelerLoot: TRVLR Token
0 ETH0.001277086.94495714
Claim198255502024-05-08 13:09:5957 days ago1715173799IN
TravelerLoot: TRVLR Token
0 ETH0.000939155.1057967
Claim198231582024-05-08 5:08:1158 days ago1715144891IN
TravelerLoot: TRVLR Token
0 ETH0.000655433.56336114
Claim198230922024-05-08 4:54:4758 days ago1715144087IN
TravelerLoot: TRVLR Token
0 ETH0.000703893.82679954
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:
TravelerLoot

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-19
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;

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

/// @title A Loot-Derivative Project for the Travel Industry
/// @author jacmos3 - TripsCommunity
/// @notice Text-based NFTs thought for the Travel Industry appannage. Hotels, restaurants, hospitality etc can use them both in the real or metaverse worlds
contract TravelerLoot is ERC721Enumerable, ReentrancyGuard, Ownable {

    uint256 private constant DISCOUNT_EXPIRATION = 1790553599; //Sun 27 Sep 2026 21:59:59 UTC
    string private constant WHITE = "white";
    string private constant BLACK = "black";
    string private constant GOLD = "gold";
    string private constant PLATINUM = "#D5D6D8";
    string private constant GUILD = "GUILD";
    string private constant PATRON = "PATRON";
    string private constant CONQUEROR = "CONQUEROR";
    uint160 private constant INITIAL_PRICE_FOR_PATRONS = 1 ether;
    string private constant ERROR_TOKEN_ID_INVALID = "Token ID invalid";
    string private constant ERROR_ADDRESS_NOT_VERIFIED = "Address not verified. Try another";
    string private constant ERROR_NOT_THE_OWNER = "You do not own token(s) of the address";
    string private constant ERROR_DOM_40TH_BIRTHDAY = "Only valid till Dom's 40th bday";
    string private constant ERROR_LOW_VALUE = "Set a higher value";
    string private constant ERROR_COMPETITION_ENDED = "Competition has ended. Check the Conqueror!";
    string private constant ERROR_COMPETITION_ONGOING = "Conqueror not yet elected!";
    string private constant ERROR_OWNER_NOT_ALLOWED = "Use claimByOwner() instead";
    string private constant ERROR_ALREADY_ACTIVATED = "Already activated";
    string private constant ERROR_COME_BACK_LATER = "Come back later";
    string private constant ERROR_WITHDRAW_NEEDED = "Treasurer already changed. Perform a withdrawal before changing it";
    string private constant ERROR_GUILD_ALREADY_WHITELISTED = "Guild already whitelisted!";
    string private constant ERROR_CANNOT_ADD_THIS_CONTRACT = "Not possible";
    string private constant ERROR_NOT_ENTITLED = "Check conditions before whitelisting";

    address private constant INITIAL_TREASURER = 0xce73904422880604e78591fD6c758B0D5106dD50; //TripsCommunity address
    address private constant ADDRESS_OG_LOOT = 0xFF9C1b15B16263C61d017ee9F65C50e4AE0113D7;
    address private constant PH_USERS = address(1);
    address private constant PH_PATRONS = address(2);
    address private constant PH_OG_LOOT = address(3);
    address private constant PH_CONQUERORS = address(4);
    address private constant PH_OWNER = address(0);

    uint16 public constant MAX_ID = 10000;
    uint16 public constant MAX_FOR_OWNER = 100;
    uint16 public constant MAX_FOR_GUILDS = 900;
    uint16 public constant LOCK_TIME = 5760 * 3; //it's three days
    struct Traveler {
        string familyType;
        string familyName;
        string color;
        uint256 counter;
        bool verified;
    }

    struct Conqueror {
      address addr;
      uint16 count;
      bool elected;
    }

    struct Treasurer {
      address old;
      address current;
      uint256 blockNumber;
    }

    struct Initial{
        address addr;
        string symbol;
    }
    Conqueror public conqueror;
    Treasurer public treasurer;
    bool public canChangeTreasurer = true;
    mapping(address => Traveler) public detailsByAddress;
    mapping(uint256 => address) public addressList;
    uint8 public counterOwner = 0;
    uint16 public counterStandard = 0;
    uint16 public counterGuild = 0;
    uint16 public counterPatrons = 0;
    uint160 public priceForPatrons = INITIAL_PRICE_FOR_PATRONS;
    uint256 public blockActivation = 0;
    string[] private categories = ["ENVIRONMENT","TALENT","PLACE","CHARACTER","TRANSPORT","LANGUAGE","EXPERIENCE","OCCUPATION","ACCOMMODATION","BAG"];

    address[] public whiteListedGuilds;
    mapping(string => string[]) elements;



    constructor() ERC721("TravelerLoot", "TRVLR") Ownable(){
      uint256 blockNumber = block.number;
      treasurer.old = address(0);
      treasurer.current = INITIAL_TREASURER;
      treasurer.blockNumber = blockNumber;
      elements[categories[0]] = ["Beaches", "Mountains", "Urban", "Countrysides", "Lakes", "Rivers", "Farms", "Tropical areas", "Snowy places", "Forests", "Historical cities", "Islands", "Wilderness", "Deserts", "Natural parks", "Old towns", "Lakes", "Villages", "Forests", "Coral Reefs", "Wetlands", "Rainforests", "Grasslands", "Chaparral"];
      elements[categories[1]] = ["Cooking", "Painting", "Basketball", "Tennis", "Football", "Soccer", "Climbing", "Surfing", "Photographer", "Fishing", "Painting", "Writing", "Dancing", "Architecture", "Singing", "Dancing", "Baking", "Running", "Sword-fighting", "Boxing", "Jumping", "Climbing", "Hiking", "Kitesurfing", "Sailing", "Comforting others", "Flipping NFTs", "Katana sword fighter", "Programming Solidity", "Creating Memes"];
      elements[categories[2]] = ["Eiffel Tower", "Colosseum", "Taj Mahal", "Forbidden City", "Las Vegas", "Sagrada Familia", "Statue of Liberty", "Pompeii", "Tulum", "St. Peter's Basilica", "Bangkok", "Tower of London", "Alhambra", "San Marco Square", "Ciudad de las Artes y las Ciencias", "Moscow Kremlin", "Copacabana", "Great Wall of China", "Havana", "Arc de Triomphe", "Neuschwanstein Castle", "Machu Picchu", "Gili Islands", "Maya Bay", "Etherscan", "0x0000000000000000000000000000000000000000", "::1", "42.452483,-6.051345","Parcel 0, CityDAO", "Wyoming"];
      elements[categories[3]] = ["Energetic", "Good-Natured", "Enthusiastic", "Challenging", "Charismatic", "Wise", "Modest", "Honest", "Protective", "Perceptive", "Providential", "Prudent", "Spontaneous", "Insightful", "Intelligent", "Intuitive", "Precise", "Sharing", "Simple", "Sociable", "Sophisticated", "Benevolent", "Admirable", "Brilliant", "Accessible", "Calm", "Capable", "Optimistic", "Respectful", "Responsible"];
      elements[categories[4]] = ["Train", "Car", "Airplane", "Cruise", "4 wheel drive car", "Bus", "Convertible car", "Bicycle", "Motorbike", "Campervan", "Trailer", "Sailboat", "Electric car", "Sidecar", "Scooter", "Tram", "Cinquecento", "Hitch-hiking", "VW Beetle", "VW Bus", "Truck", "Off-road Vehicle", "Cab", "Lambo", "Ferrari", "Rocket", "DeLorean", "Kia Sedona", "Magic carpet", "Broomstick"];
      elements[categories[5]] = ["English", "Mandarin Chinese", "Hindi", "Spanish", "Arabic", "French", "Russian", "Portuguese", "Indonesian", "German", "Japanese", "Turkish", "Korean", "Vietnamese", "Iranian Persian", "Swahili", "Javanese", "Italian", "Thai", "Filipino", "Burmese", "Polish", "Croatian", "Danish", "Serbian", "Slovenian", "Czech", "Slovakian", "Greek", "Hungarian"];
      elements[categories[6]] = ["2", "3", "4", "5", "6", "7", "8", "9","10","100","0","1"];
      elements[categories[7]] = ["Host", "Cook", "Writer", "DeeJay", "Employee", "Doctor", "Traveler", "Tour Guide", "Ship Pilot", "DAO Member", "Driver", "NFT flipper", "Meme creator", "Sales Manager", "Play 2 Earner", "NFT collector", "Hotel receptionist", "Hotel Manager", "Digital Nomad", "Crypto Trader", "Head of Growth", "PoS validator", "Lightning Network Developer", "Anonymous DeFi Protocol Lead", "Yacht owner (in bull markets)", "Web3 Engineer", "Blockchain Consultant", "Crypto VC", "Miner","Metaverse Realtor"];
      elements[categories[8]] = ["Hotel", "Apartment", "Hostel", "Tent", "BnB", "Guest House", "Chalet", "Cottage", "Boat", "Caravan", "Motorhome", "5 stars Hotel", "Suite in 5 Stars Hotel", "Tipi", "Tree House", "Bungalow", "Ranch", "Co-living", "Gablefront cottage", "Longhouse", "Villa", "Yurt", "Housebarn", "Adobe House", "Castle", "Rammed earth", "Underground living", "Venetian palace", "Igloo", "Trullo"];
      elements[categories[9]] = ["Pen", "eBook reader", "Water", "Cigarettes", "Swiss knife", "Mobile phone", "Notebook", "Laptop", "Digital Camera", "Lighter", "Earphones", "Beauty case", "Toothbrush", "Toothpaste", "Slippers", "Shirts", "Pants", "T-shirts", "Socks", "Underwear","Condoms"];

      detailsByAddress[PH_USERS] = Traveler({color:BLACK,familyType:"",familyName:"",counter:0,verified:true});
      detailsByAddress[PH_PATRONS] = Traveler({color:"#F87151",familyType:PATRON,familyName:"",counter:0,verified:true});
      detailsByAddress[PH_OG_LOOT] = Traveler({color:GOLD,familyType:PATRON,familyName:"Loot (for Adventurers)",counter:0,verified:true});
      detailsByAddress[PH_CONQUERORS] = Traveler({color:WHITE,familyType:CONQUEROR,familyName:"",counter:0,verified:true});
      detailsByAddress[PH_OWNER] = Traveler({color:BLACK,familyType:" ",familyName:"",counter:0,verified:true});

      whiteListedGuilds.push(ADDRESS_OG_LOOT);
      detailsByAddress[ADDRESS_OG_LOOT] = Traveler({color:BLACK,familyType:PLATINUM,familyName:"LOOT",counter:0,verified:true});
    }

    modifier checkStart() {
      require(blockActivation > 0 && block.number >= blockActivation,ERROR_COME_BACK_LATER);
      _;
    }

    /// @notice                     Everyone can claim an available tokenId for free (+ gas)
    function claim() external nonReentrant checkStart {
        require(owner() != _msgSender(),ERROR_OWNER_NOT_ALLOWED);
        uint16 adjusted = 1 + counterStandard + MAX_FOR_GUILDS + MAX_FOR_OWNER;
        require(adjusted <= MAX_ID, ERROR_TOKEN_ID_INVALID);
        processing(adjusted,PH_USERS,1,false);
        _safeMint(_msgSender(), adjusted);
        counterStandard++;
    }

    /// @notice                     Guilds can use this function to mint a forged Traveler Loot.
    ///                             Forged TLs are recognizable by a colored line on the NFT.
    ///                             When all the forgeable TLs are minted, the guild who forged
    ///                             the most becomes Conqueror. Its members gain access to
    ///                             claimByConquerors() function
    /// @param                      tokenId         derivative's tokenId owned by the user
    /// @param                      contractAddress derivative's address pretending to be guild
    function claimByGuilds(uint256 tokenId, address contractAddress) external nonReentrant checkStart{
        require(!conqueror.elected, ERROR_COMPETITION_ENDED);
        Traveler storage details = detailsByAddress[contractAddress];
        require(details.verified, ERROR_ADDRESS_NOT_VERIFIED);
        IERC721 looter = IERC721(contractAddress);
        require(tokenId > 0 && looter.ownerOf(tokenId) == _msgSender(), ERROR_NOT_THE_OWNER);
        if (details.counter == 0 && contractAddress != whiteListedGuilds[0]){
            details.color = pickAColor();
        }
        uint16 discretId = uint16(tokenId % MAX_FOR_GUILDS);

        if (counterGuild == MAX_FOR_GUILDS - 1 ){
            (conqueror.addr, conqueror.count) = whoIsWinning();
            conqueror.elected = true;
            detailsByAddress[PH_CONQUERORS].color = details.color;
            detailsByAddress[PH_CONQUERORS].familyName = details.familyName;
        }
        // after this mint, the price for patrons will be increased by 1%
        uint16 finalId = discretId == 0 ? MAX_FOR_GUILDS : discretId;
        processing(finalId, contractAddress, 1, true);
        _safeMint(_msgSender(), finalId);
        counterGuild++;
    }

    /// @notice                     Becoming a Patron. Requires payment
    function claimByPatrons() external payable nonReentrant checkStart{
      require(msg.value >= priceForPatrons, ERROR_LOW_VALUE);
      if (priceForPatrons < INITIAL_PRICE_FOR_PATRONS){
        priceForPatrons == INITIAL_PRICE_FOR_PATRONS;
      }
      // After this mint, the price for next patrons will be increased by 5%
      reservedMinting(PH_PATRONS, 5, true);
      counterPatrons++;
    }

    /// @notice                     - Loot (for Adventurers) holders can become Patrons for free if:
    ///                             . the Conqueror Guild is not yet elected,
    ///                             . or Dominik Hoffman (@ dhof on twitter) is still younger than 40 y/o.
    function claimByOGLooters() external nonReentrant checkStart{
      require(IERC721(whiteListedGuilds[0]).balanceOf(_msgSender()) > 0, ERROR_NOT_THE_OWNER);
      require(!conqueror.elected, ERROR_COMPETITION_ENDED);
      require(block.timestamp <= DISCOUNT_EXPIRATION, ERROR_DOM_40TH_BIRTHDAY);

      // After this mint, the price for patrons will be decreased by 5%
      reservedMinting(PH_OG_LOOT, 5, false);
      counterPatrons++;
    }

    /// @notice                     Conquerors can mint a CONQUEROR Traveler Loot for free + gas
    ///                             only valid if they have not already minted a PATRON type before
    function claimByConquerors() external nonReentrant checkStart{
        require(conqueror.elected, ERROR_COMPETITION_ONGOING);
        require(IERC721(conqueror.addr).balanceOf(_msgSender()) > 0, ERROR_NOT_THE_OWNER);
        // After this mint, the price for patrons is increased by 2%
        reservedMinting(PH_CONQUERORS, 2, true);
        counterPatrons++;
    }

    /// @notice                     Owner can claim its reserved tokenIds.
    function claimByOwner() external nonReentrant onlyOwner checkStart{
        uint16 adjusted = 1 + counterOwner + MAX_FOR_GUILDS;
        require(adjusted <= MAX_FOR_GUILDS + MAX_FOR_OWNER, ERROR_TOKEN_ID_INVALID);
        //after this mint, the price for patrons will remain the same
        processing(adjusted,PH_OWNER,0,true);
        _safeMint(_msgSender(), adjusted);
        counterOwner++;
    }

    /// @notice                     Owner can call this function to activate the mintings.
    ///                             Note that the activation is delayed of LOCK_TIME blocks
    function activateClaims() external onlyOwner{
      require (blockActivation == 0, ERROR_ALREADY_ACTIVATED);
      blockActivation = block.number + LOCK_TIME;
    }

    /// @notice                     Owner can order the withdraw all the funds coming from Patron mints
    ///                             to the Treasurer address previously set.
    function withdraw() external onlyOwner {
      require(block.number >= treasurer.blockNumber, ERROR_COME_BACK_LATER);
      canChangeTreasurer = true; //release treasurer
      payable(treasurer.current).transfer(address(this).balance);
    }


    /// @notice                     . Owner calls this function with lockTreasurer = true if the intent is
    ///                             to do a donation to a public-good project. Lock guarantees that nobody
    ///                             (not even the owner) can change treasurer till the donation is made.
    ///                             . Owner calls this function with lockTreasurer = false if the intent is
    ///                             to keep open the chance to change the treasurer even if no any
    ///                             withdrawal has been performed in the meanwhile.
    /// @param      newAddress      the new treasurer address
    /// @param      lockTreasurer   true if the the treasurer has to be locked till one withdraw is performed
    function setTreasurer(address newAddress, bool lockTreasurer) external onlyOwner{
      require(canChangeTreasurer, ERROR_WITHDRAW_NEEDED); //this is a safety measure for when donating to public goods
      if (lockTreasurer){
        canChangeTreasurer = false;
      }
      uint256 blockNumber = block.number + LOCK_TIME;
      treasurer.old = treasurer.current;
      treasurer.current = newAddress;
      treasurer.blockNumber = blockNumber;
    }

    /// @notice                     You can register new Guilds to the whitelist, if:
    ///                             - You own at least 50 Traveler Loots in your address
    ///                             - Or if you have mint a Patron version by using claimByPatrons() or
    ///                             claimByOGLooters() functions (no matter if you dont own them anymore)
    ///                             - Or if you are the owner of this Contract
    ///                             NOTE: no Guilds can be registered once the competition has ended
    /// @param      addresses       List of contract addresses to be whitelisted for the game.
    ///                             They'll be allowed to mint GUILD type Traveler Loot
    function addNewGuildToWhiteList(address[] calldata addresses) nonReentrant external {
        require(!conqueror.elected, ERROR_COMPETITION_ENDED);
        for (uint8 j = 0; j< addresses.length; j++){
            address addr = addresses[j];
            require(address(this) != addr, ERROR_CANNOT_ADD_THIS_CONTRACT);
            require(IERC721(address(this)).balanceOf(_msgSender()) > 50
                        || _exists(uint160(_msgSender()))
                        || owner() == _msgSender()
                    ,ERROR_NOT_ENTITLED);
            for (uint16 i = 0; i < whiteListedGuilds.length; i++){
                require(whiteListedGuilds[i] != addr, ERROR_GUILD_ALREADY_WHITELISTED);
            }
            whiteListedGuilds.push(addr);
            detailsByAddress[addr] = Traveler({color:BLACK,familyType:GUILD,familyName:familyName(addr),counter:0,verified:true});
        }
    }

    /// @notice                     Given a Guild address, returns the count for that addr
    /// @param      addr            Address of the Guild to be checked (the contract address)
    /// @return                     Number of the NFT minted from the members of the given Guild address
    function getCounterForAddress(address addr) external view returns (uint256){
        Traveler memory details = detailsByAddress[addr];
        require(details.verified, ERROR_ADDRESS_NOT_VERIFIED);
        return details.counter;
    }

    /// @notice                     Call this function if you want to know the list of the current Guilds
    /// return                      Array containing the addresses of all the whitelisted guilds
    function getWhiteListedGuilds() external view returns (address[] memory){
        return whiteListedGuilds;
    }

    /// @notice                     Call this function to see the element for a given tokenId and categoryId
    /// @param      tokenId         The id of the Traveler Loot you want to check
    /// @param      categoryId      The category of the Traveler Loot you want to check
    /// @return                     The element of the given Token Id for the given categoryId
    function getElement(uint256 tokenId, uint8 categoryId) public view returns (string memory){
      return pluck(tokenId, categories[categoryId], elements[categories[categoryId]]);
    }

    /// @notice                     Provides metadata and image of the PATRONS and CONQUEROR
    /// @param      addr            Address of the user who minted the PATRON or CONQUEROR you are checking
    /// @return                     The json containing the NFT info
    function addressURI(address addr) external view returns (string memory){
        return tokenURI(uint160(addr));
    }

    /// @notice                     Provides metadata and image of the Traveler Loot
    /// @param      tokenId         Token if of the Traveler Loot to process
    /// @return                     The json containing the NFT info
    function tokenURI(uint256 tokenId) override public view returns (string memory) {
        Traveler memory details = detailsByAddress[addressList[tokenId]];
        string[4] memory parts;
        parts[0] = string(abi.encodePacked('<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin meet" viewBox="0 0 350 350"><style>.b { fill:white; font-family: serif; font-size: 14px; }</style> <rect width="100%" height="100%" fill="black" /><text x="10" y="20" class="b">'));
        parts[1] = string(abi.encodePacked(getElement(tokenId,0),'</text><text x="10" y="40" class="b">',getElement(tokenId,1),'</text><text x="10" y="60" class="b">',getElement(tokenId,2),'</text><text x="10" y="80" class="b">',getElement(tokenId,3),'</text><text x="10" y="100" class="b">',getElement(tokenId,4),'</text><text x="10" y="120" class="b">',getElement(tokenId,5)));
        parts[2] = string(abi.encodePacked('</text><text x="10" y="140" class="b">',getElement(tokenId,6),'</text><text x="10" y="160" class="b">',getElement(tokenId,7),'</text><text x="10" y="180" class="b">',getElement(tokenId,8),'</text><text x="10" y="200" class="b">',getElement(tokenId,9),'</text>'));
        parts[3] = string(abi.encodePacked('<line x1="0" x2="350" y1="300" y2="300" stroke="',details.color,'" stroke-width="4"/>','<text x="340" y="294" text-anchor="end" class="b">',details.familyType,'</text></svg>'));

        string memory compact = string(abi.encodePacked(parts[0], parts[1], parts[2],parts[3]));
        string memory json = Base64.encode(bytes(string(abi.encodePacked('{"name": "Traveler #', toString(tokenId), '", "description": "Traveler Loot is a Loot derivative for the Travel Industry, generated and stored on chain. Feel free to use the Traveler Loot in any way you want", "image": "data:image/svg+xml;base64,', Base64.encode(bytes(compact)), '","attributes":[',metadata(tokenId,details),']}'))));

        return string(abi.encodePacked('data:application/json;base64,', json));
    }

    /// @notice                     Call this method to check the Guild which is owning the most Forged Traveler Loot
    ///
    /// @return                     The address of the guild who has the most Forged Traveler Loot so far
    /// @return                     The amount of Forged Traveler Loot minted by the Winning Guild so far
    function whoIsWinning() public view returns (address, uint16){
      if (conqueror.elected){
        return (conqueror.addr,conqueror.count);
      }
      address winningLoot = whiteListedGuilds[0];
      uint16 winningCount = uint16(detailsByAddress[winningLoot].counter);

      for (uint8 i = 1; i < whiteListedGuilds.length; i++){
        address addr = whiteListedGuilds[i];
        (winningLoot, winningCount) = checkWinning(winningLoot,winningCount, addr, uint16(detailsByAddress[addr].counter));
      }
      return (winningLoot, winningCount);
    }

    /// @notice                     Call this function to get a random color using block difficulty, timestamp as seed
    /// @return                     A string containing the HEX number of a random color
    function pickAColor() internal view returns (string memory){
        string[16] memory list = ["0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f"];
        string memory color = "#";
        for (uint8 i=0; i<6;i++){
          uint rand = uint(keccak256(abi.encodePacked(block.difficulty, block.timestamp, i )));
          color = string(abi.encodePacked(color,list[rand % list.length]));
        }
        return color;
    }

    /// @notice                     This function calls an external NFT contract and gets the symbol to be used into the metadata
    /// @param      addr            The address of the contract address to whitelist
    /// @return                     The symbol of the given external contract address
    function familyName(address addr) internal view returns (string memory){
      return IERC721Metadata(addr).symbol();
    }

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

    /// @notice                     Update the PATRON price and the address counter
    /// @param      id              TokenId minted
    /// @param      addr            address Guild of the token to mint
    /// @param      percentage      percentage number of the PATRON'price variability
    /// @param      isPositive      true if the variability is positive, false if it's negative
    function processing(uint256 id, address addr, uint8 percentage, bool isPositive) internal{
      if (percentage != 0){
        uint160 x = priceForPatrons / (100 / percentage);
        priceForPatrons = isPositive ? priceForPatrons + x : priceForPatrons - x;
      }
      detailsByAddress[addr].counter++;
      addressList[id] = addr;
    }

    /// @notice                     It mints the Traveler Loot using the address as tokenId.
    ///                             Only particular cases can access to this:
    ///                             - Users who decide to become Patrons by paying the patronPrice
    ///                             - Conqueror Guild members, as the prize for have won the competition
    ///                             - OG Loot owners, as privilegiate users till @ dhof 40 bday or till Conqueror Guild election
    /// @param      addr            address Guild of the token to mint
    /// @param      percentage      percentage number of the PATRON'price variability
    /// @param      isPositive      true if the variability is positive, false if it's negative
    function reservedMinting(address addr,uint8 percentage, bool isPositive) internal{
      uint160 castedAddress = uint160(_msgSender());
      require(castedAddress > MAX_ID, ERROR_ADDRESS_NOT_VERIFIED);
      processing(castedAddress, addr, percentage, isPositive);
      _safeMint(_msgSender(), castedAddress);
    }

    /// @notice                     Call this function to get pick the element for a given Traveler Loot id and category
    /// @param      tokenId         TokenId
    /// @param      keyPrefix       Seed/nounce of the randomity
    /// @param      sourceArray     The list of all the elements
    /// @return                     The element extracted
    function pluck(uint256 tokenId, string memory keyPrefix, string[] memory sourceArray) internal view returns (string memory) {
        uint256 rand = random(string(abi.encodePacked(keyPrefix, toString(tokenId))));
        uint8 toHoundred = uint8(rand % 100);
        uint8 delta = toHoundred > 95 ? 1 : toHoundred > 80 ? 2 : 3;
        uint8 len = uint8(sourceArray.length);
        uint8 x = len / 3;
        uint8 min = len - (delta * x);
        uint8 max = (len - 1) - ((delta - 1) * x);
        uint8 rand2 = uint8((random(string(abi.encodePacked(msg.sender, toHoundred, keyPrefix ))) % (max - min + 1)) + min);
        return sourceArray[rand2];
    }

    /// @dev                     This function processes and build the metadata for the given tokenId
    /// @param      tokenId         TokenId
    /// @param      details         The details to be used for filling the metadata
    /// @return                     The json with the metadata to be appended to the full json
    function metadata(uint256 tokenId, Traveler memory details) internal view returns (string memory){
     string memory toRet = "";
     for (uint8 i = 0; i < 10; i++){
        toRet = string(abi.encodePacked(toRet,'{"trait_type":"', categories[i], '","value":"',getElement(tokenId,i),'"},'));
     }
     if (keccak256(abi.encodePacked(details.color)) != keccak256(abi.encodePacked(BLACK))) {
      toRet = string(abi.encodePacked(toRet,'{"trait_type":"Type","value":"',details.familyType,'"}'));
      toRet = string(abi.encodePacked(toRet,',{"trait_type":"Flag Color","value":"',details.color,'"}'));
      toRet = string(abi.encodePacked(toRet,',{"trait_type":"',details.familyType,'","value":"',details.familyName,'"}'));
     }
     else{
        toRet = string(abi.encodePacked(toRet,'{"trait_type":"Type","value":"EXPLORER"}'));
     }

     return toRet;
   }

    /// @dev                     This function compares two Guilds and check which has more Froged Guild already minted
    /// @param      winningAddress  The legacy winning address (so far)
    /// @param      winningCount    The amount for the legacy winning address (so far)
    /// @param      newAddress      The new address to compare with legacy
    /// @param      newCount        The new amount to compare with legacy
    /// @return                     The new winning address after comparison
    /// @return                     The new minted amount of winning address after comparison
    function checkWinning(address winningAddress, uint16 winningCount, address newAddress, uint16 newCount) internal pure returns(address,uint16){
        return newCount > winningCount ? (newAddress, newCount) : (winningAddress, winningCount);
    }

    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);
    }
}


/// [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":[],"name":"LOCK_TIME","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FOR_GUILDS","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FOR_OWNER","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ID","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activateClaims","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addNewGuildToWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"addressList","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"addressURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blockActivation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"canChangeTreasurer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimByConquerors","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"contractAddress","type":"address"}],"name":"claimByGuilds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimByOGLooters","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimByOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimByPatrons","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"conqueror","outputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint16","name":"count","type":"uint16"},{"internalType":"bool","name":"elected","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"counterGuild","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"counterOwner","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"counterPatrons","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"counterStandard","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"detailsByAddress","outputs":[{"internalType":"string","name":"familyType","type":"string"},{"internalType":"string","name":"familyName","type":"string"},{"internalType":"string","name":"color","type":"string"},{"internalType":"uint256","name":"counter","type":"uint256"},{"internalType":"bool","name":"verified","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"getCounterForAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint8","name":"categoryId","type":"uint8"}],"name":"getElement","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWhiteListedGuilds","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceForPatrons","outputs":[{"internalType":"uint160","name":"","type":"uint160"}],"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":"address","name":"newAddress","type":"address"},{"internalType":"bool","name":"lockTreasurer","type":"bool"}],"name":"setTreasurer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasurer","outputs":[{"internalType":"address","name":"old","type":"address"},{"internalType":"address","name":"current","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whiteListedGuilds","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whoIsWinning","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6010805460ff19166001179055601380546e0de0b6b3a7640000000000000000006001600160d81b03199091161790556000601455600b6101c09081526a115395925493d39351539560aa1b6101e052608090815260066102009081526515105311539560d21b6102205260a052600561024090815264504c41434560d81b6102605260c05260096102808181526821a420a920a1aa22a960b91b6102a05260e0526102c0908152681514905394d413d49560ba1b6102e052610100526008610300908152674c414e475541474560c01b6103205261012052600a61034081815269455850455249454e434560b01b61036052610140526103808181526927a1a1aaa820aa24a7a760b11b6103a05261016052600d6103c09081526c20a1a1a7a6a6a7a220aa24a7a760991b6103e0526101805261044060405260036104009081526242414760e81b610420526101a0526200015e9160159162003207565b503480156200016c57600080fd5b50604080518082018252600c81526b151c985d995b195c931bdbdd60a21b6020808301918252835180850190945260058452642a292b262960d91b908401528151919291620001be916000916200326b565b508051620001d49060019060208401906200326b565b50506001600a5550620001e733620031b5565b600d80546001600160a01b03199081168255600e805490911673ce73904422880604e78591fd6c758b0d5106dd5017815543600f819055604080516103408101825260076103008201818152664265616368657360c81b6103208401528252825180840184526009808252684d6f756e7461696e7360b81b60208381019190915280850192909252845180860186526005808252642ab93130b760d91b828501528587019190915285518087018752600c8082526b436f756e747279736964657360a01b82860152606087019190915286518088018852828152644c616b657360d81b818601819052608088019190915287518089018952600681526552697665727360d01b8187015260a088015287518089018952838152644661726d7360d81b8187015260c088015287518089018952998a526d54726f706963616c20617265617360901b8a86015260e0870199909952865180880188529081526b536e6f777920706c6163657360a01b818501526101008601528551808701875284815266466f726573747360c81b818501819052610120870191909152865180880188526011815270486973746f726963616c2063697469657360781b81860152610140870152865180880188528581526649736c616e647360c81b8186015261016087015286518088018852600a8082526957696c6465726e65737360b01b8287015261018088019190915287518089018952868152664465736572747360c81b818701526101a0880152875180890189529a8b526c4e61747572616c207061726b7360981b8b8601526101c087019a909a5286518088018852838152684f6c6420746f776e7360b81b818601526101e087015286518088018852918252818401989098526102008501528451808601865260088082526756696c6c6167657360c01b82850152610220860191909152855180870187529384528383019790975261024084019290925283518085018552600b8082526a436f72616c20526565667360a81b8284015261026085019190915284518086018652968752675765746c616e647360c01b87830152610280840196909652835180850185529586526a5261696e666f726573747360a81b868201526102a0830195909552825180840184529586526947726173736c616e647360b01b868601526102c082019590955281518083019092529381526810da185c185c9c985b60ba1b928101929092526102e083019190915260158054919291601791906000906200058b576200058b62003599565b90600052602060002001604051620005a49190620034b8565b908152604051908190036020019020620005c0916018620032f6565b50604051806103c0016040528060405180604001604052806007815260200166436f6f6b696e6760c81b8152508152602001604051806040016040528060088152602001675061696e74696e6760c01b81525081526020016040518060400160405280600a81526020016910985cdad95d18985b1b60b21b81525081526020016040518060400160405280600681526020016554656e6e697360d01b815250815260200160405180604001604052806008815260200167119bdbdd18985b1b60c21b81525081526020016040518060400160405280600681526020016529b7b1b1b2b960d11b815250815260200160405180604001604052806008815260200167436c696d62696e6760c01b81525081526020016040518060400160405280600781526020016653757266696e6760c81b81525081526020016040518060400160405280600c81526020016b283437ba37b3b930b83432b960a11b81525081526020016040518060400160405280600781526020016646697368696e6760c81b8152508152602001604051806040016040528060088152602001675061696e74696e6760c01b81525081526020016040518060400160405280600781526020016657726974696e6760c81b81525081526020016040518060400160405280600781526020016644616e63696e6760c81b81525081526020016040518060400160405280600c81526020016b41726368697465637475726560a01b81525081526020016040518060400160405280600781526020016653696e67696e6760c81b81525081526020016040518060400160405280600781526020016644616e63696e6760c81b81525081526020016040518060400160405280600681526020016542616b696e6760d01b81525081526020016040518060400160405280600781526020016652756e6e696e6760c81b81525081526020016040518060400160405280600e81526020016d53776f72642d6669676874696e6760901b815250815260200160405180604001604052806006815260200165426f78696e6760d01b8152508152602001604051806040016040528060078152602001664a756d70696e6760c81b815250815260200160405180604001604052806008815260200167436c696d62696e6760c01b81525081526020016040518060400160405280600681526020016548696b696e6760d01b81525081526020016040518060400160405280600b81526020016a4b69746573757266696e6760a81b8152508152602001604051806040016040528060078152602001665361696c696e6760c81b815250815260200160405180604001604052806011815260200170436f6d666f7274696e67206f746865727360781b81525081526020016040518060400160405280600d81526020016c466c697070696e67204e46547360981b81525081526020016040518060400160405280601481526020017f4b6174616e612073776f7264206669676874657200000000000000000000000081525081526020016040518060400160405280601481526020017f50726f6772616d6d696e6720536f6c696469747900000000000000000000000081525081526020016040518060400160405280600e81526020016d4372656174696e67204d656d657360901b8152508152506017601560018154811062000a955762000a9562003599565b9060005260206000200160405162000aae9190620034b8565b90815260405190819003602001902062000aca91601e62003348565b506040805161040081018252600c6103c082019081526b22b4b33332b6102a37bbb2b960a11b6103e0830152815281518083018352600980825268436f6c6f737365756d60b81b60208381019190915280840192909252835180850185528181526815185a8813585a185b60ba1b818401528385015283518085018552600e81526d466f7262696464656e204369747960901b8184015260608085019190915284518086018652918252684c617320566567617360b81b82840152608084019190915283518085018552600f8082526e536167726164612046616d696c696160881b8285015260a0850191909152845180860186526011815270537461747565206f66204c69626572747960781b8185015260c085015284518086018652600780825266506f6d7065696960c81b8286015260e086019190915285518087018752600581526454756c756d60d81b8186015261010086015285518087018752601481527f53742e205065746572277320426173696c69636100000000000000000000000081860152610120860152855180870187529081526642616e676b6f6b60c81b81850152610140850152845180860186529081526e2a37bbb2b91037b3102637b73237b760891b81840152610160840152835180850185526008815267416c68616d62726160c01b8184015261018084015283518085018552601081526f53616e204d6172636f2053717561726560801b818401526101a08401528351908101909352602280845291926101c0840192909162008c589083013981526020016040518060400160405280600e81526020016d26b7b9b1b7bb9025b932b6b634b760911b81525081526020016040518060400160405280600a815260200169436f7061636162616e6160b01b81525081526020016040518060400160405280601381526020017f47726561742057616c6c206f66204368696e6100000000000000000000000000815250815260200160405180604001604052806006815260200165486176616e6160d01b81525081526020016040518060400160405280600f81526020016e417263206465205472696f6d70686560881b81525081526020016040518060400160405280601581526020017f4e657573636877616e737465696e20436173746c65000000000000000000000081525081526020016040518060400160405280600c81526020016b4d616368752050696363687560a01b81525081526020016040518060400160405280600c81526020016b47696c692049736c616e647360a01b8152508152602001604051806040016040528060088152602001674d6179612042617960c01b81525081526020016040518060400160405280600981526020016822ba3432b939b1b0b760b91b81525081526020016040518060600160405280602a815260200162008c2e602a91398152602001604051806040016040528060038152602001623a3a3160e81b81525081526020016040518060400160405280601381526020017f34322e3435323438332c2d362e3035313334350000000000000000000000000081525081526020016040518060400160405280601181526020017050617263656c20302c204369747944414f60781b81525081526020016040518060400160405280600781526020016657796f6d696e6760c81b8152508152506017601560028154811062000fae5762000fae62003599565b9060005260206000200160405162000fc79190620034b8565b90815260405190819003602001902062000fe391601e62003348565b50604080516104008101825260096103c0820181815268456e6572676574696360b81b6103e0840152825282518084018452600c8082526b11dbdbd90b53985d1d5c995960a21b60208381019190915280850192909252845180860186528181526b456e7468757369617374696360a01b818401528486015284518086018652600b8082526a4368616c6c656e67696e6760a81b828501526060860191909152855180870187528181526a4368617269736d6174696360a81b818501526080860152855180870187526004808252635769736560e01b8286015260a087019190915286518088018852600680825265135bd9195cdd60d21b8287015260c08801919091528751808901895281815265121bdb995cdd60d21b8187015260e088015287518089018952600a8082526950726f7465637469766560b01b828801526101008901919091528851808a018a52818152695065726365707469766560b01b818801526101208901528851808a018a529485526b141c9bdd9a59195b9d1a585b60a21b8587015261014088019490945287518089018952600780825266141c9d59195b9d60ca1b828801526101608901919091528851808a018a528481526a53706f6e74616e656f757360a81b818801526101808901528851808a018a5285815269125b9cda59da1d199d5b60b21b818801526101a08901528851808a018a528481526a125b9d195b1b1a59d95b9d60aa1b818801526101c08901528851808a018a5287815268496e7475697469766560b81b818801526101e08901528851808a018a52818152665072656369736560c81b818801526102008901528851808a018a528181526653686172696e6760c81b818801526102208901528851808a018a529182526553696d706c6560d01b82870152610240880191909152875180890189526008815267536f636961626c6560c01b8187015261026088015287518089018952600d81526c14dbdc1a1a5cdd1a58d85d1959609a1b81870152610280880152875180890189528481526910995b995d9bdb195b9d60b21b818701526102a0880152875180890189528681526841646d697261626c6560b81b818701526102c08801528751808901895295865268109c9a5b1b1a585b9d60ba1b868601526102e0870195909552865180880188528381526941636365737369626c6560b01b81860152610300870152865180880188529081526343616c6d60e01b81850152610320860152855180870187529384526643617061626c6560c81b8484015261034085019390935284518086018652818152694f7074696d697374696360b01b81840152610360850152845180860186529081526914995cdc1958dd199d5b60b21b8183015261038084015283518085019094529083526a526573706f6e7369626c6560a81b908301526103a08101919091526015805460179190600390811062001415576200141562003599565b906000526020600020016040516200142e9190620034b8565b9081526040519081900360200190206200144a91601e62003348565b50604080516104008101825260056103c08201818152642a3930b4b760d91b6103e084015282528251808401845260038082526221b0b960e91b6020838101919091528085019290925284518086018652600880825267416972706c616e6560c01b82850152858701919091528551808701875260068082526543727569736560d01b8286015260608701919091528651808801885260118152701a103bb432b2b610323934bb329031b0b960791b818601526080870152865180880188528381526242757360e81b8186015260a087015286518088018852600f81526e21b7b73b32b93a34b136329031b0b960891b8186015260c08701528651808801885260078082526642696379636c6560c81b8287015260e0880191909152875180890189526009808252684d6f746f7262696b6560b81b828801526101008901919091528851808a018a528181526821b0b6b832b93b30b760b91b818801526101208901528851808a018a52828152662a3930b4b632b960c91b818801526101408901528851808a018a528481526714d85a5b189bd85d60c21b818801526101608901528851808a018a52600c8082526b22b632b1ba3934b19031b0b960a11b828901526101808a01919091528951808b018b528381526629b4b232b1b0b960c91b818901526101a08a01528951808b018b528381526629b1b7b7ba32b960c91b818901526101c08a01528951808b018b526004808252635472616d60e01b828a01526101e08b01919091528a51808c018c52600b81526a43696e71756563656e746f60a81b818a01526102008b01528a51808c018c528281526b48697463682d68696b696e6760a01b818a01526102208b01528a51808c018c5292835268565720426565746c6560b81b838901526102408a01929092528951808b018b528481526556572042757360d01b818901526102608a01528951808b018b5288815264547275636b60d81b818901526102808a01528951808b018b52601081526f4f66662d726f61642056656869636c6560801b818901526102a08a01528951808b018b529586526221b0b160e91b868801526102c08901959095528851808a018a52968752644c616d626f60d81b878701526102e088019690965287518089018952908152664665727261726960c81b818601526103008701528651808801885290815265149bd8dad95d60d21b8185015261032086015285518087018752908152672232a637b932b0b760c11b8184015261034085015284518086018652600a808252694b6961205365646f6e6160b01b82850152610360860191909152855180870187529182526b135859da58c818d85c9c195d60a21b82840152610380850191909152845180860190955284526942726f6f6d737469636b60b01b908401526103a082019290925260158054919260179281106200186c576200186c62003599565b90600052602060002001604051620018859190620034b8565b908152604051908190036020019020620018a191601e62003348565b50604080516104008101825260076103c082018181526608adcced8d2e6d60cb1b6103e0840152825282518084018452601081526f4d616e646172696e204368696e65736560801b602082810191909152808401919091528351808501855260058082526448696e646960d81b828401528486019190915284518086018652838152660a6e0c2dcd2e6d60cb1b8184015260608501528451808601865260068082526541726162696360d01b828501526080860191909152855180870187528181526508ce4cadcc6d60d31b8185015260a08601528551808701875284815266293ab9b9b4b0b760c91b8185015260c086015285518087018752600a80825269506f727475677565736560b01b8286015260e0870191909152865180880188528181526924b73237b732b9b4b0b760b11b81860152610100870152865180880188528281526523b2b936b0b760d11b81860152610120870152865180880188526008808252674a6170616e65736560c01b8287015261014088019190915287518089018952868152660a8eae4d6d2e6d60cb1b81870152610160880152875180890189528381526525b7b932b0b760d11b818701526101808801528751808901895291825269566965746e616d65736560b01b828601526101a087019190915286518088018852600f81526e24b930b734b0b7102832b939b4b0b760891b818601526101c0870152865180880188528581526653776168696c6960c81b818601526101e087015286518088018852818152674a6176616e65736560c01b81860152610200870152865180880188528581526624ba30b634b0b760c91b818601526102208701528651808801885260048152635468616960e01b81860152610240870152865180880188528181526746696c6970696e6f60c01b8186015261026087015286518088018852858152664275726d65736560c81b8186015261028087015286518088018852828152650a0ded8d2e6d60d31b818601526102a0870152865180880188529081526721b937b0ba34b0b760c11b818501526102c08601528551808701875290815265088c2dcd2e6d60d31b818401526102e0850152845180860186529283526629b2b93134b0b760c91b838301526103008401929092528351808501855260098082526829b637bb32b734b0b760b91b828401526103208501919091528451808601865283815264086f4cac6d60db1b81840152610340850152845180860186528181526829b637bb30b5b4b0b760b91b818401526103608501528451808601865283815264477265656b60d81b818401526103808501528451808601909552845268243ab733b0b934b0b760b91b908401526103a0820192909252601580549192601792811062001ca05762001ca062003599565b9060005260206000200160405162001cb99190620034b8565b90815260405190819003602001902062001cd591601e62003348565b50604080516101c08101825260016101808201818152601960f91b6101a0840152825282518084018452818152603360f81b6020828101919091528084019190915283518085018552828152600d60fa1b818301528385015283518085018552828152603560f81b81830152606084015283518085018552828152601b60f91b81830152608084015283518085018552828152603760f81b8183015260a084015283518085018552828152600760fb1b8183015260c084015283518085018552828152603960f81b8183015260e0840152835180850185526002815261031360f41b8183015261010084015283518085018552600381526203130360ec1b8183015261012084015283518085018552828152600360fc1b818301526101408401528351808501909452908352603160f81b908301526101608101919091526015805460179190600690811062001e2f5762001e2f62003599565b9060005260206000200160405162001e489190620034b8565b90815260405190819003602001902062001e6491600c6200339a565b50604080516104008101825260046103c0820181815263121bdcdd60e21b6103e084015282528251808401845290815263436f6f6b60e01b60208281019190915280830191909152825180840184526006808252652bb934ba32b960d11b828401528385019190915283518085018552818152654465654a617960d01b81840152606084015283518085018552600880825267456d706c6f79656560c01b82850152608085019190915284518086018652828152652237b1ba37b960d11b8185015260a085015284518086018652908152672a3930bb32b632b960c11b8184015260c084015283518085018552600a80825269546f757220477569646560b01b8285015260e0850191909152845180860186528181526914da1a5c08141a5b1bdd60b21b8185015261010085015284518086018652908152692220a79026b2b6b132b960b11b818401526101208401528351808501855290815265223934bb32b960d11b8183015261014083015282518084018452600b81526a27232a10333634b83832b960a91b8183015261016083015282518084018452600c81526b26b2b6b29031b932b0ba37b960a11b8183015261018083015282518084018452600d8082526c29b0b632b99026b0b730b3b2b960991b828401526101a0840191909152835180850185528181526c283630bc90191022b0b93732b960991b818401526101c0840152835180850185528181526c27232a1031b7b63632b1ba37b960991b818401526101e0840152835180850185526012815271121bdd195b081c9958d95c1d1a5bdb9a5cdd60721b81840152610200840152835180850185528181526c2437ba32b61026b0b730b3b2b960991b81840152610220840152835180850185528181526c111a59da5d185b08139bdb5859609a1b81840152610240840152835180850185528181526c21b93cb83a37902a3930b232b960991b8184015261026084015283518085018552600e81526d090cac2c840decc408ee4deeee8d60931b81840152610280840152835180850185528181526c2837a9903b30b634b230ba37b960991b818401526102a084015283518085018552601b81527f4c696768746e696e67204e6574776f726b20446576656c6f7065720000000000818401526102c084015283518085018552601c81527f416e6f6e796d6f757320446546692050726f746f636f6c204c65616400000000818401526102e084015283518085018552601d81527f5961636874206f776e65722028696e2062756c6c206d61726b6574732900000081840152610300840152835180850185529081526c2bb2b1199022b733b4b732b2b960991b818301526103208301528251808401845260158082527f426c6f636b636861696e20436f6e73756c74616e7400000000000000000000008284015261034084019190915283518085018552600981526843727970746f20564360b81b8184015261036084015283518085018552600581526426b4b732b960d91b818401526103808401528351808501909452601184527026b2ba30bb32b939b2902932b0b63a37b960791b918401919091526103a082019290925281549091601791600790811062002302576200230262003599565b906000526020600020016040516200231b9190620034b8565b9081526040519081900360200190206200233791601e62003348565b50604080516104008101825260056103c0820181815264121bdd195b60da1b6103e0840152825282518084018452600980825268105c185c9d1b595b9d60ba1b6020838101919091528085019290925284518086018652600680825265121bdcdd195b60d21b82850152858701919091528551808701875260048082526315195b9d60e21b82860152606087019190915286518088018852600381526221372160e91b81860152608087015286518088018852600b8082526a477565737420486f75736560a81b8287015260a0880191909152875180890189528381526510da185b195d60d21b8187015260c088015287518089018952600780825266436f747461676560c81b8288015260e08901919091528851808a018a5283815263109bd85d60e21b818801526101008901528851808a018a529081526621b0b930bb30b760c91b8187015261012088015287518089018952848152684d6f746f72686f6d6560b81b8187015261014088015287518089018952600d81526c0d481cdd185c9cc8121bdd195b609a1b8187015261016088015287518089018952601681527f537569746520696e203520537461727320486f74656c000000000000000000008187015261018088015287518089018952828152635469706960e01b818701526101a088015287518089018952600a8152695472656520486f75736560b01b818701526101c08801528751808901895260088082526742756e67616c6f7760c01b828801526101e08901919091528851808a018a52878152640a4c2dcc6d60db1b818801526102008901528851808a018a5285815268436f2d6c6976696e6760b81b818801526102208901528851808a018a526012808252714761626c6566726f6e7420636f747461676560701b828901526102408a01919091528951808b018b52868152684c6f6e67686f75736560b81b818901526102608a01528951808b018b528881526456696c6c6160d81b818901526102808a01528951808b018b5293845263165d5c9d60e21b848801526102a08901939093528851808a018a52948552682437bab9b2b130b93760b91b858701526102c0880194909452875180890189529081526a41646f626520486f75736560a81b818601526102e08701528651808801885282815265436173746c6560d01b8186015261030087015286518088018852600c81526b0a4c2dadacac840cac2e4e8d60a31b818601526103208701528651808801885290815271556e64657267726f756e64206c6976696e6760701b8185015261034086015285518087018752600f81526e56656e657469616e2070616c61636560881b81850152610360860152855180870187529384526449676c6f6f60d81b848401526103808501939093528451808601909552918452655472756c6c6f60d01b908401526103a0820192909252601580549192601792811062002768576200276862003599565b90600052602060002001604051620027819190620034b8565b9081526040519081900360200190206200279d91601e62003348565b50604051806102a00160405280604051806040016040528060038152602001622832b760e91b81525081526020016040518060400160405280600c81526020016b32a137b7b5903932b0b232b960a11b8152508152602001604051806040016040528060058152602001642bb0ba32b960d91b81525081526020016040518060400160405280600a8152602001694369676172657474657360b01b81525081526020016040518060400160405280600b81526020016a5377697373206b6e69666560a81b81525081526020016040518060400160405280600c81526020016b4d6f62696c652070686f6e6560a01b8152508152602001604051806040016040528060088152602001674e6f7465626f6f6b60c01b81525081526020016040518060400160405280600681526020016504c6170746f760d41b81525081526020016040518060400160405280600e81526020016d4469676974616c2043616d65726160901b8152508152602001604051806040016040528060078152602001662634b3b43a32b960c91b81525081526020016040518060400160405280600981526020016845617270686f6e657360b81b81525081526020016040518060400160405280600b81526020016a426561757479206361736560a81b81525081526020016040518060400160405280600a8152602001690a8dedee8d0c4e4eae6d60b31b81525081526020016040518060400160405280600a815260200169546f6f7468706173746560b01b815250815260200160405180604001604052806008815260200167536c69707065727360c01b81525081526020016040518060400160405280600681526020016553686972747360d01b81525081526020016040518060400160405280600581526020016450616e747360d81b815250815260200160405180604001604052806008815260200167542d73686972747360c01b815250815260200160405180604001604052806005815260200164536f636b7360d81b8152508152602001604051806040016040528060098152602001682ab73232b93bb2b0b960b91b815250815260200160405180604001604052806007815260200166436f6e646f6d7360c81b8152508152506017601560098154811062002ae75762002ae762003599565b9060005260206000200160405162002b009190620034b8565b90815260405190819003602001902062002b1c916015620033ec565b506040805160c081018252600060a08201818152825282516020818101855282825280840191909152835180850185526005815264626c61636b60d81b8183015293830193909352606082018190526001608083018190529052601182528051805191927f17bc176d2408558f6e4111feebc3cab4e16b63e967be91cde721f4c8a488b5529262002bb192849201906200326b565b50602082810151805162002bcc92600185019201906200326b565b506040820151805162002bea9160028401916020909101906200326b565b5060608281015160038301556080928301516004909201805460ff1916921515929092179091556040805160e081018252600660a08201908152652820aa2927a760d11b60c083015281528151602081810184526000808352818401929092528351808501855260078152662346383731353160c81b8183015293830193909352928101839052600193810193909352600290915260118152815180517f08037d7b151cc412d25674a4e66b334d9ae9d2e5517a7feaae5cdb828bf1c6289262002cb99284929101906200326b565b50602082810151805162002cd492600185019201906200326b565b506040820151805162002cf29160028401916020909101906200326b565b506060828101516003838101919091556080938401516004938401805460ff19169115159190911790556040805160e081018252600660a08201908152652820aa2927a760d11b60c0830152815281518083018352601681527f4c6f6f742028666f7220416476656e747572657273290000000000000000000060208281019190915280830191909152825180840184529586526319dbdb1960e21b868201529181019490945260009284018390526001948401949094529052601182528051805191927f9bfbaa59f8e10e7868f8b402de9d605a390c45ddaebd8c9de3c6f31e733c87ff9262002de792849201906200326b565b50602082810151805162002e0292600185019201906200326b565b506040820151805162002e209160028401916020909101906200326b565b5060608281015160038301556080928301516004928301805460ff19169115159190911790556040805160e081018252600960a082019081526821a7a728aaa2a927a960b91b60c08301528152815160208181018452600080835281840192909252835180850185526005815264776869746560d81b818301529383019390935292810183905260019481019490945291905260118152815180517f251164fe1d8864fe5e86082eae9c288bc2b58695a4d28538dfe86e9e4f1755859262002eed9284929101906200326b565b50602082810151805162002f0892600185019201906200326b565b506040820151805162002f269160028401916020909101906200326b565b5060608281015160038301556080928301516004909201805460ff1916921515929092179091556040805160e081018252600160a08201818152600160fd1b60c08401528252825160208181018552600080835281850192909252845180860186526005815264626c61636b60d81b81830152948401949094529382018490529381019390935290805260118152815180517f4ad3b33220dddc71b994a52d72c06b10862965f7d926534c05c00fb7e819e7b79262002fea9284929101906200326b565b5060208281015180516200300592600185019201906200326b565b5060408201518051620030239160028401916020909101906200326b565b5060608281015160038301556080928301516004928301805460ff19169115159190911790556016805460018181019092557fd833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b512428901805473ff9c1b15b16263c61d017ee9f65c50e4ae0113d76001600160a01b031990911681179091556040805160e081018252600760a0820190815266046886a886c88760cb1b60c0830152815281518083018352958652631313d3d560e21b60208781019190915280820196909652815180830183526005815264626c61636b60d81b8188015291810191909152600093810184905294850191909152905260118152815180517f2187ef1b9275bd57bb6c423f7bafa25a6c5b1858730c5eca173022598b22c1ae92620031509284929101906200326b565b5060208281015180516200316b92600185019201906200326b565b5060408201518051620031899160028401916020909101906200326b565b50606082015160038201556080909101516004909101805460ff191691151591909117905550620035af565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805482825590600052602060002090810192821562003259579160200282015b82811115620032595782518051620032489184916020909101906200326b565b509160200191906001019062003228565b50620032679291506200343e565b5090565b82805462003279906200355c565b90600052602060002090601f0160209004810192826200329d5760008555620032e8565b82601f10620032b857805160ff1916838001178555620032e8565b82800160010185558215620032e8579182015b82811115620032e8578251825591602001919060010190620032cb565b50620032679291506200345f565b82805482825590600052602060002090810192821562003259579160200282015b82811115620032595782518051620033379184916020909101906200326b565b509160200191906001019062003317565b82805482825590600052602060002090810192821562003259579160200282015b82811115620032595782518051620033899184916020909101906200326b565b509160200191906001019062003369565b82805482825590600052602060002090810192821562003259579160200282015b82811115620032595782518051620033db9184916020909101906200326b565b5091602001919060010190620033bb565b82805482825590600052602060002090810192821562003259579160200282015b828111156200325957825180516200342d9184916020909101906200326b565b50916020019190600101906200340d565b808211156200326757600062003455828262003476565b506001016200343e565b5b8082111562003267576000815560010162003460565b50805462003484906200355c565b6000825580601f1062003495575050565b601f016020900490600052602060002090810190620034b591906200345f565b50565b600080835481600182811c915080831680620034d557607f831692505b6020808410821415620034f657634e487b7160e01b86526022600452602486fd5b8180156200350d57600181146200351f576200354e565b60ff198616895284890196506200354e565b60008a81526020902060005b86811015620035465781548b8201529085019083016200352b565b505084890196505b509498975050505050505050565b600181811c908216806200357157607f821691505b602082108114156200359357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b61566f80620035bf6000396000f3fe6080604052600436106102c95760003560e01c80636ae2719d116101755780639a81cd91116100dc578063b819827711610095578063d06f97341161006f578063d06f9734146108c1578063e985e9c5146108e1578063f2fde38b1461092a578063fda49eb41461094a57600080fd5b8063b81982771461085f578063b88d4fde14610881578063c87b56dd146108a157600080fd5b80639a81cd911461077f578063a22cb46514610799578063ab0f9250146107b9578063b1aeaa78146107dd578063b22a6c82146107f2578063b810fb431461082957600080fd5b80638bef82b81161012e5780638bef82b8146106955780638da5cb5b146106f75780638ddba57a1461071557806395d89b411461073557806397bda41d1461074a578063985885781461076a57600080fd5b80636ae2719d146105ea57806370a0823114610600578063715018a614610620578063746a0af6146106355780638319129f1461065557806383804ab51461067557600080fd5b8063319c4ec7116102345780634d531bf4116101ed57806351a35b80116101c757806351a35b801461057f5780635c5ad967146105955780636352211e146105b5578063635cb59e146105d557600080fd5b80634d531bf4146105195780634e71d92d1461054a5780634f6ccce71461055f57600080fd5b8063319c4ec7146104845780633bbab874146104a45780633ccfd60b146104b9578063413d9c3a146104ce57806342842e0e146104e45780634b8e377d1461050457600080fd5b806317bac0521161028657806317bac052146103b357806318160ddd146103dc578063225d697f146103fb57806323b872dd1461041d5780632f745c591461043d5780632fdcbccd1461045d57600080fd5b806301ffc9a7146102ce57806306fdde0314610303578063081812fc14610325578063095ea7b31461035d57806310c333931461037f5780631693440e146103ab575b600080fd5b3480156102da57600080fd5b506102ee6102e9366004614516565b61099b565b60405190151581526020015b60405180910390f35b34801561030f57600080fd5b506103186109c6565b6040516102fa9190615045565b34801561033157600080fd5b506103456103403660046145c7565b610a58565b6040516001600160a01b0390911681526020016102fa565b34801561036957600080fd5b5061037d610378366004614475565b610af2565b005b34801561038b57600080fd5b506013546103999060ff1681565b60405160ff90911681526020016102fa565b61037d610c08565b3480156103bf57600080fd5b506103c961271081565b60405161ffff90911681526020016102fa565b3480156103e857600080fd5b506008545b6040519081526020016102fa565b34801561040757600080fd5b50610410610d38565b6040516102fa9190614ff8565b34801561042957600080fd5b5061037d610438366004614352565b610d99565b34801561044957600080fd5b506103ed610458366004614475565b610dca565b34801561046957600080fd5b5060135461034590600160381b90046001600160a01b031681565b34801561049057600080fd5b5061037d61049f3660046145f9565b610e60565b3480156104b057600080fd5b5061037d61124d565b3480156104c557600080fd5b5061037d611464565b3480156104da57600080fd5b506103c961438081565b3480156104f057600080fd5b5061037d6104ff366004614352565b611521565b34801561051057600080fd5b5061037d61153c565b34801561052557600080fd5b506105396105343660046142df565b6116c2565b6040516102fa959493929190615058565b34801561055657600080fd5b5061037d61188c565b34801561056b57600080fd5b506103ed61057a3660046145c7565b611a51565b34801561058b57600080fd5b506103ed60145481565b3480156105a157600080fd5b506103186105b03660046142df565b611ae4565b3480156105c157600080fd5b506103456105d03660046145c7565b611af8565b3480156105e157600080fd5b506103c9606481565b3480156105f657600080fd5b506103c961038481565b34801561060c57600080fd5b506103ed61061b3660046142df565b611b6f565b34801561062c57600080fd5b5061037d611bf6565b34801561064157600080fd5b506103456106503660046145c7565b611c2c565b34801561066157600080fd5b5061031861067036600461461e565b611c56565b34801561068157600080fd5b506013546103c990610100900461ffff1681565b3480156106a157600080fd5b50600c546106cd906001600160a01b03811690600160a01b810461ffff1690600160b01b900460ff1683565b604080516001600160a01b03909416845261ffff90921660208401521515908201526060016102fa565b34801561070357600080fd5b50600b546001600160a01b0316610345565b34801561072157600080fd5b506103ed6107303660046142df565b611e1e565b34801561074157600080fd5b50610318612067565b34801561075657600080fd5b5061037d6107653660046144a1565b612076565b34801561077657600080fd5b5061037d612478565b34801561078b57600080fd5b506010546102ee9060ff1681565b3480156107a557600080fd5b5061037d6107b4366004614442565b61262d565b3480156107c557600080fd5b506013546103c99065010000000000900461ffff1681565b3480156107e957600080fd5b5061037d6126f2565b3480156107fe57600080fd5b50610807612778565b604080516001600160a01b03909316835261ffff9091166020830152016102fa565b34801561083557600080fd5b506103456108443660046145c7565b6012602052600090815260409020546001600160a01b031681565b34801561086b57600080fd5b506013546103c9906301000000900461ffff1681565b34801561088d57600080fd5b5061037d61089c366004614393565b612874565b3480156108ad57600080fd5b506103186108bc3660046145c7565b6128ac565b3480156108cd57600080fd5b5061037d6108dc366004614442565b612d9a565b3480156108ed57600080fd5b506102ee6108fc366004614319565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561093657600080fd5b5061037d6109453660046142df565b612e59565b34801561095657600080fd5b50600d54600e54600f54610975926001600160a01b0390811692169083565b604080516001600160a01b039485168152939092166020840152908201526060016102fa565b60006001600160e01b0319821663780e9d6360e01b14806109c057506109c082612ef1565b92915050565b6060600080546109d5906153dc565b80601f0160208091040260200160405190810160405280929190818152602001828054610a01906153dc565b8015610a4e5780601f10610a2357610100808354040283529160200191610a4e565b820191906000526020600020905b815481529060010190602001808311610a3157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610ad65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610afd82611af8565b9050806001600160a01b0316836001600160a01b03161415610b6b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610acd565b336001600160a01b0382161480610b875750610b8781336108fc565b610bf95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610acd565b610c038383612f41565b505050565b6002600a541415610c2b5760405162461bcd60e51b8152600401610acd90615183565b6002600a5560145415801590610c4357506014544310155b6040518060400160405280600f81526020016e21b7b6b2903130b1b5903630ba32b960891b81525090610c895760405162461bcd60e51b8152600401610acd9190615045565b506013546040805180820190915260128152715365742061206869676865722076616c756560701b602082015290600160381b90046001600160a01b0316341015610ce75760405162461bcd60e51b8152600401610acd9190615045565b50610cf6600260056001612faf565b6013805465010000000000900461ffff16906005610d1383615417565b91906101000a81548161ffff021916908361ffff160217905550506001600a81905550565b60606016805480602002602001604051908101604052809291908181526020018280548015610a4e57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610d72575050505050905090565b610da33382613016565b610dbf5760405162461bcd60e51b8152600401610acd90615132565b610c0383838361310d565b6000610dd583611b6f565b8210610e375760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610acd565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6002600a541415610e835760405162461bcd60e51b8152600401610acd90615183565b6002600a5560145415801590610e9b57506014544310155b6040518060400160405280600f81526020016e21b7b6b2903130b1b5903630ba32b960891b81525090610ee15760405162461bcd60e51b8152600401610acd9190615045565b50600c60000160169054906101000a900460ff16156040518060600160405280602b8152602001615569602b913990610f2d5760405162461bcd60e51b8152600401610acd9190615045565b506001600160a01b03811660009081526011602090815260409182902060048101548351606081019094526021808552919360ff909116929091906155229083013990610f8d5760405162461bcd60e51b8152600401610acd9190615045565b508183158015906110215750336040516331a9108f60e11b8152600481018690526001600160a01b0391821691831690636352211e9060240160206040518083038186803b158015610fde57600080fd5b505afa158015610ff2573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061101691906142fc565b6001600160a01b0316145b60405180606001604052806026815260200161554360269139906110585760405162461bcd60e51b8152600401610acd9190615045565b5060038201541580156110965750601660008154811061107a5761107a6154ca565b6000918252602090912001546001600160a01b03848116911614155b156110bb576110a36132b8565b80516110b99160028501916020909101906141a4565b505b60006110c961038486615474565b90506110d86001610384615333565b6013546301000000900461ffff908116911614156111cf576110f8612778565b600c8054600162ff000160a01b031961ffff909316600160a01b02929092166001600160b81b0319909216919091176001600160a01b0390921691909117600160b01b179055600460005260116020526002830180547f251164fe1d8864fe5e86082eae9c288bc2b58695a4d28538dfe86e9e4f175587919061117a906153dc565b611185929190614228565b50600460005260116020526001830180547f251164fe1d8864fe5e86082eae9c288bc2b58695a4d28538dfe86e9e4f17558691906111c2906153dc565b6111cd929190614228565b505b600061ffff8216156111e157816111e5565b6103845b90506111f88161ffff1686600180613515565b611207335b8261ffff16613617565b601380546301000000900461ffff1690600361122283615417565b91906101000a81548161ffff021916908361ffff16021790555050505050506001600a819055505050565b6002600a5414156112705760405162461bcd60e51b8152600401610acd90615183565b6002600a556014541580159061128857506014544310155b6040518060400160405280600f81526020016e21b7b6b2903130b1b5903630ba32b960891b815250906112ce5760405162461bcd60e51b8152600401610acd9190615045565b50600060166000815481106112e5576112e56154ca565b6000918252602090912001546001600160a01b03166370a08231336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260240160206040518083038186803b15801561133f57600080fd5b505afa158015611353573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061137791906145e0565b1160405180606001604052806026815260200161554360269139906113af5760405162461bcd60e51b8152600401610acd9190615045565b50600c60000160169054906101000a900460ff16156040518060600160405280602b8152602001615569602b9139906113fb5760405162461bcd60e51b8152600401610acd9190615045565b5060408051808201909152601f81527f4f6e6c792076616c69642074696c6c20446f6d277320343074682062646179006020820152636ab9adff4211156114555760405162461bcd60e51b8152600401610acd9190615045565b50610cf6600360056000612faf565b600b546001600160a01b0316331461148e5760405162461bcd60e51b8152600401610acd906150fd565b600f8054604080518082019091529182526e21b7b6b2903130b1b5903630ba32b960891b60208301524310156114d75760405162461bcd60e51b8152600401610acd9190615045565b506010805460ff19166001179055600e546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561151e573d6000803e3d6000fd5b50565b610c0383838360405180602001604052806000815250612874565b6002600a54141561155f5760405162461bcd60e51b8152600401610acd90615183565b6002600a55600b546001600160a01b0316331461158e5760405162461bcd60e51b8152600401610acd906150fd565b60006014541180156115a257506014544310155b6040518060400160405280600f81526020016e21b7b6b2903130b1b5903630ba32b960891b815250906115e85760405162461bcd60e51b8152600401610acd9190615045565b50601354600090610384906116019060ff16600161526a565b60ff1661160e9190615213565b905061161d6064610384615213565b61ffff168161ffff1611156040518060400160405280601081526020016f151bdad95b881251081a5b9d985b1a5960821b8152509061166f5760405162461bcd60e51b8152600401610acd9190615045565b506116828161ffff166000806001613515565b61168b336111fd565b6013805460ff1690600061169e83615454565b91906101000a81548160ff021916908360ff16021790555050506001600a81905550565b6011602052600090815260409020805481906116dd906153dc565b80601f0160208091040260200160405190810160405280929190818152602001828054611709906153dc565b80156117565780601f1061172b57610100808354040283529160200191611756565b820191906000526020600020905b81548152906001019060200180831161173957829003601f168201915b50505050509080600101805461176b906153dc565b80601f0160208091040260200160405190810160405280929190818152602001828054611797906153dc565b80156117e45780601f106117b9576101008083540402835291602001916117e4565b820191906000526020600020905b8154815290600101906020018083116117c757829003601f168201915b5050505050908060020180546117f9906153dc565b80601f0160208091040260200160405190810160405280929190818152602001828054611825906153dc565b80156118725780601f1061184757610100808354040283529160200191611872565b820191906000526020600020905b81548152906001019060200180831161185557829003601f168201915b50505050600383015460049093015491929160ff16905085565b6002600a5414156118af5760405162461bcd60e51b8152600401610acd90615183565b6002600a55601454158015906118c757506014544310155b6040518060400160405280600f81526020016e21b7b6b2903130b1b5903630ba32b960891b8152509061190d5760405162461bcd60e51b8152600401610acd9190615045565b50600b5460408051808201909152601a81527f55736520636c61696d42794f776e6572282920696e73746561640000000000006020820152906001600160a01b031633141561196f5760405162461bcd60e51b8152600401610acd9190615045565b506013546000906064906103849061199190610100900461ffff166001615213565b61199b9190615213565b6119a59190615213565b60408051808201909152601081526f151bdad95b881251081a5b9d985b1a5960821b602082015290915061271061ffff831611156119f65760405162461bcd60e51b8152600401610acd9190615045565b50611a098161ffff166001806000613515565b611a12336111fd565b60138054610100900461ffff16906001611a2b83615417565b91906101000a81548161ffff021916908361ffff16021790555050506001600a81905550565b6000611a5c60085490565b8210611abf5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610acd565b60088281548110611ad257611ad26154ca565b90600052602060002001549050919050565b60606109c0826001600160a01b03166128ac565b6000818152600260205260408120546001600160a01b0316806109c05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610acd565b60006001600160a01b038216611bda5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610acd565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314611c205760405162461bcd60e51b8152600401610acd906150fd565b611c2a6000613635565b565b60168181548110611c3c57600080fd5b6000918252602090912001546001600160a01b0316905081565b6060611e178360158460ff1681548110611c7257611c726154ca565b906000526020600020018054611c87906153dc565b80601f0160208091040260200160405190810160405280929190818152602001828054611cb3906153dc565b8015611d005780601f10611cd557610100808354040283529160200191611d00565b820191906000526020600020905b815481529060010190602001808311611ce357829003601f168201915b5050505050601760158660ff1681548110611d1d57611d1d6154ca565b90600052602060002001604051611d349190614bc3565b9081526020016040518091039020805480602002602001604051908101604052809291908181526020016000905b82821015611e0e578382906000526020600020018054611d81906153dc565b80601f0160208091040260200160405190810160405280929190818152602001828054611dad906153dc565b8015611dfa5780601f10611dcf57610100808354040283529160200191611dfa565b820191906000526020600020905b815481529060010190602001808311611ddd57829003601f168201915b505050505081526020019060010190611d62565b50505050613687565b9392505050565b6001600160a01b038116600090815260116020526040808220815160a0810190925280548392919082908290611e53906153dc565b80601f0160208091040260200160405190810160405280929190818152602001828054611e7f906153dc565b8015611ecc5780601f10611ea157610100808354040283529160200191611ecc565b820191906000526020600020905b815481529060010190602001808311611eaf57829003601f168201915b50505050508152602001600182018054611ee5906153dc565b80601f0160208091040260200160405190810160405280929190818152602001828054611f11906153dc565b8015611f5e5780601f10611f3357610100808354040283529160200191611f5e565b820191906000526020600020905b815481529060010190602001808311611f4157829003601f168201915b50505050508152602001600282018054611f77906153dc565b80601f0160208091040260200160405190810160405280929190818152602001828054611fa3906153dc565b8015611ff05780601f10611fc557610100808354040283529160200191611ff0565b820191906000526020600020905b815481529060010190602001808311611fd357829003601f168201915b50505050508152602001600382015481526020016004820160009054906101000a900460ff16151515158152505090508060800151604051806060016040528060218152602001615522602191399061205c5760405162461bcd60e51b8152600401610acd9190615045565b506060015192915050565b6060600180546109d5906153dc565b6002600a5414156120995760405162461bcd60e51b8152600401610acd90615183565b6002600a55600c546040805160608101909152602b808252600160b01b90920460ff1615916155696020830139906120e45760405162461bcd60e51b8152600401610acd9190615045565b5060005b60ff811682111561246e57600083838360ff1681811061210a5761210a6154ca565b905060200201602081019061211f91906142df565b60408051808201909152600c81526b4e6f7420706f737369626c6560a01b6020820152909150306001600160a01b038316141561216f5760405162461bcd60e51b8152600401610acd9190615045565b506032306370a08231336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260240160206040518083038186803b1580156121b857600080fd5b505afa1580156121cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121f091906145e0565b11806122135750336000908152600260205260409020546001600160a01b031615155b806122285750600b546001600160a01b031633145b604051806060016040528060248152602001615616602491399061225f5760405162461bcd60e51b8152600401610acd9190615045565b5060005b60165461ffff8216101561232257816001600160a01b031660168261ffff1681548110612292576122926154ca565b9060005260206000200160009054906101000a90046001600160a01b03166001600160a01b031614156040518060400160405280601a81526020017f4775696c6420616c72656164792077686974656c6973746564210000000000008152509061230f5760405162461bcd60e51b8152600401610acd9190615045565b508061231a81615417565b915050612263565b50601680546001810182556000919091527fd833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b51242890180546001600160a01b0319166001600160a01b0383161790556040805160e08101909152600560a082019081526411d552531160da1b60c083015281526020810161239f836137cc565b81526040805180820182526005815264626c61636b60d81b60208281019190915280840191909152600082840181905260016060909401939093526001600160a01b0385168352601181529120825180519192612401928492909101906141a4565b50602082810151805161241a92600185019201906141a4565b50604082015180516124369160028401916020909101906141a4565b50606082015160038201556080909101516004909101805460ff1916911515919091179055508061246681615454565b9150506120e8565b50506001600a5550565b6002600a54141561249b5760405162461bcd60e51b8152600401610acd90615183565b6002600a55601454158015906124b357506014544310155b6040518060400160405280600f81526020016e21b7b6b2903130b1b5903630ba32b960891b815250906124f95760405162461bcd60e51b8152600401610acd9190615045565b50600c5460408051808201909152601a81527f436f6e717565726f72206e6f742079657420656c656374656421000000000000602082015290600160b01b900460ff166125595760405162461bcd60e51b8152600401610acd9190615045565b50600c546000906001600160a01b03166370a08231336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260240160206040518083038186803b1580156125ae57600080fd5b505afa1580156125c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125e691906145e0565b11604051806060016040528060268152602001615543602691399061261e5760405162461bcd60e51b8152600401610acd9190615045565b50610cf6600460026001612faf565b6001600160a01b0382163314156126865760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610acd565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b546001600160a01b0316331461271c5760405162461bcd60e51b8152600401610acd906150fd565b601454604080518082019091526011815270105b1c9958591e481858dd1a5d985d1959607a1b602082015290156127665760405162461bcd60e51b8152600401610acd9190615045565b5061277361438043615252565b601455565b600c546000908190600160b01b900460ff16156127ae575050600c546001600160a01b03811691600160a01b90910461ffff1690565b600060166000815481106127c4576127c46154ca565b60009182526020808320909101546001600160a01b0316808352601190915260409091206003015490915060015b60165460ff8216101561286a57600060168260ff1681548110612817576128176154ca565b60009182526020808320909101546001600160a01b0316808352601190915260409091206003015490915061285190859085908490613843565b909450925081905061286281615454565b9150506127f2565b5090939092509050565b61287e3383613016565b61289a5760405162461bcd60e51b8152600401610acd90615132565b6128a68484848461386c565b50505050565b6000818152601260209081526040808320546001600160a01b031683526011909152808220815160a081019092528054606093929190829082906128ef906153dc565b80601f016020809104026020016040519081016040528092919081815260200182805461291b906153dc565b80156129685780601f1061293d57610100808354040283529160200191612968565b820191906000526020600020905b81548152906001019060200180831161294b57829003601f168201915b50505050508152602001600182018054612981906153dc565b80601f01602080910402602001604051908101604052809291908181526020018280546129ad906153dc565b80156129fa5780601f106129cf576101008083540402835291602001916129fa565b820191906000526020600020905b8154815290600101906020018083116129dd57829003601f168201915b50505050508152602001600282018054612a13906153dc565b80601f0160208091040260200160405190810160405280929190818152602001828054612a3f906153dc565b8015612a8c5780601f10612a6157610100808354040283529160200191612a8c565b820191906000526020600020905b815481529060010190602001808311612a6f57829003601f168201915b50505091835250506003820154602082015260049091015460ff1615156040909101529050612ab96142a3565b604051602001612bf6907f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323081527f30302f73766722207072657365727665417370656374526174696f3d22784d6960208201527f6e594d696e206d656574222076696577426f783d22302030203335302033353060408201527f223e3c7374796c653e2e62207b2066696c6c3a77686974653b20666f6e742d6660608201527f616d696c793a2073657269663b20666f6e742d73697a653a20313470783b207d60808201527f3c2f7374796c653e203c726563742077696474683d223130302522206865696760a08201527f68743d2231303025222066696c6c3d22626c61636b22202f3e3c74657874207860c08201527f3d2231302220793d2232302220636c6173733d2262223e00000000000000000060e082015260f70190565b60408051808303601f190181529190528152612c13846000611c56565b612c1e856001611c56565b612c29866002611c56565b612c34876003611c56565b612c3f886004611c56565b612c4a896005611c56565b604051602001612c5f969594939291906149d1565b60408051808303601f190181529190526020820152612c7f846006611c56565b612c8a856007611c56565b612c95866008611c56565b612ca0876009611c56565b604051602001612cb39493929190614e89565b60408051808303601f19018152918152828101919091528281015183519151612cdf9290602001614d58565b60408051808303601f19018152918152606083018290528251602080850151858401519351600095612d159592939091016147be565b60405160208183030381529060405290506000612d6d612d348761389f565b612d3d8461399d565b612d478988613b03565b604051602001612d5993929190614bcf565b60405160208183030381529060405261399d565b905080604051602001612d809190614e44565b604051602081830303815290604052945050505050919050565b600b546001600160a01b03163314612dc45760405162461bcd60e51b8152600401610acd906150fd565b6010546040805160808101909152604280825260ff90921691615594602083013990612e035760405162461bcd60e51b8152600401610acd9190615045565b508015612e15576010805460ff191690555b6000612e2361438043615252565b600e8054600d80546001600160a01b038084166001600160a01b0319928316179092559091169516949094179093555050600f55565b600b546001600160a01b03163314612e835760405162461bcd60e51b8152600401610acd906150fd565b6001600160a01b038116612ee85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610acd565b61151e81613635565b60006001600160e01b031982166380ac58cd60e01b1480612f2257506001600160e01b03198216635b5e139f60e01b145b806109c057506301ffc9a760e01b6001600160e01b03198316146109c0565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612f7682611af8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b604080516060810190915260218082523391612710831191615522602083013990612fed5760405162461bcd60e51b8152600401610acd9190615045565b50613003816001600160a01b0316858585613515565b6128a633826001600160a01b0316613617565b6000818152600260205260408120546001600160a01b031661308f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610acd565b600061309a83611af8565b9050806001600160a01b0316846001600160a01b031614806130d55750836001600160a01b03166130ca84610a58565b6001600160a01b0316145b8061310557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661312082611af8565b6001600160a01b0316146131885760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610acd565b6001600160a01b0382166131ea5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610acd565b6131f5838383613c9d565b613200600082612f41565b6001600160a01b0383166000908152600360205260408120805460019290613229908490615376565b90915550506001600160a01b0382166000908152600360205260408120805460019290613257908490615252565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b604080516102408101825260016102008201818152600360fc1b610220840152825282518084018452818152603160f81b6020828101919091528084019190915283518085018552828152601960f91b818301528385015283518085018552828152603360f81b8183015260608481019190915284518086018652838152600d60fa1b81840152608085015284518086018652838152603560f81b8184015260a085015284518086018652838152601b60f91b8184015260c085015284518086018652838152603760f81b8184015260e085015284518086018652838152600760fb1b8184015261010085015284518086018652838152603960f81b8184015261012085015284518086018652838152606160f81b8184015261014085015284518086018652838152603160f91b8184015261016085015284518086018652838152606360f81b8184015261018085015284518086018652838152601960fa1b818401526101a085015284518086018652838152606560f81b818401526101c085015284518086018652838152603360f91b818401526101e08501528451808601909552918452602360f81b908401529160005b60068160ff16101561350e576040805144602080830191909152428284015260f884901b6001600160f81b0319166060830152825160418184030181526061909201909252805191012082846134c3601084615474565b601081106134d3576134d36154ca565b60200201516040516020016134e992919061478f565b604051602081830303815290604052925050808061350690615454565b91505061346c565b5092915050565b60ff8216156135bb57600061352b8360646152c9565b60135461354b9160ff1690600160381b90046001600160a01b031661528f565b90508161357557601354613570908290600160381b90046001600160a01b0316615356565b613593565b601354613593908290600160381b90046001600160a01b0316615230565b601360076101000a8154816001600160a01b0302191690836001600160a01b03160217905550505b6001600160a01b03831660009081526011602052604081206003018054916135e283615439565b9091555050506000928352506012602052604090912080546001600160a01b0319166001600160a01b03909216919091179055565b613631828260405180602001604052806000815250613d55565b5050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b606060006136bd846136988761389f565b6040516020016136a992919061478f565b604051602081830303815290604052613d88565b905060006136cc606483615474565b90506000605f8260ff16116136f45760508260ff16116136ed5760036136f7565b60026136f7565b60015b855190915060006137096003836152c9565b90506000613717828561530a565b613721908461538d565b905060008261373160018761538d565b61373b919061530a565b61374660018661538d565b613750919061538d565b9050600060ff8316613762848461538d565b61376d90600161526a565b60ff16613788338a8f6040516020016136a99392919061472b565b6137929190615474565b61379c9190615252565b9050898160ff16815181106137b3576137b36154ca565b6020026020010151985050505050505050509392505050565b6060816001600160a01b03166395d89b416040518163ffffffff1660e01b815260040160006040518083038186803b15801561380757600080fd5b505afa15801561381b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526109c09190810190614550565b6000808461ffff168361ffff161161385c57858561385f565b83835b9150915094509492505050565b61387784848461310d565b61388384848484613db9565b6128a65760405162461bcd60e51b8152600401610acd906150ab565b6060816138c35750506040805180820190915260018152600360fc1b602082015290565b8160005b81156138ed57806138d781615439565b91506138e69050600a836152b5565b91506138c7565b60008167ffffffffffffffff811115613908576139086154e0565b6040519080825280601f01601f191660200182016040528015613932576020820181803683370190505b5090505b841561310557613947600183615376565b9150613954600a86615474565b61395f906030615252565b60f81b818381518110613974576139746154ca565b60200101906001600160f81b031916908160001a905350613996600a866152b5565b9450613936565b8051606090806139bd575050604080516020810190915260008152919050565b600060036139cc836002615252565b6139d691906152b5565b6139e19060046152eb565b905060006139f0826020615252565b67ffffffffffffffff811115613a0857613a086154e0565b6040519080825280601f01601f191660200182016040528015613a32576020820181803683370190505b50905060006040518060600160405280604081526020016155d6604091399050600181016020830160005b86811015613abe576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101613a5d565b506003860660018114613ad85760028114613ae957613af5565b613d3d60f01b600119830152613af5565b603d60f81b6000198301525b505050918152949350505050565b60408051602081019091526000808252606091905b600a8160ff161015613b85578160158260ff1681548110613b3b57613b3b6154ca565b90600052602060002001613b4f8784611c56565b604051602001613b6193929190614867565b60405160208183030381529060405291508080613b7d90615454565b915050613b18565b5060405180604001604052806005815260200164626c61636b60d81b815250604051602001613bb49190614773565b604051602081830303815290604052805190602001208360400151604051602001613bdf9190614773565b6040516020818303038152906040528051906020012014613c74578251604051613c0d9183916020016148e3565b6040516020818303038152906040529050808360400151604051602001613c35929190614b4d565b60408051601f19818403018152908290528451602086810151929450613c5e938593910161494a565b6040516020818303038152906040529050611e17565b80604051602001613c859190614815565b60405160208183030381529060405290509392505050565b6001600160a01b038316613cf857613cf381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b613d1b565b816001600160a01b0316836001600160a01b031614613d1b57613d1b8382613ec6565b6001600160a01b038216613d3257610c0381613f63565b826001600160a01b0316826001600160a01b031614610c0357610c038282614012565b613d5f8383614056565b613d6c6000848484613db9565b610c035760405162461bcd60e51b8152600401610acd906150ab565b600081604051602001613d9b9190614773565b60408051601f19818403018152919052805160209091012092915050565b60006001600160a01b0384163b15613ebb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613dfd903390899088908890600401614fbb565b602060405180830381600087803b158015613e1757600080fd5b505af1925050508015613e47575060408051601f3d908101601f19168201909252613e4491810190614533565b60015b613ea1573d808015613e75576040519150601f19603f3d011682016040523d82523d6000602084013e613e7a565b606091505b508051613e995760405162461bcd60e51b8152600401610acd906150ab565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050613105565b506001949350505050565b60006001613ed384611b6f565b613edd9190615376565b600083815260076020526040902054909150808214613f30576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090613f7590600190615376565b60008381526009602052604081205460088054939450909284908110613f9d57613f9d6154ca565b906000526020600020015490508060088381548110613fbe57613fbe6154ca565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480613ff657613ff66154b4565b6001900381819060005260206000200160009055905550505050565b600061401d83611b6f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166140ac5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610acd565b6000818152600260205260409020546001600160a01b0316156141115760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610acd565b61411d60008383613c9d565b6001600160a01b0382166000908152600360205260408120805460019290614146908490615252565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546141b0906153dc565b90600052602060002090601f0160209004810192826141d25760008555614218565b82601f106141eb57805160ff1916838001178555614218565b82800160010185558215614218579182015b828111156142185782518255916020019190600101906141fd565b506142249291506142ca565b5090565b828054614234906153dc565b90600052602060002090601f0160209004810192826142565760008555614218565b82601f106142675780548555614218565b8280016001018555821561421857600052602060002091601f016020900482015b82811115614218578254825591600101919060010190614288565b60405180608001604052806004905b60608152602001906001900390816142b25790505090565b5b8082111561422457600081556001016142cb565b6000602082840312156142f157600080fd5b8135611e17816154f6565b60006020828403121561430e57600080fd5b8151611e17816154f6565b6000806040838503121561432c57600080fd5b8235614337816154f6565b91506020830135614347816154f6565b809150509250929050565b60008060006060848603121561436757600080fd5b8335614372816154f6565b92506020840135614382816154f6565b929592945050506040919091013590565b600080600080608085870312156143a957600080fd5b84356143b4816154f6565b935060208501356143c4816154f6565b925060408501359150606085013567ffffffffffffffff8111156143e757600080fd5b8501601f810187136143f857600080fd5b803561440b614406826151eb565b6151ba565b81815288602083850101111561442057600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b6000806040838503121561445557600080fd5b8235614460816154f6565b91506020830135801515811461434757600080fd5b6000806040838503121561448857600080fd5b8235614493816154f6565b946020939093013593505050565b600080602083850312156144b457600080fd5b823567ffffffffffffffff808211156144cc57600080fd5b818501915085601f8301126144e057600080fd5b8135818111156144ef57600080fd5b8660208260051b850101111561450457600080fd5b60209290920196919550909350505050565b60006020828403121561452857600080fd5b8135611e178161550b565b60006020828403121561454557600080fd5b8151611e178161550b565b60006020828403121561456257600080fd5b815167ffffffffffffffff81111561457957600080fd5b8201601f8101841361458a57600080fd5b8051614598614406826151eb565b8181528560208385010111156145ad57600080fd5b6145be8260208301602086016153b0565b95945050505050565b6000602082840312156145d957600080fd5b5035919050565b6000602082840312156145f257600080fd5b5051919050565b6000806040838503121561460c57600080fd5b823591506020830135614347816154f6565b6000806040838503121561463157600080fd5b82359150602083013560ff8116811461434757600080fd5b600081518084526146618160208601602086016153b0565b601f01601f19169290920160200192915050565b600081516146878185602086016153b0565b9290920192915050565b8054600090600181811c90808316806146ab57607f831692505b60208084108214156146cd57634e487b7160e01b600052602260045260246000fd5b8180156146e157600181146146f25761471f565b60ff1986168952848901965061471f565b60008881526020902060005b868110156147175781548b8201529085019083016146fe565b505084890196505b50505050505092915050565b6bffffffffffffffffffffffff198460601b16815260ff60f81b8360f81b166014820152600082516147648160158501602087016153b0565b91909101601501949350505050565b600082516147858184602087016153b0565b9190910192915050565b600083516147a18184602088016153b0565b8351908301906147b58183602088016153b0565b01949350505050565b600085516147d0818460208a016153b0565b8551908301906147e4818360208a016153b0565b85519101906147f78183602089016153b0565b845191019061480a8183602088016153b0565b019695505050505050565b600082516148278184602087016153b0565b7f7b2274726169745f74797065223a2254797065222c2276616c7565223a22455892019182525067504c4f524552227d60c01b6020820152602801919050565b600084516148798184602089016153b0565b6e3d913a3930b4ba2fba3cb832911d1160891b90830190815261489f600f820186614691565b6a1116113b30b63ab2911d1160a91b815284519091506148c681600b8401602088016153b0565b62089f4b60ea1b600b9290910191820152600e0195945050505050565b600083516148f58184602088016153b0565b7f7b2274726169745f74797065223a2254797065222c2276616c7565223a220000908301908152835161492f81601e8401602088016153b0565b61227d60f01b601e9290910191820152602001949350505050565b6000845161495c8184602089016153b0565b6f163d913a3930b4ba2fba3cb832911d1160811b90830190815284516149898160108401602089016153b0565b6a1116113b30b63ab2911d1160a91b6010929091019182015283516149b581601b8401602088016153b0565b61227d60f01b601b9290910191820152601d0195945050505050565b600087516149e3818460208c016153b0565b80830190507f3c2f746578743e3c7465787420783d2231302220793d2234302220636c6173738152641e9131111f60d91b8060208301528851614a2d816025850160208d016153b0565b8083019250507f3c2f746578743e3c7465787420783d2231302220793d2236302220636c61737360258301528060458301528751614a7281604a850160208c016153b0565b7f3c2f746578743e3c7465787420783d2231302220793d2238302220636c617373604a9390910192830152606a8201528551614ab581606f840160208a016153b0565b7f3c2f746578743e3c7465787420783d2231302220793d223130302220636c6173606f929091019182015265399e9131111f60d11b608f820152614b40614b3a614b026095840188614675565b7f3c2f746578743e3c7465787420783d2231302220793d223132302220636c6173815265399e9131111f60d11b602082015260260190565b85614675565b9998505050505050505050565b60008351614b5f8184602088016153b0565b80830190507f2c7b2274726169745f74797065223a22466c616720436f6c6f72222c2276616c8152643ab2911d1160d91b60208201528351614ba88160258401602088016153b0565b61227d60f01b60259290910191820152602701949350505050565b6000611e178284614691565b737b226e616d65223a202254726176656c6572202360601b81528351600090614bff8160148501602089016153b0565b7f222c20226465736372697074696f6e223a202254726176656c6572204c6f6f746014918401918201527f2069732061204c6f6f74206465726976617469766520666f722074686520547260348201527f6176656c20496e6475737472792c2067656e65726174656420616e642073746f60548201527f726564206f6e20636861696e2e204665656c206672656520746f20757365207460748201527f68652054726176656c6572204c6f6f7420696e20616e792077617920796f752060948201527f77616e74222c2022696d616765223a2022646174613a696d6167652f7376672b60b48201526a1e1b5b0ed8985cd94d8d0b60aa1b60d48201528451614d0e8160df8401602089016153b0565b614d4d614d3f614d3960df848601016f222c2261747472696275746573223a5b60801b815260100190565b87614675565b615d7d60f01b815260020190565b979650505050505050565b7f3c6c696e652078313d2230222078323d22333530222079313d2233303022207981526f191e91199818111039ba3937b5b29e9160811b602082015260008351614da98160308501602088016153b0565b73111039ba3937b5b296bbb4b23a341e911a11179f60611b6030918401918201527f3c7465787420783d223334302220793d223239342220746578742d616e63686f604482015271391e9132b732111031b630b9b99e9131111f60711b60648201528351614e1e8160768401602088016153b0565b6c1e17ba32bc3a1f1e17b9bb339f60991b60769290910191820152608301949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251614e7c81601d8501602087016153b0565b91909101601d0192915050565b7f3c2f746578743e3c7465787420783d2231302220793d223134302220636c61738152600065399e9131111f60d11b8060208401528651614ed1816026860160208b016153b0565b80840190507f3c2f746578743e3c7465787420783d2231302220793d223136302220636c617360268201528160468201528651614f1581604c840160208b016153b0565b8082019150507f3c2f746578743e3c7465787420783d2231302220793d223138302220636c6173604c82015281606c8201528551614f5a816072840160208a016153b0565b8082019150507f3c2f746578743e3c7465787420783d2231302220793d223230302220636c61736072820152816092820152614faf614f9c6098830187614675565b661e17ba32bc3a1f60c91b815260070190565b98975050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090614fee90830184614649565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156150395783516001600160a01b031683529284019291840191600101615014565b50909695505050505050565b602081526000611e176020830184614649565b60a08152600061506b60a0830188614649565b828103602084015261507d8188614649565b905082810360408401526150918187614649565b606084019590955250509015156080909101529392505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b604051601f8201601f1916810167ffffffffffffffff811182821017156151e3576151e36154e0565b604052919050565b600067ffffffffffffffff821115615205576152056154e0565b50601f01601f191660200190565b600061ffff8083168185168083038211156147b5576147b5615488565b60006001600160a01b038281168482168083038211156147b5576147b5615488565b6000821982111561526557615265615488565b500190565b600060ff821660ff84168060ff0382111561528757615287615488565b019392505050565b60006001600160a01b03838116806152a9576152a961549e565b92169190910492915050565b6000826152c4576152c461549e565b500490565b600060ff8316806152dc576152dc61549e565b8060ff84160491505092915050565b600081600019048311821515161561530557615305615488565b500290565b600060ff821660ff84168160ff048111821515161561532b5761532b615488565b029392505050565b600061ffff8381169083168181101561534e5761534e615488565b039392505050565b60006001600160a01b038381169083168181101561534e5761534e615488565b60008282101561538857615388615488565b500390565b600060ff821660ff8416808210156153a7576153a7615488565b90039392505050565b60005b838110156153cb5781810151838201526020016153b3565b838111156128a65750506000910152565b600181811c908216806153f057607f821691505b6020821081141561541157634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff8083168181141561542f5761542f615488565b6001019392505050565b600060001982141561544d5761544d615488565b5060010190565b600060ff821660ff81141561546b5761546b615488565b60010192915050565b6000826154835761548361549e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461151e57600080fd5b6001600160e01b03198116811461151e57600080fdfe41646472657373206e6f742076657269666965642e2054727920616e6f74686572596f7520646f206e6f74206f776e20746f6b656e287329206f66207468652061646472657373436f6d7065746974696f6e2068617320656e6465642e20436865636b2074686520436f6e717565726f722154726561737572657220616c7265616479206368616e6765642e20506572666f726d2061207769746864726177616c206265666f7265206368616e67696e672069744142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f436865636b20636f6e646974696f6e73206265666f72652077686974656c697374696e67a2646970667358221220f9ba961c0a8317e01a33ce922951c680df596dc2a41540b34cecd8393478fec164736f6c63430008070033307830303030303030303030303030303030303030303030303030303030303030303030303030303030436975646164206465206c61732041727465732079206c6173204369656e63696173

Deployed Bytecode

0x6080604052600436106102c95760003560e01c80636ae2719d116101755780639a81cd91116100dc578063b819827711610095578063d06f97341161006f578063d06f9734146108c1578063e985e9c5146108e1578063f2fde38b1461092a578063fda49eb41461094a57600080fd5b8063b81982771461085f578063b88d4fde14610881578063c87b56dd146108a157600080fd5b80639a81cd911461077f578063a22cb46514610799578063ab0f9250146107b9578063b1aeaa78146107dd578063b22a6c82146107f2578063b810fb431461082957600080fd5b80638bef82b81161012e5780638bef82b8146106955780638da5cb5b146106f75780638ddba57a1461071557806395d89b411461073557806397bda41d1461074a578063985885781461076a57600080fd5b80636ae2719d146105ea57806370a0823114610600578063715018a614610620578063746a0af6146106355780638319129f1461065557806383804ab51461067557600080fd5b8063319c4ec7116102345780634d531bf4116101ed57806351a35b80116101c757806351a35b801461057f5780635c5ad967146105955780636352211e146105b5578063635cb59e146105d557600080fd5b80634d531bf4146105195780634e71d92d1461054a5780634f6ccce71461055f57600080fd5b8063319c4ec7146104845780633bbab874146104a45780633ccfd60b146104b9578063413d9c3a146104ce57806342842e0e146104e45780634b8e377d1461050457600080fd5b806317bac0521161028657806317bac052146103b357806318160ddd146103dc578063225d697f146103fb57806323b872dd1461041d5780632f745c591461043d5780632fdcbccd1461045d57600080fd5b806301ffc9a7146102ce57806306fdde0314610303578063081812fc14610325578063095ea7b31461035d57806310c333931461037f5780631693440e146103ab575b600080fd5b3480156102da57600080fd5b506102ee6102e9366004614516565b61099b565b60405190151581526020015b60405180910390f35b34801561030f57600080fd5b506103186109c6565b6040516102fa9190615045565b34801561033157600080fd5b506103456103403660046145c7565b610a58565b6040516001600160a01b0390911681526020016102fa565b34801561036957600080fd5b5061037d610378366004614475565b610af2565b005b34801561038b57600080fd5b506013546103999060ff1681565b60405160ff90911681526020016102fa565b61037d610c08565b3480156103bf57600080fd5b506103c961271081565b60405161ffff90911681526020016102fa565b3480156103e857600080fd5b506008545b6040519081526020016102fa565b34801561040757600080fd5b50610410610d38565b6040516102fa9190614ff8565b34801561042957600080fd5b5061037d610438366004614352565b610d99565b34801561044957600080fd5b506103ed610458366004614475565b610dca565b34801561046957600080fd5b5060135461034590600160381b90046001600160a01b031681565b34801561049057600080fd5b5061037d61049f3660046145f9565b610e60565b3480156104b057600080fd5b5061037d61124d565b3480156104c557600080fd5b5061037d611464565b3480156104da57600080fd5b506103c961438081565b3480156104f057600080fd5b5061037d6104ff366004614352565b611521565b34801561051057600080fd5b5061037d61153c565b34801561052557600080fd5b506105396105343660046142df565b6116c2565b6040516102fa959493929190615058565b34801561055657600080fd5b5061037d61188c565b34801561056b57600080fd5b506103ed61057a3660046145c7565b611a51565b34801561058b57600080fd5b506103ed60145481565b3480156105a157600080fd5b506103186105b03660046142df565b611ae4565b3480156105c157600080fd5b506103456105d03660046145c7565b611af8565b3480156105e157600080fd5b506103c9606481565b3480156105f657600080fd5b506103c961038481565b34801561060c57600080fd5b506103ed61061b3660046142df565b611b6f565b34801561062c57600080fd5b5061037d611bf6565b34801561064157600080fd5b506103456106503660046145c7565b611c2c565b34801561066157600080fd5b5061031861067036600461461e565b611c56565b34801561068157600080fd5b506013546103c990610100900461ffff1681565b3480156106a157600080fd5b50600c546106cd906001600160a01b03811690600160a01b810461ffff1690600160b01b900460ff1683565b604080516001600160a01b03909416845261ffff90921660208401521515908201526060016102fa565b34801561070357600080fd5b50600b546001600160a01b0316610345565b34801561072157600080fd5b506103ed6107303660046142df565b611e1e565b34801561074157600080fd5b50610318612067565b34801561075657600080fd5b5061037d6107653660046144a1565b612076565b34801561077657600080fd5b5061037d612478565b34801561078b57600080fd5b506010546102ee9060ff1681565b3480156107a557600080fd5b5061037d6107b4366004614442565b61262d565b3480156107c557600080fd5b506013546103c99065010000000000900461ffff1681565b3480156107e957600080fd5b5061037d6126f2565b3480156107fe57600080fd5b50610807612778565b604080516001600160a01b03909316835261ffff9091166020830152016102fa565b34801561083557600080fd5b506103456108443660046145c7565b6012602052600090815260409020546001600160a01b031681565b34801561086b57600080fd5b506013546103c9906301000000900461ffff1681565b34801561088d57600080fd5b5061037d61089c366004614393565b612874565b3480156108ad57600080fd5b506103186108bc3660046145c7565b6128ac565b3480156108cd57600080fd5b5061037d6108dc366004614442565b612d9a565b3480156108ed57600080fd5b506102ee6108fc366004614319565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561093657600080fd5b5061037d6109453660046142df565b612e59565b34801561095657600080fd5b50600d54600e54600f54610975926001600160a01b0390811692169083565b604080516001600160a01b039485168152939092166020840152908201526060016102fa565b60006001600160e01b0319821663780e9d6360e01b14806109c057506109c082612ef1565b92915050565b6060600080546109d5906153dc565b80601f0160208091040260200160405190810160405280929190818152602001828054610a01906153dc565b8015610a4e5780601f10610a2357610100808354040283529160200191610a4e565b820191906000526020600020905b815481529060010190602001808311610a3157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610ad65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610afd82611af8565b9050806001600160a01b0316836001600160a01b03161415610b6b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610acd565b336001600160a01b0382161480610b875750610b8781336108fc565b610bf95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610acd565b610c038383612f41565b505050565b6002600a541415610c2b5760405162461bcd60e51b8152600401610acd90615183565b6002600a5560145415801590610c4357506014544310155b6040518060400160405280600f81526020016e21b7b6b2903130b1b5903630ba32b960891b81525090610c895760405162461bcd60e51b8152600401610acd9190615045565b506013546040805180820190915260128152715365742061206869676865722076616c756560701b602082015290600160381b90046001600160a01b0316341015610ce75760405162461bcd60e51b8152600401610acd9190615045565b50610cf6600260056001612faf565b6013805465010000000000900461ffff16906005610d1383615417565b91906101000a81548161ffff021916908361ffff160217905550506001600a81905550565b60606016805480602002602001604051908101604052809291908181526020018280548015610a4e57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610d72575050505050905090565b610da33382613016565b610dbf5760405162461bcd60e51b8152600401610acd90615132565b610c0383838361310d565b6000610dd583611b6f565b8210610e375760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610acd565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6002600a541415610e835760405162461bcd60e51b8152600401610acd90615183565b6002600a5560145415801590610e9b57506014544310155b6040518060400160405280600f81526020016e21b7b6b2903130b1b5903630ba32b960891b81525090610ee15760405162461bcd60e51b8152600401610acd9190615045565b50600c60000160169054906101000a900460ff16156040518060600160405280602b8152602001615569602b913990610f2d5760405162461bcd60e51b8152600401610acd9190615045565b506001600160a01b03811660009081526011602090815260409182902060048101548351606081019094526021808552919360ff909116929091906155229083013990610f8d5760405162461bcd60e51b8152600401610acd9190615045565b508183158015906110215750336040516331a9108f60e11b8152600481018690526001600160a01b0391821691831690636352211e9060240160206040518083038186803b158015610fde57600080fd5b505afa158015610ff2573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061101691906142fc565b6001600160a01b0316145b60405180606001604052806026815260200161554360269139906110585760405162461bcd60e51b8152600401610acd9190615045565b5060038201541580156110965750601660008154811061107a5761107a6154ca565b6000918252602090912001546001600160a01b03848116911614155b156110bb576110a36132b8565b80516110b99160028501916020909101906141a4565b505b60006110c961038486615474565b90506110d86001610384615333565b6013546301000000900461ffff908116911614156111cf576110f8612778565b600c8054600162ff000160a01b031961ffff909316600160a01b02929092166001600160b81b0319909216919091176001600160a01b0390921691909117600160b01b179055600460005260116020526002830180547f251164fe1d8864fe5e86082eae9c288bc2b58695a4d28538dfe86e9e4f175587919061117a906153dc565b611185929190614228565b50600460005260116020526001830180547f251164fe1d8864fe5e86082eae9c288bc2b58695a4d28538dfe86e9e4f17558691906111c2906153dc565b6111cd929190614228565b505b600061ffff8216156111e157816111e5565b6103845b90506111f88161ffff1686600180613515565b611207335b8261ffff16613617565b601380546301000000900461ffff1690600361122283615417565b91906101000a81548161ffff021916908361ffff16021790555050505050506001600a819055505050565b6002600a5414156112705760405162461bcd60e51b8152600401610acd90615183565b6002600a556014541580159061128857506014544310155b6040518060400160405280600f81526020016e21b7b6b2903130b1b5903630ba32b960891b815250906112ce5760405162461bcd60e51b8152600401610acd9190615045565b50600060166000815481106112e5576112e56154ca565b6000918252602090912001546001600160a01b03166370a08231336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260240160206040518083038186803b15801561133f57600080fd5b505afa158015611353573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061137791906145e0565b1160405180606001604052806026815260200161554360269139906113af5760405162461bcd60e51b8152600401610acd9190615045565b50600c60000160169054906101000a900460ff16156040518060600160405280602b8152602001615569602b9139906113fb5760405162461bcd60e51b8152600401610acd9190615045565b5060408051808201909152601f81527f4f6e6c792076616c69642074696c6c20446f6d277320343074682062646179006020820152636ab9adff4211156114555760405162461bcd60e51b8152600401610acd9190615045565b50610cf6600360056000612faf565b600b546001600160a01b0316331461148e5760405162461bcd60e51b8152600401610acd906150fd565b600f8054604080518082019091529182526e21b7b6b2903130b1b5903630ba32b960891b60208301524310156114d75760405162461bcd60e51b8152600401610acd9190615045565b506010805460ff19166001179055600e546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561151e573d6000803e3d6000fd5b50565b610c0383838360405180602001604052806000815250612874565b6002600a54141561155f5760405162461bcd60e51b8152600401610acd90615183565b6002600a55600b546001600160a01b0316331461158e5760405162461bcd60e51b8152600401610acd906150fd565b60006014541180156115a257506014544310155b6040518060400160405280600f81526020016e21b7b6b2903130b1b5903630ba32b960891b815250906115e85760405162461bcd60e51b8152600401610acd9190615045565b50601354600090610384906116019060ff16600161526a565b60ff1661160e9190615213565b905061161d6064610384615213565b61ffff168161ffff1611156040518060400160405280601081526020016f151bdad95b881251081a5b9d985b1a5960821b8152509061166f5760405162461bcd60e51b8152600401610acd9190615045565b506116828161ffff166000806001613515565b61168b336111fd565b6013805460ff1690600061169e83615454565b91906101000a81548160ff021916908360ff16021790555050506001600a81905550565b6011602052600090815260409020805481906116dd906153dc565b80601f0160208091040260200160405190810160405280929190818152602001828054611709906153dc565b80156117565780601f1061172b57610100808354040283529160200191611756565b820191906000526020600020905b81548152906001019060200180831161173957829003601f168201915b50505050509080600101805461176b906153dc565b80601f0160208091040260200160405190810160405280929190818152602001828054611797906153dc565b80156117e45780601f106117b9576101008083540402835291602001916117e4565b820191906000526020600020905b8154815290600101906020018083116117c757829003601f168201915b5050505050908060020180546117f9906153dc565b80601f0160208091040260200160405190810160405280929190818152602001828054611825906153dc565b80156118725780601f1061184757610100808354040283529160200191611872565b820191906000526020600020905b81548152906001019060200180831161185557829003601f168201915b50505050600383015460049093015491929160ff16905085565b6002600a5414156118af5760405162461bcd60e51b8152600401610acd90615183565b6002600a55601454158015906118c757506014544310155b6040518060400160405280600f81526020016e21b7b6b2903130b1b5903630ba32b960891b8152509061190d5760405162461bcd60e51b8152600401610acd9190615045565b50600b5460408051808201909152601a81527f55736520636c61696d42794f776e6572282920696e73746561640000000000006020820152906001600160a01b031633141561196f5760405162461bcd60e51b8152600401610acd9190615045565b506013546000906064906103849061199190610100900461ffff166001615213565b61199b9190615213565b6119a59190615213565b60408051808201909152601081526f151bdad95b881251081a5b9d985b1a5960821b602082015290915061271061ffff831611156119f65760405162461bcd60e51b8152600401610acd9190615045565b50611a098161ffff166001806000613515565b611a12336111fd565b60138054610100900461ffff16906001611a2b83615417565b91906101000a81548161ffff021916908361ffff16021790555050506001600a81905550565b6000611a5c60085490565b8210611abf5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610acd565b60088281548110611ad257611ad26154ca565b90600052602060002001549050919050565b60606109c0826001600160a01b03166128ac565b6000818152600260205260408120546001600160a01b0316806109c05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610acd565b60006001600160a01b038216611bda5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610acd565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314611c205760405162461bcd60e51b8152600401610acd906150fd565b611c2a6000613635565b565b60168181548110611c3c57600080fd5b6000918252602090912001546001600160a01b0316905081565b6060611e178360158460ff1681548110611c7257611c726154ca565b906000526020600020018054611c87906153dc565b80601f0160208091040260200160405190810160405280929190818152602001828054611cb3906153dc565b8015611d005780601f10611cd557610100808354040283529160200191611d00565b820191906000526020600020905b815481529060010190602001808311611ce357829003601f168201915b5050505050601760158660ff1681548110611d1d57611d1d6154ca565b90600052602060002001604051611d349190614bc3565b9081526020016040518091039020805480602002602001604051908101604052809291908181526020016000905b82821015611e0e578382906000526020600020018054611d81906153dc565b80601f0160208091040260200160405190810160405280929190818152602001828054611dad906153dc565b8015611dfa5780601f10611dcf57610100808354040283529160200191611dfa565b820191906000526020600020905b815481529060010190602001808311611ddd57829003601f168201915b505050505081526020019060010190611d62565b50505050613687565b9392505050565b6001600160a01b038116600090815260116020526040808220815160a0810190925280548392919082908290611e53906153dc565b80601f0160208091040260200160405190810160405280929190818152602001828054611e7f906153dc565b8015611ecc5780601f10611ea157610100808354040283529160200191611ecc565b820191906000526020600020905b815481529060010190602001808311611eaf57829003601f168201915b50505050508152602001600182018054611ee5906153dc565b80601f0160208091040260200160405190810160405280929190818152602001828054611f11906153dc565b8015611f5e5780601f10611f3357610100808354040283529160200191611f5e565b820191906000526020600020905b815481529060010190602001808311611f4157829003601f168201915b50505050508152602001600282018054611f77906153dc565b80601f0160208091040260200160405190810160405280929190818152602001828054611fa3906153dc565b8015611ff05780601f10611fc557610100808354040283529160200191611ff0565b820191906000526020600020905b815481529060010190602001808311611fd357829003601f168201915b50505050508152602001600382015481526020016004820160009054906101000a900460ff16151515158152505090508060800151604051806060016040528060218152602001615522602191399061205c5760405162461bcd60e51b8152600401610acd9190615045565b506060015192915050565b6060600180546109d5906153dc565b6002600a5414156120995760405162461bcd60e51b8152600401610acd90615183565b6002600a55600c546040805160608101909152602b808252600160b01b90920460ff1615916155696020830139906120e45760405162461bcd60e51b8152600401610acd9190615045565b5060005b60ff811682111561246e57600083838360ff1681811061210a5761210a6154ca565b905060200201602081019061211f91906142df565b60408051808201909152600c81526b4e6f7420706f737369626c6560a01b6020820152909150306001600160a01b038316141561216f5760405162461bcd60e51b8152600401610acd9190615045565b506032306370a08231336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260240160206040518083038186803b1580156121b857600080fd5b505afa1580156121cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121f091906145e0565b11806122135750336000908152600260205260409020546001600160a01b031615155b806122285750600b546001600160a01b031633145b604051806060016040528060248152602001615616602491399061225f5760405162461bcd60e51b8152600401610acd9190615045565b5060005b60165461ffff8216101561232257816001600160a01b031660168261ffff1681548110612292576122926154ca565b9060005260206000200160009054906101000a90046001600160a01b03166001600160a01b031614156040518060400160405280601a81526020017f4775696c6420616c72656164792077686974656c6973746564210000000000008152509061230f5760405162461bcd60e51b8152600401610acd9190615045565b508061231a81615417565b915050612263565b50601680546001810182556000919091527fd833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b51242890180546001600160a01b0319166001600160a01b0383161790556040805160e08101909152600560a082019081526411d552531160da1b60c083015281526020810161239f836137cc565b81526040805180820182526005815264626c61636b60d81b60208281019190915280840191909152600082840181905260016060909401939093526001600160a01b0385168352601181529120825180519192612401928492909101906141a4565b50602082810151805161241a92600185019201906141a4565b50604082015180516124369160028401916020909101906141a4565b50606082015160038201556080909101516004909101805460ff1916911515919091179055508061246681615454565b9150506120e8565b50506001600a5550565b6002600a54141561249b5760405162461bcd60e51b8152600401610acd90615183565b6002600a55601454158015906124b357506014544310155b6040518060400160405280600f81526020016e21b7b6b2903130b1b5903630ba32b960891b815250906124f95760405162461bcd60e51b8152600401610acd9190615045565b50600c5460408051808201909152601a81527f436f6e717565726f72206e6f742079657420656c656374656421000000000000602082015290600160b01b900460ff166125595760405162461bcd60e51b8152600401610acd9190615045565b50600c546000906001600160a01b03166370a08231336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260240160206040518083038186803b1580156125ae57600080fd5b505afa1580156125c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125e691906145e0565b11604051806060016040528060268152602001615543602691399061261e5760405162461bcd60e51b8152600401610acd9190615045565b50610cf6600460026001612faf565b6001600160a01b0382163314156126865760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610acd565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b546001600160a01b0316331461271c5760405162461bcd60e51b8152600401610acd906150fd565b601454604080518082019091526011815270105b1c9958591e481858dd1a5d985d1959607a1b602082015290156127665760405162461bcd60e51b8152600401610acd9190615045565b5061277361438043615252565b601455565b600c546000908190600160b01b900460ff16156127ae575050600c546001600160a01b03811691600160a01b90910461ffff1690565b600060166000815481106127c4576127c46154ca565b60009182526020808320909101546001600160a01b0316808352601190915260409091206003015490915060015b60165460ff8216101561286a57600060168260ff1681548110612817576128176154ca565b60009182526020808320909101546001600160a01b0316808352601190915260409091206003015490915061285190859085908490613843565b909450925081905061286281615454565b9150506127f2565b5090939092509050565b61287e3383613016565b61289a5760405162461bcd60e51b8152600401610acd90615132565b6128a68484848461386c565b50505050565b6000818152601260209081526040808320546001600160a01b031683526011909152808220815160a081019092528054606093929190829082906128ef906153dc565b80601f016020809104026020016040519081016040528092919081815260200182805461291b906153dc565b80156129685780601f1061293d57610100808354040283529160200191612968565b820191906000526020600020905b81548152906001019060200180831161294b57829003601f168201915b50505050508152602001600182018054612981906153dc565b80601f01602080910402602001604051908101604052809291908181526020018280546129ad906153dc565b80156129fa5780601f106129cf576101008083540402835291602001916129fa565b820191906000526020600020905b8154815290600101906020018083116129dd57829003601f168201915b50505050508152602001600282018054612a13906153dc565b80601f0160208091040260200160405190810160405280929190818152602001828054612a3f906153dc565b8015612a8c5780601f10612a6157610100808354040283529160200191612a8c565b820191906000526020600020905b815481529060010190602001808311612a6f57829003601f168201915b50505091835250506003820154602082015260049091015460ff1615156040909101529050612ab96142a3565b604051602001612bf6907f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323081527f30302f73766722207072657365727665417370656374526174696f3d22784d6960208201527f6e594d696e206d656574222076696577426f783d22302030203335302033353060408201527f223e3c7374796c653e2e62207b2066696c6c3a77686974653b20666f6e742d6660608201527f616d696c793a2073657269663b20666f6e742d73697a653a20313470783b207d60808201527f3c2f7374796c653e203c726563742077696474683d223130302522206865696760a08201527f68743d2231303025222066696c6c3d22626c61636b22202f3e3c74657874207860c08201527f3d2231302220793d2232302220636c6173733d2262223e00000000000000000060e082015260f70190565b60408051808303601f190181529190528152612c13846000611c56565b612c1e856001611c56565b612c29866002611c56565b612c34876003611c56565b612c3f886004611c56565b612c4a896005611c56565b604051602001612c5f969594939291906149d1565b60408051808303601f190181529190526020820152612c7f846006611c56565b612c8a856007611c56565b612c95866008611c56565b612ca0876009611c56565b604051602001612cb39493929190614e89565b60408051808303601f19018152918152828101919091528281015183519151612cdf9290602001614d58565b60408051808303601f19018152918152606083018290528251602080850151858401519351600095612d159592939091016147be565b60405160208183030381529060405290506000612d6d612d348761389f565b612d3d8461399d565b612d478988613b03565b604051602001612d5993929190614bcf565b60405160208183030381529060405261399d565b905080604051602001612d809190614e44565b604051602081830303815290604052945050505050919050565b600b546001600160a01b03163314612dc45760405162461bcd60e51b8152600401610acd906150fd565b6010546040805160808101909152604280825260ff90921691615594602083013990612e035760405162461bcd60e51b8152600401610acd9190615045565b508015612e15576010805460ff191690555b6000612e2361438043615252565b600e8054600d80546001600160a01b038084166001600160a01b0319928316179092559091169516949094179093555050600f55565b600b546001600160a01b03163314612e835760405162461bcd60e51b8152600401610acd906150fd565b6001600160a01b038116612ee85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610acd565b61151e81613635565b60006001600160e01b031982166380ac58cd60e01b1480612f2257506001600160e01b03198216635b5e139f60e01b145b806109c057506301ffc9a760e01b6001600160e01b03198316146109c0565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612f7682611af8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b604080516060810190915260218082523391612710831191615522602083013990612fed5760405162461bcd60e51b8152600401610acd9190615045565b50613003816001600160a01b0316858585613515565b6128a633826001600160a01b0316613617565b6000818152600260205260408120546001600160a01b031661308f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610acd565b600061309a83611af8565b9050806001600160a01b0316846001600160a01b031614806130d55750836001600160a01b03166130ca84610a58565b6001600160a01b0316145b8061310557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661312082611af8565b6001600160a01b0316146131885760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610acd565b6001600160a01b0382166131ea5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610acd565b6131f5838383613c9d565b613200600082612f41565b6001600160a01b0383166000908152600360205260408120805460019290613229908490615376565b90915550506001600160a01b0382166000908152600360205260408120805460019290613257908490615252565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b604080516102408101825260016102008201818152600360fc1b610220840152825282518084018452818152603160f81b6020828101919091528084019190915283518085018552828152601960f91b818301528385015283518085018552828152603360f81b8183015260608481019190915284518086018652838152600d60fa1b81840152608085015284518086018652838152603560f81b8184015260a085015284518086018652838152601b60f91b8184015260c085015284518086018652838152603760f81b8184015260e085015284518086018652838152600760fb1b8184015261010085015284518086018652838152603960f81b8184015261012085015284518086018652838152606160f81b8184015261014085015284518086018652838152603160f91b8184015261016085015284518086018652838152606360f81b8184015261018085015284518086018652838152601960fa1b818401526101a085015284518086018652838152606560f81b818401526101c085015284518086018652838152603360f91b818401526101e08501528451808601909552918452602360f81b908401529160005b60068160ff16101561350e576040805144602080830191909152428284015260f884901b6001600160f81b0319166060830152825160418184030181526061909201909252805191012082846134c3601084615474565b601081106134d3576134d36154ca565b60200201516040516020016134e992919061478f565b604051602081830303815290604052925050808061350690615454565b91505061346c565b5092915050565b60ff8216156135bb57600061352b8360646152c9565b60135461354b9160ff1690600160381b90046001600160a01b031661528f565b90508161357557601354613570908290600160381b90046001600160a01b0316615356565b613593565b601354613593908290600160381b90046001600160a01b0316615230565b601360076101000a8154816001600160a01b0302191690836001600160a01b03160217905550505b6001600160a01b03831660009081526011602052604081206003018054916135e283615439565b9091555050506000928352506012602052604090912080546001600160a01b0319166001600160a01b03909216919091179055565b613631828260405180602001604052806000815250613d55565b5050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b606060006136bd846136988761389f565b6040516020016136a992919061478f565b604051602081830303815290604052613d88565b905060006136cc606483615474565b90506000605f8260ff16116136f45760508260ff16116136ed5760036136f7565b60026136f7565b60015b855190915060006137096003836152c9565b90506000613717828561530a565b613721908461538d565b905060008261373160018761538d565b61373b919061530a565b61374660018661538d565b613750919061538d565b9050600060ff8316613762848461538d565b61376d90600161526a565b60ff16613788338a8f6040516020016136a99392919061472b565b6137929190615474565b61379c9190615252565b9050898160ff16815181106137b3576137b36154ca565b6020026020010151985050505050505050509392505050565b6060816001600160a01b03166395d89b416040518163ffffffff1660e01b815260040160006040518083038186803b15801561380757600080fd5b505afa15801561381b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526109c09190810190614550565b6000808461ffff168361ffff161161385c57858561385f565b83835b9150915094509492505050565b61387784848461310d565b61388384848484613db9565b6128a65760405162461bcd60e51b8152600401610acd906150ab565b6060816138c35750506040805180820190915260018152600360fc1b602082015290565b8160005b81156138ed57806138d781615439565b91506138e69050600a836152b5565b91506138c7565b60008167ffffffffffffffff811115613908576139086154e0565b6040519080825280601f01601f191660200182016040528015613932576020820181803683370190505b5090505b841561310557613947600183615376565b9150613954600a86615474565b61395f906030615252565b60f81b818381518110613974576139746154ca565b60200101906001600160f81b031916908160001a905350613996600a866152b5565b9450613936565b8051606090806139bd575050604080516020810190915260008152919050565b600060036139cc836002615252565b6139d691906152b5565b6139e19060046152eb565b905060006139f0826020615252565b67ffffffffffffffff811115613a0857613a086154e0565b6040519080825280601f01601f191660200182016040528015613a32576020820181803683370190505b50905060006040518060600160405280604081526020016155d6604091399050600181016020830160005b86811015613abe576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101613a5d565b506003860660018114613ad85760028114613ae957613af5565b613d3d60f01b600119830152613af5565b603d60f81b6000198301525b505050918152949350505050565b60408051602081019091526000808252606091905b600a8160ff161015613b85578160158260ff1681548110613b3b57613b3b6154ca565b90600052602060002001613b4f8784611c56565b604051602001613b6193929190614867565b60405160208183030381529060405291508080613b7d90615454565b915050613b18565b5060405180604001604052806005815260200164626c61636b60d81b815250604051602001613bb49190614773565b604051602081830303815290604052805190602001208360400151604051602001613bdf9190614773565b6040516020818303038152906040528051906020012014613c74578251604051613c0d9183916020016148e3565b6040516020818303038152906040529050808360400151604051602001613c35929190614b4d565b60408051601f19818403018152908290528451602086810151929450613c5e938593910161494a565b6040516020818303038152906040529050611e17565b80604051602001613c859190614815565b60405160208183030381529060405290509392505050565b6001600160a01b038316613cf857613cf381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b613d1b565b816001600160a01b0316836001600160a01b031614613d1b57613d1b8382613ec6565b6001600160a01b038216613d3257610c0381613f63565b826001600160a01b0316826001600160a01b031614610c0357610c038282614012565b613d5f8383614056565b613d6c6000848484613db9565b610c035760405162461bcd60e51b8152600401610acd906150ab565b600081604051602001613d9b9190614773565b60408051601f19818403018152919052805160209091012092915050565b60006001600160a01b0384163b15613ebb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613dfd903390899088908890600401614fbb565b602060405180830381600087803b158015613e1757600080fd5b505af1925050508015613e47575060408051601f3d908101601f19168201909252613e4491810190614533565b60015b613ea1573d808015613e75576040519150601f19603f3d011682016040523d82523d6000602084013e613e7a565b606091505b508051613e995760405162461bcd60e51b8152600401610acd906150ab565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050613105565b506001949350505050565b60006001613ed384611b6f565b613edd9190615376565b600083815260076020526040902054909150808214613f30576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090613f7590600190615376565b60008381526009602052604081205460088054939450909284908110613f9d57613f9d6154ca565b906000526020600020015490508060088381548110613fbe57613fbe6154ca565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480613ff657613ff66154b4565b6001900381819060005260206000200160009055905550505050565b600061401d83611b6f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166140ac5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610acd565b6000818152600260205260409020546001600160a01b0316156141115760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610acd565b61411d60008383613c9d565b6001600160a01b0382166000908152600360205260408120805460019290614146908490615252565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546141b0906153dc565b90600052602060002090601f0160209004810192826141d25760008555614218565b82601f106141eb57805160ff1916838001178555614218565b82800160010185558215614218579182015b828111156142185782518255916020019190600101906141fd565b506142249291506142ca565b5090565b828054614234906153dc565b90600052602060002090601f0160209004810192826142565760008555614218565b82601f106142675780548555614218565b8280016001018555821561421857600052602060002091601f016020900482015b82811115614218578254825591600101919060010190614288565b60405180608001604052806004905b60608152602001906001900390816142b25790505090565b5b8082111561422457600081556001016142cb565b6000602082840312156142f157600080fd5b8135611e17816154f6565b60006020828403121561430e57600080fd5b8151611e17816154f6565b6000806040838503121561432c57600080fd5b8235614337816154f6565b91506020830135614347816154f6565b809150509250929050565b60008060006060848603121561436757600080fd5b8335614372816154f6565b92506020840135614382816154f6565b929592945050506040919091013590565b600080600080608085870312156143a957600080fd5b84356143b4816154f6565b935060208501356143c4816154f6565b925060408501359150606085013567ffffffffffffffff8111156143e757600080fd5b8501601f810187136143f857600080fd5b803561440b614406826151eb565b6151ba565b81815288602083850101111561442057600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b6000806040838503121561445557600080fd5b8235614460816154f6565b91506020830135801515811461434757600080fd5b6000806040838503121561448857600080fd5b8235614493816154f6565b946020939093013593505050565b600080602083850312156144b457600080fd5b823567ffffffffffffffff808211156144cc57600080fd5b818501915085601f8301126144e057600080fd5b8135818111156144ef57600080fd5b8660208260051b850101111561450457600080fd5b60209290920196919550909350505050565b60006020828403121561452857600080fd5b8135611e178161550b565b60006020828403121561454557600080fd5b8151611e178161550b565b60006020828403121561456257600080fd5b815167ffffffffffffffff81111561457957600080fd5b8201601f8101841361458a57600080fd5b8051614598614406826151eb565b8181528560208385010111156145ad57600080fd5b6145be8260208301602086016153b0565b95945050505050565b6000602082840312156145d957600080fd5b5035919050565b6000602082840312156145f257600080fd5b5051919050565b6000806040838503121561460c57600080fd5b823591506020830135614347816154f6565b6000806040838503121561463157600080fd5b82359150602083013560ff8116811461434757600080fd5b600081518084526146618160208601602086016153b0565b601f01601f19169290920160200192915050565b600081516146878185602086016153b0565b9290920192915050565b8054600090600181811c90808316806146ab57607f831692505b60208084108214156146cd57634e487b7160e01b600052602260045260246000fd5b8180156146e157600181146146f25761471f565b60ff1986168952848901965061471f565b60008881526020902060005b868110156147175781548b8201529085019083016146fe565b505084890196505b50505050505092915050565b6bffffffffffffffffffffffff198460601b16815260ff60f81b8360f81b166014820152600082516147648160158501602087016153b0565b91909101601501949350505050565b600082516147858184602087016153b0565b9190910192915050565b600083516147a18184602088016153b0565b8351908301906147b58183602088016153b0565b01949350505050565b600085516147d0818460208a016153b0565b8551908301906147e4818360208a016153b0565b85519101906147f78183602089016153b0565b845191019061480a8183602088016153b0565b019695505050505050565b600082516148278184602087016153b0565b7f7b2274726169745f74797065223a2254797065222c2276616c7565223a22455892019182525067504c4f524552227d60c01b6020820152602801919050565b600084516148798184602089016153b0565b6e3d913a3930b4ba2fba3cb832911d1160891b90830190815261489f600f820186614691565b6a1116113b30b63ab2911d1160a91b815284519091506148c681600b8401602088016153b0565b62089f4b60ea1b600b9290910191820152600e0195945050505050565b600083516148f58184602088016153b0565b7f7b2274726169745f74797065223a2254797065222c2276616c7565223a220000908301908152835161492f81601e8401602088016153b0565b61227d60f01b601e9290910191820152602001949350505050565b6000845161495c8184602089016153b0565b6f163d913a3930b4ba2fba3cb832911d1160811b90830190815284516149898160108401602089016153b0565b6a1116113b30b63ab2911d1160a91b6010929091019182015283516149b581601b8401602088016153b0565b61227d60f01b601b9290910191820152601d0195945050505050565b600087516149e3818460208c016153b0565b80830190507f3c2f746578743e3c7465787420783d2231302220793d2234302220636c6173738152641e9131111f60d91b8060208301528851614a2d816025850160208d016153b0565b8083019250507f3c2f746578743e3c7465787420783d2231302220793d2236302220636c61737360258301528060458301528751614a7281604a850160208c016153b0565b7f3c2f746578743e3c7465787420783d2231302220793d2238302220636c617373604a9390910192830152606a8201528551614ab581606f840160208a016153b0565b7f3c2f746578743e3c7465787420783d2231302220793d223130302220636c6173606f929091019182015265399e9131111f60d11b608f820152614b40614b3a614b026095840188614675565b7f3c2f746578743e3c7465787420783d2231302220793d223132302220636c6173815265399e9131111f60d11b602082015260260190565b85614675565b9998505050505050505050565b60008351614b5f8184602088016153b0565b80830190507f2c7b2274726169745f74797065223a22466c616720436f6c6f72222c2276616c8152643ab2911d1160d91b60208201528351614ba88160258401602088016153b0565b61227d60f01b60259290910191820152602701949350505050565b6000611e178284614691565b737b226e616d65223a202254726176656c6572202360601b81528351600090614bff8160148501602089016153b0565b7f222c20226465736372697074696f6e223a202254726176656c6572204c6f6f746014918401918201527f2069732061204c6f6f74206465726976617469766520666f722074686520547260348201527f6176656c20496e6475737472792c2067656e65726174656420616e642073746f60548201527f726564206f6e20636861696e2e204665656c206672656520746f20757365207460748201527f68652054726176656c6572204c6f6f7420696e20616e792077617920796f752060948201527f77616e74222c2022696d616765223a2022646174613a696d6167652f7376672b60b48201526a1e1b5b0ed8985cd94d8d0b60aa1b60d48201528451614d0e8160df8401602089016153b0565b614d4d614d3f614d3960df848601016f222c2261747472696275746573223a5b60801b815260100190565b87614675565b615d7d60f01b815260020190565b979650505050505050565b7f3c6c696e652078313d2230222078323d22333530222079313d2233303022207981526f191e91199818111039ba3937b5b29e9160811b602082015260008351614da98160308501602088016153b0565b73111039ba3937b5b296bbb4b23a341e911a11179f60611b6030918401918201527f3c7465787420783d223334302220793d223239342220746578742d616e63686f604482015271391e9132b732111031b630b9b99e9131111f60711b60648201528351614e1e8160768401602088016153b0565b6c1e17ba32bc3a1f1e17b9bb339f60991b60769290910191820152608301949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251614e7c81601d8501602087016153b0565b91909101601d0192915050565b7f3c2f746578743e3c7465787420783d2231302220793d223134302220636c61738152600065399e9131111f60d11b8060208401528651614ed1816026860160208b016153b0565b80840190507f3c2f746578743e3c7465787420783d2231302220793d223136302220636c617360268201528160468201528651614f1581604c840160208b016153b0565b8082019150507f3c2f746578743e3c7465787420783d2231302220793d223138302220636c6173604c82015281606c8201528551614f5a816072840160208a016153b0565b8082019150507f3c2f746578743e3c7465787420783d2231302220793d223230302220636c61736072820152816092820152614faf614f9c6098830187614675565b661e17ba32bc3a1f60c91b815260070190565b98975050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090614fee90830184614649565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156150395783516001600160a01b031683529284019291840191600101615014565b50909695505050505050565b602081526000611e176020830184614649565b60a08152600061506b60a0830188614649565b828103602084015261507d8188614649565b905082810360408401526150918187614649565b606084019590955250509015156080909101529392505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b604051601f8201601f1916810167ffffffffffffffff811182821017156151e3576151e36154e0565b604052919050565b600067ffffffffffffffff821115615205576152056154e0565b50601f01601f191660200190565b600061ffff8083168185168083038211156147b5576147b5615488565b60006001600160a01b038281168482168083038211156147b5576147b5615488565b6000821982111561526557615265615488565b500190565b600060ff821660ff84168060ff0382111561528757615287615488565b019392505050565b60006001600160a01b03838116806152a9576152a961549e565b92169190910492915050565b6000826152c4576152c461549e565b500490565b600060ff8316806152dc576152dc61549e565b8060ff84160491505092915050565b600081600019048311821515161561530557615305615488565b500290565b600060ff821660ff84168160ff048111821515161561532b5761532b615488565b029392505050565b600061ffff8381169083168181101561534e5761534e615488565b039392505050565b60006001600160a01b038381169083168181101561534e5761534e615488565b60008282101561538857615388615488565b500390565b600060ff821660ff8416808210156153a7576153a7615488565b90039392505050565b60005b838110156153cb5781810151838201526020016153b3565b838111156128a65750506000910152565b600181811c908216806153f057607f821691505b6020821081141561541157634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff8083168181141561542f5761542f615488565b6001019392505050565b600060001982141561544d5761544d615488565b5060010190565b600060ff821660ff81141561546b5761546b615488565b60010192915050565b6000826154835761548361549e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461151e57600080fd5b6001600160e01b03198116811461151e57600080fdfe41646472657373206e6f742076657269666965642e2054727920616e6f74686572596f7520646f206e6f74206f776e20746f6b656e287329206f66207468652061646472657373436f6d7065746974696f6e2068617320656e6465642e20436865636b2074686520436f6e717565726f722154726561737572657220616c7265616479206368616e6765642e20506572666f726d2061207769746864726177616c206265666f7265206368616e67696e672069744142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f436865636b20636f6e646974696f6e73206265666f72652077686974656c697374696e67a2646970667358221220f9ba961c0a8317e01a33ce922951c680df596dc2a41540b34cecd8393478fec164736f6c63430008070033

Deployed Bytecode Sourcemap

44757:29068:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38350:224;;;;;;;;;;-1:-1:-1;38350:224:0;;;;;:::i;:::-;;:::i;:::-;;;26280:14:1;;26273:22;26255:41;;26243:2;26228:18;38350:224:0;;;;;;;;25464:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27023:221::-;;;;;;;;;;-1:-1:-1;27023:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;23874:32:1;;;23856:51;;23844:2;23829:18;27023:221:0;23710:203:1;26546:411:0;;;;;;;;;;-1:-1:-1;26546:411:0;;;;;:::i;:::-;;:::i;:::-;;47917:29;;;;;;;;;;-1:-1:-1;47917:29:0;;;;;;;;;;;35140:4:1;35128:17;;;35110:36;;35098:2;35083:18;47917:29:0;34968:184:1;55927:406:0;;;:::i;47047:37::-;;;;;;;;;;;;47079:5;47047:37;;;;;34767:6:1;34755:19;;;34737:38;;34725:2;34710:18;47047:37:0;34593:188:1;38990:113:0;;;;;;;;;;-1:-1:-1;39078:10:0;:17;38990:113;;;34932:25:1;;;34920:2;34905:18;38990:113:0;34786:177:1;62642:115:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27913:339::-;;;;;;;;;;-1:-1:-1;27913:339:0;;;;;:::i;:::-;;:::i;38658:256::-;;;;;;;;;;-1:-1:-1;38658:256:0;;;;;:::i;:::-;;:::i;48069:58::-;;;;;;;;;;-1:-1:-1;48069:58:0;;;;-1:-1:-1;;;48069:58:0;;-1:-1:-1;;;;;48069:58:0;;;54617:1229;;;;;;;;;;-1:-1:-1;54617:1229:0;;;;;:::i;:::-;;:::i;56630:452::-;;;;;;;;;;;;;:::i;58705:246::-;;;;;;;;;;;;;:::i;47190:43::-;;;;;;;;;;;;47225:8;47190:43;;28323:185;;;;;;;;;;-1:-1:-1;28323:185:0;;;;;:::i;:::-;;:::i;57745:409::-;;;;;;;;;;;;;:::i;47805:52::-;;;;;;;;;;-1:-1:-1;47805:52:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;:::i;53584:388::-;;;;;;;;;;;;;:::i;39180:233::-;;;;;;;;;;-1:-1:-1;39180:233:0;;;;;:::i;:::-;;:::i;48134:34::-;;;;;;;;;;;;;;;;63610:120;;;;;;;;;;-1:-1:-1;63610:120:0;;;;;:::i;:::-;;:::i;25158:239::-;;;;;;;;;;-1:-1:-1;25158:239:0;;;;;:::i;:::-;;:::i;47091:42::-;;;;;;;;;;;;47130:3;47091:42;;47140:43;;;;;;;;;;;;47180:3;47140:43;;24888:208;;;;;;;;;;-1:-1:-1;24888:208:0;;;;;:::i;:::-;;:::i;9856:94::-;;;;;;;;;;;;;:::i;48329:34::-;;;;;;;;;;-1:-1:-1;48329:34:0;;;;;:::i;:::-;;:::i;63143:186::-;;;;;;;;;;-1:-1:-1;63143:186:0;;;;;:::i;:::-;;:::i;47953:33::-;;;;;;;;;;-1:-1:-1;47953:33:0;;;;;;;;;;;47695:26;;;;;;;;;;-1:-1:-1;47695:26:0;;;;-1:-1:-1;;;;;47695:26:0;;;-1:-1:-1;;;47695:26:0;;;;;-1:-1:-1;;;47695:26:0;;;;;;;;;;-1:-1:-1;;;;;25293:32:1;;;25275:51;;25374:6;25362:19;;;25357:2;25342:18;;25335:47;25425:14;25418:22;25398:18;;;25391:50;25263:2;25248:18;47695:26:0;25081:366:1;9205:87:0;;;;;;;;;;-1:-1:-1;9278:6:0;;-1:-1:-1;;;;;9278:6:0;9205:87;;62190:239;;;;;;;;;;-1:-1:-1;62190:239:0;;;;;:::i;:::-;;:::i;25633:104::-;;;;;;;;;;;;;:::i;60976:913::-;;;;;;;;;;-1:-1:-1;60976:913:0;;;;;:::i;:::-;;:::i;57289:372::-;;;;;;;;;;;;;:::i;47761:37::-;;;;;;;;;;-1:-1:-1;47761:37:0;;;;;;;;27316:295;;;;;;;;;;-1:-1:-1;27316:295:0;;;;;:::i;:::-;;:::i;48030:32::-;;;;;;;;;;-1:-1:-1;48030:32:0;;;;;;;;;;;58347:167;;;;;;;;;;;;;:::i;66321:572::-;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;24981:32:1;;;24963:51;;25062:6;25050:19;;;25045:2;25030:18;;25023:47;24936:18;66321:572:0;24791:285:1;47864:46:0;;;;;;;;;;-1:-1:-1;47864:46:0;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;47864:46:0;;;47993:30;;;;;;;;;;-1:-1:-1;47993:30:0;;;;;;;;;;;28579:328;;;;;;;;;;-1:-1:-1;28579:328:0;;;;;:::i;:::-;;:::i;63972:1999::-;;;;;;;;;;-1:-1:-1;63972:1999:0;;;;;:::i;:::-;;:::i;59751:461::-;;;;;;;;;;-1:-1:-1;59751:461:0;;;;;:::i;:::-;;:::i;27682:164::-;;;;;;;;;;-1:-1:-1;27682:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27803:25:0;;;27779:4;27803:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27682:164;10105:192;;;;;;;;;;-1:-1:-1;10105:192:0;;;;;:::i;:::-;;:::i;47728:26::-;;;;;;;;;;-1:-1:-1;47728:26:0;;;;;;;;-1:-1:-1;;;;;47728:26:0;;;;;;;;;;;;-1:-1:-1;;;;;24176:15:1;;;24158:34;;24228:15;;;;24223:2;24208:18;;24201:43;24260:18;;;24253:34;24108:2;24093:18;47728:26:0;23918:375:1;38350:224:0;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;;31810:2:1;27119:73:0;;;31792:21:1;31849:2;31829:18;;;31822:30;31888:34;31868:18;;;31861:62;-1:-1:-1;;;31939:18:1;;;31932:42;31991: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;;32994:2:1;26677:57:0;;;32976:21:1;33033:2;33013:18;;;33006:30;33072:34;33052:18;;;33045:62;-1:-1:-1;;;33123:18:1;;;33116:31;33164:19;;26677:57:0;32792:397: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;;30203:2:1;26747:168:0;;;30185:21:1;30242:2;30222:18;;;30215:30;30281:34;30261:18;;;30254:62;30352:26;30332:18;;;30325:54;30396:19;;26747:168:0;30001:420:1;26747:168:0;26928:21;26937:2;26941:7;26928:8;:21::i;:::-;26616:341;26546:411;;:::o;55927:406::-;12144:1;12740:7;;:19;;12732:63;;;;-1:-1:-1;;;12732:63:0;;;;;;;:::i;:::-;12144:1;12873:7;:18;53387:15:::1;::::0;:19;;;;:54:::1;;;53426:15;;53410:12;:31;;53387:54;53442:21;;;;;;;;;;;;;-1:-1:-1::0;;;53442:21:0::1;;::::0;53379:85:::1;;;;;-1:-1:-1::0;;;53379:85:0::1;;;;;;;;:::i;:::-;-1:-1:-1::0;56023:15:0::2;::::0;56040::::2;::::0;;;;::::2;::::0;;;::::2;::::0;;-1:-1:-1;;;56040:15:0::2;::::0;::::2;::::0;;-1:-1:-1;;;56023:15:0;::::2;-1:-1:-1::0;;;;;56023:15:0::2;56010:9;:28;;56002:54;;;;-1:-1:-1::0;;;56002:54:0::2;;;;;;;;:::i;:::-;-1:-1:-1::0;56264:36:0::2;46870:1;56292;56295:4;56264:15;:36::i;:::-;56309:14;:16:::0;;;;::::2;;;::::0;:14:::2;:16;::::0;::::2;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;12100:1:::0;13052:7;:22;;;;55927:406::o;62642:115::-;62697:16;62732:17;62725:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;62725:24:0;;;;;;;;;;;;;;;;;;;;;;62642:115;:::o;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;;27436:2:1;38775:87:0;;;27418:21:1;27475:2;27455:18;;;27448:30;27514:34;27494:18;;;27487:62;-1:-1:-1;;;27565:18:1;;;27558:41;27616:19;;38775:87:0;27234:407:1;38775:87:0;-1:-1:-1;;;;;;38880:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38658:256::o;54617:1229::-;12144:1;12740:7;;:19;;12732:63;;;;-1:-1:-1;;;12732:63:0;;;;;;;:::i;:::-;12144:1;12873:7;:18;53387:15:::1;::::0;:19;;;;:54:::1;;;53426:15;;53410:12;:31;;53387:54;53442:21;;;;;;;;;;;;;-1:-1:-1::0;;;53442:21:0::1;;::::0;53379:85:::1;;;;;-1:-1:-1::0;;;53379:85:0::1;;;;;;;;:::i;:::-;;54734:9:::2;:17;;;;;;;;;;;;54733:18;54753:23;;;;;;;;;;;;;;;;;54725:52;;;;;-1:-1:-1::0;;;54725:52:0::2;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;;54815:33:0;::::2;54788:24;54815:33:::0;;;:16:::2;:33;::::0;;;;;;;;54867:16:::2;::::0;::::2;::::0;54885:26;;::::2;::::0;::::2;::::0;;;::::2;::::0;;;54815:33;;54867:16:::2;::::0;;::::2;::::0;54885:26;;;::::2;::::0;;::::2;;54859:53;;;;;-1:-1:-1::0;;;54859:53:0::2;;;;;;;;:::i;:::-;-1:-1:-1::0;54948:15:0;54983:11;;;;;:54:::2;;-1:-1:-1::0;8145:10:0;54998:23:::2;::::0;-1:-1:-1;;;54998:23:0;;::::2;::::0;::::2;34932:25:1::0;;;-1:-1:-1;;;;;54998:39:0;;::::2;::::0;:14;::::2;::::0;::::2;::::0;34905:18:1;;54998:23:0::2;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;54998:39:0::2;;54983:54;55039:19;;;;;;;;;;;;;;;;;54975:84;;;;;-1:-1:-1::0;;;54975:84:0::2;;;;;;;;:::i;:::-;-1:-1:-1::0;55074:15:0::2;::::0;::::2;::::0;:20;:63;::::2;;;;55117:17;55135:1;55117:20;;;;;;;;:::i;:::-;;::::0;;;::::2;::::0;;;::::2;::::0;-1:-1:-1;;;;;55098:39:0;;::::2;55117:20:::0;::::2;55098:39;;55074:63;55070:123;;;55169:12;:10;:12::i;:::-;55153:28:::0;;::::2;::::0;:13:::2;::::0;::::2;::::0;:28:::2;::::0;;::::2;::::0;::::2;:::i;:::-;;55070:123;55203:16;55229:24;47180:3;55229:7:::0;:24:::2;:::i;:::-;55203:51:::0;-1:-1:-1;55287:18:0::2;55304:1;47180:3;55287:18;:::i;:::-;55271:12;::::0;;;::::2;:34;:12:::0;;::::2;:34:::0;::::2;;55267:302;;;55358:14;:12;:14::i;:::-;55323:9;55322:50:::0;;-1:-1:-1;;;;;;55322:50:0::2;::::0;;::::2;-1:-1:-1::0;;;55322:50:0::2;55387:24:::0;;;;-1:-1:-1;;;;;;55387:24:0;;;;;;;-1:-1:-1;;;;;55322:50:0;;::::2;55387:24:::0;;;;-1:-1:-1;;;55387:24:0::2;::::0;;46983:1:::2;55323:14;55426:31:::0;:16:::2;:31;::::0;55466:13:::2;::::0;::::2;55426:53:::0;;:37;;55466:13;55426:53:::2;::::0;::::2;:::i;:::-;;;;;;:::i;:::-;-1:-1:-1::0;46983:1:0::2;55494:31;::::0;:16:::2;:31;::::0;55539:18:::2;::::0;::::2;55494:63:::0;;:42;;55539:18;55494:63:::2;::::0;::::2;:::i;:::-;;;;;;:::i;:::-;;55267:302;55654:14;55671;::::0;::::2;::::0;:43:::2;;55705:9;55671:43;;;47180:3;55671:43;55654:60;;55725:45;55736:7;55725:45;;55745:15;55762:1;55765:4:::0;55725:10:::2;:45::i;:::-;55781:32;8145:10:::0;55791:12:::2;55805:7;55781:32;;:9;:32::i;:::-;55824:12;:14:::0;;;;::::2;;;::::0;:12:::2;:14;::::0;::::2;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;54714:1132;;;;12100:1:::0;13052:7;:22;;;;54617:1229;;:::o;56630:452::-;12144:1;12740:7;;:19;;12732:63;;;;-1:-1:-1;;;12732:63:0;;;;;;;:::i;:::-;12144:1;12873:7;:18;53387:15:::1;::::0;:19;;;;:54:::1;;;53426:15;;53410:12;:31;;53387:54;53442:21;;;;;;;;;;;;;-1:-1:-1::0;;;53442:21:0::1;;::::0;53379:85:::1;;;;;-1:-1:-1::0;;;53379:85:0::1;;;;;;;;:::i;:::-;;56763:1:::2;56715:17;56733:1;56715:20;;;;;;;;:::i;:::-;;::::0;;;::::2;::::0;;;::::2;::::0;-1:-1:-1;;;;;56715:20:0::2;56707:39;8145:10:::0;56707:53:::2;::::0;-1:-1:-1;;;;;;56707:53:0::2;::::0;;;;;;-1:-1:-1;;;;;23874:32:1;;;56707:53:0::2;::::0;::::2;23856:51:1::0;23829:18;;56707:53:0::2;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:57;56766:19;;;;;;;;;;;;;;;;;56699:87;;;;;-1:-1:-1::0;;;56699:87:0::2;;;;;;;;:::i;:::-;;56804:9;:17;;;;;;;;;;;;56803:18;56823:23;;;;;;;;;;;;;;;;;56795:52;;;;;-1:-1:-1::0;;;56795:52:0::2;;;;;;;;:::i;:::-;-1:-1:-1::0;56904:23:0::2;::::0;;;;::::2;::::0;;;::::2;::::0;;::::2;;::::0;::::2;::::0;44881:10:::2;56864:15;:38;;56856:72;;;;-1:-1:-1::0;;;56856:72:0::2;;;;;;;;:::i;:::-;;57012:37;46925:1;57040;57043:5;57012:15;:37::i;58705:246::-:0;9278:6;;-1:-1:-1;;;;;9278:6:0;8145:10;9425:23;9417:68;;;;-1:-1:-1;;;9417:68:0;;;;;;;:::i;:::-;58777:21;;;58800::::1;::::0;;;;::::1;::::0;;;;;;-1:-1:-1;;;58800:21:0::1;::::0;::::1;::::0;58761:12:::1;:37;;58753:69;;;;-1:-1:-1::0;;;58753:69:0::1;;;;;;;;:::i;:::-;-1:-1:-1::0;58831:18:0::1;:25:::0;;-1:-1:-1;;58831:25:0::1;58852:4;58831:25;::::0;;58893:17;;58885:58:::1;::::0;-1:-1:-1;;;;;58893:17:0;;::::1;::::0;58921:21:::1;58885:58:::0;::::1;;;::::0;58831:18:::1;58885:58:::0;58831:18;58885:58;58921:21;58893:17;58885:58;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;58705:246::o:0;28323:185::-;28461:39;28478:4;28484:2;28488:7;28461:39;;;;;;;;;;;;:16;:39::i;57745:409::-;12144:1;12740:7;;:19;;12732:63;;;;-1:-1:-1;;;12732:63:0;;;;;;;:::i;:::-;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;:::-;53405:1:::2;53387:15;;:19;:54;;;;;53426:15;;53410:12;:31;;53387:54;53442:21;;;;;;;;;;;;;-1:-1:-1::0;;;53442:21:0::2;;::::0;53379:85:::2;;;;;-1:-1:-1::0;;;53379:85:0::2;;;;;;;;:::i;:::-;-1:-1:-1::0;57844:12:0::3;::::0;57822:15:::3;::::0;47180:3:::3;::::0;57840:16:::3;::::0;57844:12:::3;;::::0;57840:16:::3;:::i;:::-;:33;;;;;;:::i;:::-;57822:51:::0;-1:-1:-1;57904:30:0::3;47130:3;47180;57904:30;:::i;:::-;57892:42;;:8;:42;;;;57936:22;;;;;;;;;;;;;-1:-1:-1::0;;;57936:22:0::3;;::::0;57884:75:::3;;;;;-1:-1:-1::0;;;57884:75:0::3;;;;;;;;:::i;:::-;;58041:36;58052:8;58041:36;;47036:1;58070::::0;58072:4:::3;58041:10;:36::i;:::-;58088:33;8145:10:::0;58098:12:::3;8065:98:::0;58088:33:::3;58132:12;:14:::0;;::::3;;::::0;:12:::3;:14;::::0;::::3;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;57811:343;12100:1:::0;13052:7;:22;;;;57745:409::o;47805:52::-;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;47805:52:0;;;;;;;;;;;;;;;-1:-1:-1;47805:52:0;:::o;53584:388::-;12144:1;12740:7;;:19;;12732:63;;;;-1:-1:-1;;;12732:63:0;;;;;;;:::i;:::-;12144:1;12873:7;:18;53387:15:::1;::::0;:19;;;;:54:::1;;;53426:15;;53410:12;:31;;53387:54;53442:21;;;;;;;;;;;;;-1:-1:-1::0;;;53442:21:0::1;;::::0;53379:85:::1;;;;;-1:-1:-1::0;;;53379:85:0::1;;;;;;;;:::i;:::-;-1:-1:-1::0;9278:6:0;;53677:23:::2;::::0;;;;::::2;::::0;;;::::2;::::0;;::::2;;::::0;::::2;::::0;;-1:-1:-1;;;;;9278:6:0;8145:10;53653:23:::2;;53645:56;;;;-1:-1:-1::0;;;53645:56:0::2;;;;;;;;:::i;:::-;-1:-1:-1::0;53734:15:0::2;::::0;53712::::2;::::0;47130:3:::2;::::0;47180::::2;::::0;53730:19:::2;::::0;53734:15:::2;::::0;::::2;;;;53730:19;:::i;:::-;:36;;;;:::i;:::-;:52;;;;:::i;:::-;53821:22;::::0;;;;::::2;::::0;;;::::2;::::0;;-1:-1:-1;;;53821:22:0::2;::::0;::::2;::::0;53712:70;;-1:-1:-1;47079:5:0::2;53801:18;::::0;::::2;;;53793:51;;;;-1:-1:-1::0;;;53793:51:0::2;;;;;;;;:::i;:::-;;53855:37;53866:8;53855:37;;46815:1;53884::::0;53886:5:::2;53855:10;:37::i;:::-;53903:33;8145:10:::0;53913:12:::2;8065:98:::0;53903:33:::2;53947:15;:17:::0;;::::2;::::0;::::2;;;::::0;:15:::2;:17;::::0;::::2;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;53634:338;12100:1:::0;13052:7;:22;;;;53584:388::o;39180:233::-;39255:7;39291:30;39078:10;:17;;38990:113;39291:30;39283:5;:38;39275:95;;;;-1:-1:-1;;;39275:95:0;;33814:2:1;39275:95:0;;;33796:21:1;33853:2;33833:18;;;33826:30;33892:34;33872:18;;;33865:62;-1:-1:-1;;;33943:18:1;;;33936:42;33995:19;;39275:95:0;33612:408:1;39275:95:0;39388:10;39399:5;39388:17;;;;;;;;:::i;:::-;;;;;;;;;39381:24;;39180:233;;;:::o;63610:120::-;63667:13;63699:23;63716:4;-1:-1:-1;;;;;63699:23:0;:8;:23::i;25158:239::-;25230:7;25266:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25266:16:0;25301:19;25293:73;;;;-1:-1:-1;;;25293:73:0;;31039:2:1;25293:73:0;;;31021:21:1;31078:2;31058:18;;;31051:30;31117:34;31097:18;;;31090:62;-1:-1:-1;;;31168:18:1;;;31161:39;31217:19;;25293:73:0;30837:405:1;24888:208:0;24960:7;-1:-1:-1;;;;;24988:19:0;;24980:74;;;;-1:-1:-1;;;24980:74:0;;30628:2:1;24980:74:0;;;30610:21:1;30667:2;30647:18;;;30640:30;30706:34;30686:18;;;30679:62;-1:-1:-1;;;30757:18:1;;;30750:40;30807:19;;24980:74:0;30426:406: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;48329:34::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48329:34:0;;-1:-1:-1;48329:34:0;:::o;63143:186::-;63219:13;63249:72;63255:7;63264:10;63275;63264:22;;;;;;;;;;:::i;:::-;;;;;;;;63249:72;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63288:8;63297:10;63308;63297:22;;;;;;;;;;:::i;:::-;;;;;;;;63288:32;;;;;;:::i;:::-;;;;;;;;;;;;;63249:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;:72::i;:::-;63242:79;63143:186;-1:-1:-1;;;63143:186:0:o;62190:239::-;-1:-1:-1;;;;;62302:22:0;;62257:7;62302:22;;;:16;:22;;;;;;62276:48;;;;;;;;;;62257:7;;62276:48;62302:22;62276:48;;62302:22;;62276:48;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62343:7;:16;;;62361:26;;;;;;;;;;;;;;;;;62335:53;;;;;-1:-1:-1;;;62335:53:0;;;;;;;;:::i;:::-;-1:-1:-1;62406:15:0;;;;62190:239;-1:-1:-1;;62190:239:0:o;25633:104::-;25689:13;25722:7;25715:14;;;;;:::i;60976:913::-;12144:1;12740:7;;:19;;12732:63;;;;-1:-1:-1;;;12732:63:0;;;;;;;:::i;:::-;12144:1;12873:7;:18;61080:9:::1;:17:::0;61099:23:::1;::::0;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;-1:-1:-1;;;61080:17:0;;::::1;;;61079:18;::::0;61099:23:::1;;::::0;::::1;;61071:52;;;;;-1:-1:-1::0;;;61071:52:0::1;;;;;;;;:::i;:::-;;61139:7;61134:748;61152:19;::::0;::::1;::::0;-1:-1:-1;61134:748:0::1;;;61192:12;61207:9;;61217:1;61207:12;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;61265:30;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;61265:30:0::1;::::0;::::1;::::0;61192:27;;-1:-1:-1;61250:4:0::1;-1:-1:-1::0;;;;;61242:21:0;::::1;;;61234:62;;;;-1:-1:-1::0;;;61234:62:0::1;;;;;;;;:::i;:::-;-1:-1:-1::0;61368:2:0::1;61335:4;61319:32;8145:10:::0;61319:46:::1;::::0;-1:-1:-1;;;;;;61319:46:0::1;::::0;;;;;;-1:-1:-1;;;;;23874:32:1;;;61319:46:0::1;::::0;::::1;23856:51:1::0;23829:18;;61319:46:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:51;:110;;;-1:-1:-1::0;8145:10:0;30482:4;30506:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30506:16:0;:30;;61399::::1;61319:162;;;-1:-1:-1::0;9278:6:0;;-1:-1:-1;;;;;9278:6:0;8145:10;61458:23:::1;61319:162;61504:18;;;;;;;;;;;;;;;;;61311:212;;;;;-1:-1:-1::0;;;61311:212:0::1;;;;;;;;:::i;:::-;;61543:8;61538:158;61561:17;:24:::0;61557:28:::1;::::0;::::1;;61538:158;;;61642:4;-1:-1:-1::0;;;;;61618:28:0::1;:17;61636:1;61618:20;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;61618:20:0::1;-1:-1:-1::0;;;;;61618:28:0::1;;;61648:31;;;;;;;;;;;;;;;;::::0;61610:70:::1;;;;;-1:-1:-1::0;;;61610:70:0::1;;;;;;;;:::i;:::-;-1:-1:-1::0;61587:3:0;::::1;::::0;::::1;:::i;:::-;;;;61538:158;;;-1:-1:-1::0;61710:17:0::1;:28:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;61710:28:0;;;;;::::1;::::0;;-1:-1:-1;;;;;;61710:28:0::1;-1:-1:-1::0;;;;;61710:28:0;::::1;;::::0;;61778:92:::1;::::0;;61811:5;;;;;;::::1;61778:92;::::0;::::1;61811:5:::0;;;-1:-1:-1;;;61811:5:0;;;;61778:92;;61710:28:::1;61778:92:::0;::::1;61828:16;61710:28:::0;61828:10:::1;:16::i;:::-;61778:92:::0;;61794:5:::1;::::0;;;;::::1;::::0;;::::1;::::0;;-1:-1:-1;;;61778:92:0::1;61794:5:::0;;::::1;::::0;;;;61778:92;;::::1;::::0;;;;-1:-1:-1;61778:92:0;;;;;;61864:4:::1;61778:92:::0;;;;;;;;-1:-1:-1;;;;;61753:22:0;::::1;::::0;;:16:::1;:22:::0;;;;:117;;;;:22;;:117:::1;::::0;:22;;:117;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;61753:117:0::1;::::0;;::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;61753:117:0::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;61753:117:0::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;;-1:-1:-1;;61753:117:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;61173:3:0;::::1;::::0;::::1;:::i;:::-;;;;61134:748;;;-1:-1:-1::0;;12100:1:0;13052:7;:22;-1:-1:-1;60976:913:0:o;57289:372::-;12144:1;12740:7;;:19;;12732:63;;;;-1:-1:-1;;;12732:63:0;;;;;;;:::i;:::-;12144:1;12873:7;:18;53387:15:::1;::::0;:19;;;;:54:::1;;;53426:15;;53410:12;:31;;53387:54;53442:21;;;;;;;;;;;;;-1:-1:-1::0;;;53442:21:0::1;;::::0;53379:85:::1;;;;;-1:-1:-1::0;;;53379:85:0::1;;;;;;;;:::i;:::-;-1:-1:-1::0;57369:9:0::2;:17:::0;57388:25:::2;::::0;;;;::::2;::::0;;;::::2;::::0;;::::2;;::::0;::::2;::::0;;-1:-1:-1;;;57369:17:0;::::2;;;57361:53;;;;-1:-1:-1::0;;;57361:53:0::2;;;;;;;;:::i;:::-;-1:-1:-1::0;57441:9:0::2;:14:::0;57483:1:::2;::::0;-1:-1:-1;;;;;57441:14:0::2;57433:33;8145:10:::0;57433:47:::2;::::0;-1:-1:-1;;;;;;57433:47:0::2;::::0;;;;;;-1:-1:-1;;;;;23874:32:1;;;57433:47:0::2;::::0;::::2;23856:51:1::0;23829:18;;57433:47:0::2;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:51;57486:19;;;;;;;;;;;;;;;;;57425:81;;;;;-1:-1:-1::0;;;57425:81:0::2;;;;;;;;:::i;:::-;;57587:39;46983:1;57618;57621:4;57587:15;:39::i;27316:295::-:0;-1:-1:-1;;;;;27419:24:0;;8145:10;27419:24;;27411:62;;;;-1:-1:-1;;;27411:62:0;;29436:2:1;27411:62:0;;;29418:21:1;29475:2;29455:18;;;29448:30;29514:27;29494:18;;;29487:55;29559:18;;27411:62:0;29234:349: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;;26255:41:1;;;27486:42:0;;8145:10;27555:48;;26228:18:1;27555:48:0;;;;;;;27316:295;;:::o;58347:167::-;9278:6;;-1:-1:-1;;;;;9278:6:0;8145:10;9425:23;9417:68;;;;-1:-1:-1;;;9417:68:0;;;;;;;:::i;:::-;58409:15:::1;::::0;58431:23:::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;58431:23:0::1;::::0;::::1;::::0;;58409:20;58400:55:::1;;;;-1:-1:-1::0;;;58400:55:0::1;;;;;;;;:::i;:::-;-1:-1:-1::0;58482:24:0::1;47225:8;58482:12;:24;:::i;:::-;58464:15;:42:::0;58347:167::o;66321:572::-;66395:9;:17;66366:7;;;;-1:-1:-1;;;66395:17:0;;;;66391:82;;;-1:-1:-1;;66432:9:0;:14;-1:-1:-1;;;;;66432:14:0;;;-1:-1:-1;;;66447:15:0;;;;;;66321:572::o;66391:82::-;66481:19;66503:17;66521:1;66503:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;66503:20:0;66561:29;;;:16;:29;;;;;;;:37;;;66503:20;;-1:-1:-1;66503:20:0;66610:233;66632:17;:24;66628:28;;;;66610:233;;;66673:12;66688:17;66706:1;66688:20;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;66688:20:0;66801:22;;;:16;:22;;;;;;;:30;;;66688:20;;-1:-1:-1;66749:84:0;;66762:11;;66774:12;;66688:20;;66749:12;:84::i;:::-;66719:114;;-1:-1:-1;66719:114:0;-1:-1:-1;66658:3:0;;-1:-1:-1;66658:3:0;;;:::i;:::-;;;;66610:233;;;-1:-1:-1;66859:11:0;;66872:12;;-1:-1:-1;66321:572:0;-1:-1:-1;66321:572:0: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;63972:1999::-;64063:23;64106:20;;;:11;:20;;;;;;;;;-1:-1:-1;;;;;64106:20:0;64089:38;;:16;:38;;;;;;64063:64;;;;;;;;;;64037:13;;64063:23;:64;64089:38;64063:64;;64089:38;;64063:64;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;64063:64:0;;;-1:-1:-1;;64063:64:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64138:22:0;;:::i;:::-;64189:267;;;;;;20290:66:1;20278:79;;20387:66;20382:2;20373:12;;20366:88;20484:66;20479:2;20470:12;;20463:88;20581:66;20576:2;20567:12;;20560:88;20679:34;20673:3;20664:13;;20657:57;20745:66;20739:3;20730:13;;20723:89;20843:66;20837:3;20828:13;;20821:89;20941:66;20935:3;20926:13;;20919:89;21033:3;21024:13;;20076:967;64189:267:0;;;;;;;-1:-1:-1;;64189:267:0;;;;;;64171:286;;64503:21;64514:7;64177:1;64503:10;:21::i;:::-;64565;64576:7;64584:1;64565:10;:21::i;:::-;64627;64638:7;64646:1;64627:10;:21::i;:::-;64689;64700:7;64708:1;64689:10;:21::i;:::-;64752;64763:7;64771:1;64752:10;:21::i;:::-;64815;64826:7;64834:1;64815:10;:21::i;:::-;64486:351;;;;;;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;64486:351:0;;;;;;64468:8;;;:370;64925:21;64936:7;64944:1;64925:10;:21::i;:::-;64988;64999:7;65007:1;64988:10;:21::i;:::-;65051;65062:7;65070:1;65051:10;:21::i;:::-;65114;65125:7;65133:1;65114:10;:21::i;:::-;64867:279;;;;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;64867:279:0;;;;;;64849:8;;;:298;;;;65244:13;;;;65334:18;;65176:193;;;;65334:18;64849:8;65176:193;;:::i;:::-;;;;;;;-1:-1:-1;;65176:193:0;;;;;;65158:8;;;:212;;;65431:8;;65158;65441;;;;65451;;;;65414:55;;65383:21;;65414:55;;65441:8;;65176:193;;65414:55;;:::i;:::-;;;;;;;;;;;;;65383:87;;65481:18;65502:378;65570:17;65579:7;65570:8;:17::i;:::-;65796:29;65816:7;65796:13;:29::i;:::-;65846:25;65855:7;65863;65846:8;:25::i;:::-;65529:348;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;65502:13;:378::i;:::-;65481:399;;65957:4;65907:55;;;;;;;;:::i;:::-;;;;;;;;;;;;;65893:70;;;;;;63972:1999;;;:::o;59751:461::-;9278:6;;-1:-1:-1;;;;;9278:6:0;8145:10;9425:23;9417:68;;;;-1:-1:-1;;;9417:68:0;;;;;;;:::i;:::-;59848:18:::1;::::0;59868:21:::1;::::0;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;59848:18:::1;::::0;;::::1;::::0;59868:21:::1;;::::0;::::1;;59840:50;;;;;-1:-1:-1::0;;;59840:50:0::1;;;;;;;;:::i;:::-;;59964:13;59960:65;;;59989:18;:26:::0;;-1:-1:-1;;59989:26:0::1;::::0;;59960:65:::1;60033:19;60055:24;47225:8;60055:12;:24;:::i;:::-;60104:17:::0;;;:9:::1;60088:33:::0;;-1:-1:-1;;;;;60104:17:0;;::::1;-1:-1:-1::0;;;;;;60088:33:0;;::::1;;::::0;;;60130:30;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;-1:-1:-1;;60169:21:0;:35;59751:461::o;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;;28267:2:1;10186:73:0::1;::::0;::::1;28249:21:1::0;28306:2;28286:18;;;28279:30;28345:34;28325:18;;;28318:62;-1:-1:-1;;;28396:18:1;;;28389:36;28442:19;;10186:73:0::1;28065:402:1::0;10186:73:0::1;10270:19;10280:8;10270:9;:19::i;24519:305::-:0;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;69664:322::-;69840:26;;;;;;;;;;;;;8145:10;;47079:5;69816:22;;;69840:26;;;;;69808:59;;;;;-1:-1:-1;;;69808:59:0;;;;;;;;:::i;:::-;;69876:55;69887:13;-1:-1:-1;;;;;69876:55:0;69902:4;69908:10;69920;69876;:55::i;:::-;69940:38;8145:10;69964:13;-1:-1:-1;;;;;69940:38:0;:9;:38::i;30711:348::-;30804:4;30506:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30506:16:0;30821:73;;;;-1:-1:-1;;;30821:73:0;;29790:2:1;30821:73:0;;;29772:21:1;29829:2;29809:18;;;29802:30;29868:34;29848:18;;;29841:62;-1:-1:-1;;;29919:18:1;;;29912:42;29971:19;;30821:73:0;29588:408: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;;32584:2:1;33827:85:0;;;32566:21:1;32623:2;32603:18;;;32596:30;32662:34;32642:18;;;32635:62;-1:-1:-1;;;32713:18:1;;;32706:39;32762:19;;33827:85:0;32382:405:1;33827:85:0;-1:-1:-1;;;;;33931:16:0;;33923:65;;;;-1:-1:-1;;;33923:65:0;;29031:2:1;33923:65:0;;;29013:21:1;29070:2;29050:18;;;29043:30;29109:34;29089:18;;;29082:62;-1:-1:-1;;;29160:18:1;;;29153:34;29204:19;;33923:65:0;28829:400: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;67111:447::-;67181:90;;;;;;;;;;;;;;;-1:-1:-1;;;67181:90:0;;;;;;;;;;;;;;;;-1:-1:-1;;;67181:90:0;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;67181:90:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;67181:90:0;;;;67156:13;67181:90;;;;;;;;;;;;;;;;;-1:-1:-1;;;67181:90:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;67181:90:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;67181:90:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;67181:90:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;67181:90:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;67181:90:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;67181:90:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;67181:90:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;67181:90:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;67181:90:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;67181:90:0;;;;-1:-1:-1;;;67181:90:0;;;;;;;;;;;-1:-1:-1;;;67181:90:0;;;;-1:-1:-1;;;67181:90:0;67282:25;;;;;;;;;;;-1:-1:-1;;;67282:25:0;;;;67156:13;67181:22;67318:210;67336:1;67334;:3;;;67318:210;;;67382:55;;;67399:16;67382:55;;;;23548:19:1;;;;67417:15:0;23583:12:1;;;23576:28;23660:3;23638:16;;;-1:-1:-1;;;;;;23634:36:1;23620:12;;;23613:58;67382:55:0;;;;;;;;;23687:12:1;;;;67382:55:0;;;67372:66;;;;;67484:5;67490:4;67495:18;67502:11;67372:66;67495:18;:::i;:::-;67490:24;;;;;;;:::i;:::-;;;;;67467:48;;;;;;;;;:::i;:::-;;;;;;;;;;;;;67452:64;;67342:186;67338:3;;;;;:::i;:::-;;;;67318:210;;;-1:-1:-1;67545:5:0;67111:447;-1:-1:-1;;67111:447:0:o;68542:349::-;68644:15;;;;68640:172;;68671:9;68702:16;68708:10;68702:3;:16;:::i;:::-;68683:15;;:36;;;;;-1:-1:-1;;;68683:15:0;;-1:-1:-1;;;;;68683:15:0;:36;:::i;:::-;68671:48;;68748:10;:54;;68783:15;;:19;;68801:1;;-1:-1:-1;;;68783:15:0;;-1:-1:-1;;;;;68783:15:0;:19;:::i;:::-;68748:54;;;68761:15;;:19;;68779:1;;-1:-1:-1;;;68761:15:0;;-1:-1:-1;;;;;68761:15:0;:19;:::i;:::-;68730:15;;:72;;;;;-1:-1:-1;;;;;68730:72:0;;;;;-1:-1:-1;;;;;68730:72:0;;;;;;68660:152;68640:172;-1:-1:-1;;;;;68820:22:0;;;;;;:16;:22;;;;;:30;;:32;;;;;;:::i;:::-;;;;-1:-1:-1;;;68861:15:0;;;;-1:-1:-1;68861:11:0;:15;;;;;;:22;;-1:-1:-1;;;;;;68861:22:0;-1:-1:-1;;;;;68861:22:0;;;;;;;;;68542:349::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;10350:128;10305:173;:::o;70352:667::-;70461:13;70487:12;70502:62;70533:9;70544:17;70553:7;70544:8;:17::i;:::-;70516:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;70502:6;:62::i;:::-;70487:77;-1:-1:-1;70575:16:0;70600:10;70607:3;70487:77;70600:10;:::i;:::-;70575:36;;70622:11;70649:2;70636:10;:15;;;:45;;70671:2;70658:10;:15;;;:23;;70680:1;70636:45;;70658:23;70676:1;70636:45;;;70654:1;70636:45;70710:18;;70622:59;;-1:-1:-1;70692:9:0;70750:7;70756:1;70710:18;70750:7;:::i;:::-;70740:17;-1:-1:-1;70768:9:0;70787;70740:17;70787:5;:9;:::i;:::-;70780:17;;:3;:17;:::i;:::-;70768:29;-1:-1:-1;70808:9:0;70847:1;70834:9;70842:1;70834:5;:9;:::i;:::-;70833:15;;;;:::i;:::-;70821:7;70827:1;70821:3;:7;:::i;:::-;70820:29;;;;:::i;:::-;70808:41;-1:-1:-1;70860:11:0;70880:94;;;70953:9;70971:3;70808:41;70953:9;:::i;:::-;:13;;70965:1;70953:13;:::i;:::-;70881:86;;:68;70912:10;70924;70936:9;70895:52;;;;;;;;;;:::i;70881:68::-;:86;;;;:::i;:::-;70880:94;;;;:::i;:::-;70860:115;;70993:11;71005:5;70993:18;;;;;;;;;;:::i;:::-;;;;;;;70986:25;;;;;;;;;;70352:667;;;;;:::o;67870:125::-;67927:13;67973:4;-1:-1:-1;;;;;67957:28:0;;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;67957:30:0;;;;;;;;;;;;:::i;72851:248::-;72977:7;72985:6;73021:12;73010:23;;:8;:23;;;:81;;73062:14;73078:12;73010:81;;;73037:10;73049:8;73010:81;73003:88;;;;72851:248;;;;;;;:::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;73107:715::-;73163:13;73376:10;73372:53;;-1:-1:-1;;73403:10:0;;;;;;;;;;;;-1:-1:-1;;;73403:10:0;;;;;73107:715::o;73372:53::-;73450:5;73435:12;73491:78;73498:9;;73491:78;;73524:8;;;;:::i;:::-;;-1:-1:-1;73547:10:0;;-1:-1:-1;73555:2:0;73547:10;;:::i;:::-;;;73491:78;;;73579:19;73611:6;73601:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;73601:17:0;;73579:39;;73629:154;73636:10;;73629:154;;73663:11;73673:1;73663:11;;:::i;:::-;;-1:-1:-1;73732:10:0;73740:2;73732:5;:10;:::i;:::-;73719:24;;:2;:24;:::i;:::-;73706:39;;73689:6;73696;73689:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;73689:56:0;;;;;;;;-1:-1:-1;73760:11:0;73769:2;73760:11;;:::i;:::-;;;73629:154;;74180:1607;74278:11;;74238:13;;74304:8;74300:23;;-1:-1:-1;;74314:9:0;;;;;;;;;-1:-1:-1;74314:9:0;;;74180:1607;-1:-1:-1;74180:1607:0:o;74300:23::-;74375:18;74413:1;74402:7;:3;74408:1;74402:7;:::i;:::-;74401:13;;;;:::i;:::-;74396:19;;:1;:19;:::i;:::-;74375:40;-1:-1:-1;74473:19:0;74505:15;74375:40;74518:2;74505:15;:::i;:::-;74495:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;74495:26:0;;74473:48;;74534:18;74555:5;;;;;;;;;;;;;;;;;74534:26;;74624:1;74617:5;74613:13;74669:2;74661:6;74657:15;74720:1;74688:777;74743:3;74740:1;74737:10;74688:777;;;74798:1;74841:12;;;;;74835:19;74936:4;74924:2;74920:14;;;;;74902:40;;74896:47;75045:2;75041:14;;;75037:25;;75023:40;;75017:47;75174:1;75170:13;;;75166:24;;75152:39;;75146:46;75294:16;;;;75280:31;;75274:38;74972:1;74968:11;;;75066:4;75013:58;;;75004:68;75097:11;;75142:57;;;75133:67;;;;75225:11;;75270:49;;75261:59;75349:3;75345:13;75378:22;;75448:1;75433:17;;;;74791:9;74688:777;;;74692:44;75497:1;75492:3;75488:11;75518:1;75513:84;;;;75616:1;75611:82;;;;75481:212;;75513:84;-1:-1:-1;;;;;75546:17:0;;75539:43;75513:84;;75611:82;-1:-1:-1;;;;;75644:17:0;;75637:41;75481:212;-1:-1:-1;;;75709:26:0;;;75716:6;74180:1607;-1:-1:-1;;;;74180:1607:0:o;71356:881::-;71461:24;;;;;;;;;:19;:24;;;71439:13;;71461:24;71493:165;71515:2;71511:1;:6;;;71493:165;;;71566:5;71591:10;71602:1;71591:13;;;;;;;;;;:::i;:::-;;;;;;;;71620:21;71631:7;71639:1;71620:10;:21::i;:::-;71549:99;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;71534:115;;71519:3;;;;;:::i;:::-;;;;71493:165;;;;71742:5;;;;;;;;;;;;;-1:-1:-1;;;71742:5:0;;;71725:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;71715:34;;;;;;71696:7;:13;;;71679:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;71669:42;;;;;;:80;71665:544;;71831:18;;71775:80;;;;71792:5;;71775:80;;;:::i;:::-;;;;;;;;;;;;;71760:96;;71897:5;71943:7;:13;;;71880:82;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;71880:82:0;;;;;;;;;;72029:18;;71880:82;72062:18;;;;71880:82;;-1:-1:-1;71987:99:0;;71880:82;;72062:18;71987:99;;:::i;:::-;;;;;;;;;;;;;71972:115;;71665:544;;;72150:5;72133:66;;;;;;;;:::i;:::-;;;;;;;;;;;;;72118:82;;72225:5;71356:881;-1:-1:-1;;;71356:881: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;68003:138::-;68063:7;68125:5;68108:23;;;;;;;;:::i;:::-;;;;-1:-1:-1;;68108:23:0;;;;;;;;;68098:34;;68108:23;68098:34;;;;;68003:138;-1:-1:-1;;68003:138:0:o;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;;;;;;:::i;:::-;;;;;;;;;44094:48;;44180:11;44155:10;44166;44155:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44260:28;;;:15;:28;;;;;;;:41;;;44432:24;;;;;44425:31;44467:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43483:1008;;;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;;31449:2:1;32467:61:0;;;31431:21:1;;;31468:18;;;31461:30;31527:34;31507:18;;;31500:62;31579:18;;32467:61:0;31247:356: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;;28674:2:1;32539:58:0;;;28656:21:1;28713:2;28693:18;;;28686:30;28752;28732:18;;;28725:58;28800:18;;32539:58:0;28472:352: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:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:247:1;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;181:9;168:23;200:31;225:5;200:31;:::i;266:251::-;336:6;389:2;377:9;368:7;364:23;360:32;357:52;;;405:1;402;395:12;357:52;437:9;431:16;456:31;481:5;456:31;:::i;522:388::-;590:6;598;651:2;639:9;630:7;626:23;622:32;619:52;;;667:1;664;657:12;619:52;706:9;693:23;725:31;750:5;725:31;:::i;:::-;775:5;-1:-1:-1;832:2:1;817:18;;804:32;845:33;804:32;845:33;:::i;:::-;897:7;887:17;;;522:388;;;;;:::o;915:456::-;992:6;1000;1008;1061:2;1049:9;1040:7;1036:23;1032:32;1029:52;;;1077:1;1074;1067:12;1029:52;1116:9;1103:23;1135:31;1160:5;1135:31;:::i;:::-;1185:5;-1:-1:-1;1242:2:1;1227:18;;1214:32;1255:33;1214:32;1255:33;:::i;:::-;915:456;;1307:7;;-1:-1:-1;;;1361:2:1;1346:18;;;;1333:32;;915:456::o;1376:1016::-;1471:6;1479;1487;1495;1548:3;1536:9;1527:7;1523:23;1519:33;1516:53;;;1565:1;1562;1555:12;1516:53;1604:9;1591:23;1623:31;1648:5;1623:31;:::i;:::-;1673:5;-1:-1:-1;1730:2:1;1715:18;;1702:32;1743:33;1702:32;1743:33;:::i;:::-;1795:7;-1:-1:-1;1849:2:1;1834:18;;1821:32;;-1:-1:-1;1904:2:1;1889:18;;1876:32;1931:18;1920:30;;1917:50;;;1963:1;1960;1953:12;1917:50;1986:22;;2039:4;2031:13;;2027:27;-1:-1:-1;2017:55:1;;2068:1;2065;2058:12;2017:55;2104:2;2091:16;2129:48;2145:31;2173:2;2145:31;:::i;:::-;2129:48;:::i;:::-;2200:2;2193:5;2186:17;2240:7;2235:2;2230;2226;2222:11;2218:20;2215:33;2212:53;;;2261:1;2258;2251:12;2212:53;2316:2;2311;2307;2303:11;2298:2;2291:5;2287:14;2274:45;2360:1;2355:2;2350;2343:5;2339:14;2335:23;2328:34;2381:5;2371:15;;;;;1376:1016;;;;;;;:::o;2397:416::-;2462:6;2470;2523:2;2511:9;2502:7;2498:23;2494:32;2491:52;;;2539:1;2536;2529:12;2491:52;2578:9;2565:23;2597:31;2622:5;2597:31;:::i;:::-;2647:5;-1:-1:-1;2704:2:1;2689:18;;2676:32;2746:15;;2739:23;2727:36;;2717:64;;2777:1;2774;2767:12;2818:315;2886:6;2894;2947:2;2935:9;2926:7;2922:23;2918:32;2915:52;;;2963:1;2960;2953:12;2915:52;3002:9;2989:23;3021:31;3046:5;3021:31;:::i;:::-;3071:5;3123:2;3108:18;;;;3095:32;;-1:-1:-1;;;2818:315:1:o;3138:615::-;3224:6;3232;3285:2;3273:9;3264:7;3260:23;3256:32;3253:52;;;3301:1;3298;3291:12;3253:52;3341:9;3328:23;3370:18;3411:2;3403:6;3400:14;3397:34;;;3427:1;3424;3417:12;3397:34;3465:6;3454:9;3450:22;3440:32;;3510:7;3503:4;3499:2;3495:13;3491:27;3481:55;;3532:1;3529;3522:12;3481:55;3572:2;3559:16;3598:2;3590:6;3587:14;3584:34;;;3614:1;3611;3604:12;3584:34;3667:7;3662:2;3652:6;3649:1;3645:14;3641:2;3637:23;3633:32;3630:45;3627:65;;;3688:1;3685;3678:12;3627:65;3719:2;3711:11;;;;;3741:6;;-1:-1:-1;3138:615:1;;-1:-1:-1;;;;3138:615:1:o;3758:245::-;3816:6;3869:2;3857:9;3848:7;3844:23;3840:32;3837:52;;;3885:1;3882;3875:12;3837:52;3924:9;3911:23;3943:30;3967:5;3943:30;:::i;4008:249::-;4077:6;4130:2;4118:9;4109:7;4105:23;4101:32;4098:52;;;4146:1;4143;4136:12;4098:52;4178:9;4172:16;4197:30;4221:5;4197:30;:::i;4262:635::-;4342:6;4395:2;4383:9;4374:7;4370:23;4366:32;4363:52;;;4411:1;4408;4401:12;4363:52;4444:9;4438:16;4477:18;4469:6;4466:30;4463:50;;;4509:1;4506;4499:12;4463:50;4532:22;;4585:4;4577:13;;4573:27;-1:-1:-1;4563:55:1;;4614:1;4611;4604:12;4563:55;4643:2;4637:9;4668:48;4684:31;4712:2;4684:31;:::i;4668:48::-;4739:2;4732:5;4725:17;4779:7;4774:2;4769;4765;4761:11;4757:20;4754:33;4751:53;;;4800:1;4797;4790:12;4751:53;4813:54;4864:2;4859;4852:5;4848:14;4843:2;4839;4835:11;4813:54;:::i;:::-;4886:5;4262:635;-1:-1:-1;;;;;4262:635:1:o;4902:180::-;4961:6;5014:2;5002:9;4993:7;4989:23;4985:32;4982:52;;;5030:1;5027;5020:12;4982:52;-1:-1:-1;5053:23:1;;4902:180;-1:-1:-1;4902:180:1:o;5087:184::-;5157:6;5210:2;5198:9;5189:7;5185:23;5181:32;5178:52;;;5226:1;5223;5216:12;5178:52;-1:-1:-1;5249:16:1;;5087:184;-1:-1:-1;5087:184:1:o;5276:315::-;5344:6;5352;5405:2;5393:9;5384:7;5380:23;5376:32;5373:52;;;5421:1;5418;5411:12;5373:52;5457:9;5444:23;5434:33;;5517:2;5506:9;5502:18;5489:32;5530:31;5555:5;5530:31;:::i;5596:337::-;5662:6;5670;5723:2;5711:9;5702:7;5698:23;5694:32;5691:52;;;5739:1;5736;5729:12;5691:52;5775:9;5762:23;5752:33;;5835:2;5824:9;5820:18;5807:32;5879:4;5872:5;5868:16;5861:5;5858:27;5848:55;;5899:1;5896;5889:12;5938:257;5979:3;6017:5;6011:12;6044:6;6039:3;6032:19;6060:63;6116:6;6109:4;6104:3;6100:14;6093:4;6086:5;6082:16;6060:63;:::i;:::-;6177:2;6156:15;-1:-1:-1;;6152:29:1;6143:39;;;;6184:4;6139:50;;5938:257;-1:-1:-1;;5938:257:1:o;6200:185::-;6242:3;6280:5;6274:12;6295:52;6340:6;6335:3;6328:4;6321:5;6317:16;6295:52;:::i;:::-;6363:16;;;;;6200:185;-1:-1:-1;;6200:185:1:o;6390:973::-;6475:12;;6440:3;;6530:1;6550:18;;;;6603;;;;6630:61;;6684:4;6676:6;6672:17;6662:27;;6630:61;6710:2;6758;6750:6;6747:14;6727:18;6724:38;6721:161;;;6804:10;6799:3;6795:20;6792:1;6785:31;6839:4;6836:1;6829:15;6867:4;6864:1;6857:15;6721:161;6898:18;6925:104;;;;7043:1;7038:319;;;;6891:466;;6925:104;-1:-1:-1;;6958:24:1;;6946:37;;7003:16;;;;-1:-1:-1;6925:104:1;;7038:319;35701:1;35694:14;;;35738:4;35725:18;;7132:1;7146:165;7160:6;7157:1;7154:13;7146:165;;;7238:14;;7225:11;;;7218:35;7281:16;;;;7175:10;;7146:165;;;7150:3;;7340:6;7335:3;7331:16;7324:23;;6891:466;;;;;;;6390:973;;;;:::o;8007:488::-;8245:26;8241:31;8232:6;8228:2;8224:15;8220:53;8215:3;8208:66;8335:3;8330;8326:13;8317:6;8312:3;8308:16;8304:36;8299:2;8294:3;8290:12;8283:58;8190:3;8370:6;8364:13;8386:62;8441:6;8436:2;8431:3;8427:12;8420:4;8412:6;8408:17;8386:62;:::i;:::-;8468:16;;;;8486:2;8464:25;;8007:488;-1:-1:-1;;;;8007:488:1:o;8500:276::-;8631:3;8669:6;8663:13;8685:53;8731:6;8726:3;8719:4;8711:6;8707:17;8685:53;:::i;:::-;8754:16;;;;;8500:276;-1:-1:-1;;8500:276:1:o;8781:470::-;8960:3;8998:6;8992:13;9014:53;9060:6;9055:3;9048:4;9040:6;9036:17;9014:53;:::i;:::-;9130:13;;9089:16;;;;9152:57;9130:13;9089:16;9186:4;9174:17;;9152:57;:::i;:::-;9225:20;;8781:470;-1:-1:-1;;;;8781:470:1:o;9256:858::-;9531:3;9569:6;9563:13;9585:53;9631:6;9626:3;9619:4;9611:6;9607:17;9585:53;:::i;:::-;9701:13;;9660:16;;;;9723:57;9701:13;9660:16;9757:4;9745:17;;9723:57;:::i;:::-;9847:13;;9802:20;;;9869:57;9847:13;9802:20;9903:4;9891:17;;9869:57;:::i;:::-;9993:13;;9948:20;;;10015:57;9993:13;9948:20;10049:4;10037:17;;10015:57;:::i;:::-;10088:20;;9256:858;-1:-1:-1;;;;;;9256:858:1:o;10119:566::-;10351:3;10389:6;10383:13;10405:53;10451:6;10446:3;10439:4;10431:6;10427:17;10405:53;:::i;:::-;10519:66;10480:16;;10505:81;;;-1:-1:-1;;;;10613:4:1;10602:16;;10595:54;10676:2;10665:14;;10119:566;-1:-1:-1;10119:566:1:o;10690:1086::-;11217:3;11255:6;11249:13;11271:53;11317:6;11312:3;11305:4;11297:6;11293:17;11271:53;:::i;:::-;-1:-1:-1;;;11346:16:1;;;11371:57;;;11447:49;11492:2;11481:14;;11473:6;11447:49;:::i;:::-;-1:-1:-1;;;11505:46:1;;11576:13;;11437:59;;-1:-1:-1;11598:63:1;11576:13;11647:2;11639:11;;11632:4;11620:17;;11598:63;:::i;:::-;-1:-1:-1;;;11721:2:1;11680:17;;;;11713:11;;;11706:37;11767:2;11759:11;;10690:1086;-1:-1:-1;;;;;10690:1086:1:o;11781:847::-;12162:3;12200:6;12194:13;12216:53;12262:6;12257:3;12250:4;12242:6;12238:17;12216:53;:::i;:::-;12330:66;12291:16;;;12316:81;;;12422:13;;12444:66;12422:13;12496:2;12485:14;;12478:4;12466:17;;12444:66;:::i;:::-;-1:-1:-1;;;12573:2:1;12529:20;;;;12565:11;;;12558:35;12617:4;12609:13;;11781:847;-1:-1:-1;;;;11781:847:1:o;12633:1182::-;13163:3;13201:6;13195:13;13217:53;13263:6;13258:3;13251:4;13243:6;13239:17;13217:53;:::i;:::-;-1:-1:-1;;;13292:16:1;;;13317:59;;;13401:13;;13423:66;13401:13;13475:2;13464:14;;13457:4;13445:17;;13423:66;:::i;:::-;-1:-1:-1;;;13552:2:1;13508:20;;;;13544:11;;;13537:55;13617:13;;13639:63;13617:13;13688:2;13680:11;;13673:4;13661:17;;13639:63;:::i;:::-;-1:-1:-1;;;13762:2:1;13721:17;;;;13754:11;;;13747:35;13806:2;13798:11;;12633:1182;-1:-1:-1;;;;;12633:1182:1:o;13820:2162::-;14696:3;14734:6;14728:13;14750:53;14796:6;14791:3;14784:4;14776:6;14772:17;14750:53;:::i;:::-;14834:6;14829:3;14825:16;14812:29;;14864:66;14857:5;14850:81;14959:12;14954:3;14950:22;15006:2;14999:4;14992:5;14988:16;14981:28;15040:6;15034:13;15056:66;15113:8;15108:2;15101:5;15097:14;15090:4;15082:6;15078:17;15056:66;:::i;:::-;15152:8;15145:5;15141:20;15131:30;;;15190:66;15185:2;15181;15177:11;15170:87;15286:2;15281;15277;15273:11;15266:23;15320:6;15314:13;15336:63;15390:8;15385:2;15381;15377:11;15370:4;15362:6;15358:17;15336:63;:::i;:::-;15464:66;15459:2;15418:17;;;;15451:11;;;15444:87;15555:3;15547:12;;15540:24;15589:13;;15611:64;15589:13;15660:3;15652:12;;15645:4;15633:17;;15611:64;:::i;:::-;15741:66;15735:3;15694:17;;;;15727:12;;;15720:88;-1:-1:-1;;;15832:3:1;15824:12;;15817:46;15879:97;15905:70;15935:39;15969:3;15961:12;;15953:6;15935:39;:::i;:::-;7445:66;7433:79;;-1:-1:-1;;;7537:2:1;7528:12;;7521:46;7592:2;7583:12;;7368:233;15905:70;15897:6;15879:97;:::i;:::-;15872:104;13820:2162;-1:-1:-1;;;;;;;;;13820:2162:1:o;15987:902::-;16368:3;16406:6;16400:13;16422:53;16468:6;16463:3;16456:4;16448:6;16444:17;16422:53;:::i;:::-;16506:6;16501:3;16497:16;16484:29;;16536:66;16529:5;16522:81;16646:12;16641:3;16637:22;16630:4;16623:5;16619:16;16612:48;16691:6;16685:13;16707:66;16764:8;16759:2;16752:5;16748:14;16741:4;16733:6;16729:17;16707:66;:::i;:::-;-1:-1:-1;;;16836:2:1;16792:20;;;;16828:11;;;16821:35;16880:2;16872:11;;15987:902;-1:-1:-1;;;;15987:902:1:o;16894:197::-;17022:3;17047:38;17081:3;17073:6;17047:38;:::i;17096:1594::-;-1:-1:-1;;;17745:64:1;;17832:13;;17727:3;;17854:62;17832:13;17904:2;17895:12;;17888:4;17876:17;;17854:62;:::i;:::-;17980:66;17975:2;17935:16;;;17967:11;;;17960:87;18076:34;18071:2;18063:11;;18056:55;18140:34;18135:2;18127:11;;18120:55;18205:34;18199:3;18191:12;;18184:56;18270:34;18264:3;18256:12;;18249:56;18335:66;18329:3;18321:12;;18314:88;-1:-1:-1;;;18426:3:1;18418:12;;18411:35;18471:13;;18493:64;18471:13;18542:3;18534:12;;18527:4;18515:17;;18493:64;:::i;:::-;18573:111;18603:80;18629:53;18677:3;18666:8;18662:2;18658:17;18654:27;-1:-1:-1;;;7666:57:1;;7748:2;7739:12;;7606:151;18629:53;18621:6;18603:80;:::i;:::-;-1:-1:-1;;;7952:17:1;;7994:1;7985:11;;7887:115;18573:111;18566:118;17096:1594;-1:-1:-1;;;;;;;17096:1594:1:o;18695:1376::-;19308:66;19303:3;19296:79;19414:34;19409:3;19405:44;19400:2;19395:3;19391:12;19384:66;19278:3;19479:6;19473:13;19495:60;19548:6;19543:2;19538:3;19534:12;19529:2;19521:6;19517:15;19495:60;:::i;:::-;-1:-1:-1;;;19614:2:1;19574:16;;;19606:11;;;19599:72;19700:66;19695:2;19687:11;;19680:87;-1:-1:-1;;;19791:3:1;19783:12;;19776:70;19871:13;;19893:62;19871:13;19940:3;19932:12;;19927:2;19915:15;;19893:62;:::i;:::-;-1:-1:-1;;;20015:3:1;19974:17;;;;20007:12;;;20000:37;20061:3;20053:12;;18695:1376;-1:-1:-1;;;;18695:1376:1:o;21048:448::-;21310:31;21305:3;21298:44;21280:3;21371:6;21365:13;21387:62;21442:6;21437:2;21432:3;21428:12;21421:4;21413:6;21409:17;21387:62;:::i;:::-;21469:16;;;;21487:2;21465:25;;21048:448;-1:-1:-1;;21048:448:1:o;21501:1861::-;22311:66;22306:3;22299:79;22281:3;22406:14;22401:3;22397:24;22451:2;22446;22441:3;22437:12;22430:24;22483:6;22477:13;22499:60;22552:6;22547:2;22542:3;22538:12;22533:2;22525:6;22521:15;22499:60;:::i;:::-;22587:6;22582:3;22578:16;22568:26;;22623:66;22618:2;22614;22610:11;22603:87;22719:2;22714;22710;22706:11;22699:23;22753:6;22747:13;22769:61;22821:8;22816:2;22812;22808:11;22803:2;22795:6;22791:15;22769:61;:::i;:::-;22857:8;22853:2;22849:17;22839:27;;;22895:66;22890:2;22886;22882:11;22875:87;22992:2;22986:3;22982:2;22978:12;22971:24;23026:6;23020:13;23042:62;23095:8;23089:3;23085:2;23081:12;23076:2;23068:6;23064:15;23042:62;:::i;:::-;23131:8;23127:2;23123:17;23113:27;;;23170:66;23164:3;23160:2;23156:12;23149:88;23267:2;23261:3;23257:2;23253:12;23246:24;23286:70;23316:39;23350:3;23346:2;23342:12;23334:6;23316:39;:::i;:::-;-1:-1:-1;;;7827:22:1;;7874:1;7865:11;;7762:120;23286:70;23279:77;21501:1861;-1:-1:-1;;;;;;;;21501:1861:1:o;24298:488::-;-1:-1:-1;;;;;24567:15:1;;;24549:34;;24619:15;;24614:2;24599:18;;24592:43;24666:2;24651:18;;24644:34;;;24714:3;24709:2;24694:18;;24687:31;;;24492:4;;24735:45;;24760:19;;24752:6;24735:45;:::i;:::-;24727:53;24298:488;-1:-1:-1;;;;;;24298:488:1:o;25452:658::-;25623:2;25675:21;;;25745:13;;25648:18;;;25767:22;;;25594:4;;25623:2;25846:15;;;;25820:2;25805:18;;;25594:4;25889:195;25903:6;25900:1;25897:13;25889:195;;;25968:13;;-1:-1:-1;;;;;25964:39:1;25952:52;;26059:15;;;;26024:12;;;;26000:1;25918:9;25889:195;;;-1:-1:-1;26101:3:1;;25452:658;-1:-1:-1;;;;;;25452:658:1:o;26307:219::-;26456:2;26445:9;26438:21;26419:4;26476:44;26516:2;26505:9;26501:18;26493:6;26476:44;:::i;26531:698::-;26826:3;26815:9;26808:22;26789:4;26853:45;26893:3;26882:9;26878:19;26870:6;26853:45;:::i;:::-;26946:9;26938:6;26934:22;26929:2;26918:9;26914:18;26907:50;26980:32;27005:6;26997;26980:32;:::i;:::-;26966:46;;27060:9;27052:6;27048:22;27043:2;27032:9;27028:18;27021:50;27088:32;27113:6;27105;27088:32;:::i;:::-;27151:2;27136:18;;27129:34;;;;-1:-1:-1;;27207:14:1;;27200:22;27194:3;27179:19;;;27172:51;27080:40;26531:698;-1:-1:-1;;;26531:698:1:o;27646:414::-;27848:2;27830:21;;;27887:2;27867:18;;;27860:30;27926:34;27921:2;27906:18;;27899:62;-1:-1:-1;;;27992:2:1;27977:18;;27970:48;28050:3;28035:19;;27646:414::o;32021:356::-;32223:2;32205:21;;;32242:18;;;32235:30;32301:34;32296:2;32281:18;;32274:62;32368:2;32353:18;;32021:356::o;33194:413::-;33396:2;33378:21;;;33435:2;33415:18;;;33408:30;33474:34;33469:2;33454:18;;33447:62;-1:-1:-1;;;33540:2:1;33525:18;;33518:47;33597:3;33582:19;;33194:413::o;34025:355::-;34227:2;34209:21;;;34266:2;34246:18;;;34239:30;34305:33;34300:2;34285:18;;34278:61;34371:2;34356:18;;34025:355::o;35157:275::-;35228:2;35222:9;35293:2;35274:13;;-1:-1:-1;;35270:27:1;35258:40;;35328:18;35313:34;;35349:22;;;35310:62;35307:88;;;35375:18;;:::i;:::-;35411:2;35404:22;35157:275;;-1:-1:-1;35157:275:1:o;35437:186::-;35485:4;35518:18;35510:6;35507:30;35504:56;;;35540:18;;:::i;:::-;-1:-1:-1;35606:2:1;35585:15;-1:-1:-1;;35581:29:1;35612:4;35577:40;;35437:186::o;35754:224::-;35793:3;35821:6;35854:2;35851:1;35847:10;35884:2;35881:1;35877:10;35915:3;35911:2;35907:12;35902:3;35899:21;35896:47;;;35923:18;;:::i;35983:238::-;36023:3;-1:-1:-1;;;;;36090:10:1;;;36120;;;36150:12;;;36142:21;;36139:47;;;36166:18;;:::i;36226:128::-;36266:3;36297:1;36293:6;36290:1;36287:13;36284:39;;;36303:18;;:::i;:::-;-1:-1:-1;36339:9:1;;36226:128::o;36359:204::-;36397:3;36433:4;36430:1;36426:12;36465:4;36462:1;36458:12;36500:3;36494:4;36490:14;36485:3;36482:23;36479:49;;;36508:18;;:::i;:::-;36544:13;;36359:204;-1:-1:-1;;;36359:204:1:o;36568:201::-;36608:1;-1:-1:-1;;;;;36673:10:1;;;;36692:37;;36709:18;;:::i;:::-;36747:10;;36743:20;;;;;36568:201;-1:-1:-1;;36568:201:1:o;36774:120::-;36814:1;36840;36830:35;;36845:18;;:::i;:::-;-1:-1:-1;36879:9:1;;36774:120::o;36899:165::-;36937:1;36971:4;36968:1;36964:12;36995:3;36985:37;;37002:18;;:::i;:::-;37054:3;37047:4;37044:1;37040:12;37036:22;37031:27;;;36899:165;;;;:::o;37069:168::-;37109:7;37175:1;37171;37167:6;37163:14;37160:1;37157:21;37152:1;37145:9;37138:17;37134:45;37131:71;;;37182:18;;:::i;:::-;-1:-1:-1;37222:9:1;;37069:168::o;37242:238::-;37280:7;37320:4;37317:1;37313:12;37352:4;37349:1;37345:12;37412:3;37406:4;37402:14;37397:3;37394:23;37387:3;37380:11;37373:19;37369:49;37366:75;;;37421:18;;:::i;:::-;37461:13;;37242:238;-1:-1:-1;;;37242:238:1:o;37485:217::-;37524:4;37553:6;37609:10;;;;37579;;37631:12;;;37628:38;;;37646:18;;:::i;:::-;37683:13;;37485:217;-1:-1:-1;;;37485:217:1:o;37707:231::-;37747:4;-1:-1:-1;;;;;37845:10:1;;;;37815;;37867:12;;;37864:38;;;37882:18;;:::i;37943:125::-;37983:4;38011:1;38008;38005:8;38002:34;;;38016:18;;:::i;:::-;-1:-1:-1;38053:9:1;;37943:125::o;38073:195::-;38111:4;38148;38145:1;38141:12;38180:4;38177:1;38173:12;38205:3;38200;38197:12;38194:38;;;38212:18;;:::i;:::-;38249:13;;;38073:195;-1:-1:-1;;;38073:195:1:o;38273:258::-;38345:1;38355:113;38369:6;38366:1;38363:13;38355:113;;;38445:11;;;38439:18;38426:11;;;38419:39;38391:2;38384:10;38355:113;;;38486:6;38483:1;38480:13;38477:48;;;-1:-1:-1;;38521:1:1;38503:16;;38496:27;38273:258::o;38536:380::-;38615:1;38611:12;;;;38658;;;38679:61;;38733:4;38725:6;38721:17;38711:27;;38679:61;38786:2;38778:6;38775:14;38755:18;38752:38;38749:161;;;38832:10;38827:3;38823:20;38820:1;38813:31;38867:4;38864:1;38857:15;38895:4;38892:1;38885:15;38749:161;;38536:380;;;:::o;38921:197::-;38959:3;38987:6;39028:2;39021:5;39017:14;39055:2;39046:7;39043:15;39040:41;;;39061:18;;:::i;:::-;39110:1;39097:15;;38921:197;-1:-1:-1;;;38921:197:1:o;39123:135::-;39162:3;-1:-1:-1;;39183:17:1;;39180:43;;;39203:18;;:::i;:::-;-1:-1:-1;39250:1:1;39239:13;;39123:135::o;39263:175::-;39300:3;39344:4;39337:5;39333:16;39373:4;39364:7;39361:17;39358:43;;;39381:18;;:::i;:::-;39430:1;39417:15;;39263:175;-1:-1:-1;;39263:175:1:o;39443:112::-;39475:1;39501;39491:35;;39506:18;;:::i;:::-;-1:-1:-1;39540:9:1;;39443:112::o;39560:127::-;39621:10;39616:3;39612:20;39609:1;39602:31;39652:4;39649:1;39642:15;39676:4;39673:1;39666:15;39692:127;39753:10;39748:3;39744:20;39741:1;39734:31;39784:4;39781:1;39774:15;39808:4;39805:1;39798:15;39824:127;39885:10;39880:3;39876:20;39873:1;39866:31;39916:4;39913:1;39906:15;39940:4;39937:1;39930:15;39956:127;40017:10;40012:3;40008:20;40005:1;39998:31;40048:4;40045:1;40038:15;40072:4;40069:1;40062:15;40088:127;40149:10;40144:3;40140:20;40137:1;40130:31;40180:4;40177:1;40170:15;40204:4;40201:1;40194:15;40220:131;-1:-1:-1;;;;;40295:31:1;;40285:42;;40275:70;;40341:1;40338;40331:12;40356:131;-1:-1:-1;;;;;;40430:32:1;;40420:43;;40410:71;;40477:1;40474;40467:12

Swarm Source

ipfs://f9ba961c0a8317e01a33ce922951c680df596dc2a41540b34cecd8393478fec1

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

Traveler Loot is a Loot derivative for the travel industry, generated and stored on chain.Stats, images, and other functionality are intentionally omitted for others to interpret.Feel free to use Traveler Loot in any way you want. **Mint here: https://www.travelerloot.com*...

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ 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.