ETH Price: $3,473.62 (+3.12%)

Contract

0xD124d5200c95648c9D1EB958A51e610b2A395351
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Safe Transfer Fr...206811102024-09-05 1:29:47111 days ago1725499787IN
Adventure Pass: VPASS Token
0 ETH0.000345417.25867601
Safe Transfer Fr...206810822024-09-05 1:24:11111 days ago1725499451IN
Adventure Pass: VPASS Token
0 ETH0.000410015.90067034
Set Approval For...206522022024-09-01 0:41:47115 days ago1725151307IN
Adventure Pass: VPASS Token
0 ETH0.000028951.16484552
Set Approval For...197417972024-04-26 20:06:59242 days ago1714162019IN
Adventure Pass: VPASS Token
0 ETH0.000265775.68254775
Set Approval For...196234062024-04-10 6:20:59258 days ago1712730059IN
Adventure Pass: VPASS Token
0 ETH0.000918814.84210874
Set Approval For...189945022024-01-13 0:50:11347 days ago1705107011IN
Adventure Pass: VPASS Token
0 ETH0.0004120116.57472824
Set Approval For...188685942023-12-26 8:11:35364 days ago1703578295IN
Adventure Pass: VPASS Token
0 ETH0.0003206112.8979132
Claim Apes188499812023-12-23 17:24:35367 days ago1703352275IN
Adventure Pass: VPASS Token
0 ETH0.0114869127.02891583
Claim Apes186309082023-11-23 0:38:35398 days ago1700699915IN
Adventure Pass: VPASS Token
0 ETH0.0012386944.55905891
Claim Apes186309082023-11-23 0:38:35398 days ago1700699915IN
Adventure Pass: VPASS Token
0 ETH0.0012386944.55905891
Claim Apes186309042023-11-23 0:37:47398 days ago1700699867IN
Adventure Pass: VPASS Token
0 ETH0.0012863146.27193566
Claim Apes186309032023-11-23 0:37:35398 days ago1700699855IN
Adventure Pass: VPASS Token
0 ETH0.0079064444.44221258
Set Approval For...185095932023-11-06 1:12:47415 days ago1699233167IN
Adventure Pass: VPASS Token
0 ETH0.0007430815.8880961
Claim Apes185068922023-11-05 16:07:35415 days ago1699200455IN
Adventure Pass: VPASS Token
0 ETH0.0043192323.84394471
Claim Apes185028942023-11-05 2:40:11416 days ago1699152011IN
Adventure Pass: VPASS Token
0 ETH0.0030152416.64537541
Set Approval For...184884022023-11-03 1:56:35418 days ago1698976595IN
Adventure Pass: VPASS Token
0 ETH0.0007891716.87348997
Claim Apes184569682023-10-29 16:15:11422 days ago1698596111IN
Adventure Pass: VPASS Token
0 ETH0.0173828213.75241056
Set Approval For...184524632023-10-29 1:07:23423 days ago1698541643IN
Adventure Pass: VPASS Token
0 ETH0.000434129.28212967
Claim Apes184187602023-10-24 7:54:23427 days ago1698134063IN
Adventure Pass: VPASS Token
0 ETH0.0021212611.92286946
Lock Token184080122023-10-22 19:47:47429 days ago1698004067IN
Adventure Pass: VPASS Token
0 ETH0.0023106415.68227506
Lock Token184080072023-10-22 19:46:47429 days ago1698004007IN
Adventure Pass: VPASS Token
0 ETH0.0024276316.65396973
Claim Apes183804922023-10-18 23:23:23433 days ago1697671403IN
Adventure Pass: VPASS Token
0 ETH0.0132269810.46422232
Lock Token183297422023-10-11 21:02:23440 days ago1697058143IN
Adventure Pass: VPASS Token
0 ETH0.001429389.7011772
Claim Apes183003982023-10-07 18:27:59444 days ago1696703279IN
Adventure Pass: VPASS Token
0 ETH0.00313367.47413645
Lock Token182736692023-10-04 0:46:59448 days ago1696380419IN
Adventure Pass: VPASS Token
0 ETH0.0018679712.67790274
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:
AdventurePass

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-17
*/

// SPDX-License-Identifier: MIT

/*
    The upgraded and amazing Adventure Pass
 Contract by the [often] controversial Aleph0ne
       (created with help from Stefs)

*/

pragma solidity ^0.8.15;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(
        bytes32 indexed role,
        bytes32 indexed previousAdminRole,
        bytes32 indexed newAdminRole
    );

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(
        bytes32 indexed role,
        address indexed account,
        address indexed sender
    );

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(
        bytes32 indexed role,
        address indexed account,
        address indexed sender
    );

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(
        bytes32 role,
        address account
    ) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

/**
 * @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 External interface of AccessControlEnumerable declared to support ERC165 detection.
 */
interface IAccessControlEnumerable is IAccessControl {
    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(
        bytes32 role,
        uint256 index
    ) external view returns (address);

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) external view returns (uint256);
}

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastvalue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastvalue;
                // Update the index for the moved value
                set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(
        Set storage set,
        bytes32 value
    ) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(
        Set storage set,
        uint256 index
    ) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(
        Bytes32Set storage set,
        bytes32 value
    ) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(
        Bytes32Set storage set,
        bytes32 value
    ) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(
        Bytes32Set storage set,
        bytes32 value
    ) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(
        Bytes32Set storage set,
        uint256 index
    ) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(
        Bytes32Set storage set
    ) internal view returns (bytes32[] memory) {
        return _values(set._inner);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(
        AddressSet storage set,
        address value
    ) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(
        AddressSet storage set,
        address value
    ) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(
        AddressSet storage set,
        address value
    ) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(
        AddressSet storage set,
        uint256 index
    ) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(
        AddressSet storage set
    ) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(
        UintSet storage set,
        uint256 value
    ) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(
        UintSet storage set,
        uint256 value
    ) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(
        UintSet storage set,
        uint256 index
    ) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(
        UintSet storage set
    ) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        assembly {
            result := store
        }

        return result;
    }
}

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(
        address indexed from,
        address indexed to,
        uint256 indexed tokenId
    );

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(
        address indexed owner,
        address indexed approved,
        uint256 indexed tokenId
    );

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(
        address indexed owner,
        address indexed operator,
        bool approved
    );

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(
        uint256 tokenId
    ) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(
        address owner,
        address operator
    ) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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

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

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

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

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

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

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

/**
 * @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 Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(
        bytes32 role,
        address account
    ) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(
        bytes32 role
    ) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(
        bytes32 role,
        address account
    ) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(
        bytes32 role,
        address account
    ) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(
        bytes32 role,
        address account
    ) public virtual override {
        require(
            account == _msgSender(),
            "AccessControl: can only renounce roles for self"
        );

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

/**
 * @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() {
        _transferOwnership(_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 {
        _transferOwnership(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"
        );
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

/**
 * @dev Extension of {AccessControl} that allows enumerating the members of each role.
 */
abstract contract AccessControlEnumerable is
    IAccessControlEnumerable,
    AccessControl
{
    using EnumerableSet for EnumerableSet.AddressSet;

    mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers;

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

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(
        bytes32 role,
        uint256 index
    ) public view virtual override returns (address) {
        return _roleMembers[role].at(index);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(
        bytes32 role
    ) public view virtual override returns (uint256) {
        return _roleMembers[role].length();
    }

    /**
     * @dev Overload {_grantRole} to track enumerable memberships
     */
    function _grantRole(
        bytes32 role,
        address account
    ) internal virtual override {
        super._grantRole(role, account);
        _roleMembers[role].add(account);
    }

    /**
     * @dev Overload {_revokeRole} to track enumerable memberships
     */
    function _revokeRole(
        bytes32 role,
        address account
    ) internal virtual override {
        super._revokeRole(role, account);
        _roleMembers[role].remove(account);
    }
}

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

/**
 * @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 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: address zero is not a valid owner"
        );
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(
        uint256 tokenId
    ) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 = ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(
        uint256 tokenId
    ) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(
        address operator,
        bool approved
    ) public virtual override {
        _setApprovalForAll(_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: caller is not token owner or 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: caller is not token owner or 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 the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @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 _ownerOf(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) {
        address owner = ownerOf(tokenId);
        return (spender == owner ||
            isApprovedForAll(owner, spender) ||
            getApproved(tokenId) == 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, 1);

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

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

        _afterTokenTransfer(address(0), to, tokenId, 1);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ownerOf(tokenId);

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

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        // Decrease balance with checked arithmetic, because an `ownerOf` override may
        // invalidate the assumption that `_balances[from] >= 1`.
        _balances[owner] -= 1;

        delete _owners[tokenId];

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

        _afterTokenTransfer(owner, address(0), tokenId, 1);
    }

    /**
     * @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(
            ownerOf(tokenId) == from,
            "ERC721: transfer from incorrect owner"
        );
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId, 1);

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(
            ownerOf(tokenId) == from,
            "ERC721: transfer from incorrect owner"
        );

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        // Decrease balance with checked arithmetic, because an `ownerOf` override may
        // invalidate the assumption that `_balances[from] >= 1`.
        _balances[from] -= 1;

        unchecked {
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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.code.length > 0) {
            try
                IERC721Receiver(to).onERC721Received(
                    _msgSender(),
                    from,
                    tokenId,
                    data
                )
            returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
     * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such
     * that `ownerOf(tokenId)` is `a`.
     */
    // solhint-disable-next-line func-name-mixedcase
    function __unsafe_increaseBalance(
        address account,
        uint256 amount
    ) internal {
        _balances[account] += amount;
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(
        address owner,
        address spender
    ) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(token.transfer.selector, to, value)
        );
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(token.transferFrom.selector, from, to, value)
        );
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(token.approve.selector, spender, value)
        );
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(
                token.approve.selector,
                spender,
                newAllowance
            )
        );
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(
                oldAllowance >= value,
                "SafeERC20: decreased allowance below zero"
            );
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(
                token,
                abi.encodeWithSelector(
                    token.approve.selector,
                    spender,
                    newAllowance
                )
            );
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(
            data,
            "SafeERC20: low-level call failed"
        );
        if (returndata.length > 0) {
            // Return data is optional
            require(
                abi.decode(returndata, (bool)),
                "SafeERC20: ERC20 operation did not succeed"
            );
        }
    }
}

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 *
 * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and
 * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you
 * to run tests before sending real value to this contract.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event ERC20PaymentReleased(
        IERC20 indexed token,
        address to,
        uint256 amount
    );
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    mapping(IERC20 => uint256) private _erc20TotalReleased;
    mapping(IERC20 => mapping(address => uint256)) private _erc20Released;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(
            payees.length == shares_.length,
            "PaymentSplitter: payees and shares length mismatch"
        );
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20
     * contract.
     */
    function totalReleased(IERC20 token) public view returns (uint256) {
        return _erc20TotalReleased[token];
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an
     * IERC20 contract.
     */
    function released(
        IERC20 token,
        address account
    ) public view returns (uint256) {
        return _erc20Released[token][account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + totalReleased();
        uint256 payment = _pendingPayment(
            account,
            totalReceived,
            released(account)
        );

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] += payment;
        _totalReleased += payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their
     * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20
     * contract.
     */
    function release(IERC20 token, address account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = token.balanceOf(address(this)) +
            totalReleased(token);
        uint256 payment = _pendingPayment(
            account,
            totalReceived,
            released(token, account)
        );

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _erc20Released[token][account] += payment;
        _erc20TotalReleased[token] += payment;

        SafeERC20.safeTransfer(token, account, payment);
        emit ERC20PaymentReleased(token, account, payment);
    }

    /**
     * @dev internal logic for computing the pending payment of an `account` given the token historical balances and
     * already released amounts.
     */
    function _pendingPayment(
        address account,
        uint256 totalReceived,
        uint256 alreadyReleased
    ) private view returns (uint256) {
        return
            (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(
            account != address(0),
            "PaymentSplitter: account is the zero address"
        );
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(
            _shares[account] == 0,
            "PaymentSplitter: account already has shares"
        );

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

interface IOperatorFilterRegistry {
    function isOperatorAllowed(
        address registrant,
        address operator
    ) external view returns (bool);

    function register(address registrant) external;

    function registerAndSubscribe(
        address registrant,
        address subscription
    ) external;

    function registerAndCopyEntries(
        address registrant,
        address registrantToCopy
    ) external;

    function unregister(address addr) external;

    function updateOperator(
        address registrant,
        address operator,
        bool filtered
    ) external;

    function updateOperators(
        address registrant,
        address[] calldata operators,
        bool filtered
    ) external;

    function updateCodeHash(
        address registrant,
        bytes32 codehash,
        bool filtered
    ) external;

    function updateCodeHashes(
        address registrant,
        bytes32[] calldata codeHashes,
        bool filtered
    ) external;

    function subscribe(
        address registrant,
        address registrantToSubscribe
    ) external;

    function unsubscribe(address registrant, bool copyExistingEntries) external;

    function subscriptionOf(address addr) external returns (address registrant);

    function subscribers(
        address registrant
    ) external returns (address[] memory);

    function subscriberAt(
        address registrant,
        uint256 index
    ) external returns (address);

    function copyEntriesOf(
        address registrant,
        address registrantToCopy
    ) external;

    function isOperatorFiltered(
        address registrant,
        address operator
    ) external returns (bool);

    function isCodeHashOfFiltered(
        address registrant,
        address operatorWithCode
    ) external returns (bool);

    function isCodeHashFiltered(
        address registrant,
        bytes32 codeHash
    ) external returns (bool);

    function filteredOperators(
        address addr
    ) external returns (address[] memory);

    function filteredCodeHashes(
        address addr
    ) external returns (bytes32[] memory);

    function filteredOperatorAt(
        address registrant,
        uint256 index
    ) external returns (address);

    function filteredCodeHashAt(
        address registrant,
        uint256 index
    ) external returns (bytes32);

    function isRegistered(address addr) external returns (bool);

    function codeHashOf(address addr) external returns (bytes32);
}

/// @notice Optimized and flexible operator filterer to abide to OpenSea's
/// mandatory on-chain royalty enforcement in order for new collections to
/// receive royalties.
/// For more information, see:
/// See: https://github.com/ProjectOpenSea/operator-filter-registry
abstract contract OperatorFilterer {
    /// @dev The default OpenSea operator blocklist subscription.
    address internal constant _DEFAULT_SUBSCRIPTION =
        0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

    /// @dev The OpenSea operator filter registry.
    address internal constant _OPERATOR_FILTER_REGISTRY =
        0x000000000000AAeB6D7670E522A718067333cd4E;

    /// @dev Registers the current contract to OpenSea's operator filter,
    /// and subscribe to the default OpenSea operator blocklist.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering() internal virtual {
        _registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true);
    }

    /// @dev Registers the current contract to OpenSea's operator filter.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering(
        address subscriptionOrRegistrantToCopy,
        bool subscribe
    ) internal virtual {
        /// @solidity memory-safe-assembly
        assembly {
            let functionSelector := 0x7d3e3dbe // `registerAndSubscribe(address,address)`.

            // Clean the upper 96 bits of `subscriptionOrRegistrantToCopy` in case they are dirty.
            subscriptionOrRegistrantToCopy := shr(
                96,
                shl(96, subscriptionOrRegistrantToCopy)
            )

            for {

            } iszero(subscribe) {

            } {
                if iszero(subscriptionOrRegistrantToCopy) {
                    functionSelector := 0x4420e486 // `register(address)`.
                    break
                }
                functionSelector := 0xa0af2903 // `registerAndCopyEntries(address,address)`.
                break
            }
            // Store the function selector.
            mstore(0x00, shl(224, functionSelector))
            // Store the `address(this)`.
            mstore(0x04, address())
            // Store the `subscriptionOrRegistrantToCopy`.
            mstore(0x24, subscriptionOrRegistrantToCopy)
            // Register into the registry.
            if iszero(
                call(
                    gas(),
                    _OPERATOR_FILTER_REGISTRY,
                    0,
                    0x00,
                    0x44,
                    0x00,
                    0x04
                )
            ) {
                // If the function selector has not been overwritten,
                // it is an out-of-gas error.
                if eq(shr(224, mload(0x00)), functionSelector) {
                    // To prevent gas under-estimation.
                    revert(0, 0)
                }
            }
            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, because of Solidity's memory size limits.
            mstore(0x24, 0)
        }
    }

    /// @dev Modifier to guard a function and revert if the caller is a blocked operator.
    modifier onlyAllowedOperator(address from) virtual {
        if (from != msg.sender) {
            if (!_isPriorityOperator(msg.sender)) {
                if (_operatorFilteringEnabled()) _revertIfBlocked(msg.sender);
            }
        }
        _;
    }

    /// @dev Modifier to guard a function from approving a blocked operator..
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        if (!_isPriorityOperator(operator)) {
            if (_operatorFilteringEnabled()) _revertIfBlocked(operator);
        }
        _;
    }

    /// @dev Helper function that reverts if the `operator` is blocked by the registry.
    function _revertIfBlocked(address operator) private view {
        /// @solidity memory-safe-assembly
        assembly {
            // Store the function selector of `isOperatorAllowed(address,address)`,
            // shifted left by 6 bytes, which is enough for 8tb of memory.
            // We waste 6-3 = 3 bytes to save on 6 runtime gas (PUSH1 0x224 SHL).
            mstore(0x00, 0xc6171134001122334455)
            // Store the `address(this)`.
            mstore(0x1a, address())
            // Store the `operator`.
            mstore(0x3a, operator)

            // `isOperatorAllowed` always returns true if it does not revert.
            if iszero(
                staticcall(
                    gas(),
                    _OPERATOR_FILTER_REGISTRY,
                    0x16,
                    0x44,
                    0x00,
                    0x00
                )
            ) {
                // Bubble up the revert if the staticcall reverts.
                returndatacopy(0x00, 0x00, returndatasize())
                revert(0x00, returndatasize())
            }

            // We'll skip checking if `from` is inside the blacklist.
            // Even though that can block transferring out of wrapper contracts,
            // we don't want tokens to be stuck.

            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, if less than 8tb of memory is used.
            mstore(0x3a, 0)
        }
    }

    /// @dev For deriving contracts to override, so that operator filtering
    /// can be turned on / off.
    /// Returns true by default.
    function _operatorFilteringEnabled() internal view virtual returns (bool) {
        return true;
    }

    /// @dev For deriving contracts to override, so that preferred marketplaces can
    /// skip operator filtering, helping users save gas.
    /// Returns false for all inputs by default.
    function _isPriorityOperator(address) internal view virtual returns (bool) {
        return false;
    }
}

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(
        uint256 tokenId,
        uint256 salePrice
    ) external view returns (address receiver, uint256 royaltyAmount);
}

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(
        uint256 tokenId,
        uint256 salePrice
    ) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (salePrice * royalty.royaltyFraction) /
            _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(
            feeNumerator <= _feeDenominator(),
            "ERC2981: royalty fee will exceed salePrice"
        );
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(
            feeNumerator <= _feeDenominator(),
            "ERC2981: royalty fee will exceed salePrice"
        );
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

// OpenZeppelin Contracts (last updated v4.7.0) (utils/Base64.sol)

/**
 * @dev Provides a set of functions to operate with Base64 strings.
 *
 * _Available since v4.5._
 */
library Base64 {
    /**
     * @dev Base64 Encoding/Decoding Table
     */
    string internal constant _TABLE =
        "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /**
     * @dev Converts a `bytes` to its Bytes64 `string` representation.
     */
    function encode(bytes memory data) internal pure returns (string memory) {
        /**
         * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence
         * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol
         */
        if (data.length == 0) return "";

        // Loads the table into memory
        string memory table = _TABLE;

        // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter
        // and split into 4 numbers of 6 bits.
        // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up
        // - `data.length + 2`  -> Round up
        // - `/ 3`              -> Number of 3-bytes chunks
        // - `4 *`              -> 4 characters for each chunk
        string memory result = new string(4 * ((data.length + 2) / 3));

        /// @solidity memory-safe-assembly
        assembly {
            // Prepare the lookup table (skip the first "length" byte)
            let tablePtr := add(table, 1)

            // Prepare result pointer, jump over length
            let resultPtr := add(result, 32)

            // Run over the input, 3 bytes at a time
            for {
                let dataPtr := data
                let endPtr := add(data, mload(data))
            } lt(dataPtr, endPtr) {

            } {
                // Advance 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // To write each character, shift the 3 bytes (18 bits) chunk
                // 4 times in blocks of 6 bits for each character (18, 12, 6, 0)
                // and apply logical AND with 0x3F which is the number of
                // the previous character in the ASCII table prior to the Base64 Table
                // The result is then added to the table to get the character to write,
                // and finally write it in the result pointer but with a left shift
                // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits

                mstore8(
                    resultPtr,
                    mload(add(tablePtr, and(shr(18, input), 0x3F)))
                )
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(
                    resultPtr,
                    mload(add(tablePtr, and(shr(12, input), 0x3F)))
                )
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(
                    resultPtr,
                    mload(add(tablePtr, and(shr(6, input), 0x3F)))
                )
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance
            }

            // When data `bytes` is not exactly 3 bytes long
            // it is padded with `=` characters at the end
            switch mod(mload(data), 3)
            case 1 {
                mstore8(sub(resultPtr, 1), 0x3d)
                mstore8(sub(resultPtr, 2), 0x3d)
            }
            case 2 {
                mstore8(sub(resultPtr, 1), 0x3d)
            }
        }

        return result;
    }
}

interface IERC5192 {
    /// @notice Emitted when the locking status is changed to locked.
    /// @dev If a token is minted and the status is locked, this event should be emitted.
    /// @param tokenId The identifier for a token.
    event Locked(uint256 tokenId);

    /// @notice Emitted when the locking status is changed to unlocked.
    /// @dev If a token is minted and the status is unlocked, this event should be emitted.
    /// @param tokenId The identifier for a token.
    event Unlocked(uint256 tokenId);

    /// @notice Returns the locking status of an Soulbound Token
    /// @dev SBTs assigned to zero address are considered invalid, and queries
    /// about them do throw.
    /// @param tokenId The identifier for an SBT.
    function locked(uint256 tokenId) external view returns (bool);
}

interface MembershipForge {
    function _nftTokenForges(uint256 tokenId) external view returns (address);
}

contract AdventurePass is ERC721, Ownable, OperatorFilterer {
    bool public operatorFilteringEnabled;
    address private ApeLiquid = 0x61028F622CB6618cAC3DeB9ef0f0D5B9c6369C72;
    address private TheForge = 0xBA3B1b86ae330d2118e868b4906cc954a4207835;
    address private metl = 0xFcbE615dEf610E806BB64427574A2c5c1fB55510;
    string private unlockedImage;
    string private lockedImage;

    uint256 public metlRate = 10; // ether calculated later
    uint256 public daysRequired = 30;
    bool public claimIsActive = true;

    // Addresses that can add/remove METL
    mapping(address => bool) public allowedAddresses;

    // Took a different approach and put everything into the attributes to
    // make life a lot easier & consolidate everything into a single struct
    // and the accompanying array for that struct (on a per token id basis)
    struct TokenAttributes {
        string image;
        uint256 extraMetl;
        bool isLocked;
        bool isClaimed;
        uint256 metlClaimed;
        uint256 lockTimestamp;
    }

    mapping(uint256 => TokenAttributes) private tokenAttributes;

    constructor() ERC721("Adventure Pass", "VPASS") {
        _registerForOperatorFiltering();
        operatorFilteringEnabled = true;
        unlockedImage = "ipfs://QmY3F29qcCDi5eFk84huZjSnyKAPGu7qqFBgt78qhXfD9H";
        lockedImage = "ipfs://QmNq31WCZW2XSTFdFMC1j1hsJ9QoNb1cJ1sR99YmQR9GpB";
    }

    // -----------------------------------------------------------------------------------
    // Claim, claim from forge, burn, mint and other claiming functions
    // -----------------------------------------------------------------------------------

    event MetadataUpdate(uint256 _tokenId);
    event Locked(uint256 tokenId);
    event Unlocked(uint256 tokenId);

    function apeClaimed(uint256 tokenId) external view returns (bool) {
        return tokenAttributes[tokenId].isClaimed;
    }

    function claimApes(uint256[] memory theTokenIDs, bool forged) external {
        require(claimIsActive, "Claim not active");
        require(theTokenIDs.length != 0, "Empty token ids");

        // First check all tokens
        for (uint256 i = 0; i < theTokenIDs.length; i++) {
            uint256 tokenId = theTokenIDs[i];
            if (_exists(tokenId)) {
                continue;
            }
            if (tokenAttributes[tokenId].isClaimed) {
                continue;
            }
            if (forged) {
                require(
                    MembershipForge(TheForge)._nftTokenForges(tokenId) ==
                        msg.sender,
                    "Forge mismatch"
                );
            } else {
                require(
                    IERC721(ApeLiquid).ownerOf(tokenId) == msg.sender,
                    "Not the owner"
                );
            }
            _safeMint(msg.sender, tokenId);
            tokenAttributes[tokenId].image = unlockedImage;
            tokenAttributes[tokenId].isClaimed = true;
        }
    }

    // --------------------------------------------------------------------------------
    // Allowed to add/remove/modify METL -- owner can do same
    // --------------------------------------------------------------------------------
    function modifyAddress(address _address, bool tf) external onlyOwner {
        allowedAddresses[_address] = tf;
    }

    function addMETL(uint256 amountOfMetl, uint256 tokenId) external {
        uint256 amtMetl = amountOfMetl * 1 ether;
        require(
            ownerOf(tokenId) == msg.sender || allowedAddresses[msg.sender],
            "Not allowed!"
        );

        require(
            IERC20(metl).transferFrom(msg.sender, address(this), amtMetl),
            "Transfer failed"
        );

        tokenAttributes[tokenId].extraMetl += amtMetl;
        _buildTokenURI(tokenId);
        updateMetadata(tokenId);
    }

    function removeMETL(uint256 amountOfMetl, uint256 tokenId) external {
        uint256 amtMetl = amountOfMetl * 1 ether;
        require(allowedAddresses[msg.sender], "Not in allowed Addresses");

        if (tokenAttributes[tokenId].extraMetl >= amtMetl) {
            tokenAttributes[tokenId].extraMetl -= amtMetl;
            _buildTokenURI(tokenId);
        }
        updateMetadata(tokenId);
    }

    // --------------------------------------------------------------------------------
    // Locking, unlocking, lock checking and all the requirements to lock 2 earn metl
    // --------------------------------------------------------------------------------

    function setImage(string memory img, bool isLocked) external onlyOwner {
        if (isLocked) {
            lockedImage = img;
        } else {
            unlockedImage = img;
        }
    }

    function lockToken(uint256 tokenId) external {
        address sender = msg.sender;
        require(
            ownerOf(tokenId) == sender && !tokenAttributes[tokenId].isLocked,
            "Invalid operation"
        );

        TokenAttributes storage tokenAttr = tokenAttributes[tokenId];
        tokenAttr.image = lockedImage;
        tokenAttr.isLocked = true;
        tokenAttr.lockTimestamp = block.timestamp;
        _buildTokenURI(tokenId);
        emit MetadataUpdate(tokenId);
        emit Locked(tokenId);
    }

    function getDaysLocked(uint256 tokenId) internal view returns (uint256) {
        if (!tokenAttributes[tokenId].isLocked) {
            return 0;
        }
        return
            (block.timestamp - tokenAttributes[tokenId].lockTimestamp) / 1 days;
    }

    function isTokenLocked(uint256 tokenId) external view returns (bool) {
        return tokenAttributes[tokenId].isLocked;
    }

    function unlockToken(uint256 tokenId) external {
        address sender = msg.sender;
        require(ownerOf(tokenId) == sender, "Invalid operation");

        TokenAttributes storage tokenAttr = tokenAttributes[tokenId];
        tokenAttr.image = unlockedImage;
        tokenAttr.isLocked = false;
        tokenAttr.lockTimestamp = block.timestamp;
        _buildTokenURI(tokenId);
        emit MetadataUpdate(tokenId);
        emit Unlocked(tokenId);
    }

    // ------------------------------------------------------------------------------
    // Rewards functions
    // ------------------------------------------------------------------------------

    function calculateRewards(uint256 tokenId) public view returns (uint256) {
        //require(tokenAttributes[tokenId].isLocked, "Token must be locked");

        uint256 extraMetlRewards = tokenAttributes[tokenId].extraMetl;
        if (tokenAttributes[tokenId].isLocked) {
            uint256 daysLocked = getDaysLocked(tokenId);

            uint256 metlRatePerDay = (metlRate * 1 ether) / 30;
            return extraMetlRewards + (metlRatePerDay * daysLocked);
        }

        return extraMetlRewards;
    }

    function sendMyMETL(address to, uint256 amountOfMETL) internal {
        uint256 amt = amountOfMETL * 1 ether;
        IERC20(metl).transfer(to, amt);
    }

    function updateMetadata(uint256 tokenId) internal {
        _buildTokenURI(tokenId);
        emit MetadataUpdate(tokenId);
    }

    function claimExtraMETL(uint256 tokenId) external {
        require(msg.sender == ownerOf(tokenId), "Must own the NFT to claim");

        uint256 mHeld = tokenAttributes[tokenId].extraMetl;
        sendMyMETL(msg.sender, mHeld);
        tokenAttributes[tokenId].extraMetl = 0;
        updateMetadata(tokenId);
    }

    function claimAllMETL(uint256 tokenId) external {
        require(msg.sender == ownerOf(tokenId), "Must own the NFT to claim");
        require(tokenAttributes[tokenId].isLocked, "Token must be locked");

        uint256 daysLocked = getDaysLocked(tokenId);
        require(daysLocked > daysRequired, "Not enough days to claim");

        uint256 mEarned = calculateRewards(tokenId);

        sendMyMETL(msg.sender, mEarned);
        tokenAttributes[tokenId].metlClaimed += mEarned;
        tokenAttributes[tokenId].lockTimestamp = block.timestamp;
        tokenAttributes[tokenId].extraMetl = 0;
        updateMetadata(tokenId);
    }

    // -----------------------------------------------------------------------------------
    // Token URL (the image and metadata) are automatically generated by these functions
    // -----------------------------------------------------------------------------------

    function uint2str(uint _num) internal pure returns (string memory) {
        if (_num == 0) {
            return "0";
        }
        uint temp = _num;
        uint digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (_num != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + (_num % 10)));
            _num /= 10;
        }
        return string(buffer);
    }

    function tokenURI(uint256 id) public view override returns (string memory) {
        return _buildTokenURI(id);
    }

    function _buildTokenURI(
        uint256 tokenId
    ) internal view returns (string memory) {
        TokenAttributes memory attrs = tokenAttributes[tokenId];

        string memory json = string(
            abi.encodePacked(
                '{"name": "Venture Pass #',
                uint2str(tokenId),
                '","image":"',
                attrs.image,
                '","description": "Venture Pass. Your Pass to Adventure!",',
                '"attributes":[{"trait_type": "Total METL", "value": "',
                uint2str(calculateRewards(tokenId) / 1 ether),
                '"},{"trait_type": "METL Rate", "value": "',
                uint2str(metlRate),
                " Month",
                '"},{"trait_type": "Held METL", "value": "',
                uint2str(attrs.extraMetl / 1 ether),
                '"},{"trait_type": "Locked", "value": "',
                attrs.isLocked ? "Locked" : "Unlocked",
                '"},{"trait_type": "Claimed", "value": "',
                uint2str(attrs.metlClaimed / 1 ether),
                '"},{"trait_type": "Timestamp", "value": "',
                uint2str(attrs.lockTimestamp),
                '"}]}'
            )
        );

        return
            string(
                abi.encodePacked(
                    "data:application/json;base64,",
                    Base64.encode(bytes(json))
                )
            );
    }

    function burn(uint256 tokenId) external {
        require(
            msg.sender == ownerOf(tokenId) || msg.sender == owner(),
            "Must own or be contract owner to burn"
        );
        _burn(tokenId);
    }

    // ---------------------------------------------------------------
    // Functions allowed by owner and no one else, hence 'onlyOwner'
    // ---------------------------------------------------------------

    function toggleSaleStatus() external onlyOwner {
        claimIsActive = !claimIsActive;
        //emit ClaimActivation(claimIsActive);
    }

    // NOTE: This is expressed as integer, NOT in wei!
    function changeMetlRate(uint256 newRate) external onlyOwner {
        metlRate = newRate;
    }

    function changeDaysRequired(uint256 dr) external onlyOwner {
        daysRequired = dr;
    }

    function addExtraMetl(
        uint256[] memory tokenIds,
        uint256[] memory extraMetlNotInWei
    ) external onlyOwner {
        require(
            tokenIds.length == extraMetlNotInWei.length,
            "Arrays length mismatch"
        );

        for (uint256 i = 0; i < extraMetlNotInWei.length; i++) {
            uint256 amtMetl = extraMetlNotInWei[i] * 1 ether;
            tokenAttributes[tokenIds[i]].extraMetl += amtMetl;
        }
    }

    // --------------------------------------------------------------------
    // OpenSea's new requirements to make sure royalties work (for now,
    // until they miraculously again decide to rug all of web3 nfts again)
    // They are also bloated as fuck and generally annoying, but if they do
    // not exist, OpenSea refuses royalties and transfers are broken. 🖕
    //
    function setApprovalForAll(
        address operator,
        bool approved
    ) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(
        address operator,
        uint256 tokenId
    ) public override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override onlyAllowedOperator(from) {
        require(!this.isTokenLocked(tokenId), "Cannot move locked token");
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override onlyAllowedOperator(from) {
        require(!this.isTokenLocked(tokenId), "Cannot move locked token");
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public override onlyAllowedOperator(from) {
        require(!this.isTokenLocked(tokenId), "Cannot move locked token");
        super.safeTransferFrom(from, to, tokenId, data);
    }

    function supportsInterface(
        bytes4 interfaceId
    ) public view virtual override(ERC721) returns (bool) {
        // Supports the following `interfaceId`s:
        // - IERC165: 0x01ffc9a7
        // - IERC721: 0x80ac58cd
        // - IERC721Metadata: 0x5b5e139f
        // - IERC2981: 0x2a55205a
        return super.supportsInterface(interfaceId);
    }

    function _operatorFilteringEnabled() internal view override returns (bool) {
        return operatorFilteringEnabled;
    }

    function _isPriorityOperator(
        address operator
    ) internal pure override returns (bool) {
        // OpenSea Seaport Conduit:
        // https://etherscan.io/address/0x1E0049783F008A0085193E00003D00cd54003c71
        // https://goerli.etherscan.io/address/0x1E0049783F008A0085193E00003D00cd54003c71
        return operator == address(0x1E0049783F008A0085193E00003D00cd54003c71);
    }

    // withdraw all  METL
    function withDrawMETL() external onlyOwner {
        uint256 tokenSupply = IERC20(metl).balanceOf(address(this));
        IERC20(metl).transfer(msg.sender, tokenSupply);
    }
}

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":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Locked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"MetadataUpdate","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Unlocked","type":"event"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"uint256[]","name":"extraMetlNotInWei","type":"uint256[]"}],"name":"addExtraMetl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountOfMetl","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"addMETL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"apeClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"calculateRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"dr","type":"uint256"}],"name":"changeDaysRequired","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newRate","type":"uint256"}],"name":"changeMetlRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claimAllMETL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"theTokenIDs","type":"uint256[]"},{"internalType":"bool","name":"forged","type":"bool"}],"name":"claimApes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claimExtraMETL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"daysRequired","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isTokenLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"lockToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"metlRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"tf","type":"bool"}],"name":"modifyAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"amountOfMetl","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"removeMETL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"img","type":"string"},{"internalType":"bool","name":"isLocked","type":"bool"}],"name":"setImage","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":[],"name":"toggleSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"unlockToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withDrawMETL","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040527361028f622cb6618cac3deb9ef0f0d5b9c6369c72600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073ba3b1b86ae330d2118e868b4906cc954a4207835600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073fcbe615def610e806bb64427574a2c5c1fb55510600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600a600c55601e600d556001600e60006101000a81548160ff0219169083151502179055503480156200013557600080fd5b506040518060400160405280600e81526020017f416476656e7475726520506173730000000000000000000000000000000000008152506040518060400160405280600581526020017f56504153530000000000000000000000000000000000000000000000000000008152508160009081620001b391906200065a565b508060019081620001c591906200065a565b505050620001e8620001dc6200026f60201b60201c565b6200027760201b60201c565b620001f86200033d60201b60201c565b6001600660146101000a81548160ff0219169083151502179055506040518060600160405280603581526020016200675660359139600a90816200023d91906200065a565b506040518060600160405280603581526020016200672160359139600b90816200026891906200065a565b5062000741565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000364733cc6cdda760b79bafa08df41ecfa224f810dceb660016200036660201b60201c565b565b637d3e3dbe8260601b60601c9250816200039557826200038d57634420e486905062000395565b63a0af290390505b8060e01b60005230600452826024526004600060446000806daaeb6d7670e522a718067333cd4e5af1620003d6578060005160e01c03620003d557600080fd5b5b6000602452505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200046257607f821691505b6020821081036200047857620004776200041a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004e27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004a3565b620004ee8683620004a3565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200053b620005356200052f8462000506565b62000510565b62000506565b9050919050565b6000819050919050565b62000557836200051a565b6200056f620005668262000542565b848454620004b0565b825550505050565b600090565b6200058662000577565b620005938184846200054c565b505050565b5b81811015620005bb57620005af6000826200057c565b60018101905062000599565b5050565b601f8211156200060a57620005d4816200047e565b620005df8462000493565b81016020851015620005ef578190505b62000607620005fe8562000493565b83018262000598565b50505b505050565b600082821c905092915050565b60006200062f600019846008026200060f565b1980831691505092915050565b60006200064a83836200061c565b9150826002028217905092915050565b6200066582620003e0565b67ffffffffffffffff811115620006815762000680620003eb565b5b6200068d825462000449565b6200069a828285620005bf565b600060209050601f831160018114620006d25760008415620006bd578287015190505b620006c985826200063c565b86555062000739565b601f198416620006e2866200047e565b60005b828110156200070c57848901518255600182019150602085019450602081019050620006e5565b868310156200072c578489015162000728601f8916826200061c565b8355505b6001600288020188555050505b505050505050565b615fd080620007516000396000f3fe608060405234801561001057600080fd5b506004361061023d5760003560e01c8063715018a61161013b578063b88d4fde116100b8578063dd2e0ac01161007c578063dd2e0ac014610670578063e6143d6b1461068c578063e985e9c5146106bc578063f2fde38b146106ec578063fb796e6c146107085761023d565b8063b88d4fde146105ce578063c08e4576146105ea578063c228c0e014610606578063c87b56dd14610610578063d3ea4350146106405761023d565b806395d89b41116100ff57806395d89b411461053e57806398bfb01b1461055c5780639a51fd5114610578578063a22cb46514610594578063acbb9642146105b05761023d565b8063715018a6146104c25780637a393136146104cc57806380f20363146104e85780638da5cb5b146105045780638e9e29c0146105225761023d565b80632d70c1ec116101c95780635303f68c1161018d5780635303f68c1461040c578063536610f41461042a57806360cb3bdb146104465780636352211e1461046257806370a08231146104925761023d565b80632d70c1ec1461036c5780633a132482146103885780634120657a146103a457806342842e0e146103d457806342966c68146103f05761023d565b8063095ea7b311610210578063095ea7b3146102ca57806317a195a6146102e657806323b872dd14610302578063276a28a31461031e5780632c5cb14c1461034e5761023d565b806301ffc9a714610242578063049c5c491461027257806306fdde031461027c578063081812fc1461029a575b600080fd5b61025c60048036038101906102579190613c78565b610726565b6040516102699190613cc0565b60405180910390f35b61027a610738565b005b6102846107e0565b6040516102919190613d74565b60405180910390f35b6102b460048036038101906102af9190613dcc565b610872565b6040516102c19190613e3a565b60405180910390f35b6102e460048036038101906102df9190613e81565b6108b8565b005b61030060048036038101906102fb9190613dcc565b6108ed565b005b61031c60048036038101906103179190613ec1565b610973565b005b61033860048036038101906103339190613dcc565b610a98565b6040516103459190613cc0565b60405180910390f35b610356610ac5565b6040516103639190613f23565b60405180910390f35b61038660048036038101906103819190613dcc565b610acb565b005b6103a2600480360381019061039d919061409f565b610c7e565b005b6103be60048036038101906103b991906140fb565b610d2a565b6040516103cb9190613cc0565b60405180910390f35b6103ee60048036038101906103e99190613ec1565b610d4a565b005b61040a60048036038101906104059190613dcc565b610e6f565b005b610414610f2e565b6040516104219190613cc0565b60405180910390f35b610444600480360381019061043f9190614128565b610f41565b005b610460600480360381019061045b9190614128565b611048565b005b61047c60048036038101906104779190613dcc565b611250565b6040516104899190613e3a565b60405180910390f35b6104ac60048036038101906104a791906140fb565b6112d6565b6040516104b99190613f23565b60405180910390f35b6104ca61138d565b005b6104e660048036038101906104e19190613dcc565b611415565b005b61050260048036038101906104fd9190613dcc565b61149b565b005b61050c611610565b6040516105199190613e3a565b60405180910390f35b61053c60048036038101906105379190614168565b61163a565b005b610546611711565b6040516105539190613d74565b60405180910390f35b61057660048036038101906105719190613dcc565b6117a3565b005b610592600480360381019061058d9190614270565b611867565b005b6105ae60048036038101906105a99190614168565b611bfe565b005b6105b8611c33565b6040516105c59190613f23565b60405180910390f35b6105e860048036038101906105e3919061436d565b611c39565b005b61060460048036038101906105ff91906143f0565b611d60565b005b61060e611ebe565b005b61062a60048036038101906106259190613dcc565b61207e565b6040516106379190613d74565b60405180910390f35b61065a60048036038101906106559190613dcc565b612090565b6040516106679190613f23565b60405180910390f35b61068a60048036038101906106859190613dcc565b612133565b005b6106a660048036038101906106a19190613dcc565b61227b565b6040516106b39190613cc0565b60405180910390f35b6106d660048036038101906106d19190614468565b6122a8565b6040516106e39190613cc0565b60405180910390f35b610706600480360381019061070191906140fb565b61233c565b005b610710612433565b60405161071d9190613cc0565b60405180910390f35b600061073182612446565b9050919050565b610740612528565b73ffffffffffffffffffffffffffffffffffffffff1661075e611610565b73ffffffffffffffffffffffffffffffffffffffff16146107b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ab906144f4565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6060600080546107ef90614543565b80601f016020809104026020016040519081016040528092919081815260200182805461081b90614543565b80156108685780601f1061083d57610100808354040283529160200191610868565b820191906000526020600020905b81548152906001019060200180831161084b57829003601f168201915b5050505050905090565b600061087d82612530565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b816108c28161257b565b6108de576108ce6125c7565b156108dd576108dc816125de565b5b5b6108e88383612622565b505050565b6108f5612528565b73ffffffffffffffffffffffffffffffffffffffff16610913611610565b73ffffffffffffffffffffffffffffffffffffffff1614610969576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610960906144f4565b60405180910390fd5b80600c8190555050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109cd576109b03361257b565b6109cc576109bc6125c7565b156109cb576109ca336125de565b5b5b5b3073ffffffffffffffffffffffffffffffffffffffff1663276a28a3836040518263ffffffff1660e01b8152600401610a069190613f23565b602060405180830381865afa158015610a23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a479190614589565b15610a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7e90614602565b60405180910390fd5b610a92848484612739565b50505050565b60006010600083815260200190815260200160002060020160009054906101000a900460ff169050919050565b600c5481565b610ad481611250565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b389061466e565b60405180910390fd5b6010600082815260200190815260200160002060020160009054906101000a900460ff16610ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9b906146da565b60405180910390fd5b6000610baf82612799565b9050600d548111610bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bec90614746565b60405180910390fd5b6000610c0083612090565b9050610c0c3382612804565b80601060008581526020019081526020016000206003016000828254610c329190614795565b9250508190555042601060008581526020019081526020016000206004018190555060006010600085815260200190815260200160002060010181905550610c79836128c2565b505050565b610c86612528565b73ffffffffffffffffffffffffffffffffffffffff16610ca4611610565b73ffffffffffffffffffffffffffffffffffffffff1614610cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf1906144f4565b60405180910390fd5b8015610d155781600b9081610d0f9190614997565b50610d26565b81600a9081610d249190614997565b505b5050565b600f6020528060005260406000206000915054906101000a900460ff1681565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610da457610d873361257b565b610da357610d936125c7565b15610da257610da1336125de565b5b5b5b3073ffffffffffffffffffffffffffffffffffffffff1663276a28a3836040518263ffffffff1660e01b8152600401610ddd9190613f23565b602060405180830381865afa158015610dfa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e1e9190614589565b15610e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5590614602565b60405180910390fd5b610e69848484612906565b50505050565b610e7881611250565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610ee35750610eb4611610565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1990614adb565b60405180910390fd5b610f2b81612926565b50565b600e60009054906101000a900460ff1681565b6000670de0b6b3a764000083610f579190614afb565b9050600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdc90614ba1565b60405180910390fd5b8060106000848152602001908152602001600020600101541061103a57806010600084815260200190815260200160002060010160008282546110289190614bc1565b9250508190555061103882612a7d565b505b611043826128c2565b505050565b6000670de0b6b3a76400008361105e9190614afb565b90503373ffffffffffffffffffffffffffffffffffffffff1661108083611250565b73ffffffffffffffffffffffffffffffffffffffff1614806110eb5750600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61112a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112190614c41565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b815260040161118993929190614c61565b6020604051808303816000875af11580156111a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111cc9190614589565b61120b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120290614ce4565b60405180910390fd5b806010600084815260200190815260200160002060010160008282546112319190614795565b9250508190555061124182612a7d565b5061124b826128c2565b505050565b60008061125c83612ce7565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c490614d50565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133d90614de2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611395612528565b73ffffffffffffffffffffffffffffffffffffffff166113b3611610565b73ffffffffffffffffffffffffffffffffffffffff1614611409576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611400906144f4565b60405180910390fd5b6114136000612d24565b565b61141d612528565b73ffffffffffffffffffffffffffffffffffffffff1661143b611610565b73ffffffffffffffffffffffffffffffffffffffff1614611491576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611488906144f4565b60405180910390fd5b80600d8190555050565b60003390508073ffffffffffffffffffffffffffffffffffffffff166114c083611250565b73ffffffffffffffffffffffffffffffffffffffff1614801561150457506010600083815260200190815260200160002060020160009054906101000a900460ff16155b611543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153a90614e4e565b60405180910390fd5b6000601060008481526020019081526020016000209050600b81600001908161156c9190614e99565b5060018160020160006101000a81548160ff02191690831515021790555042816004018190555061159c83612a7d565b507ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce7836040516115cc9190613f23565b60405180910390a17f032bc66be43dbccb7487781d168eb7bda224628a3b2c3388bdf69b532a3a1611836040516116039190613f23565b60405180910390a1505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611642612528565b73ffffffffffffffffffffffffffffffffffffffff16611660611610565b73ffffffffffffffffffffffffffffffffffffffff16146116b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ad906144f4565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60606001805461172090614543565b80601f016020809104026020016040519081016040528092919081815260200182805461174c90614543565b80156117995780601f1061176e57610100808354040283529160200191611799565b820191906000526020600020905b81548152906001019060200180831161177c57829003601f168201915b5050505050905090565b6117ac81611250565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611819576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118109061466e565b60405180910390fd5b60006010600083815260200190815260200160002060010154905061183e3382612804565b60006010600084815260200190815260200160002060010181905550611863826128c2565b5050565b600e60009054906101000a900460ff166118b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ad90614fcd565b60405180910390fd5b60008251036118fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f190615039565b60405180910390fd5b60005b8251811015611bf957600083828151811061191b5761191a615059565b5b6020026020010151905061192e81612dea565b156119395750611be6565b6010600082815260200190815260200160002060020160019054906101000a900460ff16156119685750611be6565b8215611a7c573373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166394a7eb49836040518263ffffffff1660e01b81526004016119e09190613f23565b602060405180830381865afa1580156119fd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a21919061509d565b73ffffffffffffffffffffffffffffffffffffffff1614611a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6e90615116565b60405180910390fd5b611b86565b3373ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401611aee9190613f23565b602060405180830381865afa158015611b0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b2f919061509d565b73ffffffffffffffffffffffffffffffffffffffff1614611b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7c90615182565b60405180910390fd5b5b611b903382612e2b565b600a601060008381526020019081526020016000206000019081611bb49190614e99565b5060016010600083815260200190815260200160002060020160016101000a81548160ff021916908315150217905550505b8080611bf1906151a2565b9150506118fd565b505050565b81611c088161257b565b611c2457611c146125c7565b15611c2357611c22816125de565b5b5b611c2e8383612e49565b505050565b600d5481565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c9357611c763361257b565b611c9257611c826125c7565b15611c9157611c90336125de565b5b5b5b3073ffffffffffffffffffffffffffffffffffffffff1663276a28a3846040518263ffffffff1660e01b8152600401611ccc9190613f23565b602060405180830381865afa158015611ce9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d0d9190614589565b15611d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4490614602565b60405180910390fd5b611d5985858585612e5f565b5050505050565b611d68612528565b73ffffffffffffffffffffffffffffffffffffffff16611d86611610565b73ffffffffffffffffffffffffffffffffffffffff1614611ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd3906144f4565b60405180910390fd5b8051825114611e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1790615236565b60405180910390fd5b60005b8151811015611eb9576000670de0b6b3a7640000838381518110611e4a57611e49615059565b5b6020026020010151611e5c9190614afb565b90508060106000868581518110611e7657611e75615059565b5b602002602001015181526020019081526020016000206001016000828254611e9e9190614795565b92505081905550508080611eb1906151a2565b915050611e23565b505050565b611ec6612528565b73ffffffffffffffffffffffffffffffffffffffff16611ee4611610565b73ffffffffffffffffffffffffffffffffffffffff1614611f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f31906144f4565b60405180910390fd5b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611f979190613e3a565b602060405180830381865afa158015611fb4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fd8919061526b565b9050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401612037929190615298565b6020604051808303816000875af1158015612056573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061207a9190614589565b5050565b606061208982612a7d565b9050919050565b600080601060008481526020019081526020016000206001015490506010600084815260200190815260200160002060020160009054906101000a900460ff16156121295760006120e084612799565b90506000601e670de0b6b3a7640000600c546120fc9190614afb565b61210691906152f0565b905081816121149190614afb565b8361211f9190614795565b935050505061212e565b809150505b919050565b60003390508073ffffffffffffffffffffffffffffffffffffffff1661215883611250565b73ffffffffffffffffffffffffffffffffffffffff16146121ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a590614e4e565b60405180910390fd5b6000601060008481526020019081526020016000209050600a8160000190816121d79190614e99565b5060008160020160006101000a81548160ff02191690831515021790555042816004018190555061220783612a7d565b507ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce7836040516122379190613f23565b60405180910390a17ff27b6ce5b2f5e68ddb2fd95a8a909d4ecf1daaac270935fff052feacb24f18428360405161226e9190613f23565b60405180910390a1505050565b60006010600083815260200190815260200160002060020160019054906101000a900460ff169050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612344612528565b73ffffffffffffffffffffffffffffffffffffffff16612362611610565b73ffffffffffffffffffffffffffffffffffffffff16146123b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123af906144f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241e90615393565b60405180910390fd5b61243081612d24565b50565b600660149054906101000a900460ff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061251157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612521575061252082612ec1565b5b9050919050565b600033905090565b61253981612dea565b612578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256f90614d50565b60405180910390fd5b50565b6000731e0049783f008a0085193e00003d00cd54003c7173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16149050919050565b6000600660149054906101000a900460ff16905090565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa61261a573d6000803e3d6000fd5b6000603a5250565b600061262d82611250565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361269d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269490615425565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166126bc612528565b73ffffffffffffffffffffffffffffffffffffffff1614806126eb57506126ea816126e5612528565b6122a8565b5b61272a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612721906154b7565b60405180910390fd5b6127348383612f2b565b505050565b61274a612744612528565b82612fe4565b612789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278090615549565b60405180910390fd5b612794838383613079565b505050565b60006010600083815260200190815260200160002060020160009054906101000a900460ff166127cc57600090506127ff565b620151806010600084815260200190815260200160002060040154426127f29190614bc1565b6127fc91906152f0565b90505b919050565b6000670de0b6b3a76400008261281a9190614afb565b9050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b8152600401612879929190615298565b6020604051808303816000875af1158015612898573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128bc9190614589565b50505050565b6128cb81612a7d565b507ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce7816040516128fb9190613f23565b60405180910390a150565b61292183838360405180602001604052806000815250611c39565b505050565b600061293182611250565b905061294181600084600161337b565b61294a82611250565b90506004600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129d29190614bc1565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a79816000846001613381565b5050565b60606000601060008481526020019081526020016000206040518060c0016040529081600082018054612aaf90614543565b80601f0160208091040260200160405190810160405280929190818152602001828054612adb90614543565b8015612b285780601f10612afd57610100808354040283529160200191612b28565b820191906000526020600020905b815481529060010190602001808311612b0b57829003601f168201915b50505050508152602001600182015481526020016002820160009054906101000a900460ff161515151581526020016002820160019054906101000a900460ff161515151581526020016003820154815260200160048201548152505090506000612b9284613387565b8260000151612bbb670de0b6b3a7640000612bac88612090565b612bb691906152f0565b613387565b612bc6600c54613387565b612be6670de0b6b3a76400008760200151612be191906152f0565b613387565b8660400151612c2a576040518060400160405280600881526020017f556e6c6f636b6564000000000000000000000000000000000000000000000000815250612c61565b6040518060400160405280600681526020017f4c6f636b656400000000000000000000000000000000000000000000000000008152505b612c81670de0b6b3a76400008960800151612c7c91906152f0565b613387565b612c8e8960a00151613387565b604051602001612ca59897969594939291906159f3565b6040516020818303038152906040529050612cbf816134e7565b604051602001612ccf9190615b2a565b60405160208183030381529060405292505050919050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff16612e0c83612ce7565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b612e4582826040518060200160405280600081525061364a565b5050565b612e5b612e54612528565b83836136a5565b5050565b612e70612e6a612528565b83612fe4565b612eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea690615549565b60405180910390fd5b612ebb84848484613811565b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612f9e83611250565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080612ff083611250565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480613032575061303181856122a8565b5b8061307057508373ffffffffffffffffffffffffffffffffffffffff1661305884610872565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661309982611250565b73ffffffffffffffffffffffffffffffffffffffff16146130ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130e690615bbe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361315e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161315590615c50565b60405180910390fd5b61316b838383600161337b565b8273ffffffffffffffffffffffffffffffffffffffff1661318b82611250565b73ffffffffffffffffffffffffffffffffffffffff16146131e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131d890615bbe565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132679190614bc1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133768383836001613381565b505050565b50505050565b50505050565b6060600082036133ce576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506134e2565b600082905060005b600082146134005780806133e9906151a2565b915050600a826133f991906152f0565b91506133d6565b60008167ffffffffffffffff81111561341c5761341b613f48565b5b6040519080825280601f01601f19166020018201604052801561344e5781602001600182028036833780820191505090505b5090505b600085146134db576001826134679190614bc1565b9150600a856134769190615c70565b60306134829190614795565b60f81b81838151811061349857613497615059565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134d491906152f0565b9450613452565b8093505050505b919050565b6060600082510361350957604051806020016040528060008152509050613645565b6000604051806060016040528060408152602001615f5b60409139905060006003600285516135389190614795565b61354291906152f0565b600461354e9190614afb565b67ffffffffffffffff81111561356757613566613f48565b5b6040519080825280601f01601f1916602001820160405280156135995781602001600182028036833780820191505090505b509050600182016020820185865187015b80821015613605576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f81168501518453600184019350506135aa565b505060038651066001811461362157600281146136345761363c565b603d6001830353603d600283035361363c565b603d60018303535b50505080925050505b919050565b613654838361386d565b6136616000848484613a8a565b6136a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161369790615d13565b60405180910390fd5b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161370a90615d7f565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516138049190613cc0565b60405180910390a3505050565b61381c848484613079565b61382884848484613a8a565b613867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161385e90615d13565b60405180910390fd5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036138dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138d390615deb565b60405180910390fd5b6138e581612dea565b15613925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161391c90615e57565b60405180910390fd5b61393360008383600161337b565b61393c81612dea565b1561397c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161397390615e57565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613a86600083836001613381565b5050565b6000808473ffffffffffffffffffffffffffffffffffffffff163b1115613bff578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613acf612528565b8786866040518563ffffffff1660e01b8152600401613af19493929190615ecc565b6020604051808303816000875af1925050508015613b2d57506040513d601f19601f82011682018060405250810190613b2a9190615f2d565b60015b613baf573d8060008114613b5d576040519150601f19603f3d011682016040523d82523d6000602084013e613b62565b606091505b506000815103613ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b9e90615d13565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613c04565b600190505b949350505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613c5581613c20565b8114613c6057600080fd5b50565b600081359050613c7281613c4c565b92915050565b600060208284031215613c8e57613c8d613c16565b5b6000613c9c84828501613c63565b91505092915050565b60008115159050919050565b613cba81613ca5565b82525050565b6000602082019050613cd56000830184613cb1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613d15578082015181840152602081019050613cfa565b83811115613d24576000848401525b50505050565b6000601f19601f8301169050919050565b6000613d4682613cdb565b613d508185613ce6565b9350613d60818560208601613cf7565b613d6981613d2a565b840191505092915050565b60006020820190508181036000830152613d8e8184613d3b565b905092915050565b6000819050919050565b613da981613d96565b8114613db457600080fd5b50565b600081359050613dc681613da0565b92915050565b600060208284031215613de257613de1613c16565b5b6000613df084828501613db7565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613e2482613df9565b9050919050565b613e3481613e19565b82525050565b6000602082019050613e4f6000830184613e2b565b92915050565b613e5e81613e19565b8114613e6957600080fd5b50565b600081359050613e7b81613e55565b92915050565b60008060408385031215613e9857613e97613c16565b5b6000613ea685828601613e6c565b9250506020613eb785828601613db7565b9150509250929050565b600080600060608486031215613eda57613ed9613c16565b5b6000613ee886828701613e6c565b9350506020613ef986828701613e6c565b9250506040613f0a86828701613db7565b9150509250925092565b613f1d81613d96565b82525050565b6000602082019050613f386000830184613f14565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613f8082613d2a565b810181811067ffffffffffffffff82111715613f9f57613f9e613f48565b5b80604052505050565b6000613fb2613c0c565b9050613fbe8282613f77565b919050565b600067ffffffffffffffff821115613fde57613fdd613f48565b5b613fe782613d2a565b9050602081019050919050565b82818337600083830152505050565b600061401661401184613fc3565b613fa8565b90508281526020810184848401111561403257614031613f43565b5b61403d848285613ff4565b509392505050565b600082601f83011261405a57614059613f3e565b5b813561406a848260208601614003565b91505092915050565b61407c81613ca5565b811461408757600080fd5b50565b60008135905061409981614073565b92915050565b600080604083850312156140b6576140b5613c16565b5b600083013567ffffffffffffffff8111156140d4576140d3613c1b565b5b6140e085828601614045565b92505060206140f18582860161408a565b9150509250929050565b60006020828403121561411157614110613c16565b5b600061411f84828501613e6c565b91505092915050565b6000806040838503121561413f5761413e613c16565b5b600061414d85828601613db7565b925050602061415e85828601613db7565b9150509250929050565b6000806040838503121561417f5761417e613c16565b5b600061418d85828601613e6c565b925050602061419e8582860161408a565b9150509250929050565b600067ffffffffffffffff8211156141c3576141c2613f48565b5b602082029050602081019050919050565b600080fd5b60006141ec6141e7846141a8565b613fa8565b9050808382526020820190506020840283018581111561420f5761420e6141d4565b5b835b8181101561423857806142248882613db7565b845260208401935050602081019050614211565b5050509392505050565b600082601f83011261425757614256613f3e565b5b81356142678482602086016141d9565b91505092915050565b6000806040838503121561428757614286613c16565b5b600083013567ffffffffffffffff8111156142a5576142a4613c1b565b5b6142b185828601614242565b92505060206142c28582860161408a565b9150509250929050565b600067ffffffffffffffff8211156142e7576142e6613f48565b5b6142f082613d2a565b9050602081019050919050565b600061431061430b846142cc565b613fa8565b90508281526020810184848401111561432c5761432b613f43565b5b614337848285613ff4565b509392505050565b600082601f83011261435457614353613f3e565b5b81356143648482602086016142fd565b91505092915050565b6000806000806080858703121561438757614386613c16565b5b600061439587828801613e6c565b94505060206143a687828801613e6c565b93505060406143b787828801613db7565b925050606085013567ffffffffffffffff8111156143d8576143d7613c1b565b5b6143e48782880161433f565b91505092959194509250565b6000806040838503121561440757614406613c16565b5b600083013567ffffffffffffffff81111561442557614424613c1b565b5b61443185828601614242565b925050602083013567ffffffffffffffff81111561445257614451613c1b565b5b61445e85828601614242565b9150509250929050565b6000806040838503121561447f5761447e613c16565b5b600061448d85828601613e6c565b925050602061449e85828601613e6c565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006144de602083613ce6565b91506144e9826144a8565b602082019050919050565b6000602082019050818103600083015261450d816144d1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061455b57607f821691505b60208210810361456e5761456d614514565b5b50919050565b60008151905061458381614073565b92915050565b60006020828403121561459f5761459e613c16565b5b60006145ad84828501614574565b91505092915050565b7f43616e6e6f74206d6f7665206c6f636b656420746f6b656e0000000000000000600082015250565b60006145ec601883613ce6565b91506145f7826145b6565b602082019050919050565b6000602082019050818103600083015261461b816145df565b9050919050565b7f4d757374206f776e20746865204e465420746f20636c61696d00000000000000600082015250565b6000614658601983613ce6565b915061466382614622565b602082019050919050565b600060208201905081810360008301526146878161464b565b9050919050565b7f546f6b656e206d757374206265206c6f636b6564000000000000000000000000600082015250565b60006146c4601483613ce6565b91506146cf8261468e565b602082019050919050565b600060208201905081810360008301526146f3816146b7565b9050919050565b7f4e6f7420656e6f756768206461797320746f20636c61696d0000000000000000600082015250565b6000614730601883613ce6565b915061473b826146fa565b602082019050919050565b6000602082019050818103600083015261475f81614723565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006147a082613d96565b91506147ab83613d96565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147e0576147df614766565b5b828201905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261484d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614810565b6148578683614810565b95508019841693508086168417925050509392505050565b6000819050919050565b600061489461488f61488a84613d96565b61486f565b613d96565b9050919050565b6000819050919050565b6148ae83614879565b6148c26148ba8261489b565b84845461481d565b825550505050565b600090565b6148d76148ca565b6148e28184846148a5565b505050565b5b81811015614906576148fb6000826148cf565b6001810190506148e8565b5050565b601f82111561494b5761491c816147eb565b61492584614800565b81016020851015614934578190505b61494861494085614800565b8301826148e7565b50505b505050565b600082821c905092915050565b600061496e60001984600802614950565b1980831691505092915050565b6000614987838361495d565b9150826002028217905092915050565b6149a082613cdb565b67ffffffffffffffff8111156149b9576149b8613f48565b5b6149c38254614543565b6149ce82828561490a565b600060209050601f831160018114614a0157600084156149ef578287015190505b6149f9858261497b565b865550614a61565b601f198416614a0f866147eb565b60005b82811015614a3757848901518255600182019150602085019450602081019050614a12565b86831015614a545784890151614a50601f89168261495d565b8355505b6001600288020188555050505b505050505050565b7f4d757374206f776e206f7220626520636f6e7472616374206f776e657220746f60008201527f206275726e000000000000000000000000000000000000000000000000000000602082015250565b6000614ac5602583613ce6565b9150614ad082614a69565b604082019050919050565b60006020820190508181036000830152614af481614ab8565b9050919050565b6000614b0682613d96565b9150614b1183613d96565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b4a57614b49614766565b5b828202905092915050565b7f4e6f7420696e20616c6c6f776564204164647265737365730000000000000000600082015250565b6000614b8b601883613ce6565b9150614b9682614b55565b602082019050919050565b60006020820190508181036000830152614bba81614b7e565b9050919050565b6000614bcc82613d96565b9150614bd783613d96565b925082821015614bea57614be9614766565b5b828203905092915050565b7f4e6f7420616c6c6f776564210000000000000000000000000000000000000000600082015250565b6000614c2b600c83613ce6565b9150614c3682614bf5565b602082019050919050565b60006020820190508181036000830152614c5a81614c1e565b9050919050565b6000606082019050614c766000830186613e2b565b614c836020830185613e2b565b614c906040830184613f14565b949350505050565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b6000614cce600f83613ce6565b9150614cd982614c98565b602082019050919050565b60006020820190508181036000830152614cfd81614cc1565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000614d3a601883613ce6565b9150614d4582614d04565b602082019050919050565b60006020820190508181036000830152614d6981614d2d565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000614dcc602983613ce6565b9150614dd782614d70565b604082019050919050565b60006020820190508181036000830152614dfb81614dbf565b9050919050565b7f496e76616c6964206f7065726174696f6e000000000000000000000000000000600082015250565b6000614e38601183613ce6565b9150614e4382614e02565b602082019050919050565b60006020820190508181036000830152614e6781614e2b565b9050919050565b600081549050614e7d81614543565b9050919050565b60008190508160005260206000209050919050565b818103614ea7575050614f7f565b614eb082614e6e565b67ffffffffffffffff811115614ec957614ec8613f48565b5b614ed38254614543565b614ede82828561490a565b6000601f831160018114614f0d5760008415614efb578287015490505b614f05858261497b565b865550614f78565b601f198416614f1b87614e84565b9650614f26866147eb565b60005b82811015614f4e57848901548255600182019150600185019450602081019050614f29565b86831015614f6b5784890154614f67601f89168261495d565b8355505b6001600288020188555050505b5050505050505b565b7f436c61696d206e6f742061637469766500000000000000000000000000000000600082015250565b6000614fb7601083613ce6565b9150614fc282614f81565b602082019050919050565b60006020820190508181036000830152614fe681614faa565b9050919050565b7f456d70747920746f6b656e206964730000000000000000000000000000000000600082015250565b6000615023600f83613ce6565b915061502e82614fed565b602082019050919050565b6000602082019050818103600083015261505281615016565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061509781613e55565b92915050565b6000602082840312156150b3576150b2613c16565b5b60006150c184828501615088565b91505092915050565b7f466f726765206d69736d61746368000000000000000000000000000000000000600082015250565b6000615100600e83613ce6565b915061510b826150ca565b602082019050919050565b6000602082019050818103600083015261512f816150f3565b9050919050565b7f4e6f7420746865206f776e657200000000000000000000000000000000000000600082015250565b600061516c600d83613ce6565b915061517782615136565b602082019050919050565b6000602082019050818103600083015261519b8161515f565b9050919050565b60006151ad82613d96565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036151df576151de614766565b5b600182019050919050565b7f417272617973206c656e677468206d69736d6174636800000000000000000000600082015250565b6000615220601683613ce6565b915061522b826151ea565b602082019050919050565b6000602082019050818103600083015261524f81615213565b9050919050565b60008151905061526581613da0565b92915050565b60006020828403121561528157615280613c16565b5b600061528f84828501615256565b91505092915050565b60006040820190506152ad6000830185613e2b565b6152ba6020830184613f14565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006152fb82613d96565b915061530683613d96565b925082615316576153156152c1565b5b828204905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061537d602683613ce6565b915061538882615321565b604082019050919050565b600060208201905081810360008301526153ac81615370565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061540f602183613ce6565b915061541a826153b3565b604082019050919050565b6000602082019050818103600083015261543e81615402565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b60006154a1603d83613ce6565b91506154ac82615445565b604082019050919050565b600060208201905081810360008301526154d081615494565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000615533602d83613ce6565b915061553e826154d7565b604082019050919050565b6000602082019050818103600083015261556281615526565b9050919050565b600081905092915050565b7f7b226e616d65223a202256656e74757265205061737320230000000000000000600082015250565b60006155aa601883615569565b91506155b582615574565b601882019050919050565b60006155cb82613cdb565b6155d58185615569565b93506155e5818560208601613cf7565b80840191505092915050565b7f222c22696d616765223a22000000000000000000000000000000000000000000600082015250565b6000615627600b83615569565b9150615632826155f1565b600b82019050919050565b7f222c226465736372697074696f6e223a202256656e7475726520506173732e2060008201527f596f7572205061737320746f20416476656e7475726521222c00000000000000602082015250565b6000615699603983615569565b91506156a48261563d565b603982019050919050565b7f2261747472696275746573223a5b7b2274726169745f74797065223a2022546f60008201527f74616c204d45544c222c202276616c7565223a20220000000000000000000000602082015250565b600061570b603583615569565b9150615716826156af565b603582019050919050565b7f227d2c7b2274726169745f74797065223a20224d45544c2052617465222c202260008201527f76616c7565223a20220000000000000000000000000000000000000000000000602082015250565b600061577d602983615569565b915061578882615721565b602982019050919050565b7f204d6f6e74680000000000000000000000000000000000000000000000000000600082015250565b60006157c9600683615569565b91506157d482615793565b600682019050919050565b7f227d2c7b2274726169745f74797065223a202248656c64204d45544c222c202260008201527f76616c7565223a20220000000000000000000000000000000000000000000000602082015250565b600061583b602983615569565b9150615846826157df565b602982019050919050565b7f227d2c7b2274726169745f74797065223a20224c6f636b6564222c202276616c60008201527f7565223a20220000000000000000000000000000000000000000000000000000602082015250565b60006158ad602683615569565b91506158b882615851565b602682019050919050565b7f227d2c7b2274726169745f74797065223a2022436c61696d6564222c2022766160008201527f6c7565223a202200000000000000000000000000000000000000000000000000602082015250565b600061591f602783615569565b915061592a826158c3565b602782019050919050565b7f227d2c7b2274726169745f74797065223a202254696d657374616d70222c202260008201527f76616c7565223a20220000000000000000000000000000000000000000000000602082015250565b6000615991602983615569565b915061599c82615935565b602982019050919050565b7f227d5d7d00000000000000000000000000000000000000000000000000000000600082015250565b60006159dd600483615569565b91506159e8826159a7565b600482019050919050565b60006159fe8261559d565b9150615a0a828b6155c0565b9150615a158261561a565b9150615a21828a6155c0565b9150615a2c8261568c565b9150615a37826156fe565b9150615a4382896155c0565b9150615a4e82615770565b9150615a5a82886155c0565b9150615a65826157bc565b9150615a708261582e565b9150615a7c82876155c0565b9150615a87826158a0565b9150615a9382866155c0565b9150615a9e82615912565b9150615aaa82856155c0565b9150615ab582615984565b9150615ac182846155c0565b9150615acc826159d0565b91508190509998505050505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b6000615b14601d83615569565b9150615b1f82615ade565b601d82019050919050565b6000615b3582615b07565b9150615b4182846155c0565b915081905092915050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000615ba8602583613ce6565b9150615bb382615b4c565b604082019050919050565b60006020820190508181036000830152615bd781615b9b565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615c3a602483613ce6565b9150615c4582615bde565b604082019050919050565b60006020820190508181036000830152615c6981615c2d565b9050919050565b6000615c7b82613d96565b9150615c8683613d96565b925082615c9657615c956152c1565b5b828206905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615cfd603283613ce6565b9150615d0882615ca1565b604082019050919050565b60006020820190508181036000830152615d2c81615cf0565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000615d69601983613ce6565b9150615d7482615d33565b602082019050919050565b60006020820190508181036000830152615d9881615d5c565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615dd5602083613ce6565b9150615de082615d9f565b602082019050919050565b60006020820190508181036000830152615e0481615dc8565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615e41601c83613ce6565b9150615e4c82615e0b565b602082019050919050565b60006020820190508181036000830152615e7081615e34565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000615e9e82615e77565b615ea88185615e82565b9350615eb8818560208601613cf7565b615ec181613d2a565b840191505092915050565b6000608082019050615ee16000830187613e2b565b615eee6020830186613e2b565b615efb6040830185613f14565b8181036060830152615f0d8184615e93565b905095945050505050565b600081519050615f2781613c4c565b92915050565b600060208284031215615f4357615f42613c16565b5b6000615f5184828501615f18565b9150509291505056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220d07ba0ce48e4e89ee1628a63d989f5ba0e531277b1299e733d89d6a20277f6b064736f6c634300080f0033697066733a2f2f516d4e71333157435a57325853544664464d43316a3168734a39516f4e6231634a3173523939596d515239477042697066733a2f2f516d593346323971634344693565466b383468755a6a536e794b4150477537717146426774373871685866443948

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061023d5760003560e01c8063715018a61161013b578063b88d4fde116100b8578063dd2e0ac01161007c578063dd2e0ac014610670578063e6143d6b1461068c578063e985e9c5146106bc578063f2fde38b146106ec578063fb796e6c146107085761023d565b8063b88d4fde146105ce578063c08e4576146105ea578063c228c0e014610606578063c87b56dd14610610578063d3ea4350146106405761023d565b806395d89b41116100ff57806395d89b411461053e57806398bfb01b1461055c5780639a51fd5114610578578063a22cb46514610594578063acbb9642146105b05761023d565b8063715018a6146104c25780637a393136146104cc57806380f20363146104e85780638da5cb5b146105045780638e9e29c0146105225761023d565b80632d70c1ec116101c95780635303f68c1161018d5780635303f68c1461040c578063536610f41461042a57806360cb3bdb146104465780636352211e1461046257806370a08231146104925761023d565b80632d70c1ec1461036c5780633a132482146103885780634120657a146103a457806342842e0e146103d457806342966c68146103f05761023d565b8063095ea7b311610210578063095ea7b3146102ca57806317a195a6146102e657806323b872dd14610302578063276a28a31461031e5780632c5cb14c1461034e5761023d565b806301ffc9a714610242578063049c5c491461027257806306fdde031461027c578063081812fc1461029a575b600080fd5b61025c60048036038101906102579190613c78565b610726565b6040516102699190613cc0565b60405180910390f35b61027a610738565b005b6102846107e0565b6040516102919190613d74565b60405180910390f35b6102b460048036038101906102af9190613dcc565b610872565b6040516102c19190613e3a565b60405180910390f35b6102e460048036038101906102df9190613e81565b6108b8565b005b61030060048036038101906102fb9190613dcc565b6108ed565b005b61031c60048036038101906103179190613ec1565b610973565b005b61033860048036038101906103339190613dcc565b610a98565b6040516103459190613cc0565b60405180910390f35b610356610ac5565b6040516103639190613f23565b60405180910390f35b61038660048036038101906103819190613dcc565b610acb565b005b6103a2600480360381019061039d919061409f565b610c7e565b005b6103be60048036038101906103b991906140fb565b610d2a565b6040516103cb9190613cc0565b60405180910390f35b6103ee60048036038101906103e99190613ec1565b610d4a565b005b61040a60048036038101906104059190613dcc565b610e6f565b005b610414610f2e565b6040516104219190613cc0565b60405180910390f35b610444600480360381019061043f9190614128565b610f41565b005b610460600480360381019061045b9190614128565b611048565b005b61047c60048036038101906104779190613dcc565b611250565b6040516104899190613e3a565b60405180910390f35b6104ac60048036038101906104a791906140fb565b6112d6565b6040516104b99190613f23565b60405180910390f35b6104ca61138d565b005b6104e660048036038101906104e19190613dcc565b611415565b005b61050260048036038101906104fd9190613dcc565b61149b565b005b61050c611610565b6040516105199190613e3a565b60405180910390f35b61053c60048036038101906105379190614168565b61163a565b005b610546611711565b6040516105539190613d74565b60405180910390f35b61057660048036038101906105719190613dcc565b6117a3565b005b610592600480360381019061058d9190614270565b611867565b005b6105ae60048036038101906105a99190614168565b611bfe565b005b6105b8611c33565b6040516105c59190613f23565b60405180910390f35b6105e860048036038101906105e3919061436d565b611c39565b005b61060460048036038101906105ff91906143f0565b611d60565b005b61060e611ebe565b005b61062a60048036038101906106259190613dcc565b61207e565b6040516106379190613d74565b60405180910390f35b61065a60048036038101906106559190613dcc565b612090565b6040516106679190613f23565b60405180910390f35b61068a60048036038101906106859190613dcc565b612133565b005b6106a660048036038101906106a19190613dcc565b61227b565b6040516106b39190613cc0565b60405180910390f35b6106d660048036038101906106d19190614468565b6122a8565b6040516106e39190613cc0565b60405180910390f35b610706600480360381019061070191906140fb565b61233c565b005b610710612433565b60405161071d9190613cc0565b60405180910390f35b600061073182612446565b9050919050565b610740612528565b73ffffffffffffffffffffffffffffffffffffffff1661075e611610565b73ffffffffffffffffffffffffffffffffffffffff16146107b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ab906144f4565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6060600080546107ef90614543565b80601f016020809104026020016040519081016040528092919081815260200182805461081b90614543565b80156108685780601f1061083d57610100808354040283529160200191610868565b820191906000526020600020905b81548152906001019060200180831161084b57829003601f168201915b5050505050905090565b600061087d82612530565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b816108c28161257b565b6108de576108ce6125c7565b156108dd576108dc816125de565b5b5b6108e88383612622565b505050565b6108f5612528565b73ffffffffffffffffffffffffffffffffffffffff16610913611610565b73ffffffffffffffffffffffffffffffffffffffff1614610969576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610960906144f4565b60405180910390fd5b80600c8190555050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109cd576109b03361257b565b6109cc576109bc6125c7565b156109cb576109ca336125de565b5b5b5b3073ffffffffffffffffffffffffffffffffffffffff1663276a28a3836040518263ffffffff1660e01b8152600401610a069190613f23565b602060405180830381865afa158015610a23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a479190614589565b15610a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7e90614602565b60405180910390fd5b610a92848484612739565b50505050565b60006010600083815260200190815260200160002060020160009054906101000a900460ff169050919050565b600c5481565b610ad481611250565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b389061466e565b60405180910390fd5b6010600082815260200190815260200160002060020160009054906101000a900460ff16610ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9b906146da565b60405180910390fd5b6000610baf82612799565b9050600d548111610bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bec90614746565b60405180910390fd5b6000610c0083612090565b9050610c0c3382612804565b80601060008581526020019081526020016000206003016000828254610c329190614795565b9250508190555042601060008581526020019081526020016000206004018190555060006010600085815260200190815260200160002060010181905550610c79836128c2565b505050565b610c86612528565b73ffffffffffffffffffffffffffffffffffffffff16610ca4611610565b73ffffffffffffffffffffffffffffffffffffffff1614610cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf1906144f4565b60405180910390fd5b8015610d155781600b9081610d0f9190614997565b50610d26565b81600a9081610d249190614997565b505b5050565b600f6020528060005260406000206000915054906101000a900460ff1681565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610da457610d873361257b565b610da357610d936125c7565b15610da257610da1336125de565b5b5b5b3073ffffffffffffffffffffffffffffffffffffffff1663276a28a3836040518263ffffffff1660e01b8152600401610ddd9190613f23565b602060405180830381865afa158015610dfa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e1e9190614589565b15610e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5590614602565b60405180910390fd5b610e69848484612906565b50505050565b610e7881611250565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610ee35750610eb4611610565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1990614adb565b60405180910390fd5b610f2b81612926565b50565b600e60009054906101000a900460ff1681565b6000670de0b6b3a764000083610f579190614afb565b9050600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdc90614ba1565b60405180910390fd5b8060106000848152602001908152602001600020600101541061103a57806010600084815260200190815260200160002060010160008282546110289190614bc1565b9250508190555061103882612a7d565b505b611043826128c2565b505050565b6000670de0b6b3a76400008361105e9190614afb565b90503373ffffffffffffffffffffffffffffffffffffffff1661108083611250565b73ffffffffffffffffffffffffffffffffffffffff1614806110eb5750600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61112a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112190614c41565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b815260040161118993929190614c61565b6020604051808303816000875af11580156111a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111cc9190614589565b61120b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120290614ce4565b60405180910390fd5b806010600084815260200190815260200160002060010160008282546112319190614795565b9250508190555061124182612a7d565b5061124b826128c2565b505050565b60008061125c83612ce7565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c490614d50565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133d90614de2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611395612528565b73ffffffffffffffffffffffffffffffffffffffff166113b3611610565b73ffffffffffffffffffffffffffffffffffffffff1614611409576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611400906144f4565b60405180910390fd5b6114136000612d24565b565b61141d612528565b73ffffffffffffffffffffffffffffffffffffffff1661143b611610565b73ffffffffffffffffffffffffffffffffffffffff1614611491576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611488906144f4565b60405180910390fd5b80600d8190555050565b60003390508073ffffffffffffffffffffffffffffffffffffffff166114c083611250565b73ffffffffffffffffffffffffffffffffffffffff1614801561150457506010600083815260200190815260200160002060020160009054906101000a900460ff16155b611543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153a90614e4e565b60405180910390fd5b6000601060008481526020019081526020016000209050600b81600001908161156c9190614e99565b5060018160020160006101000a81548160ff02191690831515021790555042816004018190555061159c83612a7d565b507ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce7836040516115cc9190613f23565b60405180910390a17f032bc66be43dbccb7487781d168eb7bda224628a3b2c3388bdf69b532a3a1611836040516116039190613f23565b60405180910390a1505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611642612528565b73ffffffffffffffffffffffffffffffffffffffff16611660611610565b73ffffffffffffffffffffffffffffffffffffffff16146116b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ad906144f4565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60606001805461172090614543565b80601f016020809104026020016040519081016040528092919081815260200182805461174c90614543565b80156117995780601f1061176e57610100808354040283529160200191611799565b820191906000526020600020905b81548152906001019060200180831161177c57829003601f168201915b5050505050905090565b6117ac81611250565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611819576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118109061466e565b60405180910390fd5b60006010600083815260200190815260200160002060010154905061183e3382612804565b60006010600084815260200190815260200160002060010181905550611863826128c2565b5050565b600e60009054906101000a900460ff166118b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ad90614fcd565b60405180910390fd5b60008251036118fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f190615039565b60405180910390fd5b60005b8251811015611bf957600083828151811061191b5761191a615059565b5b6020026020010151905061192e81612dea565b156119395750611be6565b6010600082815260200190815260200160002060020160019054906101000a900460ff16156119685750611be6565b8215611a7c573373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166394a7eb49836040518263ffffffff1660e01b81526004016119e09190613f23565b602060405180830381865afa1580156119fd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a21919061509d565b73ffffffffffffffffffffffffffffffffffffffff1614611a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6e90615116565b60405180910390fd5b611b86565b3373ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401611aee9190613f23565b602060405180830381865afa158015611b0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b2f919061509d565b73ffffffffffffffffffffffffffffffffffffffff1614611b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7c90615182565b60405180910390fd5b5b611b903382612e2b565b600a601060008381526020019081526020016000206000019081611bb49190614e99565b5060016010600083815260200190815260200160002060020160016101000a81548160ff021916908315150217905550505b8080611bf1906151a2565b9150506118fd565b505050565b81611c088161257b565b611c2457611c146125c7565b15611c2357611c22816125de565b5b5b611c2e8383612e49565b505050565b600d5481565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c9357611c763361257b565b611c9257611c826125c7565b15611c9157611c90336125de565b5b5b5b3073ffffffffffffffffffffffffffffffffffffffff1663276a28a3846040518263ffffffff1660e01b8152600401611ccc9190613f23565b602060405180830381865afa158015611ce9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d0d9190614589565b15611d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4490614602565b60405180910390fd5b611d5985858585612e5f565b5050505050565b611d68612528565b73ffffffffffffffffffffffffffffffffffffffff16611d86611610565b73ffffffffffffffffffffffffffffffffffffffff1614611ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd3906144f4565b60405180910390fd5b8051825114611e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1790615236565b60405180910390fd5b60005b8151811015611eb9576000670de0b6b3a7640000838381518110611e4a57611e49615059565b5b6020026020010151611e5c9190614afb565b90508060106000868581518110611e7657611e75615059565b5b602002602001015181526020019081526020016000206001016000828254611e9e9190614795565b92505081905550508080611eb1906151a2565b915050611e23565b505050565b611ec6612528565b73ffffffffffffffffffffffffffffffffffffffff16611ee4611610565b73ffffffffffffffffffffffffffffffffffffffff1614611f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f31906144f4565b60405180910390fd5b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611f979190613e3a565b602060405180830381865afa158015611fb4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fd8919061526b565b9050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401612037929190615298565b6020604051808303816000875af1158015612056573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061207a9190614589565b5050565b606061208982612a7d565b9050919050565b600080601060008481526020019081526020016000206001015490506010600084815260200190815260200160002060020160009054906101000a900460ff16156121295760006120e084612799565b90506000601e670de0b6b3a7640000600c546120fc9190614afb565b61210691906152f0565b905081816121149190614afb565b8361211f9190614795565b935050505061212e565b809150505b919050565b60003390508073ffffffffffffffffffffffffffffffffffffffff1661215883611250565b73ffffffffffffffffffffffffffffffffffffffff16146121ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a590614e4e565b60405180910390fd5b6000601060008481526020019081526020016000209050600a8160000190816121d79190614e99565b5060008160020160006101000a81548160ff02191690831515021790555042816004018190555061220783612a7d565b507ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce7836040516122379190613f23565b60405180910390a17ff27b6ce5b2f5e68ddb2fd95a8a909d4ecf1daaac270935fff052feacb24f18428360405161226e9190613f23565b60405180910390a1505050565b60006010600083815260200190815260200160002060020160019054906101000a900460ff169050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612344612528565b73ffffffffffffffffffffffffffffffffffffffff16612362611610565b73ffffffffffffffffffffffffffffffffffffffff16146123b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123af906144f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241e90615393565b60405180910390fd5b61243081612d24565b50565b600660149054906101000a900460ff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061251157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612521575061252082612ec1565b5b9050919050565b600033905090565b61253981612dea565b612578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256f90614d50565b60405180910390fd5b50565b6000731e0049783f008a0085193e00003d00cd54003c7173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16149050919050565b6000600660149054906101000a900460ff16905090565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa61261a573d6000803e3d6000fd5b6000603a5250565b600061262d82611250565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361269d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269490615425565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166126bc612528565b73ffffffffffffffffffffffffffffffffffffffff1614806126eb57506126ea816126e5612528565b6122a8565b5b61272a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612721906154b7565b60405180910390fd5b6127348383612f2b565b505050565b61274a612744612528565b82612fe4565b612789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278090615549565b60405180910390fd5b612794838383613079565b505050565b60006010600083815260200190815260200160002060020160009054906101000a900460ff166127cc57600090506127ff565b620151806010600084815260200190815260200160002060040154426127f29190614bc1565b6127fc91906152f0565b90505b919050565b6000670de0b6b3a76400008261281a9190614afb565b9050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b8152600401612879929190615298565b6020604051808303816000875af1158015612898573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128bc9190614589565b50505050565b6128cb81612a7d565b507ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce7816040516128fb9190613f23565b60405180910390a150565b61292183838360405180602001604052806000815250611c39565b505050565b600061293182611250565b905061294181600084600161337b565b61294a82611250565b90506004600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129d29190614bc1565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a79816000846001613381565b5050565b60606000601060008481526020019081526020016000206040518060c0016040529081600082018054612aaf90614543565b80601f0160208091040260200160405190810160405280929190818152602001828054612adb90614543565b8015612b285780601f10612afd57610100808354040283529160200191612b28565b820191906000526020600020905b815481529060010190602001808311612b0b57829003601f168201915b50505050508152602001600182015481526020016002820160009054906101000a900460ff161515151581526020016002820160019054906101000a900460ff161515151581526020016003820154815260200160048201548152505090506000612b9284613387565b8260000151612bbb670de0b6b3a7640000612bac88612090565b612bb691906152f0565b613387565b612bc6600c54613387565b612be6670de0b6b3a76400008760200151612be191906152f0565b613387565b8660400151612c2a576040518060400160405280600881526020017f556e6c6f636b6564000000000000000000000000000000000000000000000000815250612c61565b6040518060400160405280600681526020017f4c6f636b656400000000000000000000000000000000000000000000000000008152505b612c81670de0b6b3a76400008960800151612c7c91906152f0565b613387565b612c8e8960a00151613387565b604051602001612ca59897969594939291906159f3565b6040516020818303038152906040529050612cbf816134e7565b604051602001612ccf9190615b2a565b60405160208183030381529060405292505050919050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff16612e0c83612ce7565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b612e4582826040518060200160405280600081525061364a565b5050565b612e5b612e54612528565b83836136a5565b5050565b612e70612e6a612528565b83612fe4565b612eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea690615549565b60405180910390fd5b612ebb84848484613811565b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612f9e83611250565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080612ff083611250565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480613032575061303181856122a8565b5b8061307057508373ffffffffffffffffffffffffffffffffffffffff1661305884610872565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661309982611250565b73ffffffffffffffffffffffffffffffffffffffff16146130ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130e690615bbe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361315e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161315590615c50565b60405180910390fd5b61316b838383600161337b565b8273ffffffffffffffffffffffffffffffffffffffff1661318b82611250565b73ffffffffffffffffffffffffffffffffffffffff16146131e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131d890615bbe565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132679190614bc1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133768383836001613381565b505050565b50505050565b50505050565b6060600082036133ce576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506134e2565b600082905060005b600082146134005780806133e9906151a2565b915050600a826133f991906152f0565b91506133d6565b60008167ffffffffffffffff81111561341c5761341b613f48565b5b6040519080825280601f01601f19166020018201604052801561344e5781602001600182028036833780820191505090505b5090505b600085146134db576001826134679190614bc1565b9150600a856134769190615c70565b60306134829190614795565b60f81b81838151811061349857613497615059565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134d491906152f0565b9450613452565b8093505050505b919050565b6060600082510361350957604051806020016040528060008152509050613645565b6000604051806060016040528060408152602001615f5b60409139905060006003600285516135389190614795565b61354291906152f0565b600461354e9190614afb565b67ffffffffffffffff81111561356757613566613f48565b5b6040519080825280601f01601f1916602001820160405280156135995781602001600182028036833780820191505090505b509050600182016020820185865187015b80821015613605576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f81168501518453600184019350506135aa565b505060038651066001811461362157600281146136345761363c565b603d6001830353603d600283035361363c565b603d60018303535b50505080925050505b919050565b613654838361386d565b6136616000848484613a8a565b6136a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161369790615d13565b60405180910390fd5b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161370a90615d7f565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516138049190613cc0565b60405180910390a3505050565b61381c848484613079565b61382884848484613a8a565b613867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161385e90615d13565b60405180910390fd5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036138dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138d390615deb565b60405180910390fd5b6138e581612dea565b15613925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161391c90615e57565b60405180910390fd5b61393360008383600161337b565b61393c81612dea565b1561397c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161397390615e57565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613a86600083836001613381565b5050565b6000808473ffffffffffffffffffffffffffffffffffffffff163b1115613bff578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613acf612528565b8786866040518563ffffffff1660e01b8152600401613af19493929190615ecc565b6020604051808303816000875af1925050508015613b2d57506040513d601f19601f82011682018060405250810190613b2a9190615f2d565b60015b613baf573d8060008114613b5d576040519150601f19603f3d011682016040523d82523d6000602084013e613b62565b606091505b506000815103613ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b9e90615d13565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613c04565b600190505b949350505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613c5581613c20565b8114613c6057600080fd5b50565b600081359050613c7281613c4c565b92915050565b600060208284031215613c8e57613c8d613c16565b5b6000613c9c84828501613c63565b91505092915050565b60008115159050919050565b613cba81613ca5565b82525050565b6000602082019050613cd56000830184613cb1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613d15578082015181840152602081019050613cfa565b83811115613d24576000848401525b50505050565b6000601f19601f8301169050919050565b6000613d4682613cdb565b613d508185613ce6565b9350613d60818560208601613cf7565b613d6981613d2a565b840191505092915050565b60006020820190508181036000830152613d8e8184613d3b565b905092915050565b6000819050919050565b613da981613d96565b8114613db457600080fd5b50565b600081359050613dc681613da0565b92915050565b600060208284031215613de257613de1613c16565b5b6000613df084828501613db7565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613e2482613df9565b9050919050565b613e3481613e19565b82525050565b6000602082019050613e4f6000830184613e2b565b92915050565b613e5e81613e19565b8114613e6957600080fd5b50565b600081359050613e7b81613e55565b92915050565b60008060408385031215613e9857613e97613c16565b5b6000613ea685828601613e6c565b9250506020613eb785828601613db7565b9150509250929050565b600080600060608486031215613eda57613ed9613c16565b5b6000613ee886828701613e6c565b9350506020613ef986828701613e6c565b9250506040613f0a86828701613db7565b9150509250925092565b613f1d81613d96565b82525050565b6000602082019050613f386000830184613f14565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613f8082613d2a565b810181811067ffffffffffffffff82111715613f9f57613f9e613f48565b5b80604052505050565b6000613fb2613c0c565b9050613fbe8282613f77565b919050565b600067ffffffffffffffff821115613fde57613fdd613f48565b5b613fe782613d2a565b9050602081019050919050565b82818337600083830152505050565b600061401661401184613fc3565b613fa8565b90508281526020810184848401111561403257614031613f43565b5b61403d848285613ff4565b509392505050565b600082601f83011261405a57614059613f3e565b5b813561406a848260208601614003565b91505092915050565b61407c81613ca5565b811461408757600080fd5b50565b60008135905061409981614073565b92915050565b600080604083850312156140b6576140b5613c16565b5b600083013567ffffffffffffffff8111156140d4576140d3613c1b565b5b6140e085828601614045565b92505060206140f18582860161408a565b9150509250929050565b60006020828403121561411157614110613c16565b5b600061411f84828501613e6c565b91505092915050565b6000806040838503121561413f5761413e613c16565b5b600061414d85828601613db7565b925050602061415e85828601613db7565b9150509250929050565b6000806040838503121561417f5761417e613c16565b5b600061418d85828601613e6c565b925050602061419e8582860161408a565b9150509250929050565b600067ffffffffffffffff8211156141c3576141c2613f48565b5b602082029050602081019050919050565b600080fd5b60006141ec6141e7846141a8565b613fa8565b9050808382526020820190506020840283018581111561420f5761420e6141d4565b5b835b8181101561423857806142248882613db7565b845260208401935050602081019050614211565b5050509392505050565b600082601f83011261425757614256613f3e565b5b81356142678482602086016141d9565b91505092915050565b6000806040838503121561428757614286613c16565b5b600083013567ffffffffffffffff8111156142a5576142a4613c1b565b5b6142b185828601614242565b92505060206142c28582860161408a565b9150509250929050565b600067ffffffffffffffff8211156142e7576142e6613f48565b5b6142f082613d2a565b9050602081019050919050565b600061431061430b846142cc565b613fa8565b90508281526020810184848401111561432c5761432b613f43565b5b614337848285613ff4565b509392505050565b600082601f83011261435457614353613f3e565b5b81356143648482602086016142fd565b91505092915050565b6000806000806080858703121561438757614386613c16565b5b600061439587828801613e6c565b94505060206143a687828801613e6c565b93505060406143b787828801613db7565b925050606085013567ffffffffffffffff8111156143d8576143d7613c1b565b5b6143e48782880161433f565b91505092959194509250565b6000806040838503121561440757614406613c16565b5b600083013567ffffffffffffffff81111561442557614424613c1b565b5b61443185828601614242565b925050602083013567ffffffffffffffff81111561445257614451613c1b565b5b61445e85828601614242565b9150509250929050565b6000806040838503121561447f5761447e613c16565b5b600061448d85828601613e6c565b925050602061449e85828601613e6c565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006144de602083613ce6565b91506144e9826144a8565b602082019050919050565b6000602082019050818103600083015261450d816144d1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061455b57607f821691505b60208210810361456e5761456d614514565b5b50919050565b60008151905061458381614073565b92915050565b60006020828403121561459f5761459e613c16565b5b60006145ad84828501614574565b91505092915050565b7f43616e6e6f74206d6f7665206c6f636b656420746f6b656e0000000000000000600082015250565b60006145ec601883613ce6565b91506145f7826145b6565b602082019050919050565b6000602082019050818103600083015261461b816145df565b9050919050565b7f4d757374206f776e20746865204e465420746f20636c61696d00000000000000600082015250565b6000614658601983613ce6565b915061466382614622565b602082019050919050565b600060208201905081810360008301526146878161464b565b9050919050565b7f546f6b656e206d757374206265206c6f636b6564000000000000000000000000600082015250565b60006146c4601483613ce6565b91506146cf8261468e565b602082019050919050565b600060208201905081810360008301526146f3816146b7565b9050919050565b7f4e6f7420656e6f756768206461797320746f20636c61696d0000000000000000600082015250565b6000614730601883613ce6565b915061473b826146fa565b602082019050919050565b6000602082019050818103600083015261475f81614723565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006147a082613d96565b91506147ab83613d96565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147e0576147df614766565b5b828201905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261484d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614810565b6148578683614810565b95508019841693508086168417925050509392505050565b6000819050919050565b600061489461488f61488a84613d96565b61486f565b613d96565b9050919050565b6000819050919050565b6148ae83614879565b6148c26148ba8261489b565b84845461481d565b825550505050565b600090565b6148d76148ca565b6148e28184846148a5565b505050565b5b81811015614906576148fb6000826148cf565b6001810190506148e8565b5050565b601f82111561494b5761491c816147eb565b61492584614800565b81016020851015614934578190505b61494861494085614800565b8301826148e7565b50505b505050565b600082821c905092915050565b600061496e60001984600802614950565b1980831691505092915050565b6000614987838361495d565b9150826002028217905092915050565b6149a082613cdb565b67ffffffffffffffff8111156149b9576149b8613f48565b5b6149c38254614543565b6149ce82828561490a565b600060209050601f831160018114614a0157600084156149ef578287015190505b6149f9858261497b565b865550614a61565b601f198416614a0f866147eb565b60005b82811015614a3757848901518255600182019150602085019450602081019050614a12565b86831015614a545784890151614a50601f89168261495d565b8355505b6001600288020188555050505b505050505050565b7f4d757374206f776e206f7220626520636f6e7472616374206f776e657220746f60008201527f206275726e000000000000000000000000000000000000000000000000000000602082015250565b6000614ac5602583613ce6565b9150614ad082614a69565b604082019050919050565b60006020820190508181036000830152614af481614ab8565b9050919050565b6000614b0682613d96565b9150614b1183613d96565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b4a57614b49614766565b5b828202905092915050565b7f4e6f7420696e20616c6c6f776564204164647265737365730000000000000000600082015250565b6000614b8b601883613ce6565b9150614b9682614b55565b602082019050919050565b60006020820190508181036000830152614bba81614b7e565b9050919050565b6000614bcc82613d96565b9150614bd783613d96565b925082821015614bea57614be9614766565b5b828203905092915050565b7f4e6f7420616c6c6f776564210000000000000000000000000000000000000000600082015250565b6000614c2b600c83613ce6565b9150614c3682614bf5565b602082019050919050565b60006020820190508181036000830152614c5a81614c1e565b9050919050565b6000606082019050614c766000830186613e2b565b614c836020830185613e2b565b614c906040830184613f14565b949350505050565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b6000614cce600f83613ce6565b9150614cd982614c98565b602082019050919050565b60006020820190508181036000830152614cfd81614cc1565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000614d3a601883613ce6565b9150614d4582614d04565b602082019050919050565b60006020820190508181036000830152614d6981614d2d565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000614dcc602983613ce6565b9150614dd782614d70565b604082019050919050565b60006020820190508181036000830152614dfb81614dbf565b9050919050565b7f496e76616c6964206f7065726174696f6e000000000000000000000000000000600082015250565b6000614e38601183613ce6565b9150614e4382614e02565b602082019050919050565b60006020820190508181036000830152614e6781614e2b565b9050919050565b600081549050614e7d81614543565b9050919050565b60008190508160005260206000209050919050565b818103614ea7575050614f7f565b614eb082614e6e565b67ffffffffffffffff811115614ec957614ec8613f48565b5b614ed38254614543565b614ede82828561490a565b6000601f831160018114614f0d5760008415614efb578287015490505b614f05858261497b565b865550614f78565b601f198416614f1b87614e84565b9650614f26866147eb565b60005b82811015614f4e57848901548255600182019150600185019450602081019050614f29565b86831015614f6b5784890154614f67601f89168261495d565b8355505b6001600288020188555050505b5050505050505b565b7f436c61696d206e6f742061637469766500000000000000000000000000000000600082015250565b6000614fb7601083613ce6565b9150614fc282614f81565b602082019050919050565b60006020820190508181036000830152614fe681614faa565b9050919050565b7f456d70747920746f6b656e206964730000000000000000000000000000000000600082015250565b6000615023600f83613ce6565b915061502e82614fed565b602082019050919050565b6000602082019050818103600083015261505281615016565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061509781613e55565b92915050565b6000602082840312156150b3576150b2613c16565b5b60006150c184828501615088565b91505092915050565b7f466f726765206d69736d61746368000000000000000000000000000000000000600082015250565b6000615100600e83613ce6565b915061510b826150ca565b602082019050919050565b6000602082019050818103600083015261512f816150f3565b9050919050565b7f4e6f7420746865206f776e657200000000000000000000000000000000000000600082015250565b600061516c600d83613ce6565b915061517782615136565b602082019050919050565b6000602082019050818103600083015261519b8161515f565b9050919050565b60006151ad82613d96565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036151df576151de614766565b5b600182019050919050565b7f417272617973206c656e677468206d69736d6174636800000000000000000000600082015250565b6000615220601683613ce6565b915061522b826151ea565b602082019050919050565b6000602082019050818103600083015261524f81615213565b9050919050565b60008151905061526581613da0565b92915050565b60006020828403121561528157615280613c16565b5b600061528f84828501615256565b91505092915050565b60006040820190506152ad6000830185613e2b565b6152ba6020830184613f14565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006152fb82613d96565b915061530683613d96565b925082615316576153156152c1565b5b828204905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061537d602683613ce6565b915061538882615321565b604082019050919050565b600060208201905081810360008301526153ac81615370565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061540f602183613ce6565b915061541a826153b3565b604082019050919050565b6000602082019050818103600083015261543e81615402565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b60006154a1603d83613ce6565b91506154ac82615445565b604082019050919050565b600060208201905081810360008301526154d081615494565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000615533602d83613ce6565b915061553e826154d7565b604082019050919050565b6000602082019050818103600083015261556281615526565b9050919050565b600081905092915050565b7f7b226e616d65223a202256656e74757265205061737320230000000000000000600082015250565b60006155aa601883615569565b91506155b582615574565b601882019050919050565b60006155cb82613cdb565b6155d58185615569565b93506155e5818560208601613cf7565b80840191505092915050565b7f222c22696d616765223a22000000000000000000000000000000000000000000600082015250565b6000615627600b83615569565b9150615632826155f1565b600b82019050919050565b7f222c226465736372697074696f6e223a202256656e7475726520506173732e2060008201527f596f7572205061737320746f20416476656e7475726521222c00000000000000602082015250565b6000615699603983615569565b91506156a48261563d565b603982019050919050565b7f2261747472696275746573223a5b7b2274726169745f74797065223a2022546f60008201527f74616c204d45544c222c202276616c7565223a20220000000000000000000000602082015250565b600061570b603583615569565b9150615716826156af565b603582019050919050565b7f227d2c7b2274726169745f74797065223a20224d45544c2052617465222c202260008201527f76616c7565223a20220000000000000000000000000000000000000000000000602082015250565b600061577d602983615569565b915061578882615721565b602982019050919050565b7f204d6f6e74680000000000000000000000000000000000000000000000000000600082015250565b60006157c9600683615569565b91506157d482615793565b600682019050919050565b7f227d2c7b2274726169745f74797065223a202248656c64204d45544c222c202260008201527f76616c7565223a20220000000000000000000000000000000000000000000000602082015250565b600061583b602983615569565b9150615846826157df565b602982019050919050565b7f227d2c7b2274726169745f74797065223a20224c6f636b6564222c202276616c60008201527f7565223a20220000000000000000000000000000000000000000000000000000602082015250565b60006158ad602683615569565b91506158b882615851565b602682019050919050565b7f227d2c7b2274726169745f74797065223a2022436c61696d6564222c2022766160008201527f6c7565223a202200000000000000000000000000000000000000000000000000602082015250565b600061591f602783615569565b915061592a826158c3565b602782019050919050565b7f227d2c7b2274726169745f74797065223a202254696d657374616d70222c202260008201527f76616c7565223a20220000000000000000000000000000000000000000000000602082015250565b6000615991602983615569565b915061599c82615935565b602982019050919050565b7f227d5d7d00000000000000000000000000000000000000000000000000000000600082015250565b60006159dd600483615569565b91506159e8826159a7565b600482019050919050565b60006159fe8261559d565b9150615a0a828b6155c0565b9150615a158261561a565b9150615a21828a6155c0565b9150615a2c8261568c565b9150615a37826156fe565b9150615a4382896155c0565b9150615a4e82615770565b9150615a5a82886155c0565b9150615a65826157bc565b9150615a708261582e565b9150615a7c82876155c0565b9150615a87826158a0565b9150615a9382866155c0565b9150615a9e82615912565b9150615aaa82856155c0565b9150615ab582615984565b9150615ac182846155c0565b9150615acc826159d0565b91508190509998505050505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b6000615b14601d83615569565b9150615b1f82615ade565b601d82019050919050565b6000615b3582615b07565b9150615b4182846155c0565b915081905092915050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000615ba8602583613ce6565b9150615bb382615b4c565b604082019050919050565b60006020820190508181036000830152615bd781615b9b565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615c3a602483613ce6565b9150615c4582615bde565b604082019050919050565b60006020820190508181036000830152615c6981615c2d565b9050919050565b6000615c7b82613d96565b9150615c8683613d96565b925082615c9657615c956152c1565b5b828206905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615cfd603283613ce6565b9150615d0882615ca1565b604082019050919050565b60006020820190508181036000830152615d2c81615cf0565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000615d69601983613ce6565b9150615d7482615d33565b602082019050919050565b60006020820190508181036000830152615d9881615d5c565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615dd5602083613ce6565b9150615de082615d9f565b602082019050919050565b60006020820190508181036000830152615e0481615dc8565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615e41601c83613ce6565b9150615e4c82615e0b565b602082019050919050565b60006020820190508181036000830152615e7081615e34565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000615e9e82615e77565b615ea88185615e82565b9350615eb8818560208601613cf7565b615ec181613d2a565b840191505092915050565b6000608082019050615ee16000830187613e2b565b615eee6020830186613e2b565b615efb6040830185613f14565b8181036060830152615f0d8184615e93565b905095945050505050565b600081519050615f2781613c4c565b92915050565b600060208284031215615f4357615f42613c16565b5b6000615f5184828501615f18565b9150509291505056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220d07ba0ce48e4e89ee1628a63d989f5ba0e531277b1299e733d89d6a20277f6b064736f6c634300080f0033

Deployed Bytecode Sourcemap

103191:14860:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116919:373;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;114347:144;;;:::i;:::-;;54387:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55955:187;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;115836:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;114555:97;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;116026:273;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;108879:128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;103596:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;110866:649;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;107855:199;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;103780:48;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;116307:281;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;113897:226;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;103696:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;107170:410;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;106638:524;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54081:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53759:260;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46379:103;;;:::i;:::-;;114660:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;108062:538;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45728:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;106511:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54556:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;110535:323;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;105160:1102;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;115627:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;103657:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;116596:315;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;114763:469;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;117870:178;;;:::i;:::-;;112317:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;109695:526;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;109015:470;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;105026:126;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56465:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46637:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;103258:36;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;116919:373;117028:4;117248:36;117272:11;117248:23;:36::i;:::-;117241:43;;116919:373;;;:::o;114347:144::-;45959:12;:10;:12::i;:::-;45948:23;;:7;:5;:7::i;:::-;:23;;;45940:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;114422:13:::1;;;;;;;;;;;114421:14;114405:13;;:30;;;;;;;;;;;;;;;;;;114347:144::o:0;54387:100::-;54441:13;54474:5;54467:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54387:100;:::o;55955:187::-;56047:7;56067:23;56082:7;56067:14;:23::i;:::-;56110:15;:24;56126:7;56110:24;;;;;;;;;;;;;;;;;;;;;56103:31;;55955:187;;;:::o;115836:182::-;115957:8;91262:29;91282:8;91262:19;:29::i;:::-;91257:122;;91312:27;:25;:27::i;:::-;91308:59;;;91341:26;91358:8;91341:16;:26::i;:::-;91308:59;91257:122;115978:32:::1;115992:8;116002:7;115978:13;:32::i;:::-;115836:182:::0;;;:::o;114555:97::-;45959:12;:10;:12::i;:::-;45948:23;;:7;:5;:7::i;:::-;:23;;;45940:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;114637:7:::1;114626:8;:18;;;;114555:97:::0;:::o;116026:273::-;116161:4;90905:10;90897:18;;:4;:18;;;90893:184;;90937:31;90957:10;90937:19;:31::i;:::-;90932:134;;90993:27;:25;:27::i;:::-;90989:61;;;91022:28;91039:10;91022:16;:28::i;:::-;90989:61;90932:134;90893:184;116187:4:::1;:18;;;116206:7;116187:27;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;116186:28;116178:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;116254:37;116273:4;116279:2;116283:7;116254:18;:37::i;:::-;116026:273:::0;;;;:::o;108879:128::-;108942:4;108966:15;:24;108982:7;108966:24;;;;;;;;;;;:33;;;;;;;;;;;;108959:40;;108879:128;;;:::o;103596:28::-;;;;:::o;110866:649::-;110947:16;110955:7;110947;:16::i;:::-;110933:30;;:10;:30;;;110925:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;111012:15;:24;111028:7;111012:24;;;;;;;;;;;:33;;;;;;;;;;;;111004:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;111083:18;111104:22;111118:7;111104:13;:22::i;:::-;111083:43;;111158:12;;111145:10;:25;111137:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;111212:15;111230:25;111247:7;111230:16;:25::i;:::-;111212:43;;111268:31;111279:10;111291:7;111268:10;:31::i;:::-;111350:7;111310:15;:24;111326:7;111310:24;;;;;;;;;;;:36;;;:47;;;;;;;:::i;:::-;;;;;;;;111409:15;111368;:24;111384:7;111368:24;;;;;;;;;;;:38;;:56;;;;111472:1;111435:15;:24;111451:7;111435:24;;;;;;;;;;;:34;;:38;;;;111484:23;111499:7;111484:14;:23::i;:::-;110914:601;;110866:649;:::o;107855:199::-;45959:12;:10;:12::i;:::-;45948:23;;:7;:5;:7::i;:::-;:23;;;45940:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;107941:8:::1;107937:110;;;107980:3;107966:11;:17;;;;;;:::i;:::-;;107937:110;;;108032:3;108016:13;:19;;;;;;:::i;:::-;;107937:110;107855:199:::0;;:::o;103780:48::-;;;;;;;;;;;;;;;;;;;;;;:::o;116307:281::-;116446:4;90905:10;90897:18;;:4;:18;;;90893:184;;90937:31;90957:10;90937:19;:31::i;:::-;90932:134;;90993:27;:25;:27::i;:::-;90989:61;;;91022:28;91039:10;91022:16;:28::i;:::-;90989:61;90932:134;90893:184;116472:4:::1;:18;;;116491:7;116472:27;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;116471:28;116463:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;116539:41;116562:4;116568:2;116572:7;116539:22;:41::i;:::-;116307:281:::0;;;;:::o;113897:226::-;113984:16;113992:7;113984;:16::i;:::-;113970:30;;:10;:30;;;:55;;;;114018:7;:5;:7::i;:::-;114004:21;;:10;:21;;;113970:55;113948:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;114101:14;114107:7;114101:5;:14::i;:::-;113897:226;:::o;103696:32::-;;;;;;;;;;;;;:::o;107170:410::-;107249:15;107282:7;107267:12;:22;;;;:::i;:::-;107249:40;;107308:16;:28;107325:10;107308:28;;;;;;;;;;;;;;;;;;;;;;;;;107300:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;107420:7;107382:15;:24;107398:7;107382:24;;;;;;;;;;;:34;;;:45;107378:161;;107482:7;107444:15;:24;107460:7;107444:24;;;;;;;;;;;:34;;;:45;;;;;;;:::i;:::-;;;;;;;;107504:23;107519:7;107504:14;:23::i;:::-;;107378:161;107549:23;107564:7;107549:14;:23::i;:::-;107238:342;107170:410;;:::o;106638:524::-;106714:15;106747:7;106732:12;:22;;;;:::i;:::-;106714:40;;106807:10;106787:30;;:16;106795:7;106787;:16::i;:::-;:30;;;:62;;;;106821:16;:28;106838:10;106821:28;;;;;;;;;;;;;;;;;;;;;;;;;106787:62;106765:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;106931:4;;;;;;;;;;;106924:25;;;106950:10;106970:4;106977:7;106924:61;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;106902:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;107079:7;107041:15;:24;107057:7;107041:24;;;;;;;;;;;:34;;;:45;;;;;;;:::i;:::-;;;;;;;;107097:23;107112:7;107097:14;:23::i;:::-;;107131;107146:7;107131:14;:23::i;:::-;106703:459;106638:524;;:::o;54081:239::-;54169:7;54189:13;54205:17;54214:7;54205:8;:17::i;:::-;54189:33;;54258:1;54241:19;;:5;:19;;;54233:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;54307:5;54300:12;;;54081:239;;;:::o;53759:260::-;53847:7;53906:1;53889:19;;:5;:19;;;53867:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;53995:9;:16;54005:5;53995:16;;;;;;;;;;;;;;;;53988:23;;53759:260;;;:::o;46379:103::-;45959:12;:10;:12::i;:::-;45948:23;;:7;:5;:7::i;:::-;:23;;;45940:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46444:30:::1;46471:1;46444:18;:30::i;:::-;46379:103::o:0;114660:95::-;45959:12;:10;:12::i;:::-;45948:23;;:7;:5;:7::i;:::-;:23;;;45940:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;114745:2:::1;114730:12;:17;;;;114660:95:::0;:::o;108062:538::-;108118:14;108135:10;108118:27;;108198:6;108178:26;;:16;108186:7;108178;:16::i;:::-;:26;;;:64;;;;;108209:15;:24;108225:7;108209:24;;;;;;;;;;;:33;;;;;;;;;;;;108208:34;108178:64;108156:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;108300:33;108336:15;:24;108352:7;108336:24;;;;;;;;;;;108300:60;;108389:11;108371:9;:15;;:29;;;;;;:::i;:::-;;108432:4;108411:9;:18;;;:25;;;;;;;;;;;;;;;;;;108473:15;108447:9;:23;;:41;;;;108499:23;108514:7;108499:14;:23::i;:::-;;108538;108553:7;108538:23;;;;;;:::i;:::-;;;;;;;;108577:15;108584:7;108577:15;;;;;;:::i;:::-;;;;;;;;108107:493;;108062:538;:::o;45728:87::-;45774:7;45801:6;;;;;;;;;;;45794:13;;45728:87;:::o;106511:119::-;45959:12;:10;:12::i;:::-;45948:23;;:7;:5;:7::i;:::-;:23;;;45940:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;106620:2:::1;106591:16;:26;106608:8;106591:26;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;106511:119:::0;;:::o;54556:104::-;54612:13;54645:7;54638:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54556:104;:::o;110535:323::-;110618:16;110626:7;110618;:16::i;:::-;110604:30;;:10;:30;;;110596:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;110677:13;110693:15;:24;110709:7;110693:24;;;;;;;;;;;:34;;;110677:50;;110738:29;110749:10;110761:5;110738:10;:29::i;:::-;110815:1;110778:15;:24;110794:7;110778:24;;;;;;;;;;;:34;;:38;;;;110827:23;110842:7;110827:14;:23::i;:::-;110585:273;110535:323;:::o;105160:1102::-;105250:13;;;;;;;;;;;105242:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;105325:1;105303:11;:18;:23;105295:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;105399:9;105394:861;105418:11;:18;105414:1;:22;105394:861;;;105458:15;105476:11;105488:1;105476:14;;;;;;;;:::i;:::-;;;;;;;;105458:32;;105509:16;105517:7;105509;:16::i;:::-;105505:65;;;105546:8;;;105505:65;105588:15;:24;105604:7;105588:24;;;;;;;;;;;:34;;;;;;;;;;;;105584:83;;;105643:8;;;105584:83;105685:6;105681:401;;;105821:10;105742:89;;105758:8;;;;;;;;;;;105742:41;;;105784:7;105742:50;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:89;;;105712:177;;;;;;;;;;;;:::i;:::-;;;;;;;;;105681:401;;;105999:10;105960:49;;105968:9;;;;;;;;;;;105960:26;;;105987:7;105960:35;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:49;;;105930:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;105681:401;106096:30;106106:10;106118:7;106096:9;:30::i;:::-;106174:13;106141:15;:24;106157:7;106141:24;;;;;;;;;;;:30;;:46;;;;;;:::i;:::-;;106239:4;106202:15;:24;106218:7;106202:24;;;;;;;;;;;:34;;;:41;;;;;;;;;;;;;;;;;;105443:812;105394:861;105438:3;;;;;:::i;:::-;;;;105394:861;;;;105160:1102;;:::o;115627:201::-;115756:8;91262:29;91282:8;91262:19;:29::i;:::-;91257:122;;91312:27;:25;:27::i;:::-;91308:59;;;91341:26;91358:8;91341:16;:26::i;:::-;91308:59;91257:122;115777:43:::1;115801:8;115811;115777:23;:43::i;:::-;115627:201:::0;;;:::o;103657:32::-;;;;:::o;116596:315::-;116763:4;90905:10;90897:18;;:4;:18;;;90893:184;;90937:31;90957:10;90937:19;:31::i;:::-;90932:134;;90993:27;:25;:27::i;:::-;90989:61;;;91022:28;91039:10;91022:16;:28::i;:::-;90989:61;90932:134;90893:184;116789:4:::1;:18;;;116808:7;116789:27;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;116788:28;116780:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;116856:47;116879:4;116885:2;116889:7;116898:4;116856:22;:47::i;:::-;116596:315:::0;;;;;:::o;114763:469::-;45959:12;:10;:12::i;:::-;45948:23;;:7;:5;:7::i;:::-;:23;;;45940:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;114944:17:::1;:24;114925:8;:15;:43;114903:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;115036:9;115031:194;115055:17;:24;115051:1;:28;115031:194;;;115101:15;115142:7;115119:17;115137:1;115119:20;;;;;;;;:::i;:::-;;;;;;;;:30;;;;:::i;:::-;115101:48;;115206:7;115164:15;:28;115180:8;115189:1;115180:11;;;;;;;;:::i;:::-;;;;;;;;115164:28;;;;;;;;;;;:38;;;:49;;;;;;;:::i;:::-;;;;;;;;115086:139;115081:3;;;;;:::i;:::-;;;;115031:194;;;;114763:469:::0;;:::o;117870:178::-;45959:12;:10;:12::i;:::-;45948:23;;:7;:5;:7::i;:::-;:23;;;45940:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;117924:19:::1;117953:4;;;;;;;;;;;117946:22;;;117977:4;117946:37;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;117924:59;;118001:4;;;;;;;;;;;117994:21;;;118016:10;118028:11;117994:46;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;117913:135;117870:178::o:0;112317:119::-;112377:13;112410:18;112425:2;112410:14;:18::i;:::-;112403:25;;112317:119;;;:::o;109695:526::-;109759:7;109860:24;109887:15;:24;109903:7;109887:24;;;;;;;;;;;:34;;;109860:61;;109936:15;:24;109952:7;109936:24;;;;;;;;;;;:33;;;;;;;;;;;;109932:246;;;109986:18;110007:22;110021:7;110007:13;:22::i;:::-;109986:43;;110046:22;110094:2;110083:7;110072:8;;:18;;;;:::i;:::-;110071:25;;;;:::i;:::-;110046:50;;110155:10;110138:14;:27;;;;:::i;:::-;110118:16;:48;;;;:::i;:::-;110111:55;;;;;;;109932:246;110197:16;110190:23;;;109695:526;;;;:::o;109015:470::-;109073:14;109090:10;109073:27;;109139:6;109119:26;;:16;109127:7;109119;:16::i;:::-;:26;;;109111:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;109180:33;109216:15;:24;109232:7;109216:24;;;;;;;;;;;109180:60;;109269:13;109251:9;:15;;:31;;;;;;:::i;:::-;;109314:5;109293:9;:18;;;:26;;;;;;;;;;;;;;;;;;109356:15;109330:9;:23;;:41;;;;109382:23;109397:7;109382:14;:23::i;:::-;;109421;109436:7;109421:23;;;;;;:::i;:::-;;;;;;;;109460:17;109469:7;109460:17;;;;;;:::i;:::-;;;;;;;;109062:423;;109015:470;:::o;105026:126::-;105086:4;105110:15;:24;105126:7;105110:24;;;;;;;;;;;:34;;;;;;;;;;;;105103:41;;105026:126;;;:::o;56465:189::-;56587:4;56611:18;:25;56630:5;56611:25;;;;;;;;;;;;;;;:35;56637:8;56611:35;;;;;;;;;;;;;;;;;;;;;;;;;56604:42;;56465:189;;;;:::o;46637:238::-;45959:12;:10;:12::i;:::-;45948:23;;:7;:5;:7::i;:::-;:23;;;45940:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46760:1:::1;46740:22;;:8;:22;;::::0;46718:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;46839:28;46858:8;46839:18;:28::i;:::-;46637:238:::0;:::o;103258:36::-;;;;;;;;;;;;;:::o;53374:321::-;53492:4;53544:25;53529:40;;;:11;:40;;;;:105;;;;53601:33;53586:48;;;:11;:48;;;;53529:105;:158;;;;53651:36;53675:11;53651:23;:36::i;:::-;53529:158;53509:178;;53374:321;;;:::o;34087:98::-;34140:7;34167:10;34160:17;;34087:98;:::o;65903:135::-;65985:16;65993:7;65985;:16::i;:::-;65977:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;65903:135;:::o;117433:402::-;117528:4;117784:42;117764:63;;:8;:63;;;117757:70;;117433:402;;;:::o;117300:125::-;117369:4;117393:24;;;;;;;;;;;117386:31;;117300:125;:::o;91495:1536::-;91888:22;91882:4;91875:36;91981:9;91975:4;91968:23;92056:8;92050:4;92043:22;92378:4;92351;92324;92297;92249:25;92221:5;92188:213;92160:451;;92531:16;92525:4;92519;92504:44;92579:16;92573:4;92566:30;92160:451;93011:1;93005:4;92998:15;91495:1536;:::o;55480:409::-;55561:13;55577:16;55585:7;55577;:16::i;:::-;55561:32;;55618:5;55612:11;;:2;:11;;;55604:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;55712:5;55696:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;55721:37;55738:5;55745:12;:10;:12::i;:::-;55721:16;:37::i;:::-;55696:62;55674:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;55860:21;55869:2;55873:7;55860:8;:21::i;:::-;55550:339;55480:409;;:::o;56721:372::-;56930:41;56949:12;:10;:12::i;:::-;56963:7;56930:18;:41::i;:::-;56908:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;57057:28;57067:4;57073:2;57077:7;57057:9;:28::i;:::-;56721:372;;;:::o;108608:263::-;108671:7;108696:15;:24;108712:7;108696:24;;;;;;;;;;;:33;;;;;;;;;;;;108691:75;;108753:1;108746:8;;;;108691:75;108857:6;108815:15;:24;108831:7;108815:24;;;;;;;;;;;:38;;;108797:15;:56;;;;:::i;:::-;108796:67;;;;:::i;:::-;108776:87;;108608:263;;;;:::o;110229:159::-;110303:11;110332:7;110317:12;:22;;;;:::i;:::-;110303:36;;110357:4;;;;;;;;;;;110350:21;;;110372:2;110376:3;110350:30;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;110292:96;110229:159;;:::o;110396:131::-;110457:23;110472:7;110457:14;:23::i;:::-;;110496;110511:7;110496:23;;;;;;:::i;:::-;;;;;;;;110396:131;:::o;57164:185::-;57302:39;57319:4;57325:2;57329:7;57302:39;;;;;;;;;;;;:16;:39::i;:::-;57164:185;;;:::o;62772:707::-;62832:13;62848:16;62856:7;62848;:16::i;:::-;62832:32;;62877:51;62898:5;62913:1;62917:7;62926:1;62877:20;:51::i;:::-;63041:16;63049:7;63041;:16::i;:::-;63033:24;;63105:15;:24;63121:7;63105:24;;;;;;;;;;;;63098:31;;;;;;;;;;;63317:1;63297:9;:16;63307:5;63297:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;63338:7;:16;63346:7;63338:16;;;;;;;;;;;;63331:23;;;;;;;;;;;63400:7;63396:1;63372:36;;63381:5;63372:36;;;;;;;;;;;;63421:50;63441:5;63456:1;63460:7;63469:1;63421:19;:50::i;:::-;62821:658;62772:707;:::o;112444:1445::-;112524:13;112550:28;112581:15;:24;112597:7;112581:24;;;;;;;;;;;112550:55;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112618:18;112740:17;112749:7;112740:8;:17::i;:::-;112808:5;:11;;;112990:45;113027:7;112999:25;113016:7;112999:16;:25::i;:::-;:35;;;;:::i;:::-;112990:8;:45::i;:::-;113116:18;113125:8;;113116;:18::i;:::-;113242:35;113269:7;113251:5;:15;;;:25;;;;:::i;:::-;113242:8;:35::i;:::-;113355:5;:14;;;:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113472:37;113501:7;113481:5;:17;;;:27;;;;:::i;:::-;113472:8;:37::i;:::-;113590:29;113599:5;:19;;;113590:8;:29::i;:::-;112660:999;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;112618:1052;;113821:26;113841:4;113821:13;:26::i;:::-;113728:138;;;;;;;;:::i;:::-;;;;;;;;;;;;;113683:198;;;;112444:1445;;;:::o;59124:117::-;59190:7;59217;:16;59225:7;59217:16;;;;;;;;;;;;;;;;;;;;;59210:23;;59124:117;;;:::o;47035:191::-;47109:16;47128:6;;;;;;;;;;;47109:25;;47154:8;47145:6;;:17;;;;;;;;;;;;;;;;;;47209:8;47178:40;;47199:8;47178:40;;;;;;;;;;;;47098:128;47035:191;:::o;59554:128::-;59619:4;59672:1;59643:31;;:17;59652:7;59643:8;:17::i;:::-;:31;;;;59636:38;;59554:128;;;:::o;60499:110::-;60575:26;60585:2;60589:7;60575:26;;;;;;;;;;;;:9;:26::i;:::-;60499:110;;:::o;56214:180::-;56334:52;56353:12;:10;:12::i;:::-;56367:8;56377;56334:18;:52::i;:::-;56214:180;;:::o;57420:359::-;57608:41;57627:12;:10;:12::i;:::-;57641:7;57608:18;:41::i;:::-;57586:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;57733:38;57747:4;57753:2;57757:7;57766:4;57733:13;:38::i;:::-;57420:359;;;;:::o;37009:173::-;37110:4;37149:25;37134:40;;;:11;:40;;;;37127:47;;37009:173;;;:::o;65189:167::-;65291:2;65264:15;:24;65280:7;65264:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;65340:7;65336:2;65309:39;;65318:16;65326:7;65318;:16::i;:::-;65309:39;;;;;;;;;;;;65189:167;;:::o;59849:308::-;59967:4;59984:13;60000:16;60008:7;60000;:16::i;:::-;59984:32;;60046:5;60035:16;;:7;:16;;;:65;;;;60068:32;60085:5;60092:7;60068:16;:32::i;:::-;60035:65;:113;;;;60141:7;60117:31;;:20;60129:7;60117:11;:20::i;:::-;:31;;;60035:113;60027:122;;;59849:308;;;;:::o;63816:1254::-;63982:4;63962:24;;:16;63970:7;63962;:16::i;:::-;:24;;;63940:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;64084:1;64070:16;;:2;:16;;;64062:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;64140:42;64161:4;64167:2;64171:7;64180:1;64140:20;:42::i;:::-;64319:4;64299:24;;:16;64307:7;64299;:16::i;:::-;:24;;;64277:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;64460:15;:24;64476:7;64460:24;;;;;;;;;;;;64453:31;;;;;;;;;;;64671:1;64652:9;:15;64662:4;64652:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;64917:1;64900:9;:13;64910:2;64900:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;64961:2;64942:7;:16;64950:7;64942:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;65000:7;64996:2;64981:27;;64990:4;64981:27;;;;;;;;;;;;65021:41;65041:4;65047:2;65051:7;65060:1;65021:19;:41::i;:::-;63816:1254;;;:::o;68371:159::-;;;;;:::o;69252:158::-;;;;;:::o;111799:510::-;111851:13;111889:1;111881:4;:9;111877:52;;111907:10;;;;;;;;;;;;;;;;;;;;;111877:52;111939:9;111951:4;111939:16;;111966:11;111988:78;112003:1;111995:4;:9;111988:78;;112021:8;;;;;:::i;:::-;;;;112052:2;112044:10;;;;;:::i;:::-;;;111988:78;;;112076:19;112108:6;112098:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112076:39;;112126:144;112141:1;112133:4;:9;112126:144;;112169:1;112159:11;;;;;:::i;:::-;;;112228:2;112221:4;:9;;;;:::i;:::-;112215:2;:16;;;;:::i;:::-;112202:31;;112185:6;112192;112185:14;;;;;;;;:::i;:::-;;;;;:48;;;;;;;;;;;112256:2;112248:10;;;;;:::i;:::-;;;112126:144;;;112294:6;112280:21;;;;;111799:510;;;;:::o;98958:3280::-;99016:13;99268:1;99253:4;:11;:16;99249:31;;99271:9;;;;;;;;;;;;;;;;99249:31;99333:19;99355:6;;;;;;;;;;;;;;;;;99333:28;;99772:20;99831:1;99826;99812:4;:11;:15;;;;:::i;:::-;99811:21;;;;:::i;:::-;99806:1;:27;;;;:::i;:::-;99795:39;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99772:62;;100014:1;100007:5;100003:13;100118:2;100110:6;100106:15;100229:4;100281;100275:11;100269:4;100265:22;100191:1615;100315:6;100306:7;100303:19;100191:1615;;;100421:1;100412:7;100408:15;100397:26;;100460:7;100454:14;101156:4;101148:5;101144:2;101140:14;101136:25;101126:8;101122:40;101116:47;101084:9;101054:128;101228:1;101217:9;101213:17;101200:30;;101363:4;101355:5;101351:2;101347:14;101343:25;101333:8;101329:40;101323:47;101291:9;101261:128;101435:1;101424:9;101420:17;101407:30;;101569:4;101561:5;101558:1;101554:13;101550:24;101540:8;101536:39;101530:46;101498:9;101468:127;101641:1;101630:9;101626:17;101613:30;;101724:4;101717:5;101713:16;101703:8;101699:31;101693:38;101682:9;101674:58;101778:1;101767:9;101763:17;101750:30;;100342:1464;100191:1615;;;100195:107;;101968:1;101961:4;101955:11;101951:19;101989:1;101984:123;;;;102126:1;102121:73;;;;101944:250;;101984:123;102037:4;102033:1;102022:9;102018:17;102010:32;102087:4;102083:1;102072:9;102068:17;102060:32;101984:123;;102121:73;102174:4;102170:1;102159:9;102155:17;102147:32;101944:250;;99900:2305;;102224:6;102217:13;;;;98958:3280;;;;:::o;60836:319::-;60965:18;60971:2;60975:7;60965:5;:18::i;:::-;61016:53;61047:1;61051:2;61055:7;61064:4;61016:22;:53::i;:::-;60994:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;60836:319;;;:::o;65499:315::-;65654:8;65645:17;;:5;:17;;;65637:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;65741:8;65703:18;:25;65722:5;65703:25;;;;;;;;;;;;;;;:35;65729:8;65703:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;65787:8;65765:41;;65780:5;65765:41;;;65797:8;65765:41;;;;;;:::i;:::-;;;;;;;;65499:315;;;:::o;58660:350::-;58816:28;58826:4;58832:2;58836:7;58816:9;:28::i;:::-;58877:47;58900:4;58906:2;58910:7;58919:4;58877:22;:47::i;:::-;58855:147;;;;;;;;;;;;:::i;:::-;;;;;;;;;58660:350;;;;:::o;61491:942::-;61585:1;61571:16;;:2;:16;;;61563:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;61644:16;61652:7;61644;:16::i;:::-;61643:17;61635:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;61706:48;61735:1;61739:2;61743:7;61752:1;61706:20;:48::i;:::-;61853:16;61861:7;61853;:16::i;:::-;61852:17;61844:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;62268:1;62251:9;:13;62261:2;62251:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;62312:2;62293:7;:16;62301:7;62293:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;62357:7;62353:2;62332:33;;62349:1;62332:33;;;;;;;;;;;;62378:47;62406:1;62410:2;62414:7;62423:1;62378:19;:47::i;:::-;61491:942;;:::o;66602:1037::-;66756:4;66794:1;66777:2;:14;;;:18;66773:859;;;66849:2;66833:36;;;66892:12;:10;:12::i;:::-;66927:4;66954:7;66984:4;66833:174;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;66812:765;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67207:1;67190:6;:13;:18;67186:376;;67233:108;;;;;;;;;;:::i;:::-;;;;;;;;67186:376;67512:6;67506:13;67497:6;67493:2;67489:15;67482:38;66812:765;67081:41;;;67071:51;;;:6;:51;;;;67064:58;;;;;66773:859;67616:4;67609:11;;66602:1037;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:619::-;5015:6;5023;5031;5080:2;5068:9;5059:7;5055:23;5051:32;5048:119;;;5086:79;;:::i;:::-;5048:119;5206:1;5231:53;5276:7;5267:6;5256:9;5252:22;5231:53;:::i;:::-;5221:63;;5177:117;5333:2;5359:53;5404:7;5395:6;5384:9;5380:22;5359:53;:::i;:::-;5349:63;;5304:118;5461:2;5487:53;5532:7;5523:6;5512:9;5508:22;5487:53;:::i;:::-;5477:63;;5432:118;4938:619;;;;;:::o;5563:118::-;5650:24;5668:5;5650:24;:::i;:::-;5645:3;5638:37;5563:118;;:::o;5687:222::-;5780:4;5818:2;5807:9;5803:18;5795:26;;5831:71;5899:1;5888:9;5884:17;5875:6;5831:71;:::i;:::-;5687:222;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:116::-;8091:21;8106:5;8091:21;:::i;:::-;8084:5;8081:32;8071:60;;8127:1;8124;8117:12;8071:60;8021:116;:::o;8143:133::-;8186:5;8224:6;8211:20;8202:29;;8240:30;8264:5;8240:30;:::i;:::-;8143:133;;;;:::o;8282:648::-;8357:6;8365;8414:2;8402:9;8393:7;8389:23;8385:32;8382:119;;;8420:79;;:::i;:::-;8382:119;8568:1;8557:9;8553:17;8540:31;8598:18;8590:6;8587:30;8584:117;;;8620:79;;:::i;:::-;8584:117;8725:63;8780:7;8771:6;8760:9;8756:22;8725:63;:::i;:::-;8715:73;;8511:287;8837:2;8863:50;8905:7;8896:6;8885:9;8881:22;8863:50;:::i;:::-;8853:60;;8808:115;8282:648;;;;;:::o;8936:329::-;8995:6;9044:2;9032:9;9023:7;9019:23;9015:32;9012:119;;;9050:79;;:::i;:::-;9012:119;9170:1;9195:53;9240:7;9231:6;9220:9;9216:22;9195:53;:::i;:::-;9185:63;;9141:117;8936:329;;;;:::o;9271:474::-;9339:6;9347;9396:2;9384:9;9375:7;9371:23;9367:32;9364:119;;;9402:79;;:::i;:::-;9364:119;9522:1;9547:53;9592:7;9583:6;9572:9;9568:22;9547:53;:::i;:::-;9537:63;;9493:117;9649:2;9675:53;9720:7;9711:6;9700:9;9696:22;9675:53;:::i;:::-;9665:63;;9620:118;9271:474;;;;;:::o;9751:468::-;9816:6;9824;9873:2;9861:9;9852:7;9848:23;9844:32;9841:119;;;9879:79;;:::i;:::-;9841:119;9999:1;10024:53;10069:7;10060:6;10049:9;10045:22;10024:53;:::i;:::-;10014:63;;9970:117;10126:2;10152:50;10194:7;10185:6;10174:9;10170:22;10152:50;:::i;:::-;10142:60;;10097:115;9751:468;;;;;:::o;10225:311::-;10302:4;10392:18;10384:6;10381:30;10378:56;;;10414:18;;:::i;:::-;10378:56;10464:4;10456:6;10452:17;10444:25;;10524:4;10518;10514:15;10506:23;;10225:311;;;:::o;10542:117::-;10651:1;10648;10641:12;10682:710;10778:5;10803:81;10819:64;10876:6;10819:64;:::i;:::-;10803:81;:::i;:::-;10794:90;;10904:5;10933:6;10926:5;10919:21;10967:4;10960:5;10956:16;10949:23;;11020:4;11012:6;11008:17;11000:6;10996:30;11049:3;11041:6;11038:15;11035:122;;;11068:79;;:::i;:::-;11035:122;11183:6;11166:220;11200:6;11195:3;11192:15;11166:220;;;11275:3;11304:37;11337:3;11325:10;11304:37;:::i;:::-;11299:3;11292:50;11371:4;11366:3;11362:14;11355:21;;11242:144;11226:4;11221:3;11217:14;11210:21;;11166:220;;;11170:21;10784:608;;10682:710;;;;;:::o;11415:370::-;11486:5;11535:3;11528:4;11520:6;11516:17;11512:27;11502:122;;11543:79;;:::i;:::-;11502:122;11660:6;11647:20;11685:94;11775:3;11767:6;11760:4;11752:6;11748:17;11685:94;:::i;:::-;11676:103;;11492:293;11415:370;;;;:::o;11791:678::-;11881:6;11889;11938:2;11926:9;11917:7;11913:23;11909:32;11906:119;;;11944:79;;:::i;:::-;11906:119;12092:1;12081:9;12077:17;12064:31;12122:18;12114:6;12111:30;12108:117;;;12144:79;;:::i;:::-;12108:117;12249:78;12319:7;12310:6;12299:9;12295:22;12249:78;:::i;:::-;12239:88;;12035:302;12376:2;12402:50;12444:7;12435:6;12424:9;12420:22;12402:50;:::i;:::-;12392:60;;12347:115;11791:678;;;;;:::o;12475:307::-;12536:4;12626:18;12618:6;12615:30;12612:56;;;12648:18;;:::i;:::-;12612:56;12686:29;12708:6;12686:29;:::i;:::-;12678:37;;12770:4;12764;12760:15;12752:23;;12475:307;;;:::o;12788:410::-;12865:5;12890:65;12906:48;12947:6;12906:48;:::i;:::-;12890:65;:::i;:::-;12881:74;;12978:6;12971:5;12964:21;13016:4;13009:5;13005:16;13054:3;13045:6;13040:3;13036:16;13033:25;13030:112;;;13061:79;;:::i;:::-;13030:112;13151:41;13185:6;13180:3;13175;13151:41;:::i;:::-;12871:327;12788:410;;;;;:::o;13217:338::-;13272:5;13321:3;13314:4;13306:6;13302:17;13298:27;13288:122;;13329:79;;:::i;:::-;13288:122;13446:6;13433:20;13471:78;13545:3;13537:6;13530:4;13522:6;13518:17;13471:78;:::i;:::-;13462:87;;13278:277;13217:338;;;;:::o;13561:943::-;13656:6;13664;13672;13680;13729:3;13717:9;13708:7;13704:23;13700:33;13697:120;;;13736:79;;:::i;:::-;13697:120;13856:1;13881:53;13926:7;13917:6;13906:9;13902:22;13881:53;:::i;:::-;13871:63;;13827:117;13983:2;14009:53;14054:7;14045:6;14034:9;14030:22;14009:53;:::i;:::-;13999:63;;13954:118;14111:2;14137:53;14182:7;14173:6;14162:9;14158:22;14137:53;:::i;:::-;14127:63;;14082:118;14267:2;14256:9;14252:18;14239:32;14298:18;14290:6;14287:30;14284:117;;;14320:79;;:::i;:::-;14284:117;14425:62;14479:7;14470:6;14459:9;14455:22;14425:62;:::i;:::-;14415:72;;14210:287;13561:943;;;;;;;:::o;14510:894::-;14628:6;14636;14685:2;14673:9;14664:7;14660:23;14656:32;14653:119;;;14691:79;;:::i;:::-;14653:119;14839:1;14828:9;14824:17;14811:31;14869:18;14861:6;14858:30;14855:117;;;14891:79;;:::i;:::-;14855:117;14996:78;15066:7;15057:6;15046:9;15042:22;14996:78;:::i;:::-;14986:88;;14782:302;15151:2;15140:9;15136:18;15123:32;15182:18;15174:6;15171:30;15168:117;;;15204:79;;:::i;:::-;15168:117;15309:78;15379:7;15370:6;15359:9;15355:22;15309:78;:::i;:::-;15299:88;;15094:303;14510:894;;;;;:::o;15410:474::-;15478:6;15486;15535:2;15523:9;15514:7;15510:23;15506:32;15503:119;;;15541:79;;:::i;:::-;15503:119;15661:1;15686:53;15731:7;15722:6;15711:9;15707:22;15686:53;:::i;:::-;15676:63;;15632:117;15788:2;15814:53;15859:7;15850:6;15839:9;15835:22;15814:53;:::i;:::-;15804:63;;15759:118;15410:474;;;;;:::o;15890:182::-;16030:34;16026:1;16018:6;16014:14;16007:58;15890:182;:::o;16078:366::-;16220:3;16241:67;16305:2;16300:3;16241:67;:::i;:::-;16234:74;;16317:93;16406:3;16317:93;:::i;:::-;16435:2;16430:3;16426:12;16419:19;;16078:366;;;:::o;16450:419::-;16616:4;16654:2;16643:9;16639:18;16631:26;;16703:9;16697:4;16693:20;16689:1;16678:9;16674:17;16667:47;16731:131;16857:4;16731:131;:::i;:::-;16723:139;;16450:419;;;:::o;16875:180::-;16923:77;16920:1;16913:88;17020:4;17017:1;17010:15;17044:4;17041:1;17034:15;17061:320;17105:6;17142:1;17136:4;17132:12;17122:22;;17189:1;17183:4;17179:12;17210:18;17200:81;;17266:4;17258:6;17254:17;17244:27;;17200:81;17328:2;17320:6;17317:14;17297:18;17294:38;17291:84;;17347:18;;:::i;:::-;17291:84;17112:269;17061:320;;;:::o;17387:137::-;17441:5;17472:6;17466:13;17457:22;;17488:30;17512:5;17488:30;:::i;:::-;17387:137;;;;:::o;17530:345::-;17597:6;17646:2;17634:9;17625:7;17621:23;17617:32;17614:119;;;17652:79;;:::i;:::-;17614:119;17772:1;17797:61;17850:7;17841:6;17830:9;17826:22;17797:61;:::i;:::-;17787:71;;17743:125;17530:345;;;;:::o;17881:174::-;18021:26;18017:1;18009:6;18005:14;17998:50;17881:174;:::o;18061:366::-;18203:3;18224:67;18288:2;18283:3;18224:67;:::i;:::-;18217:74;;18300:93;18389:3;18300:93;:::i;:::-;18418:2;18413:3;18409:12;18402:19;;18061:366;;;:::o;18433:419::-;18599:4;18637:2;18626:9;18622:18;18614:26;;18686:9;18680:4;18676:20;18672:1;18661:9;18657:17;18650:47;18714:131;18840:4;18714:131;:::i;:::-;18706:139;;18433:419;;;:::o;18858:175::-;18998:27;18994:1;18986:6;18982:14;18975:51;18858:175;:::o;19039:366::-;19181:3;19202:67;19266:2;19261:3;19202:67;:::i;:::-;19195:74;;19278:93;19367:3;19278:93;:::i;:::-;19396:2;19391:3;19387:12;19380:19;;19039:366;;;:::o;19411:419::-;19577:4;19615:2;19604:9;19600:18;19592:26;;19664:9;19658:4;19654:20;19650:1;19639:9;19635:17;19628:47;19692:131;19818:4;19692:131;:::i;:::-;19684:139;;19411:419;;;:::o;19836:170::-;19976:22;19972:1;19964:6;19960:14;19953:46;19836:170;:::o;20012:366::-;20154:3;20175:67;20239:2;20234:3;20175:67;:::i;:::-;20168:74;;20251:93;20340:3;20251:93;:::i;:::-;20369:2;20364:3;20360:12;20353:19;;20012:366;;;:::o;20384:419::-;20550:4;20588:2;20577:9;20573:18;20565:26;;20637:9;20631:4;20627:20;20623:1;20612:9;20608:17;20601:47;20665:131;20791:4;20665:131;:::i;:::-;20657:139;;20384:419;;;:::o;20809:174::-;20949:26;20945:1;20937:6;20933:14;20926:50;20809:174;:::o;20989:366::-;21131:3;21152:67;21216:2;21211:3;21152:67;:::i;:::-;21145:74;;21228:93;21317:3;21228:93;:::i;:::-;21346:2;21341:3;21337:12;21330:19;;20989:366;;;:::o;21361:419::-;21527:4;21565:2;21554:9;21550:18;21542:26;;21614:9;21608:4;21604:20;21600:1;21589:9;21585:17;21578:47;21642:131;21768:4;21642:131;:::i;:::-;21634:139;;21361:419;;;:::o;21786:180::-;21834:77;21831:1;21824:88;21931:4;21928:1;21921:15;21955:4;21952:1;21945:15;21972:305;22012:3;22031:20;22049:1;22031:20;:::i;:::-;22026:25;;22065:20;22083:1;22065:20;:::i;:::-;22060:25;;22219:1;22151:66;22147:74;22144:1;22141:81;22138:107;;;22225:18;;:::i;:::-;22138:107;22269:1;22266;22262:9;22255:16;;21972:305;;;;:::o;22283:141::-;22332:4;22355:3;22347:11;;22378:3;22375:1;22368:14;22412:4;22409:1;22399:18;22391:26;;22283:141;;;:::o;22430:93::-;22467:6;22514:2;22509;22502:5;22498:14;22494:23;22484:33;;22430:93;;;:::o;22529:107::-;22573:8;22623:5;22617:4;22613:16;22592:37;;22529:107;;;;:::o;22642:393::-;22711:6;22761:1;22749:10;22745:18;22784:97;22814:66;22803:9;22784:97;:::i;:::-;22902:39;22932:8;22921:9;22902:39;:::i;:::-;22890:51;;22974:4;22970:9;22963:5;22959:21;22950:30;;23023:4;23013:8;23009:19;23002:5;22999:30;22989:40;;22718:317;;22642:393;;;;;:::o;23041:60::-;23069:3;23090:5;23083:12;;23041:60;;;:::o;23107:142::-;23157:9;23190:53;23208:34;23217:24;23235:5;23217:24;:::i;:::-;23208:34;:::i;:::-;23190:53;:::i;:::-;23177:66;;23107:142;;;:::o;23255:75::-;23298:3;23319:5;23312:12;;23255:75;;;:::o;23336:269::-;23446:39;23477:7;23446:39;:::i;:::-;23507:91;23556:41;23580:16;23556:41;:::i;:::-;23548:6;23541:4;23535:11;23507:91;:::i;:::-;23501:4;23494:105;23412:193;23336:269;;;:::o;23611:73::-;23656:3;23611:73;:::o;23690:189::-;23767:32;;:::i;:::-;23808:65;23866:6;23858;23852:4;23808:65;:::i;:::-;23743:136;23690:189;;:::o;23885:186::-;23945:120;23962:3;23955:5;23952:14;23945:120;;;24016:39;24053:1;24046:5;24016:39;:::i;:::-;23989:1;23982:5;23978:13;23969:22;;23945:120;;;23885:186;;:::o;24077:543::-;24178:2;24173:3;24170:11;24167:446;;;24212:38;24244:5;24212:38;:::i;:::-;24296:29;24314:10;24296:29;:::i;:::-;24286:8;24282:44;24479:2;24467:10;24464:18;24461:49;;;24500:8;24485:23;;24461:49;24523:80;24579:22;24597:3;24579:22;:::i;:::-;24569:8;24565:37;24552:11;24523:80;:::i;:::-;24182:431;;24167:446;24077:543;;;:::o;24626:117::-;24680:8;24730:5;24724:4;24720:16;24699:37;;24626:117;;;;:::o;24749:169::-;24793:6;24826:51;24874:1;24870:6;24862:5;24859:1;24855:13;24826:51;:::i;:::-;24822:56;24907:4;24901;24897:15;24887:25;;24800:118;24749:169;;;;:::o;24923:295::-;24999:4;25145:29;25170:3;25164:4;25145:29;:::i;:::-;25137:37;;25207:3;25204:1;25200:11;25194:4;25191:21;25183:29;;24923:295;;;;:::o;25223:1395::-;25340:37;25373:3;25340:37;:::i;:::-;25442:18;25434:6;25431:30;25428:56;;;25464:18;;:::i;:::-;25428:56;25508:38;25540:4;25534:11;25508:38;:::i;:::-;25593:67;25653:6;25645;25639:4;25593:67;:::i;:::-;25687:1;25711:4;25698:17;;25743:2;25735:6;25732:14;25760:1;25755:618;;;;26417:1;26434:6;26431:77;;;26483:9;26478:3;26474:19;26468:26;26459:35;;26431:77;26534:67;26594:6;26587:5;26534:67;:::i;:::-;26528:4;26521:81;26390:222;25725:887;;25755:618;25807:4;25803:9;25795:6;25791:22;25841:37;25873:4;25841:37;:::i;:::-;25900:1;25914:208;25928:7;25925:1;25922:14;25914:208;;;26007:9;26002:3;25998:19;25992:26;25984:6;25977:42;26058:1;26050:6;26046:14;26036:24;;26105:2;26094:9;26090:18;26077:31;;25951:4;25948:1;25944:12;25939:17;;25914:208;;;26150:6;26141:7;26138:19;26135:179;;;26208:9;26203:3;26199:19;26193:26;26251:48;26293:4;26285:6;26281:17;26270:9;26251:48;:::i;:::-;26243:6;26236:64;26158:156;26135:179;26360:1;26356;26348:6;26344:14;26340:22;26334:4;26327:36;25762:611;;;25725:887;;25315:1303;;;25223:1395;;:::o;26624:224::-;26764:34;26760:1;26752:6;26748:14;26741:58;26833:7;26828:2;26820:6;26816:15;26809:32;26624:224;:::o;26854:366::-;26996:3;27017:67;27081:2;27076:3;27017:67;:::i;:::-;27010:74;;27093:93;27182:3;27093:93;:::i;:::-;27211:2;27206:3;27202:12;27195:19;;26854:366;;;:::o;27226:419::-;27392:4;27430:2;27419:9;27415:18;27407:26;;27479:9;27473:4;27469:20;27465:1;27454:9;27450:17;27443:47;27507:131;27633:4;27507:131;:::i;:::-;27499:139;;27226:419;;;:::o;27651:348::-;27691:7;27714:20;27732:1;27714:20;:::i;:::-;27709:25;;27748:20;27766:1;27748:20;:::i;:::-;27743:25;;27936:1;27868:66;27864:74;27861:1;27858:81;27853:1;27846:9;27839:17;27835:105;27832:131;;;27943:18;;:::i;:::-;27832:131;27991:1;27988;27984:9;27973:20;;27651:348;;;;:::o;28005:174::-;28145:26;28141:1;28133:6;28129:14;28122:50;28005:174;:::o;28185:366::-;28327:3;28348:67;28412:2;28407:3;28348:67;:::i;:::-;28341:74;;28424:93;28513:3;28424:93;:::i;:::-;28542:2;28537:3;28533:12;28526:19;;28185:366;;;:::o;28557:419::-;28723:4;28761:2;28750:9;28746:18;28738:26;;28810:9;28804:4;28800:20;28796:1;28785:9;28781:17;28774:47;28838:131;28964:4;28838:131;:::i;:::-;28830:139;;28557:419;;;:::o;28982:191::-;29022:4;29042:20;29060:1;29042:20;:::i;:::-;29037:25;;29076:20;29094:1;29076:20;:::i;:::-;29071:25;;29115:1;29112;29109:8;29106:34;;;29120:18;;:::i;:::-;29106:34;29165:1;29162;29158:9;29150:17;;28982:191;;;;:::o;29179:162::-;29319:14;29315:1;29307:6;29303:14;29296:38;29179:162;:::o;29347:366::-;29489:3;29510:67;29574:2;29569:3;29510:67;:::i;:::-;29503:74;;29586:93;29675:3;29586:93;:::i;:::-;29704:2;29699:3;29695:12;29688:19;;29347:366;;;:::o;29719:419::-;29885:4;29923:2;29912:9;29908:18;29900:26;;29972:9;29966:4;29962:20;29958:1;29947:9;29943:17;29936:47;30000:131;30126:4;30000:131;:::i;:::-;29992:139;;29719:419;;;:::o;30144:442::-;30293:4;30331:2;30320:9;30316:18;30308:26;;30344:71;30412:1;30401:9;30397:17;30388:6;30344:71;:::i;:::-;30425:72;30493:2;30482:9;30478:18;30469:6;30425:72;:::i;:::-;30507;30575:2;30564:9;30560:18;30551:6;30507:72;:::i;:::-;30144:442;;;;;;:::o;30592:165::-;30732:17;30728:1;30720:6;30716:14;30709:41;30592:165;:::o;30763:366::-;30905:3;30926:67;30990:2;30985:3;30926:67;:::i;:::-;30919:74;;31002:93;31091:3;31002:93;:::i;:::-;31120:2;31115:3;31111:12;31104:19;;30763:366;;;:::o;31135:419::-;31301:4;31339:2;31328:9;31324:18;31316:26;;31388:9;31382:4;31378:20;31374:1;31363:9;31359:17;31352:47;31416:131;31542:4;31416:131;:::i;:::-;31408:139;;31135:419;;;:::o;31560:174::-;31700:26;31696:1;31688:6;31684:14;31677:50;31560:174;:::o;31740:366::-;31882:3;31903:67;31967:2;31962:3;31903:67;:::i;:::-;31896:74;;31979:93;32068:3;31979:93;:::i;:::-;32097:2;32092:3;32088:12;32081:19;;31740:366;;;:::o;32112:419::-;32278:4;32316:2;32305:9;32301:18;32293:26;;32365:9;32359:4;32355:20;32351:1;32340:9;32336:17;32329:47;32393:131;32519:4;32393:131;:::i;:::-;32385:139;;32112:419;;;:::o;32537:228::-;32677:34;32673:1;32665:6;32661:14;32654:58;32746:11;32741:2;32733:6;32729:15;32722:36;32537:228;:::o;32771:366::-;32913:3;32934:67;32998:2;32993:3;32934:67;:::i;:::-;32927:74;;33010:93;33099:3;33010:93;:::i;:::-;33128:2;33123:3;33119:12;33112:19;;32771:366;;;:::o;33143:419::-;33309:4;33347:2;33336:9;33332:18;33324:26;;33396:9;33390:4;33386:20;33382:1;33371:9;33367:17;33360:47;33424:131;33550:4;33424:131;:::i;:::-;33416:139;;33143:419;;;:::o;33568:167::-;33708:19;33704:1;33696:6;33692:14;33685:43;33568:167;:::o;33741:366::-;33883:3;33904:67;33968:2;33963:3;33904:67;:::i;:::-;33897:74;;33980:93;34069:3;33980:93;:::i;:::-;34098:2;34093:3;34089:12;34082:19;;33741:366;;;:::o;34113:419::-;34279:4;34317:2;34306:9;34302:18;34294:26;;34366:9;34360:4;34356:20;34352:1;34341:9;34337:17;34330:47;34394:131;34520:4;34394:131;:::i;:::-;34386:139;;34113:419;;;:::o;34538:153::-;34591:6;34625:5;34619:12;34609:22;;34651:33;34677:6;34651:33;:::i;:::-;34641:43;;34538:153;;;:::o;34697:145::-;34750:4;34773:3;34765:11;;34796:3;34793:1;34786:14;34830:4;34827:1;34817:18;34809:26;;34697:145;;;:::o;34848:1463::-;34963:3;34957:4;34954:13;34951:26;;34970:5;;;;34951:26;35001:38;35035:3;35001:38;:::i;:::-;35104:18;35096:6;35093:30;35090:56;;;35126:18;;:::i;:::-;35090:56;35170:38;35202:4;35196:11;35170:38;:::i;:::-;35255:67;35315:6;35307;35301:4;35255:67;:::i;:::-;35349:1;35378:2;35370:6;35367:14;35395:1;35390:676;;;;36110:1;36127:6;36124:77;;;36176:9;36171:3;36167:19;36161:26;36152:35;;36124:77;36227:67;36287:6;36280:5;36227:67;:::i;:::-;36221:4;36214:81;36083:222;35360:945;;35390:676;35442:4;35438:9;35430:6;35426:22;35468:40;35504:3;35468:40;:::i;:::-;35461:47;;35535:37;35567:4;35535:37;:::i;:::-;35594:1;35608:207;35622:7;35619:1;35616:14;35608:207;;;35701:9;35696:3;35692:19;35686:26;35678:6;35671:42;35752:1;35744:6;35740:14;35730:24;;35799:1;35788:9;35784:17;35771:30;;35645:4;35642:1;35638:12;35633:17;;35608:207;;;35843:6;35834:7;35831:19;35828:179;;;35901:9;35896:3;35892:19;35886:26;35944:48;35986:4;35978:6;35974:17;35963:9;35944:48;:::i;:::-;35936:6;35929:64;35851:156;35828:179;36053:1;36049;36041:6;36037:14;36033:22;36027:4;36020:36;35397:669;;;35360:945;;34941:1370;;;34848:1463;;;:::o;36317:166::-;36457:18;36453:1;36445:6;36441:14;36434:42;36317:166;:::o;36489:366::-;36631:3;36652:67;36716:2;36711:3;36652:67;:::i;:::-;36645:74;;36728:93;36817:3;36728:93;:::i;:::-;36846:2;36841:3;36837:12;36830:19;;36489:366;;;:::o;36861:419::-;37027:4;37065:2;37054:9;37050:18;37042:26;;37114:9;37108:4;37104:20;37100:1;37089:9;37085:17;37078:47;37142:131;37268:4;37142:131;:::i;:::-;37134:139;;36861:419;;;:::o;37286:165::-;37426:17;37422:1;37414:6;37410:14;37403:41;37286:165;:::o;37457:366::-;37599:3;37620:67;37684:2;37679:3;37620:67;:::i;:::-;37613:74;;37696:93;37785:3;37696:93;:::i;:::-;37814:2;37809:3;37805:12;37798:19;;37457:366;;;:::o;37829:419::-;37995:4;38033:2;38022:9;38018:18;38010:26;;38082:9;38076:4;38072:20;38068:1;38057:9;38053:17;38046:47;38110:131;38236:4;38110:131;:::i;:::-;38102:139;;37829:419;;;:::o;38254:180::-;38302:77;38299:1;38292:88;38399:4;38396:1;38389:15;38423:4;38420:1;38413:15;38440:143;38497:5;38528:6;38522:13;38513:22;;38544:33;38571:5;38544:33;:::i;:::-;38440:143;;;;:::o;38589:351::-;38659:6;38708:2;38696:9;38687:7;38683:23;38679:32;38676:119;;;38714:79;;:::i;:::-;38676:119;38834:1;38859:64;38915:7;38906:6;38895:9;38891:22;38859:64;:::i;:::-;38849:74;;38805:128;38589:351;;;;:::o;38946:164::-;39086:16;39082:1;39074:6;39070:14;39063:40;38946:164;:::o;39116:366::-;39258:3;39279:67;39343:2;39338:3;39279:67;:::i;:::-;39272:74;;39355:93;39444:3;39355:93;:::i;:::-;39473:2;39468:3;39464:12;39457:19;;39116:366;;;:::o;39488:419::-;39654:4;39692:2;39681:9;39677:18;39669:26;;39741:9;39735:4;39731:20;39727:1;39716:9;39712:17;39705:47;39769:131;39895:4;39769:131;:::i;:::-;39761:139;;39488:419;;;:::o;39913:163::-;40053:15;40049:1;40041:6;40037:14;40030:39;39913:163;:::o;40082:366::-;40224:3;40245:67;40309:2;40304:3;40245:67;:::i;:::-;40238:74;;40321:93;40410:3;40321:93;:::i;:::-;40439:2;40434:3;40430:12;40423:19;;40082:366;;;:::o;40454:419::-;40620:4;40658:2;40647:9;40643:18;40635:26;;40707:9;40701:4;40697:20;40693:1;40682:9;40678:17;40671:47;40735:131;40861:4;40735:131;:::i;:::-;40727:139;;40454:419;;;:::o;40879:233::-;40918:3;40941:24;40959:5;40941:24;:::i;:::-;40932:33;;40987:66;40980:5;40977:77;40974:103;;41057:18;;:::i;:::-;40974:103;41104:1;41097:5;41093:13;41086:20;;40879:233;;;:::o;41118:172::-;41258:24;41254:1;41246:6;41242:14;41235:48;41118:172;:::o;41296:366::-;41438:3;41459:67;41523:2;41518:3;41459:67;:::i;:::-;41452:74;;41535:93;41624:3;41535:93;:::i;:::-;41653:2;41648:3;41644:12;41637:19;;41296:366;;;:::o;41668:419::-;41834:4;41872:2;41861:9;41857:18;41849:26;;41921:9;41915:4;41911:20;41907:1;41896:9;41892:17;41885:47;41949:131;42075:4;41949:131;:::i;:::-;41941:139;;41668:419;;;:::o;42093:143::-;42150:5;42181:6;42175:13;42166:22;;42197:33;42224:5;42197:33;:::i;:::-;42093:143;;;;:::o;42242:351::-;42312:6;42361:2;42349:9;42340:7;42336:23;42332:32;42329:119;;;42367:79;;:::i;:::-;42329:119;42487:1;42512:64;42568:7;42559:6;42548:9;42544:22;42512:64;:::i;:::-;42502:74;;42458:128;42242:351;;;;:::o;42599:332::-;42720:4;42758:2;42747:9;42743:18;42735:26;;42771:71;42839:1;42828:9;42824:17;42815:6;42771:71;:::i;:::-;42852:72;42920:2;42909:9;42905:18;42896:6;42852:72;:::i;:::-;42599:332;;;;;:::o;42937:180::-;42985:77;42982:1;42975:88;43082:4;43079:1;43072:15;43106:4;43103:1;43096:15;43123:185;43163:1;43180:20;43198:1;43180:20;:::i;:::-;43175:25;;43214:20;43232:1;43214:20;:::i;:::-;43209:25;;43253:1;43243:35;;43258:18;;:::i;:::-;43243:35;43300:1;43297;43293:9;43288:14;;43123:185;;;;:::o;43314:225::-;43454:34;43450:1;43442:6;43438:14;43431:58;43523:8;43518:2;43510:6;43506:15;43499:33;43314:225;:::o;43545:366::-;43687:3;43708:67;43772:2;43767:3;43708:67;:::i;:::-;43701:74;;43784:93;43873:3;43784:93;:::i;:::-;43902:2;43897:3;43893:12;43886:19;;43545:366;;;:::o;43917:419::-;44083:4;44121:2;44110:9;44106:18;44098:26;;44170:9;44164:4;44160:20;44156:1;44145:9;44141:17;44134:47;44198:131;44324:4;44198:131;:::i;:::-;44190:139;;43917:419;;;:::o;44342:220::-;44482:34;44478:1;44470:6;44466:14;44459:58;44551:3;44546:2;44538:6;44534:15;44527:28;44342:220;:::o;44568:366::-;44710:3;44731:67;44795:2;44790:3;44731:67;:::i;:::-;44724:74;;44807:93;44896:3;44807:93;:::i;:::-;44925:2;44920:3;44916:12;44909:19;;44568:366;;;:::o;44940:419::-;45106:4;45144:2;45133:9;45129:18;45121:26;;45193:9;45187:4;45183:20;45179:1;45168:9;45164:17;45157:47;45221:131;45347:4;45221:131;:::i;:::-;45213:139;;44940:419;;;:::o;45365:248::-;45505:34;45501:1;45493:6;45489:14;45482:58;45574:31;45569:2;45561:6;45557:15;45550:56;45365:248;:::o;45619:366::-;45761:3;45782:67;45846:2;45841:3;45782:67;:::i;:::-;45775:74;;45858:93;45947:3;45858:93;:::i;:::-;45976:2;45971:3;45967:12;45960:19;;45619:366;;;:::o;45991:419::-;46157:4;46195:2;46184:9;46180:18;46172:26;;46244:9;46238:4;46234:20;46230:1;46219:9;46215:17;46208:47;46272:131;46398:4;46272:131;:::i;:::-;46264:139;;45991:419;;;:::o;46416:232::-;46556:34;46552:1;46544:6;46540:14;46533:58;46625:15;46620:2;46612:6;46608:15;46601:40;46416:232;:::o;46654:366::-;46796:3;46817:67;46881:2;46876:3;46817:67;:::i;:::-;46810:74;;46893:93;46982:3;46893:93;:::i;:::-;47011:2;47006:3;47002:12;46995:19;;46654:366;;;:::o;47026:419::-;47192:4;47230:2;47219:9;47215:18;47207:26;;47279:9;47273:4;47269:20;47265:1;47254:9;47250:17;47243:47;47307:131;47433:4;47307:131;:::i;:::-;47299:139;;47026:419;;;:::o;47451:148::-;47553:11;47590:3;47575:18;;47451:148;;;;:::o;47605:214::-;47745:66;47741:1;47733:6;47729:14;47722:90;47605:214;:::o;47825:402::-;47985:3;48006:85;48088:2;48083:3;48006:85;:::i;:::-;47999:92;;48100:93;48189:3;48100:93;:::i;:::-;48218:2;48213:3;48209:12;48202:19;;47825:402;;;:::o;48233:377::-;48339:3;48367:39;48400:5;48367:39;:::i;:::-;48422:89;48504:6;48499:3;48422:89;:::i;:::-;48415:96;;48520:52;48565:6;48560:3;48553:4;48546:5;48542:16;48520:52;:::i;:::-;48597:6;48592:3;48588:16;48581:23;;48343:267;48233:377;;;;:::o;48616:214::-;48756:66;48752:1;48744:6;48740:14;48733:90;48616:214;:::o;48836:402::-;48996:3;49017:85;49099:2;49094:3;49017:85;:::i;:::-;49010:92;;49111:93;49200:3;49111:93;:::i;:::-;49229:2;49224:3;49220:12;49213:19;;48836:402;;;:::o;49244:315::-;49384:66;49380:1;49372:6;49368:14;49361:90;49485:66;49480:2;49472:6;49468:15;49461:91;49244:315;:::o;49565:402::-;49725:3;49746:85;49828:2;49823:3;49746:85;:::i;:::-;49739:92;;49840:93;49929:3;49840:93;:::i;:::-;49958:2;49953:3;49949:12;49942:19;;49565:402;;;:::o;49973:315::-;50113:66;50109:1;50101:6;50097:14;50090:90;50214:66;50209:2;50201:6;50197:15;50190:91;49973:315;:::o;50294:402::-;50454:3;50475:85;50557:2;50552:3;50475:85;:::i;:::-;50468:92;;50569:93;50658:3;50569:93;:::i;:::-;50687:2;50682:3;50678:12;50671:19;;50294:402;;;:::o;50702:315::-;50842:66;50838:1;50830:6;50826:14;50819:90;50943:66;50938:2;50930:6;50926:15;50919:91;50702:315;:::o;51023:402::-;51183:3;51204:85;51286:2;51281:3;51204:85;:::i;:::-;51197:92;;51298:93;51387:3;51298:93;:::i;:::-;51416:2;51411:3;51407:12;51400:19;;51023:402;;;:::o;51431:156::-;51571:8;51567:1;51559:6;51555:14;51548:32;51431:156;:::o;51593:400::-;51753:3;51774:84;51856:1;51851:3;51774:84;:::i;:::-;51767:91;;51867:93;51956:3;51867:93;:::i;:::-;51985:1;51980:3;51976:11;51969:18;;51593:400;;;:::o;51999:315::-;52139:66;52135:1;52127:6;52123:14;52116:90;52240:66;52235:2;52227:6;52223:15;52216:91;51999:315;:::o;52320:402::-;52480:3;52501:85;52583:2;52578:3;52501:85;:::i;:::-;52494:92;;52595:93;52684:3;52595:93;:::i;:::-;52713:2;52708:3;52704:12;52697:19;;52320:402;;;:::o;52728:315::-;52868:66;52864:1;52856:6;52852:14;52845:90;52969:66;52964:2;52956:6;52952:15;52945:91;52728:315;:::o;53049:402::-;53209:3;53230:85;53312:2;53307:3;53230:85;:::i;:::-;53223:92;;53324:93;53413:3;53324:93;:::i;:::-;53442:2;53437:3;53433:12;53426:19;;53049:402;;;:::o;53457:315::-;53597:66;53593:1;53585:6;53581:14;53574:90;53698:66;53693:2;53685:6;53681:15;53674:91;53457:315;:::o;53778:402::-;53938:3;53959:85;54041:2;54036:3;53959:85;:::i;:::-;53952:92;;54053:93;54142:3;54053:93;:::i;:::-;54171:2;54166:3;54162:12;54155:19;;53778:402;;;:::o;54186:315::-;54326:66;54322:1;54314:6;54310:14;54303:90;54427:66;54422:2;54414:6;54410:15;54403:91;54186:315;:::o;54507:402::-;54667:3;54688:85;54770:2;54765:3;54688:85;:::i;:::-;54681:92;;54782:93;54871:3;54782:93;:::i;:::-;54900:2;54895:3;54891:12;54884:19;;54507:402;;;:::o;54915:214::-;55055:66;55051:1;55043:6;55039:14;55032:90;54915:214;:::o;55135:400::-;55295:3;55316:84;55398:1;55393:3;55316:84;:::i;:::-;55309:91;;55409:93;55498:3;55409:93;:::i;:::-;55527:1;55522:3;55518:11;55511:18;;55135:400;;;:::o;55541:4321::-;57120:3;57142:148;57286:3;57142:148;:::i;:::-;57135:155;;57307:95;57398:3;57389:6;57307:95;:::i;:::-;57300:102;;57419:148;57563:3;57419:148;:::i;:::-;57412:155;;57584:95;57675:3;57666:6;57584:95;:::i;:::-;57577:102;;57696:148;57840:3;57696:148;:::i;:::-;57689:155;;57861:148;58005:3;57861:148;:::i;:::-;57854:155;;58026:95;58117:3;58108:6;58026:95;:::i;:::-;58019:102;;58138:148;58282:3;58138:148;:::i;:::-;58131:155;;58303:95;58394:3;58385:6;58303:95;:::i;:::-;58296:102;;58415:148;58559:3;58415:148;:::i;:::-;58408:155;;58580:148;58724:3;58580:148;:::i;:::-;58573:155;;58745:95;58836:3;58827:6;58745:95;:::i;:::-;58738:102;;58857:148;59001:3;58857:148;:::i;:::-;58850:155;;59022:95;59113:3;59104:6;59022:95;:::i;:::-;59015:102;;59134:148;59278:3;59134:148;:::i;:::-;59127:155;;59299:95;59390:3;59381:6;59299:95;:::i;:::-;59292:102;;59411:148;59555:3;59411:148;:::i;:::-;59404:155;;59576:95;59667:3;59658:6;59576:95;:::i;:::-;59569:102;;59688:148;59832:3;59688:148;:::i;:::-;59681:155;;59853:3;59846:10;;55541:4321;;;;;;;;;;;:::o;59868:179::-;60008:31;60004:1;59996:6;59992:14;59985:55;59868:179;:::o;60053:402::-;60213:3;60234:85;60316:2;60311:3;60234:85;:::i;:::-;60227:92;;60328:93;60417:3;60328:93;:::i;:::-;60446:2;60441:3;60437:12;60430:19;;60053:402;;;:::o;60461:541::-;60694:3;60716:148;60860:3;60716:148;:::i;:::-;60709:155;;60881:95;60972:3;60963:6;60881:95;:::i;:::-;60874:102;;60993:3;60986:10;;60461:541;;;;:::o;61008:224::-;61148:34;61144:1;61136:6;61132:14;61125:58;61217:7;61212:2;61204:6;61200:15;61193:32;61008:224;:::o;61238:366::-;61380:3;61401:67;61465:2;61460:3;61401:67;:::i;:::-;61394:74;;61477:93;61566:3;61477:93;:::i;:::-;61595:2;61590:3;61586:12;61579:19;;61238:366;;;:::o;61610:419::-;61776:4;61814:2;61803:9;61799:18;61791:26;;61863:9;61857:4;61853:20;61849:1;61838:9;61834:17;61827:47;61891:131;62017:4;61891:131;:::i;:::-;61883:139;;61610:419;;;:::o;62035:223::-;62175:34;62171:1;62163:6;62159:14;62152:58;62244:6;62239:2;62231:6;62227:15;62220:31;62035:223;:::o;62264:366::-;62406:3;62427:67;62491:2;62486:3;62427:67;:::i;:::-;62420:74;;62503:93;62592:3;62503:93;:::i;:::-;62621:2;62616:3;62612:12;62605:19;;62264:366;;;:::o;62636:419::-;62802:4;62840:2;62829:9;62825:18;62817:26;;62889:9;62883:4;62879:20;62875:1;62864:9;62860:17;62853:47;62917:131;63043:4;62917:131;:::i;:::-;62909:139;;62636:419;;;:::o;63061:176::-;63093:1;63110:20;63128:1;63110:20;:::i;:::-;63105:25;;63144:20;63162:1;63144:20;:::i;:::-;63139:25;;63183:1;63173:35;;63188:18;;:::i;:::-;63173:35;63229:1;63226;63222:9;63217:14;;63061:176;;;;:::o;63243:237::-;63383:34;63379:1;63371:6;63367:14;63360:58;63452:20;63447:2;63439:6;63435:15;63428:45;63243:237;:::o;63486:366::-;63628:3;63649:67;63713:2;63708:3;63649:67;:::i;:::-;63642:74;;63725:93;63814:3;63725:93;:::i;:::-;63843:2;63838:3;63834:12;63827:19;;63486:366;;;:::o;63858:419::-;64024:4;64062:2;64051:9;64047:18;64039:26;;64111:9;64105:4;64101:20;64097:1;64086:9;64082:17;64075:47;64139:131;64265:4;64139:131;:::i;:::-;64131:139;;63858:419;;;:::o;64283:175::-;64423:27;64419:1;64411:6;64407:14;64400:51;64283:175;:::o;64464:366::-;64606:3;64627:67;64691:2;64686:3;64627:67;:::i;:::-;64620:74;;64703:93;64792:3;64703:93;:::i;:::-;64821:2;64816:3;64812:12;64805:19;;64464:366;;;:::o;64836:419::-;65002:4;65040:2;65029:9;65025:18;65017:26;;65089:9;65083:4;65079:20;65075:1;65064:9;65060:17;65053:47;65117:131;65243:4;65117:131;:::i;:::-;65109:139;;64836:419;;;:::o;65261:182::-;65401:34;65397:1;65389:6;65385:14;65378:58;65261:182;:::o;65449:366::-;65591:3;65612:67;65676:2;65671:3;65612:67;:::i;:::-;65605:74;;65688:93;65777:3;65688:93;:::i;:::-;65806:2;65801:3;65797:12;65790:19;;65449:366;;;:::o;65821:419::-;65987:4;66025:2;66014:9;66010:18;66002:26;;66074:9;66068:4;66064:20;66060:1;66049:9;66045:17;66038:47;66102:131;66228:4;66102:131;:::i;:::-;66094:139;;65821:419;;;:::o;66246:178::-;66386:30;66382:1;66374:6;66370:14;66363:54;66246:178;:::o;66430:366::-;66572:3;66593:67;66657:2;66652:3;66593:67;:::i;:::-;66586:74;;66669:93;66758:3;66669:93;:::i;:::-;66787:2;66782:3;66778:12;66771:19;;66430:366;;;:::o;66802:419::-;66968:4;67006:2;66995:9;66991:18;66983:26;;67055:9;67049:4;67045:20;67041:1;67030:9;67026:17;67019:47;67083:131;67209:4;67083:131;:::i;:::-;67075:139;;66802:419;;;:::o;67227:98::-;67278:6;67312:5;67306:12;67296:22;;67227:98;;;:::o;67331:168::-;67414:11;67448:6;67443:3;67436:19;67488:4;67483:3;67479:14;67464:29;;67331:168;;;;:::o;67505:360::-;67591:3;67619:38;67651:5;67619:38;:::i;:::-;67673:70;67736:6;67731:3;67673:70;:::i;:::-;67666:77;;67752:52;67797:6;67792:3;67785:4;67778:5;67774:16;67752:52;:::i;:::-;67829:29;67851:6;67829:29;:::i;:::-;67824:3;67820:39;67813:46;;67595:270;67505:360;;;;:::o;67871:640::-;68066:4;68104:3;68093:9;68089:19;68081:27;;68118:71;68186:1;68175:9;68171:17;68162:6;68118:71;:::i;:::-;68199:72;68267:2;68256:9;68252:18;68243:6;68199:72;:::i;:::-;68281;68349:2;68338:9;68334:18;68325:6;68281:72;:::i;:::-;68400:9;68394:4;68390:20;68385:2;68374:9;68370:18;68363:48;68428:76;68499:4;68490:6;68428:76;:::i;:::-;68420:84;;67871:640;;;;;;;:::o;68517:141::-;68573:5;68604:6;68598:13;68589:22;;68620:32;68646:5;68620:32;:::i;:::-;68517:141;;;;:::o;68664:349::-;68733:6;68782:2;68770:9;68761:7;68757:23;68753:32;68750:119;;;68788:79;;:::i;:::-;68750:119;68908:1;68933:63;68988:7;68979:6;68968:9;68964:22;68933:63;:::i;:::-;68923:73;;68879:127;68664:349;;;;:::o

Swarm Source

ipfs://d07ba0ce48e4e89ee1628a63d989f5ba0e531277b1299e733d89d6a20277f6b0

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

The Adventure Pass is your all access card to the Ape Liquid ecosystem where you can join in the Play2Earn NFT Game and earn passive METL our in game token.Holders of the Adventure Pass will get special access and giveaways within the project.Coming Soon: The Adventure Pas...

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.