OP Sepolia Testnet

Token

veNFT (veNFT)
ERC721

Overview

Max Total Supply

0 veNFT

Holders

0

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Balance
0 veNFT
0x0000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
VotingEscrow

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at sepolia-optimism.etherscan.io on 2023-11-01
*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

    /**
     * @dev 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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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


// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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://consensys.net/diligence/blog/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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}


pragma solidity ^0.8.0;

/// Modified IVotes interface for tokenId based voting
interface IVotes {
    /**
     * @dev Emitted when an account changes their delegate.
     */
    event DelegateChanged(address indexed delegator, uint256 indexed fromDelegate, uint256 indexed toDelegate);

    /**
     * @dev Emitted when a token transfer or delegate change results in changes to a delegate's number of votes.
     */
    event DelegateVotesChanged(address indexed delegate, uint256 previousBalance, uint256 newBalance);

    /**
     * @dev Returns the amount of votes that `tokenId` had at a specific moment in the past.
     *      If the account passed in is not the owner, returns 0.
     */
    function getPastVotes(address account, uint256 tokenId, uint256 timepoint) external view returns (uint256);

    /**
     * @dev Returns the total supply of votes available at a specific moment in the past. If the `clock()` is
     * configured to use block numbers, this will return the value the end of the corresponding block.
     *
     * NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes.
     * Votes that have not been delegated are still part of total supply, even though they would not participate in a
     * vote.
     */
    function getPastTotalSupply(uint256 timepoint) external view returns (uint256);

    /**
     * @dev Returns the delegate that `tokenId` has chosen. Can never be equal to the delegator's `tokenId`.
     *      Returns 0 if not delegated.
     */
    function delegates(uint256 tokenId) external view returns (uint256);

    /**
     * @dev Delegates votes from the sender to `delegatee`.
     */
    function delegate(uint256 delegator, uint256 delegatee) external;

    /**
     * @dev Delegates votes from `delegator` to `delegatee`. Signer must own `delegator`.
     */
    function delegateBySig(
        uint256 delegator,
        uint256 delegatee,
        uint256 nonce,
        uint256 expiry,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;
}



pragma solidity ^0.8.0;


/// @title EIP-721 Metadata Update Extension
interface IERC4906 is IERC165, IERC721 {
    /// @dev This event emits when the metadata of a token is changed.
    /// So that the third-party platforms such as NFT market could
    /// timely update the images and related attributes of the NFT.
    event MetadataUpdate(uint256 _tokenId);

    /// @dev This event emits when the metadata of a range of tokens is changed.
    /// So that the third-party platforms such as NFT market could
    /// timely update the images and related attributes of the NFTs.
    event BatchMetadataUpdate(uint256 _fromTokenId, uint256 _toTokenId);
}


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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


pragma solidity 0.8.19;


library BalanceLogicLibrary {
    uint256 internal constant WEEK = 1 weeks;

    /// @notice Binary search to get the user point index for a token id at or prior to a given timestamp
    /// @dev If a user point does not exist prior to the timestamp, this will return 0.
    /// @param _userPointEpoch State of all user point epochs
    /// @param _userPointHistory State of all user point history
    /// @param _tokenId .
    /// @param _timestamp .
    /// @return User point index
    function getPastUserPointIndex(
        mapping(uint256 => uint256) storage _userPointEpoch,
        mapping(uint256 => IVotingEscrow.UserPoint[1000000000]) storage _userPointHistory,
        uint256 _tokenId,
        uint256 _timestamp
    ) internal view returns (uint256) {
        uint256 _userEpoch = _userPointEpoch[_tokenId];
        if (_userEpoch == 0) return 0;
        // First check most recent balance
        if (_userPointHistory[_tokenId][_userEpoch].ts <= _timestamp) return (_userEpoch);
        // Next check implicit zero balance
        if (_userPointHistory[_tokenId][1].ts > _timestamp) return 0;

        uint256 lower = 0;
        uint256 upper = _userEpoch;
        while (upper > lower) {
            uint256 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
            IVotingEscrow.UserPoint storage userPoint = _userPointHistory[_tokenId][center];
            if (userPoint.ts == _timestamp) {
                return center;
            } else if (userPoint.ts < _timestamp) {
                lower = center;
            } else {
                upper = center - 1;
            }
        }
        return lower;
    }

    /// @notice Binary search to get the global point index at or prior to a given timestamp
    /// @dev If a checkpoint does not exist prior to the timestamp, this will return 0.
    /// @param _epoch Current global point epoch
    /// @param _pointHistory State of all global point history
    /// @param _timestamp .
    /// @return Global point index
    function getPastGlobalPointIndex(
        uint256 _epoch,
        mapping(uint256 => IVotingEscrow.GlobalPoint) storage _pointHistory,
        uint256 _timestamp
    ) internal view returns (uint256) {
        if (_epoch == 0) return 0;
        // First check most recent balance
        if (_pointHistory[_epoch].ts <= _timestamp) return (_epoch);
        // Next check implicit zero balance
        if (_pointHistory[1].ts > _timestamp) return 0;

        uint256 lower = 0;
        uint256 upper = _epoch;
        while (upper > lower) {
            uint256 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
            IVotingEscrow.GlobalPoint storage globalPoint = _pointHistory[center];
            if (globalPoint.ts == _timestamp) {
                return center;
            } else if (globalPoint.ts < _timestamp) {
                lower = center;
            } else {
                upper = center - 1;
            }
        }
        return lower;
    }

    /// @notice Get the current voting power for `_tokenId`
    /// @dev Adheres to the ERC20 `balanceOf` interface for Aragon compatibility
    ///      Fetches last user point prior to a certain timestamp, then walks forward to timestamp.
    /// @param _userPointEpoch State of all user point epochs
    /// @param _userPointHistory State of all user point history
    /// @param _tokenId NFT for lock
    /// @param _t Epoch time to return voting power at
    /// @return User voting power
    function balanceOfNFTAt(
        mapping(uint256 => uint256) storage _userPointEpoch,
        mapping(uint256 => IVotingEscrow.UserPoint[1000000000]) storage _userPointHistory,
        uint256 _tokenId,
        uint256 _t
    ) external view returns (uint256) {
        uint256 _epoch = getPastUserPointIndex(_userPointEpoch, _userPointHistory, _tokenId, _t);
        // epoch 0 is an empty point
        if (_epoch == 0) return 0;
        IVotingEscrow.UserPoint memory lastPoint = _userPointHistory[_tokenId][_epoch];
        if (lastPoint.permanent != 0) {
            return lastPoint.permanent;
        } else {
            lastPoint.bias -= lastPoint.slope * int128(int256(_t) - int256(lastPoint.ts));
            if (lastPoint.bias < 0) {
                lastPoint.bias = 0;
            }
            return uint256(int256(lastPoint.bias));
        }
    }

    /// @notice Calculate total voting power at some point in the past
    /// @param _slopeChanges State of all slopeChanges
    /// @param _pointHistory State of all global point history
    /// @param _epoch The epoch to start search from
    /// @param _t Time to calculate the total voting power at
    /// @return Total voting power at that time
    function supplyAt(
        mapping(uint256 => int128) storage _slopeChanges,
        mapping(uint256 => IVotingEscrow.GlobalPoint) storage _pointHistory,
        uint256 _epoch,
        uint256 _t
    ) external view returns (uint256) {
        uint256 epoch_ = getPastGlobalPointIndex(_epoch, _pointHistory, _t);
        // epoch 0 is an empty point
        if (epoch_ == 0) return 0;
        IVotingEscrow.GlobalPoint memory _point = _pointHistory[epoch_];
        int128 bias = _point.bias;
        int128 slope = _point.slope;
        uint256 ts = _point.ts;
        uint256 t_i = (ts / WEEK) * WEEK;
        for (uint256 i = 0; i < 255; ++i) {
            t_i += WEEK;
            int128 dSlope = 0;
            if (t_i > _t) {
                t_i = _t;
            } else {
                dSlope = _slopeChanges[t_i];
            }
            bias -= slope * int128(int256(t_i - ts));
            if (t_i == _t) {
                break;
            }
            slope += dSlope;
            ts = t_i;
        }

        if (bias < 0) {
            bias = 0;
        }
        return uint256(uint128(bias)) + _point.permanentLockBalance;
    }
}


pragma solidity 0.8.19;


library DelegationLogicLibrary {
    /// @notice Used by `_mint`, `_transferFrom`, `_burn` and `delegate`
    ///         to update delegator voting checkpoints.
    ///         Automatically dedelegates, then updates checkpoint.
    /// @dev This function depends on `_locked` and must be called prior to token state changes.
    ///      If you wish to dedelegate only, use `_delegate(tokenId, 0)` instead.
    /// @param _locked State of all locked balances
    /// @param _numCheckpoints State of all user checkpoint counts
    /// @param _checkpoints State of all user checkpoints
    /// @param _delegates State of all user delegatees
    /// @param _delegator The delegator to update checkpoints for
    /// @param _delegatee The new delegatee for the delegator. Cannot be equal to `_delegator` (use 0 instead).
    /// @param _owner The new (or current) owner for the delegator
    function checkpointDelegator(
        mapping(uint256 => IVotingEscrow.LockedBalance) storage _locked,
        mapping(uint256 => uint48) storage _numCheckpoints,
        mapping(uint256 => mapping(uint48 => IVotingEscrow.Checkpoint)) storage _checkpoints,
        mapping(uint256 => uint256) storage _delegates,
        uint256 _delegator,
        uint256 _delegatee,
        address _owner
    ) external {
        uint256 delegatedBalance = uint256(uint128(_locked[_delegator].amount));
        uint48 numCheckpoint = _numCheckpoints[_delegator];
        IVotingEscrow.Checkpoint storage cpOld = numCheckpoint > 0
            ? _checkpoints[_delegator][numCheckpoint - 1]
            : _checkpoints[_delegator][0];
        // Dedelegate from delegatee if delegated
        checkpointDelegatee(_numCheckpoints, _checkpoints, cpOld.delegatee, delegatedBalance, false);
        IVotingEscrow.Checkpoint storage cp = _checkpoints[_delegator][numCheckpoint];
        cp.fromTimestamp = block.timestamp;
        cp.delegatedBalance = cpOld.delegatedBalance;
        cp.delegatee = _delegatee;
        cp.owner = _owner;

        if (_isCheckpointInNewBlock(_numCheckpoints, _checkpoints, _delegator)) {
            _numCheckpoints[_delegator]++;
        } else {
            _checkpoints[_delegator][numCheckpoint - 1] = cp;
            delete _checkpoints[_delegator][numCheckpoint];
        }

        _delegates[_delegator] = _delegatee;
    }

    /// @notice Update delegatee's `delegatedBalance` by `balance`.
    ///         Only updates if delegating to a new delegatee.
    /// @dev If used with `balance` == `_locked[_tokenId].amount`, then this is the same as
    ///      delegating or dedelegating from `_tokenId`
    ///      If used with `balance` < `_locked[_tokenId].amount`, then this is used to adjust
    ///      `delegatedBalance` when a user's balance is modified (e.g. `increaseAmount`, `merge` etc).
    ///      If `delegatee` is 0 (i.e. user is not delegating), then do nothing.
    /// @param _numCheckpoints State of all user checkpoint counts
    /// @param _checkpoints State of all user checkpoints
    /// @param _delegatee The delegatee's tokenId
    /// @param balance_ The delta in balance change
    /// @param _increase True if balance is increasing, false if decreasing
    function checkpointDelegatee(
        mapping(uint256 => uint48) storage _numCheckpoints,
        mapping(uint256 => mapping(uint48 => IVotingEscrow.Checkpoint)) storage _checkpoints,
        uint256 _delegatee,
        uint256 balance_,
        bool _increase
    ) public {
        if (_delegatee == 0) return;
        uint48 numCheckpoint = _numCheckpoints[_delegatee];
        IVotingEscrow.Checkpoint storage cpOld = numCheckpoint > 0
            ? _checkpoints[_delegatee][numCheckpoint - 1]
            : _checkpoints[_delegatee][0];
        IVotingEscrow.Checkpoint storage cp = _checkpoints[_delegatee][numCheckpoint];
        cp.fromTimestamp = block.timestamp;
        cp.owner = cpOld.owner;
        // do not expect balance_ > cpOld.delegatedBalance when decrementing but just in case
        cp.delegatedBalance = _increase
            ? cpOld.delegatedBalance + balance_
            : (balance_ < cpOld.delegatedBalance ? cpOld.delegatedBalance - balance_ : 0);
        cp.delegatee = cpOld.delegatee;

        if (_isCheckpointInNewBlock(_numCheckpoints, _checkpoints, _delegatee)) {
            _numCheckpoints[_delegatee]++;
        } else {
            _checkpoints[_delegatee][numCheckpoint - 1] = cp;
            delete _checkpoints[_delegatee][numCheckpoint];
        }
    }

    function _isCheckpointInNewBlock(
        mapping(uint256 => uint48) storage _numCheckpoints,
        mapping(uint256 => mapping(uint48 => IVotingEscrow.Checkpoint)) storage _checkpoints,
        uint256 _tokenId
    ) internal view returns (bool) {
        uint48 _nCheckPoints = _numCheckpoints[_tokenId];

        if (_nCheckPoints > 0 && _checkpoints[_tokenId][_nCheckPoints - 1].fromTimestamp == block.timestamp) {
            return false;
        } else {
            return true;
        }
    }

    /// @notice Binary search to get the voting checkpoint for a token id at or prior to a given timestamp.
    /// @dev If a checkpoint does not exist prior to the timestamp, this will return 0.
    /// @param _numCheckpoints State of all user checkpoint counts
    /// @param _checkpoints State of all user checkpoints
    /// @param _tokenId .
    /// @param _timestamp .
    /// @return The index of the checkpoint.
    function getPastVotesIndex(
        mapping(uint256 => uint48) storage _numCheckpoints,
        mapping(uint256 => mapping(uint48 => IVotingEscrow.Checkpoint)) storage _checkpoints,
        uint256 _tokenId,
        uint256 _timestamp
    ) internal view returns (uint48) {
        uint48 nCheckpoints = _numCheckpoints[_tokenId];
        if (nCheckpoints == 0) return 0;
        // First check most recent balance
        if (_checkpoints[_tokenId][nCheckpoints - 1].fromTimestamp <= _timestamp) return (nCheckpoints - 1);
        // Next check implicit zero balance
        if (_checkpoints[_tokenId][0].fromTimestamp > _timestamp) return 0;

        uint48 lower = 0;
        uint48 upper = nCheckpoints - 1;
        while (upper > lower) {
            uint48 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
            IVotingEscrow.Checkpoint storage cp = _checkpoints[_tokenId][center];
            if (cp.fromTimestamp == _timestamp) {
                return center;
            } else if (cp.fromTimestamp < _timestamp) {
                lower = center;
            } else {
                upper = center - 1;
            }
        }
        return lower;
    }

    /// @notice Retrieves historical voting balance for a token id at a given timestamp.
    /// @dev If a checkpoint does not exist prior to the timestamp, this will return 0.
    ///      The user must also own the token at the time in order to receive a voting balance.
    /// @param _numCheckpoints State of all user checkpoint counts
    /// @param _checkpoints State of all user checkpoints
    /// @param _account .
    /// @param _tokenId .
    /// @param _timestamp .
    /// @return Total voting balance including delegations at a given timestamp.
    function getPastVotes(
        mapping(uint256 => uint48) storage _numCheckpoints,
        mapping(uint256 => mapping(uint48 => IVotingEscrow.Checkpoint)) storage _checkpoints,
        address _account,
        uint256 _tokenId,
        uint256 _timestamp
    ) external view returns (uint256) {
        uint48 _checkIndex = getPastVotesIndex(_numCheckpoints, _checkpoints, _tokenId, _timestamp);
        IVotingEscrow.Checkpoint memory lastCheckpoint = _checkpoints[_tokenId][_checkIndex];
        // If no point exists prior to the given timestamp, return 0
        if (lastCheckpoint.fromTimestamp > _timestamp) return 0;
        // Check ownership
        if (_account != lastCheckpoint.owner) return 0;
        uint256 votes = lastCheckpoint.delegatedBalance;
        return
            lastCheckpoint.delegatee == 0
                ? votes + IVotingEscrow(address(this)).balanceOfNFTAt(_tokenId, _timestamp)
                : votes;
    }
}


// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @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() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}


// OpenZeppelin Contracts (last updated v4.7.0) (metatx/ERC2771Context.sol)

pragma solidity ^0.8.9;


/**
 * @dev Context variant with ERC2771 support.
 */
abstract contract ERC2771Context is Context {
    /// @custom:oz-upgrades-unsafe-allow state-variable-immutable
    address private immutable _trustedForwarder;

    /// @custom:oz-upgrades-unsafe-allow constructor
    constructor(address trustedForwarder) {
        _trustedForwarder = trustedForwarder;
    }

    function isTrustedForwarder(address forwarder) public view virtual returns (bool) {
        return forwarder == _trustedForwarder;
    }

    function _msgSender() internal view virtual override returns (address sender) {
        if (isTrustedForwarder(msg.sender)) {
            // The assembly code is more direct than the Solidity version using `abi.decode`.
            /// @solidity memory-safe-assembly
            assembly {
                sender := shr(96, calldataload(sub(calldatasize(), 20)))
            }
        } else {
            return super._msgSender();
        }
    }

    function _msgData() internal view virtual override returns (bytes calldata) {
        if (isTrustedForwarder(msg.sender)) {
            return msg.data[:msg.data.length - 20];
        } else {
            return super._msgData();
        }
    }
}


pragma solidity ^0.8.0;

interface IManagedRewardsFactory {
    event ManagedRewardCreated(
        address indexed voter,
        address indexed lockedManagedReward,
        address indexed freeManagedReward
    );

    /// @notice creates a LockedManagedReward and a FreeManagedReward contract for a managed veNFT
    /// @param _forwarder Address of trusted forwarder
    /// @param _voter Address of Voter.sol
    /// @return lockedManagedReward Address of LockedManagedReward contract created
    /// @return freeManagedReward   Address of FreeManagedReward contract created
    function createRewards(
        address _forwarder,
        address _voter
    ) external returns (address lockedManagedReward, address freeManagedReward);
}


pragma solidity ^0.8.0;

interface IFactoryRegistry {
    error FallbackFactory();
    error InvalidFactoriesToPoolFactory();
    error PathAlreadyApproved();
    error PathNotApproved();
    error SameAddress();
    error ZeroAddress();

    event Approve(address indexed poolFactory, address indexed votingRewardsFactory, address indexed gaugeFactory);
    event Unapprove(address indexed poolFactory, address indexed votingRewardsFactory, address indexed gaugeFactory);
    event SetManagedRewardsFactory(address indexed _newRewardsFactory);

    /// @notice Approve a set of factories used in Velodrome Protocol.
    ///         Router.sol is able to swap any poolFactories currently approved.
    ///         Cannot approve address(0) factories.
    ///         Cannot aprove path that is already approved.
    ///         Each poolFactory has one unique set and maintains state.  In the case a poolFactory is unapproved
    ///             and then re-approved, the same set of factories must be used.  In other words, you cannot overwrite
    ///             the factories tied to a poolFactory address.
    ///         VotingRewardsFactories and GaugeFactories may use the same address across multiple poolFactories.
    /// @dev Callable by onlyOwner
    /// @param poolFactory .
    /// @param votingRewardsFactory .
    /// @param gaugeFactory .
    function approve(address poolFactory, address votingRewardsFactory, address gaugeFactory) external;

    /// @notice Unapprove a set of factories used in Velodrome Protocol.
    ///         While a poolFactory is unapproved, Router.sol cannot swap with pools made from the corresponding factory
    ///         Can only unapprove an approved path.
    ///         Cannot unapprove the fallback path (core v2 factories).
    /// @dev Callable by onlyOwner
    /// @param poolFactory .
    function unapprove(address poolFactory) external;

    /// @notice Factory to create free and locked rewards for a managed veNFT
    function managedRewardsFactory() external view returns (address);

    /// @notice Set the rewards factory address
    /// @dev Callable by onlyOwner
    /// @param _newManagedRewardsFactory address of new managedRewardsFactory
    function setManagedRewardsFactory(address _newManagedRewardsFactory) external;

    /// @notice Get the factories correlated to a poolFactory.
    ///         Once set, this can never be modified.
    ///         Returns the correlated factories even after an approved poolFactory is unapproved.
    function factoriesToPoolFactory(
        address poolFactory
    ) external view returns (address votingRewardsFactory, address gaugeFactory);

    /// @notice Get all PoolFactories approved by the registry
    /// @dev The same PoolFactory address cannot be used twice
    /// @return Array of PoolFactory addresses
    function poolFactories() external view returns (address[] memory);

    /// @notice Check if a PoolFactory is approved within the factory registry.  Router uses this method to
    ///         ensure a pool swapped from is approved.
    /// @param poolFactory .
    /// @return True if PoolFactory is approved, else false
    function isPoolFactoryApproved(address poolFactory) external view returns (bool);

    /// @notice Get the length of the poolFactories array
    function poolFactoriesLength() external view returns (uint256);
}


pragma solidity ^0.8.0;

interface IReward {
    error InvalidReward();
    error NotAuthorized();
    error NotGauge();
    error NotEscrowToken();
    error NotSingleToken();
    error NotVotingEscrow();
    error NotWhitelisted();
    error ZeroAmount();

    event Deposit(address indexed from, uint256 indexed tokenId, uint256 amount);
    event Withdraw(address indexed from, uint256 indexed tokenId, uint256 amount);
    event NotifyReward(address indexed from, address indexed reward, uint256 indexed epoch, uint256 amount);
    event ClaimRewards(address indexed from, address indexed reward, uint256 amount);

    /// @notice Deposit an amount into the rewards contract to earn future rewards associated to a veNFT
    /// @dev Internal notation used as only callable internally by `authorized`.
    /// @param amount   Amount deposited for the veNFT
    /// @param tokenId  Unique identifier of the veNFT
    function _deposit(uint256 amount, uint256 tokenId) external;

    /// @notice Withdraw an amount from the rewards contract associated to a veNFT
    /// @dev Internal notation used as only callable internally by `authorized`.
    /// @param amount   Amount deposited for the veNFT
    /// @param tokenId  Unique identifier of the veNFT
    function _withdraw(uint256 amount, uint256 tokenId) external;

    /// @notice Claim the rewards earned by a veNFT staker
    /// @param tokenId  Unique identifier of the veNFT
    /// @param tokens   Array of tokens to claim rewards of
    function getReward(uint256 tokenId, address[] memory tokens) external;

    /// @notice Add rewards for stakers to earn
    /// @param token    Address of token to reward
    /// @param amount   Amount of token to transfer to rewards
    function notifyRewardAmount(address token, uint256 amount) external;

    /// @notice Determine the prior balance for an account as of a block number
    /// @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
    /// @param tokenId      The token of the NFT to check
    /// @param timestamp    The timestamp to get the balance at
    /// @return The balance the account had as of the given block
    function getPriorBalanceIndex(uint256 tokenId, uint256 timestamp) external view returns (uint256);

    /// @notice Determine the prior index of supply staked by of a timestamp
    /// @dev Timestamp must be <= current timestamp
    /// @param timestamp The timestamp to get the index at
    /// @return Index of supply checkpoint
    function getPriorSupplyIndex(uint256 timestamp) external view returns (uint256);

    /// @notice Calculate how much in rewards are earned for a specific token and veNFT
    /// @param token Address of token to fetch rewards of
    /// @param tokenId Unique identifier of the veNFT
    /// @return Amount of token earned in rewards
    function earned(address token, uint256 tokenId) external view returns (uint256);
}


// OpenZeppelin Contracts (interfaces/IERC6372.sol)

pragma solidity ^0.8.0;

interface IERC6372 {
    /**
     * @dev Clock used for flagging checkpoints. Can be overridden to implement timestamp based checkpoints (and voting).
     */
    function clock() external view returns (uint48);

    /**
     * @dev Description of the clock
     */
    // solhint-disable-next-line func-name-mixedcase
    function CLOCK_MODE() external view returns (string memory);
}


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;


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

    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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


pragma solidity ^0.8.0;

interface IVoter {
    error AlreadyVotedOrDeposited();
    error DistributeWindow();
    error FactoryPathNotApproved();
    error GaugeAlreadyKilled();
    error GaugeAlreadyRevived();
    error GaugeExists();
    error GaugeDoesNotExist(address _pool);
    error GaugeNotAlive(address _gauge);
    error InactiveManagedNFT();
    error MaximumVotingNumberTooLow();
    error NonZeroVotes();
    error NotAPool();
    error NotApprovedOrOwner();
    error NotGovernor();
    error NotEmergencyCouncil();
    error NotMinter();
    error NotWhitelistedNFT();
    error NotWhitelistedToken();
    error SameValue();
    error SpecialVotingWindow();
    error TooManyPools();
    error UnequalLengths();
    error ZeroBalance();
    error ZeroAddress();

    event GaugeCreated(
        address indexed poolFactory,
        address indexed votingRewardsFactory,
        address indexed gaugeFactory,
        address pool,
        address bribeVotingReward,
        address feeVotingReward,
        address gauge,
        address creator
    );
    event GaugeKilled(address indexed gauge);
    event GaugeRevived(address indexed gauge);
    event Voted(
        address indexed voter,
        address indexed pool,
        uint256 indexed tokenId,
        uint256 weight,
        uint256 totalWeight,
        uint256 timestamp
    );
    event Abstained(
        address indexed voter,
        address indexed pool,
        uint256 indexed tokenId,
        uint256 weight,
        uint256 totalWeight,
        uint256 timestamp
    );
    event NotifyReward(address indexed sender, address indexed reward, uint256 amount);
    event DistributeReward(address indexed sender, address indexed gauge, uint256 amount);
    event WhitelistToken(address indexed whitelister, address indexed token, bool indexed _bool);
    event WhitelistNFT(address indexed whitelister, uint256 indexed tokenId, bool indexed _bool);

    // mappings
    function gauges(address pool) external view returns (address);

    function poolForGauge(address gauge) external view returns (address);

    function gaugeToFees(address gauge) external view returns (address);

    function gaugeToBribe(address gauge) external view returns (address);

    function weights(address pool) external view returns (uint256);

    function votes(uint256 tokenId, address pool) external view returns (uint256);

    function usedWeights(uint256 tokenId) external view returns (uint256);

    function lastVoted(uint256 tokenId) external view returns (uint256);

    function isGauge(address) external view returns (bool);

    function isWhitelistedToken(address token) external view returns (bool);

    function isWhitelistedNFT(uint256 tokenId) external view returns (bool);

    function isAlive(address gauge) external view returns (bool);

    function ve() external view returns (address);

    function governor() external view returns (address);

    function epochGovernor() external view returns (address);

    function emergencyCouncil() external view returns (address);

    function length() external view returns (uint256);

    /// @notice Called by Minter to distribute weekly emissions rewards for disbursement amongst gauges.
    /// @dev Assumes totalWeight != 0 (Will never be zero as long as users are voting).
    ///      Throws if not called by minter.
    /// @param _amount Amount of rewards to distribute.
    function notifyRewardAmount(uint256 _amount) external;

    /// @dev Utility to distribute to gauges of pools in range _start to _finish.
    /// @param _start   Starting index of gauges to distribute to.
    /// @param _finish  Ending index of gauges to distribute to.
    function distribute(uint256 _start, uint256 _finish) external;

    /// @dev Utility to distribute to gauges of pools in array.
    /// @param _gauges Array of gauges to distribute to.
    function distribute(address[] memory _gauges) external;

    /// @notice Called by users to update voting balances in voting rewards contracts.
    /// @param _tokenId Id of veNFT whose balance you wish to update.
    function poke(uint256 _tokenId) external;

    /// @notice Called by users to vote for pools. Votes distributed proportionally based on weights.
    ///         Can only vote or deposit into a managed NFT once per epoch.
    ///         Can only vote for gauges that have not been killed.
    /// @dev Weights are distributed proportional to the sum of the weights in the array.
    ///      Throws if length of _poolVote and _weights do not match.
    /// @param _tokenId     Id of veNFT you are voting with.
    /// @param _poolVote    Array of pools you are voting for.
    /// @param _weights     Weights of pools.
    function vote(uint256 _tokenId, address[] calldata _poolVote, uint256[] calldata _weights) external;

    /// @notice Called by users to reset voting state. Required if you wish to make changes to
    ///         veNFT state (e.g. merge, split, deposit into managed etc).
    ///         Cannot reset in the same epoch that you voted in.
    ///         Can vote or deposit into a managed NFT again after reset.
    /// @param _tokenId Id of veNFT you are reseting.
    function reset(uint256 _tokenId) external;

    /// @notice Called by users to deposit into a managed NFT.
    ///         Can only vote or deposit into a managed NFT once per epoch.
    ///         Note that NFTs deposited into a managed NFT will be re-locked
    ///         to the maximum lock time on withdrawal.
    /// @dev Throws if not approved or owner.
    ///      Throws if managed NFT is inactive.
    ///      Throws if depositing within privileged window (one hour prior to epoch flip).
    function depositManaged(uint256 _tokenId, uint256 _mTokenId) external;

    /// @notice Called by users to withdraw from a managed NFT.
    ///         Cannot do it in the same epoch that you deposited into a managed NFT.
    ///         Can vote or deposit into a managed NFT again after withdrawing.
    ///         Note that the NFT withdrawn is re-locked to the maximum lock time.
    function withdrawManaged(uint256 _tokenId) external;

    /// @notice Claim emissions from gauges.
    /// @param _gauges Array of gauges to collect emissions from.
    function claimRewards(address[] memory _gauges) external;

    /// @notice Claim bribes for a given NFT.
    /// @dev Utility to help batch bribe claims.
    /// @param _bribes  Array of BribeVotingReward contracts to collect from.
    /// @param _tokens  Array of tokens that are used as bribes.
    /// @param _tokenId Id of veNFT that you wish to claim bribes for.
    function claimBribes(address[] memory _bribes, address[][] memory _tokens, uint256 _tokenId) external;

    /// @notice Claim fees for a given NFT.
    /// @dev Utility to help batch fee claims.
    /// @param _fees    Array of FeesVotingReward contracts to collect from.
    /// @param _tokens  Array of tokens that are used as fees.
    /// @param _tokenId Id of veNFT that you wish to claim fees for.
    function claimFees(address[] memory _fees, address[][] memory _tokens, uint256 _tokenId) external;

    /// @notice Set new governor.
    /// @dev Throws if not called by governor.
    /// @param _governor .
    function setGovernor(address _governor) external;

    /// @notice Set new epoch based governor.
    /// @dev Throws if not called by governor.
    /// @param _epochGovernor .
    function setEpochGovernor(address _epochGovernor) external;

    /// @notice Set new emergency council.
    /// @dev Throws if not called by emergency council.
    /// @param _emergencyCouncil .
    function setEmergencyCouncil(address _emergencyCouncil) external;

    /// @notice Whitelist (or unwhitelist) token for use in bribes.
    /// @dev Throws if not called by governor.
    /// @param _token .
    /// @param _bool .
    function whitelistToken(address _token, bool _bool) external;

    /// @notice Whitelist (or unwhitelist) token id for voting in last hour prior to epoch flip.
    /// @dev Throws if not called by governor.
    ///      Throws if already whitelisted.
    /// @param _tokenId .
    /// @param _bool .
    function whitelistNFT(uint256 _tokenId, bool _bool) external;

    /// @notice Create a new gauge (unpermissioned).
    /// @dev Governor can create a new gauge for a pool with any address.
    /// @dev V1 gauges can only be created by governor.
    /// @param _poolFactory .
    /// @param _pool .
    function createGauge(address _poolFactory, address _pool) external returns (address);

    /// @notice Kills a gauge. The gauge will not receive any new emissions and cannot be deposited into.
    ///         Can still withdraw from gauge.
    /// @dev Throws if not called by emergency council.
    ///      Throws if gauge already killed.
    /// @param _gauge .
    function killGauge(address _gauge) external;

    /// @notice Revives a killed gauge. Gauge will can receive emissions and deposits again.
    /// @dev Throws if not called by emergency council.
    ///      Throws if gauge is not killed.
    /// @param _gauge .
    function reviveGauge(address _gauge) external;

    /// @dev Update claims to emissions for an array of gauges.
    /// @param _gauges Array of gauges to update emissions for.
    function updateFor(address[] memory _gauges) external;

    /// @dev Update claims to emissions for gauges based on their pool id as stored in Voter.
    /// @param _start   Starting index of pools.
    /// @param _end     Ending index of pools.
    function updateFor(uint256 _start, uint256 _end) external;

    /// @dev Update claims to emissions for single gauge
    /// @param _gauge .
    function updateFor(address _gauge) external;
}


pragma solidity ^0.8.0;


interface IVotingEscrow is IVotes, IERC4906, IERC721Metadata {
    struct LockedBalance {
        int128 amount;
        uint256 end;
        bool isPermanent;
    }

    struct UserPoint {
        int128 bias;
        int128 slope; // # -dweight / dt
        uint256 ts;
        uint256 blk; // block
        uint256 permanent;
    }

    struct GlobalPoint {
        int128 bias;
        int128 slope; // # -dweight / dt
        uint256 ts;
        uint256 blk; // block
        uint256 permanentLockBalance;
    }

    /// @notice A checkpoint for recorded delegated voting weights at a certain timestamp
    struct Checkpoint {
        uint256 fromTimestamp;
        address owner;
        uint256 delegatedBalance;
        uint256 delegatee;
    }

    enum DepositType {
        DEPOSIT_FOR_TYPE,
        CREATE_LOCK_TYPE,
        INCREASE_LOCK_AMOUNT,
        INCREASE_UNLOCK_TIME
    }

    /// @dev Different types of veNFTs:
    /// NORMAL  - typical veNFT
    /// LOCKED  - veNFT which is locked into a MANAGED veNFT
    /// MANAGED - veNFT which can accept the deposit of NORMAL veNFTs
    enum EscrowType {
        NORMAL,
        LOCKED,
        MANAGED
    }

    error AlreadyVoted();
    error AmountTooBig();
    error ERC721ReceiverRejectedTokens();
    error ERC721TransferToNonERC721ReceiverImplementer();
    error InvalidNonce();
    error InvalidSignature();
    error InvalidSignatureS();
    error InvalidManagedNFTId();
    error LockDurationNotInFuture();
    error LockDurationTooLong();
    error LockExpired();
    error LockNotExpired();
    error NoLockFound();
    error NonExistentToken();
    error NotApprovedOrOwner();
    error NotDistributor();
    error NotEmergencyCouncilOrGovernor();
    error NotGovernor();
    error NotGovernorOrManager();
    error NotManagedNFT();
    error NotManagedOrNormalNFT();
    error NotLockedNFT();
    error NotNormalNFT();
    error NotPermanentLock();
    error NotOwner();
    error NotTeam();
    error NotVoter();
    error OwnershipChange();
    error PermanentLock();
    error SameAddress();
    error SameNFT();
    error SameState();
    error SplitNoOwner();
    error SplitNotAllowed();
    error SignatureExpired();
    error TooManyTokenIDs();
    error ZeroAddress();
    error ZeroAmount();
    error ZeroBalance();

    event Deposit(
        address indexed provider,
        uint256 indexed tokenId,
        DepositType indexed depositType,
        uint256 value,
        uint256 locktime,
        uint256 ts
    );
    event Withdraw(address indexed provider, uint256 indexed tokenId, uint256 value, uint256 ts);
    event LockPermanent(address indexed _owner, uint256 indexed _tokenId, uint256 amount, uint256 _ts);
    event UnlockPermanent(address indexed _owner, uint256 indexed _tokenId, uint256 amount, uint256 _ts);
    event Supply(uint256 prevSupply, uint256 supply);
    event Merge(
        address indexed _sender,
        uint256 indexed _from,
        uint256 indexed _to,
        uint256 _amountFrom,
        uint256 _amountTo,
        uint256 _amountFinal,
        uint256 _locktime,
        uint256 _ts
    );
    event Split(
        uint256 indexed _from,
        uint256 indexed _tokenId1,
        uint256 indexed _tokenId2,
        address _sender,
        uint256 _splitAmount1,
        uint256 _splitAmount2,
        uint256 _locktime,
        uint256 _ts
    );
    event CreateManaged(
        address indexed _to,
        uint256 indexed _mTokenId,
        address indexed _from,
        address _lockedManagedReward,
        address _freeManagedReward
    );
    event DepositManaged(
        address indexed _owner,
        uint256 indexed _tokenId,
        uint256 indexed _mTokenId,
        uint256 _weight,
        uint256 _ts
    );
    event WithdrawManaged(
        address indexed _owner,
        uint256 indexed _tokenId,
        uint256 indexed _mTokenId,
        uint256 _weight,
        uint256 _ts
    );
    event SetAllowedManager(address indexed _allowedManager);

    // State variables
    function factoryRegistry() external view returns (address);

    function token() external view returns (address);

    function distributor() external view returns (address);

    function voter() external view returns (address);

    function team() external view returns (address);

    function artProxy() external view returns (address);

    function allowedManager() external view returns (address);

    function tokenId() external view returns (uint256);

    /*///////////////////////////////////////////////////////////////
                            MANAGED NFT STORAGE
    //////////////////////////////////////////////////////////////*/

    /// @dev Mapping of token id to escrow type
    ///      Takes advantage of the fact default value is EscrowType.NORMAL
    function escrowType(uint256 tokenId) external view returns (EscrowType);

    /// @dev Mapping of token id to managed id
    function idToManaged(uint256 tokenId) external view returns (uint256 managedTokenId);

    /// @dev Mapping of user token id to managed token id to weight of token id
    function weights(uint256 tokenId, uint256 managedTokenId) external view returns (uint256 weight);

    /// @dev Mapping of managed id to deactivated state
    function deactivated(uint256 tokenId) external view returns (bool inactive);

    /// @dev Mapping from managed nft id to locked managed rewards
    ///      `token` denominated rewards (rebases/rewards) stored in locked managed rewards contract
    ///      to prevent co-mingling of assets
    function managedToLocked(uint256 tokenId) external view returns (address);

    /// @dev Mapping from managed nft id to free managed rewards contract
    ///      these rewards can be freely withdrawn by users
    function managedToFree(uint256 tokenId) external view returns (address);

    /*///////////////////////////////////////////////////////////////
                            MANAGED NFT LOGIC
    //////////////////////////////////////////////////////////////*/

    /// @notice Create managed NFT (a permanent lock) for use within ecosystem.
    /// @dev Throws if address already owns a managed NFT.
    /// @return _mTokenId managed token id.
    function createManagedLockFor(address _to) external returns (uint256 _mTokenId);

    /// @notice Delegates balance to managed nft
    ///         Note that NFTs deposited into a managed NFT will be re-locked
    ///         to the maximum lock time on withdrawal.
    ///         Permanent locks that are deposited will automatically unlock.
    /// @dev Managed nft will remain max-locked as long as there is at least one
    ///      deposit or withdrawal per week.
    ///      Throws if deposit nft is managed.
    ///      Throws if recipient nft is not managed.
    ///      Throws if deposit nft is already locked.
    ///      Throws if not called by voter.
    /// @param _tokenId tokenId of NFT being deposited
    /// @param _mTokenId tokenId of managed NFT that will receive the deposit
    function depositManaged(uint256 _tokenId, uint256 _mTokenId) external;

    /// @notice Retrieves locked rewards and withdraws balance from managed nft.
    ///         Note that the NFT withdrawn is re-locked to the maximum lock time.
    /// @dev Throws if NFT not locked.
    ///      Throws if not called by voter.
    /// @param _tokenId tokenId of NFT being deposited.
    function withdrawManaged(uint256 _tokenId) external;

    /// @notice Permit one address to call createManagedLockFor() that is not Voter.governor()
    function setAllowedManager(address _allowedManager) external;

    /// @notice Set Managed NFT state. Inactive NFTs cannot be deposited into.
    /// @param _mTokenId managed nft state to set
    /// @param _state true => inactive, false => active
    function setManagedState(uint256 _mTokenId, bool _state) external;

    /*///////////////////////////////////////////////////////////////
                             METADATA STORAGE
    //////////////////////////////////////////////////////////////*/

    function name() external view returns (string memory);

    function symbol() external view returns (string memory);

    function version() external view returns (string memory);

    function decimals() external view returns (uint8);

    function setTeam(address _team) external;

    function setArtProxy(address _proxy) external;

    /// @inheritdoc IERC721Metadata
    function tokenURI(uint256 tokenId) external view returns (string memory);

    /*//////////////////////////////////////////////////////////////
                      ERC721 BALANCE/OWNER STORAGE
    //////////////////////////////////////////////////////////////*/

    /// @dev Mapping from owner address to mapping of index to tokenId
    function ownerToNFTokenIdList(address _owner, uint256 _index) external view returns (uint256 _tokenId);

    /// @inheritdoc IERC721
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /// @inheritdoc IERC721
    function balanceOf(address owner) external view returns (uint256 balance);

    /*//////////////////////////////////////////////////////////////
                         ERC721 APPROVAL STORAGE
    //////////////////////////////////////////////////////////////*/

    /// @inheritdoc IERC721
    function getApproved(uint256 _tokenId) external view returns (address operator);

    /// @inheritdoc IERC721
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /// @notice Check whether spender is owner or an approved user for a given veNFT
    /// @param _spender .
    /// @param _tokenId .
    function isApprovedOrOwner(address _spender, uint256 _tokenId) external returns (bool);

    /*//////////////////////////////////////////////////////////////
                              ERC721 LOGIC
    //////////////////////////////////////////////////////////////*/

    /// @inheritdoc IERC721
    function approve(address to, uint256 tokenId) external;

    /// @inheritdoc IERC721
    function setApprovalForAll(address operator, bool approved) external;

    /// @inheritdoc IERC721
    function transferFrom(address from, address to, uint256 tokenId) external;

    /// @inheritdoc IERC721
    function safeTransferFrom(address from, address to, uint256 tokenId) external;

    /// @inheritdoc IERC721
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;

    /*//////////////////////////////////////////////////////////////
                              ERC165 LOGIC
    //////////////////////////////////////////////////////////////*/

    function supportsInterface(bytes4 _interfaceID) external view returns (bool);

    /*//////////////////////////////////////////////////////////////
                             ESCROW STORAGE
    //////////////////////////////////////////////////////////////*/

    function epoch() external view returns (uint256);

    function supply() external view returns (uint256);

    function userPointEpoch(uint256 _tokenId) external view returns (uint256 _epoch);

    /// @notice time -> signed slope change
    function slopeChanges(uint256 _timestamp) external view returns (int128);

    /// @notice account -> can split
    function canSplit(address _account) external view returns (bool);

    /// @notice Global point history at a given index
    function pointHistory(uint256 _loc) external view returns (GlobalPoint memory);

    /// @notice Get the LockedBalance (amount, end) of a _tokenId
    /// @param _tokenId .
    /// @return LockedBalance of _tokenId
    function locked(uint256 _tokenId) external view returns (LockedBalance memory);

    /// @notice User -> UserPoint[userEpoch]
    function userPointHistory(uint256 _tokenId, uint256 _loc) external view returns (UserPoint memory);

    /*//////////////////////////////////////////////////////////////
                              ESCROW LOGIC
    //////////////////////////////////////////////////////////////*/

    /// @notice Record global data to checkpoint
    function checkpoint() external;

    /// @notice Deposit `_value` tokens for `_tokenId` and add to the lock
    /// @dev Anyone (even a smart contract) can deposit for someone else, but
    ///      cannot extend their locktime and deposit for a brand new user
    /// @param _tokenId lock NFT
    /// @param _value Amount to add to user's lock
    function depositFor(uint256 _tokenId, uint256 _value) external;

    /// @notice Deposit `_value` tokens for `msg.sender` and lock for `_lockDuration`
    /// @param _value Amount to deposit
    /// @param _lockDuration Number of seconds to lock tokens for (rounded down to nearest week)
    /// @return TokenId of created veNFT
    function createLock(uint256 _value, uint256 _lockDuration) external returns (uint256);

    /// @notice Deposit `_value` tokens for `_to` and lock for `_lockDuration`
    /// @param _value Amount to deposit
    /// @param _lockDuration Number of seconds to lock tokens for (rounded down to nearest week)
    /// @param _to Address to deposit
    /// @return TokenId of created veNFT
    function createLockFor(uint256 _value, uint256 _lockDuration, address _to) external returns (uint256);

    /// @notice Deposit `_value` additional tokens for `_tokenId` without modifying the unlock time
    /// @param _value Amount of tokens to deposit and add to the lock
    function increaseAmount(uint256 _tokenId, uint256 _value) external;

    /// @notice Extend the unlock time for `_tokenId`
    ///         Cannot extend lock time of permanent locks
    /// @param _lockDuration New number of seconds until tokens unlock
    function increaseUnlockTime(uint256 _tokenId, uint256 _lockDuration) external;

    /// @notice Withdraw all tokens for `_tokenId`
    /// @dev Only possible if the lock is both expired and not permanent
    ///      This will burn the veNFT. Any rebases or rewards that are unclaimed
    ///      will no longer be claimable. Claim all rebases and rewards prior to calling this.
    function withdraw(uint256 _tokenId) external;

    /// @notice Merges `_from` into `_to`.
    /// @dev Cannot merge `_from` locks that are permanent or have already voted this epoch.
    ///      Cannot merge `_to` locks that have already expired.
    ///      This will burn the veNFT. Any rebases or rewards that are unclaimed
    ///      will no longer be claimable. Claim all rebases and rewards prior to calling this.
    /// @param _from VeNFT to merge from.
    /// @param _to VeNFT to merge into.
    function merge(uint256 _from, uint256 _to) external;

    /// @notice Splits veNFT into two new veNFTS - one with oldLocked.amount - `_amount`, and the second with `_amount`
    /// @dev    This burns the tokenId of the target veNFT
    ///         Callable by approved or owner
    ///         If this is called by approved, approved will not have permissions to manipulate the newly created veNFTs
    ///         Returns the two new split veNFTs to owner
    ///         If `from` is permanent, will automatically dedelegate.
    ///         This will burn the veNFT. Any rebases or rewards that are unclaimed
    ///         will no longer be claimable. Claim all rebases and rewards prior to calling this.
    /// @param _from VeNFT to split.
    /// @param _amount Amount to split from veNFT.
    /// @return _tokenId1 Return tokenId of veNFT with oldLocked.amount - `_amount`.
    /// @return _tokenId2 Return tokenId of veNFT with `_amount`.
    function split(uint256 _from, uint256 _amount) external returns (uint256 _tokenId1, uint256 _tokenId2);

    /// @notice Toggle split for a specific veNFT.
    /// @dev Toggle split for address(0) to enable or disable for all.
    /// @param _account Address to toggle split permissions
    /// @param _bool True to allow, false to disallow
    function toggleSplit(address _account, bool _bool) external;

    /// @notice Permanently lock a veNFT. Voting power will be equal to
    ///         `LockedBalance.amount` with no decay. Required to delegate.
    /// @dev Only callable by unlocked normal veNFTs.
    /// @param _tokenId tokenId to lock.
    function lockPermanent(uint256 _tokenId) external;

    /// @notice Unlock a permanently locked veNFT. Voting power will decay.
    ///         Will automatically dedelegate if delegated.
    /// @dev Only callable by permanently locked veNFTs.
    ///      Cannot unlock if already voted this epoch.
    /// @param _tokenId tokenId to unlock.
    function unlockPermanent(uint256 _tokenId) external;

    /*///////////////////////////////////////////////////////////////
                           GAUGE VOTING STORAGE
    //////////////////////////////////////////////////////////////*/

    /// @notice Get the voting power for _tokenId at the current timestamp
    /// @dev Returns 0 if called in the same block as a transfer.
    /// @param _tokenId .
    /// @return Voting power
    function balanceOfNFT(uint256 _tokenId) external view returns (uint256);

    /// @notice Get the voting power for _tokenId at a given timestamp
    /// @param _tokenId .
    /// @param _t Timestamp to query voting power
    /// @return Voting power
    function balanceOfNFTAt(uint256 _tokenId, uint256 _t) external view returns (uint256);

    /// @notice Calculate total voting power at current timestamp
    /// @return Total voting power at current timestamp
    function totalSupply() external view returns (uint256);

    /// @notice Calculate total voting power at a given timestamp
    /// @param _t Timestamp to query total voting power
    /// @return Total voting power at given timestamp
    function totalSupplyAt(uint256 _t) external view returns (uint256);

    /*///////////////////////////////////////////////////////////////
                            GAUGE VOTING LOGIC
    //////////////////////////////////////////////////////////////*/

    /// @notice See if a queried _tokenId has actively voted
    /// @param _tokenId .
    /// @return True if voted, else false
    function voted(uint256 _tokenId) external view returns (bool);

    /// @notice Set the global state voter and distributor
    /// @dev This is only called once, at setup
    function setVoterAndDistributor(address _voter, address _distributor) external;

    /// @notice Set `voted` for _tokenId to true or false
    /// @dev Only callable by voter
    /// @param _tokenId .
    /// @param _voted .
    function voting(uint256 _tokenId, bool _voted) external;

    /*///////////////////////////////////////////////////////////////
                            DAO VOTING STORAGE
    //////////////////////////////////////////////////////////////*/

    /// @notice The number of checkpoints for each tokenId
    function numCheckpoints(uint256 tokenId) external view returns (uint48);

    /// @notice A record of states for signing / validating signatures
    function nonces(address account) external view returns (uint256);

    /// @inheritdoc IVotes
    function delegates(uint256 delegator) external view returns (uint256);

    /// @notice A record of delegated token checkpoints for each account, by index
    /// @param tokenId .
    /// @param index .
    /// @return Checkpoint
    function checkpoints(uint256 tokenId, uint48 index) external view returns (Checkpoint memory);

    /// @inheritdoc IVotes
    function getPastVotes(address account, uint256 tokenId, uint256 timestamp) external view returns (uint256);

    /// @inheritdoc IVotes
    function getPastTotalSupply(uint256 timestamp) external view returns (uint256);

    /*///////////////////////////////////////////////////////////////
                             DAO VOTING LOGIC
    //////////////////////////////////////////////////////////////*/

    /// @inheritdoc IVotes
    function delegate(uint256 delegator, uint256 delegatee) external;

    /// @inheritdoc IVotes
    function delegateBySig(
        uint256 delegator,
        uint256 delegatee,
        uint256 nonce,
        uint256 expiry,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;
}


pragma solidity ^0.8.0;

interface IVeArtProxy {
    /// @dev Art configuration
    struct Config {
        // NFT metadata variables
        int256 _tokenId;
        int256 _balanceOf;
        int256 _lockedEnd;
        int256 _lockedAmount;
        // Line art variables
        int256 shape;
        uint256 palette;
        int256 maxLines;
        int256 dash;
        // Randomness variables
        int256 seed1;
        int256 seed2;
        int256 seed3;
    }

    /// @dev Individual line art path variables.
    struct lineConfig {
        bytes8 color;
        uint256 stroke;
        uint256 offset;
        uint256 offsetHalf;
        uint256 offsetDashSum;
        uint256 pathLength;
    }

    /// @dev Represents an (x,y) coordinate in a line.
    struct Point {
        int256 x;
        int256 y;
    }

    /// @notice Generate a SVG based on veNFT metadata
    /// @param _tokenId Unique veNFT identifier
    /// @return output SVG metadata as HTML tag
    function tokenURI(uint256 _tokenId) external view returns (string memory output);

    /// @notice Generate only the foreground <path> elements of the line art for an NFT (excluding SVG header), for flexibility purposes.
    /// @param _tokenId Unique veNFT identifier
    /// @return output Encoded output of generateShape()
    function lineArtPathsOnly(uint256 _tokenId) external view returns (bytes memory output);

    /// @notice Generate the master art config metadata for a veNFT
    /// @param _tokenId Unique veNFT identifier
    /// @return cfg Config struct
    function generateConfig(uint256 _tokenId) external view returns (Config memory cfg);

    /// @notice Generate the points for two stripe lines based on the config generated for a veNFT
    /// @param cfg Master art config metadata of a veNFT
    /// @param l Number of line drawn
    /// @return Line (x, y) coordinates of the drawn stripes
    function twoStripes(Config memory cfg, int256 l) external pure returns (Point[100] memory Line);

    /// @notice Generate the points for circles based on the config generated for a veNFT
    /// @param cfg Master art config metadata of a veNFT
    /// @param l Number of circles drawn
    /// @return Line (x, y) coordinates of the drawn circles
    function circles(Config memory cfg, int256 l) external pure returns (Point[100] memory Line);

    /// @notice Generate the points for interlocking circles based on the config generated for a veNFT
    /// @param cfg Master art config metadata of a veNFT
    /// @param l Number of interlocking circles drawn
    /// @return Line (x, y) coordinates of the drawn interlocking circles
    function interlockingCircles(Config memory cfg, int256 l) external pure returns (Point[100] memory Line);

    /// @notice Generate the points for corners based on the config generated for a veNFT
    /// @param cfg Master art config metadata of a veNFT
    /// @param l Number of corners drawn
    /// @return Line (x, y) coordinates of the drawn corners
    function corners(Config memory cfg, int256 l) external pure returns (Point[100] memory Line);

    /// @notice Generate the points for a curve based on the config generated for a veNFT
    /// @param cfg Master art config metadata of a veNFT
    /// @param l Number of curve drawn
    /// @return Line (x, y) coordinates of the drawn curve
    function curves(Config memory cfg, int256 l) external pure returns (Point[100] memory Line);

    /// @notice Generate the points for a spiral based on the config generated for a veNFT
    /// @param cfg Master art config metadata of a veNFT
    /// @param l Number of spiral drawn
    /// @return Line (x, y) coordinates of the drawn spiral
    function spiral(Config memory cfg, int256 l) external pure returns (Point[100] memory Line);

    /// @notice Generate the points for an explosion based on the config generated for a veNFT
    /// @param cfg Master art config metadata of a veNFT
    /// @param l Number of explosion drawn
    /// @return Line (x, y) coordinates of the drawn explosion
    function explosion(Config memory cfg, int256 l) external pure returns (Point[100] memory Line);

    /// @notice Generate the points for a wormhole based on the config generated for a veNFT
    /// @param cfg Master art config metadata of a veNFT
    /// @param l Number of wormhole drawn
    /// @return Line (x, y) coordinates of the drawn wormhole
    function wormhole(Config memory cfg, int256 l) external pure returns (Point[100] memory Line);
}


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}


pragma solidity 0.8.19;

/// @title Voting Escrow V2
/// @notice veNFT implementation that escrows ERC-20 tokens in the form of an ERC-721 NFT
/// @notice Votes have a weight depending on time, so that users are committed to the future of (whatever they are voting for)
/// @author Modified from Solidly (https://github.com/solidlyexchange/solidly/blob/master/contracts/ve.sol)
/// @author Modified from Curve (https://github.com/curvefi/curve-dao-contracts/blob/master/contracts/VotingEscrow.vy)
/// @author velodrome.finance, @figs999, @pegahcarter
/// @dev Vote weight decays linearly over time. Lock time cannot be more than `MAXTIME` (4 years).
contract VotingEscrow is IVotingEscrow, IERC6372, ERC2771Context, ReentrancyGuard {
    using SafeERC20 for IERC20;
    /*//////////////////////////////////////////////////////////////
                               CONSTRUCTOR
    //////////////////////////////////////////////////////////////*/

    address public immutable forwarder;
    address public immutable factoryRegistry;
    address public immutable token;
    address public distributor;
    address public voter;
    address public team;
    address public artProxy;
    /// @dev address which can create managed NFTs
    address public allowedManager;

    mapping(uint256 => GlobalPoint) internal _pointHistory; // epoch -> unsigned global point

    /// @dev Mapping of interface id to bool about whether or not it's supported
    mapping(bytes4 => bool) internal supportedInterfaces;

    /// @dev ERC165 interface ID of ERC165
    bytes4 internal constant ERC165_INTERFACE_ID = 0x01ffc9a7;

    /// @dev ERC165 interface ID of ERC721
    bytes4 internal constant ERC721_INTERFACE_ID = 0x80ac58cd;

    /// @dev ERC165 interface ID of ERC721Metadata
    bytes4 internal constant ERC721_METADATA_INTERFACE_ID = 0x5b5e139f;

    /// @dev ERC165 interface ID of ERC4906
    bytes4 internal constant ERC4906_INTERFACE_ID = 0x49064906;

    /// @dev ERC165 interface ID of ERC6372
    bytes4 internal constant ERC6372_INTERFACE_ID = 0xda287a1d;

    /// @dev Current count of token
    uint256 public tokenId;

    /// @param _forwarder address of trusted forwarder
    /// @param _token `VELO` token address
    /// @param _factoryRegistry Factory Registry address
    constructor(address _forwarder, address _token, address _factoryRegistry) ERC2771Context(_forwarder) {
        forwarder = _forwarder;
        token = _token;
        factoryRegistry = _factoryRegistry;
        team = _msgSender();
        voter = _msgSender();

        _pointHistory[0].blk = block.number;
        _pointHistory[0].ts = block.timestamp;

        supportedInterfaces[ERC165_INTERFACE_ID] = true;
        supportedInterfaces[ERC721_INTERFACE_ID] = true;
        supportedInterfaces[ERC721_METADATA_INTERFACE_ID] = true;
        supportedInterfaces[ERC4906_INTERFACE_ID] = true;
        supportedInterfaces[ERC6372_INTERFACE_ID] = true;

        // mint-ish
        emit Transfer(address(0), address(this), tokenId);
        // burn-ish
        emit Transfer(address(this), address(0), tokenId);
    }

    /*///////////////////////////////////////////////////////////////
                            MANAGED NFT STORAGE
    //////////////////////////////////////////////////////////////*/

    /// @inheritdoc IVotingEscrow
    mapping(uint256 => EscrowType) public escrowType;

    /// @inheritdoc IVotingEscrow
    mapping(uint256 => uint256) public idToManaged;
    /// @inheritdoc IVotingEscrow
    mapping(uint256 => mapping(uint256 => uint256)) public weights;
    /// @inheritdoc IVotingEscrow
    mapping(uint256 => bool) public deactivated;

    /// @inheritdoc IVotingEscrow
    mapping(uint256 => address) public managedToLocked;
    /// @inheritdoc IVotingEscrow
    mapping(uint256 => address) public managedToFree;

    /*///////////////////////////////////////////////////////////////
                            MANAGED NFT LOGIC
    //////////////////////////////////////////////////////////////*/

    /// @inheritdoc IVotingEscrow
    function createManagedLockFor(address _to) external nonReentrant returns (uint256 _mTokenId) {
        address sender = _msgSender();
        if (sender != allowedManager && sender != IVoter(voter).governor()) revert NotGovernorOrManager();

        _mTokenId = ++tokenId;
        _mint(_to, _mTokenId);
        _depositFor(_mTokenId, 0, 0, LockedBalance(0, 0, true), DepositType.CREATE_LOCK_TYPE);

        escrowType[_mTokenId] = EscrowType.MANAGED;

        (address _lockedManagedReward, address _freeManagedReward) = IManagedRewardsFactory(
            IFactoryRegistry(factoryRegistry).managedRewardsFactory()
        ).createRewards(forwarder, voter);
        managedToLocked[_mTokenId] = _lockedManagedReward;
        managedToFree[_mTokenId] = _freeManagedReward;

        emit CreateManaged(_to, _mTokenId, sender, _lockedManagedReward, _freeManagedReward);
    }

    /// @inheritdoc IVotingEscrow
    function depositManaged(uint256 _tokenId, uint256 _mTokenId) external nonReentrant {
        if (_msgSender() != voter) revert NotVoter();
        if (escrowType[_mTokenId] != EscrowType.MANAGED) revert NotManagedNFT();
        if (escrowType[_tokenId] != EscrowType.NORMAL) revert NotNormalNFT();
        if (_balanceOfNFTAt(_tokenId, block.timestamp) == 0) revert ZeroBalance();

        // adjust user nft
        int128 _amount = _locked[_tokenId].amount;
        if (_locked[_tokenId].isPermanent) {
            permanentLockBalance -= uint256(uint128(_amount));
            _delegate(_tokenId, 0);
        }
        _checkpoint(_tokenId, _locked[_tokenId], LockedBalance(0, 0, false));
        _locked[_tokenId] = LockedBalance(0, 0, false);

        // adjust managed nft
        uint256 _weight = uint256(uint128(_amount));
        permanentLockBalance += _weight;
        LockedBalance memory newLocked = _locked[_mTokenId];
        newLocked.amount += _amount;
        _checkpointDelegatee(_delegates[_mTokenId], uint256(uint128(_amount)), true);
        _checkpoint(_mTokenId, _locked[_mTokenId], newLocked);
        _locked[_mTokenId] = newLocked;

        weights[_tokenId][_mTokenId] = _weight;
        idToManaged[_tokenId] = _mTokenId;
        escrowType[_tokenId] = EscrowType.LOCKED;

        address _lockedManagedReward = managedToLocked[_mTokenId];
        IReward(_lockedManagedReward)._deposit(uint256(uint128(_amount)), _tokenId);
        address _freeManagedReward = managedToFree[_mTokenId];
        IReward(_freeManagedReward)._deposit(uint256(uint128(_amount)), _tokenId);

        emit DepositManaged(_ownerOf(_tokenId), _tokenId, _mTokenId, _weight, block.timestamp);
        emit MetadataUpdate(_tokenId);
    }

    /// @inheritdoc IVotingEscrow
    function withdrawManaged(uint256 _tokenId) external nonReentrant {
        uint256 _mTokenId = idToManaged[_tokenId];
        if (_msgSender() != voter) revert NotVoter();
        if (_mTokenId == 0) revert InvalidManagedNFTId();
        if (escrowType[_tokenId] != EscrowType.LOCKED) revert NotLockedNFT();

        // update accrued rewards
        address _lockedManagedReward = managedToLocked[_mTokenId];
        address _freeManagedReward = managedToFree[_mTokenId];
        uint256 _weight = weights[_tokenId][_mTokenId];
        uint256 _reward = IReward(_lockedManagedReward).earned(address(token), _tokenId);
        uint256 _total = _weight + _reward;
        uint256 _unlockTime = ((block.timestamp + MAXTIME) / WEEK) * WEEK;

        // claim locked rewards (rebases + compounded reward)
        address[] memory rewards = new address[](1);
        rewards[0] = address(token);
        IReward(_lockedManagedReward).getReward(_tokenId, rewards);

        // adjust user nft
        LockedBalance memory newLockedNormal = LockedBalance(int128(int256(_total)), _unlockTime, false);
        _checkpoint(_tokenId, _locked[_tokenId], newLockedNormal);
        _locked[_tokenId] = newLockedNormal;

        // adjust managed nft
        LockedBalance memory newLockedManaged = _locked[_mTokenId];
        // do not expect _total > locked.amount / permanentLockBalance but just in case
        newLockedManaged.amount -= (
            int128(int256(_total)) < newLockedManaged.amount ? int128(int256(_total)) : newLockedManaged.amount
        );
        permanentLockBalance -= (_total < permanentLockBalance ? _total : permanentLockBalance);
        _checkpointDelegatee(_delegates[_mTokenId], _total, false);
        _checkpoint(_mTokenId, _locked[_mTokenId], newLockedManaged);
        _locked[_mTokenId] = newLockedManaged;

        IReward(_lockedManagedReward)._withdraw(uint256(uint128(_weight)), _tokenId);
        IReward(_freeManagedReward)._withdraw(uint256(uint128(_weight)), _tokenId);

        delete idToManaged[_tokenId];
        delete weights[_tokenId][_mTokenId];
        delete escrowType[_tokenId];

        emit WithdrawManaged(_ownerOf(_tokenId), _tokenId, _mTokenId, _total, block.timestamp);
        emit MetadataUpdate(_tokenId);
    }

    /// @inheritdoc IVotingEscrow
    function setAllowedManager(address _allowedManager) external {
        if (_msgSender() != IVoter(voter).governor()) revert NotGovernor();
        if (_allowedManager == allowedManager) revert SameAddress();
        if (_allowedManager == address(0)) revert ZeroAddress();
        allowedManager = _allowedManager;
        emit SetAllowedManager(_allowedManager);
    }

    /// @inheritdoc IVotingEscrow
    function setManagedState(uint256 _mTokenId, bool _state) external {
        if (_msgSender() != IVoter(voter).emergencyCouncil() && _msgSender() != IVoter(voter).governor())
            revert NotEmergencyCouncilOrGovernor();
        if (escrowType[_mTokenId] != EscrowType.MANAGED) revert NotManagedNFT();
        if (deactivated[_mTokenId] == _state) revert SameState();
        deactivated[_mTokenId] = _state;
    }

    /*///////////////////////////////////////////////////////////////
                             METADATA STORAGE
    //////////////////////////////////////////////////////////////*/

    string public constant name = "veNFT";
    string public constant symbol = "veNFT";
    string public constant version = "2.0.0";
    uint8 public constant decimals = 18;

    function setTeam(address _team) external {
        if (_msgSender() != team) revert NotTeam();
        if (_team == address(0)) revert ZeroAddress();
        team = _team;
    }

    function setArtProxy(address _proxy) external {
        if (_msgSender() != team) revert NotTeam();
        artProxy = _proxy;
        emit BatchMetadataUpdate(0, type(uint256).max);
    }

    /// @inheritdoc IVotingEscrow
    function tokenURI(uint256 _tokenId) external view returns (string memory) {
        if (_ownerOf(_tokenId) == address(0)) revert NonExistentToken();
        return IVeArtProxy(artProxy).tokenURI(_tokenId);
    }

    /*//////////////////////////////////////////////////////////////
                      ERC721 BALANCE/OWNER STORAGE
    //////////////////////////////////////////////////////////////*/

    /// @dev Mapping from NFT ID to the address that owns it.
    mapping(uint256 => address) internal idToOwner;

    /// @dev Mapping from owner address to count of his tokens.
    mapping(address => uint256) internal ownerToNFTokenCount;

    function _ownerOf(uint256 _tokenId) internal view returns (address) {
        return idToOwner[_tokenId];
    }

    /// @inheritdoc IVotingEscrow
    function ownerOf(uint256 _tokenId) external view returns (address) {
        return _ownerOf(_tokenId);
    }

    /// @inheritdoc IVotingEscrow
    function balanceOf(address _owner) external view returns (uint256) {
        return ownerToNFTokenCount[_owner];
    }

    /*//////////////////////////////////////////////////////////////
                         ERC721 APPROVAL STORAGE
    //////////////////////////////////////////////////////////////*/

    /// @dev Mapping from NFT ID to approved address.
    mapping(uint256 => address) internal idToApprovals;

    /// @dev Mapping from owner address to mapping of operator addresses.
    mapping(address => mapping(address => bool)) internal ownerToOperators;

    mapping(uint256 => uint256) internal ownershipChange;

    /// @inheritdoc IVotingEscrow
    function getApproved(uint256 _tokenId) external view returns (address) {
        return idToApprovals[_tokenId];
    }

    /// @inheritdoc IVotingEscrow
    function isApprovedForAll(address _owner, address _operator) external view returns (bool) {
        return (ownerToOperators[_owner])[_operator];
    }

    /// @inheritdoc IVotingEscrow
    function isApprovedOrOwner(address _spender, uint256 _tokenId) external view returns (bool) {
        return _isApprovedOrOwner(_spender, _tokenId);
    }

    function _isApprovedOrOwner(address _spender, uint256 _tokenId) internal view returns (bool) {
        address owner = _ownerOf(_tokenId);
        bool spenderIsOwner = owner == _spender;
        bool spenderIsApproved = _spender == idToApprovals[_tokenId];
        bool spenderIsApprovedForAll = (ownerToOperators[owner])[_spender];
        return spenderIsOwner || spenderIsApproved || spenderIsApprovedForAll;
    }

    /*//////////////////////////////////////////////////////////////
                              ERC721 LOGIC
    //////////////////////////////////////////////////////////////*/

    /// @inheritdoc IVotingEscrow
    function approve(address _approved, uint256 _tokenId) external {
        address sender = _msgSender();
        address owner = _ownerOf(_tokenId);
        // Throws if `_tokenId` is not a valid NFT
        if (owner == address(0)) revert ZeroAddress();
        // Throws if `_approved` is the current owner
        if (owner == _approved) revert SameAddress();
        // Check requirements
        bool senderIsOwner = (_ownerOf(_tokenId) == sender);
        bool senderIsApprovedForAll = (ownerToOperators[owner])[sender];
        if (!senderIsOwner && !senderIsApprovedForAll) revert NotApprovedOrOwner();
        // Set the approval
        idToApprovals[_tokenId] = _approved;
        emit Approval(owner, _approved, _tokenId);
    }

    /// @inheritdoc IVotingEscrow
    function setApprovalForAll(address _operator, bool _approved) external {
        address sender = _msgSender();
        // Throws if `_operator` is the `msg.sender`
        if (_operator == sender) revert SameAddress();
        ownerToOperators[sender][_operator] = _approved;
        emit ApprovalForAll(sender, _operator, _approved);
    }

    /* TRANSFER FUNCTIONS */

    function _transferFrom(address _from, address _to, uint256 _tokenId, address _sender) internal {
        if (escrowType[_tokenId] == EscrowType.LOCKED) revert NotManagedOrNormalNFT();
        // Check requirements
        if (!_isApprovedOrOwner(_sender, _tokenId)) revert NotApprovedOrOwner();
        // Clear approval. Throws if `_from` is not the current owner
        if (_ownerOf(_tokenId) != _from) revert NotOwner();
        delete idToApprovals[_tokenId];
        // Remove NFT. Throws if `_tokenId` is not a valid NFT
        _removeTokenFrom(_from, _tokenId);
        // Update voting checkpoints
        _checkpointDelegator(_tokenId, 0, _to);
        // Add NFT
        _addTokenTo(_to, _tokenId);
        // Set the block of ownership transfer (for Flash NFT protection)
        ownershipChange[_tokenId] = block.number;
        // Log the transfer
        emit Transfer(_from, _to, _tokenId);
    }

    /// @inheritdoc IVotingEscrow
    function transferFrom(address _from, address _to, uint256 _tokenId) external {
        _transferFrom(_from, _to, _tokenId, _msgSender());
    }

    /// @inheritdoc IVotingEscrow
    function safeTransferFrom(address _from, address _to, uint256 _tokenId) external {
        safeTransferFrom(_from, _to, _tokenId, "");
    }

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

    /// @inheritdoc IVotingEscrow
    function safeTransferFrom(address _from, address _to, uint256 _tokenId, bytes memory _data) public {
        address sender = _msgSender();
        _transferFrom(_from, _to, _tokenId, sender);

        if (_isContract(_to)) {
            // Throws if transfer destination is a contract which does not implement 'onERC721Received'
            try IERC721Receiver(_to).onERC721Received(sender, _from, _tokenId, _data) returns (bytes4 response) {
                if (response != IERC721Receiver(_to).onERC721Received.selector) {
                    revert ERC721ReceiverRejectedTokens();
                }
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert ERC721TransferToNonERC721ReceiverImplementer();
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        }
    }

    /*//////////////////////////////////////////////////////////////
                              ERC165 LOGIC
    //////////////////////////////////////////////////////////////*/

    /// @inheritdoc IVotingEscrow
    function supportsInterface(bytes4 _interfaceID) external view returns (bool) {
        return supportedInterfaces[_interfaceID];
    }

    /*//////////////////////////////////////////////////////////////
                        INTERNAL MINT/BURN LOGIC
    //////////////////////////////////////////////////////////////*/

    /// @inheritdoc IVotingEscrow
    mapping(address => mapping(uint256 => uint256)) public ownerToNFTokenIdList;

    /// @dev Mapping from NFT ID to index of owner
    mapping(uint256 => uint256) internal tokenToOwnerIndex;

    /// @dev Add a NFT to an index mapping to a given address
    /// @param _to address of the receiver
    /// @param _tokenId uint ID Of the token to be added
    function _addTokenToOwnerList(address _to, uint256 _tokenId) internal {
        uint256 currentCount = ownerToNFTokenCount[_to];

        ownerToNFTokenIdList[_to][currentCount] = _tokenId;
        tokenToOwnerIndex[_tokenId] = currentCount;
    }

    /// @dev Add a NFT to a given address
    ///      Throws if `_tokenId` is owned by someone.
    function _addTokenTo(address _to, uint256 _tokenId) internal {
        // Throws if `_tokenId` is owned by someone
        assert(_ownerOf(_tokenId) == address(0));
        // Change the owner
        idToOwner[_tokenId] = _to;
        // Update owner token index tracking
        _addTokenToOwnerList(_to, _tokenId);
        // Change count tracking
        ownerToNFTokenCount[_to] += 1;
    }

    /// @dev Function to mint tokens
    ///      Throws if `_to` is zero address.
    ///      Throws if `_tokenId` is owned by someone.
    /// @param _to The address that will receive the minted tokens.
    /// @param _tokenId The token id to mint.
    /// @return A boolean that indicates if the operation was successful.
    function _mint(address _to, uint256 _tokenId) internal returns (bool) {
        // Throws if `_to` is zero address
        assert(_to != address(0));
        // Add NFT. Throws if `_tokenId` is owned by someone
        _addTokenTo(_to, _tokenId);
        // Update voting checkpoints
        _checkpointDelegator(_tokenId, 0, _to);
        emit Transfer(address(0), _to, _tokenId);
        return true;
    }

    /// @dev Remove a NFT from an index mapping to a given address
    /// @param _from address of the sender
    /// @param _tokenId uint ID Of the token to be removed
    function _removeTokenFromOwnerList(address _from, uint256 _tokenId) internal {
        // Delete
        uint256 currentCount = ownerToNFTokenCount[_from] - 1;
        uint256 currentIndex = tokenToOwnerIndex[_tokenId];

        if (currentCount == currentIndex) {
            // update ownerToNFTokenIdList
            ownerToNFTokenIdList[_from][currentCount] = 0;
            // update tokenToOwnerIndex
            tokenToOwnerIndex[_tokenId] = 0;
        } else {
            uint256 lastTokenId = ownerToNFTokenIdList[_from][currentCount];

            // Add
            // update ownerToNFTokenIdList
            ownerToNFTokenIdList[_from][currentIndex] = lastTokenId;
            // update tokenToOwnerIndex
            tokenToOwnerIndex[lastTokenId] = currentIndex;

            // Delete
            // update ownerToNFTokenIdList
            ownerToNFTokenIdList[_from][currentCount] = 0;
            // update tokenToOwnerIndex
            tokenToOwnerIndex[_tokenId] = 0;
        }
    }

    /// @dev Remove a NFT from a given address
    ///      Throws if `_from` is not the current owner.
    function _removeTokenFrom(address _from, uint256 _tokenId) internal {
        // Throws if `_from` is not the current owner
        assert(_ownerOf(_tokenId) == _from);
        // Change the owner
        idToOwner[_tokenId] = address(0);
        // Update owner token index tracking
        _removeTokenFromOwnerList(_from, _tokenId);
        // Change count tracking
        ownerToNFTokenCount[_from] -= 1;
    }

    /// @dev Must be called prior to updating `LockedBalance`
    function _burn(uint256 _tokenId) internal {
        address sender = _msgSender();
        if (!_isApprovedOrOwner(sender, _tokenId)) revert NotApprovedOrOwner();
        address owner = _ownerOf(_tokenId);

        // Clear approval
        delete idToApprovals[_tokenId];
        // Update voting checkpoints
        _checkpointDelegator(_tokenId, 0, address(0));
        // Remove token
        _removeTokenFrom(owner, _tokenId);
        emit Transfer(owner, address(0), _tokenId);
    }

    /*//////////////////////////////////////////////////////////////
                             ESCROW STORAGE
    //////////////////////////////////////////////////////////////*/

    uint256 internal constant WEEK = 1 weeks;
    uint256 internal constant MAXTIME = 4 * 365 * 86400;
    int128 internal constant iMAXTIME = 4 * 365 * 86400;
    uint256 internal constant MULTIPLIER = 1 ether;

    uint256 public epoch;
    uint256 public supply;

    mapping(uint256 => LockedBalance) internal _locked;
    mapping(uint256 => UserPoint[1000000000]) internal _userPointHistory;
    mapping(uint256 => uint256) public userPointEpoch;
    /// @inheritdoc IVotingEscrow
    mapping(uint256 => int128) public slopeChanges;
    mapping(address => bool) public canSplit;
    /// @notice Aggregate permanent locked balances
    uint256 public permanentLockBalance;

    /// @inheritdoc IVotingEscrow
    function locked(uint256 _tokenId) external view returns (LockedBalance memory) {
        return _locked[_tokenId];
    }

    /// @inheritdoc IVotingEscrow
    function userPointHistory(uint256 _tokenId, uint256 _loc) external view returns (UserPoint memory) {
        return _userPointHistory[_tokenId][_loc];
    }

    /// @inheritdoc IVotingEscrow
    function pointHistory(uint256 _loc) external view returns (GlobalPoint memory) {
        return _pointHistory[_loc];
    }

    /*//////////////////////////////////////////////////////////////
                              ESCROW LOGIC
    //////////////////////////////////////////////////////////////*/

    /// @notice Record global and per-user data to checkpoints. Used by VotingEscrow system.
    /// @param _tokenId NFT token ID. No user checkpoint if 0
    /// @param _oldLocked Pevious locked amount / end lock time for the user
    /// @param _newLocked New locked amount / end lock time for the user
    function _checkpoint(uint256 _tokenId, LockedBalance memory _oldLocked, LockedBalance memory _newLocked) internal {
        UserPoint memory uOld;
        UserPoint memory uNew;
        int128 oldDslope = 0;
        int128 newDslope = 0;
        uint256 _epoch = epoch;

        if (_tokenId != 0) {
            uNew.permanent = _newLocked.isPermanent ? uint256(int256(_newLocked.amount)) : 0;
            // Calculate slopes and biases
            // Kept at zero when they have to
            if (_oldLocked.end > block.timestamp && _oldLocked.amount > 0) {
                uOld.slope = _oldLocked.amount / iMAXTIME;
                uOld.bias = uOld.slope * int128(int256(_oldLocked.end - block.timestamp));
            }
            if (_newLocked.end > block.timestamp && _newLocked.amount > 0) {
                uNew.slope = _newLocked.amount / iMAXTIME;
                uNew.bias = uNew.slope * int128(int256(_newLocked.end - block.timestamp));
            }

            // Read values of scheduled changes in the slope
            // _oldLocked.end can be in the past and in the future
            // _newLocked.end can ONLY by in the FUTURE unless everything expired: than zeros
            oldDslope = slopeChanges[_oldLocked.end];
            if (_newLocked.end != 0) {
                if (_newLocked.end == _oldLocked.end) {
                    newDslope = oldDslope;
                } else {
                    newDslope = slopeChanges[_newLocked.end];
                }
            }
        }

        GlobalPoint memory lastPoint = GlobalPoint({
            bias: 0,
            slope: 0,
            ts: block.timestamp,
            blk: block.number,
            permanentLockBalance: 0
        });
        if (_epoch > 0) {
            lastPoint = _pointHistory[_epoch];
        }
        uint256 lastCheckpoint = lastPoint.ts;
        // initialLastPoint is used for extrapolation to calculate block number
        // (approximately, for *At methods) and save them
        // as we cannot figure that out exactly from inside the contract
        GlobalPoint memory initialLastPoint = GlobalPoint({
            bias: lastPoint.bias,
            slope: lastPoint.slope,
            ts: lastPoint.ts,
            blk: lastPoint.blk,
            permanentLockBalance: lastPoint.permanentLockBalance
        });
        uint256 blockSlope = 0; // dblock/dt
        if (block.timestamp > lastPoint.ts) {
            blockSlope = (MULTIPLIER * (block.number - lastPoint.blk)) / (block.timestamp - lastPoint.ts);
        }
        // If last point is already recorded in this block, slope=0
        // But that's ok b/c we know the block in such case

        // Go over weeks to fill history and calculate what the current point is
        {
            uint256 t_i = (lastCheckpoint / WEEK) * WEEK;
            for (uint256 i = 0; i < 255; ++i) {
                // Hopefully it won't happen that this won't get used in 5 years!
                // If it does, users will be able to withdraw but vote weight will be broken
                t_i += WEEK; // Initial value of t_i is always larger than the ts of the last point
                int128 d_slope = 0;
                if (t_i > block.timestamp) {
                    t_i = block.timestamp;
                } else {
                    d_slope = slopeChanges[t_i];
                }
                lastPoint.bias -= lastPoint.slope * int128(int256(t_i - lastCheckpoint));
                lastPoint.slope += d_slope;
                if (lastPoint.bias < 0) {
                    // This can happen
                    lastPoint.bias = 0;
                }
                if (lastPoint.slope < 0) {
                    // This cannot happen - just in case
                    lastPoint.slope = 0;
                }
                lastCheckpoint = t_i;
                lastPoint.ts = t_i;
                lastPoint.blk = initialLastPoint.blk + (blockSlope * (t_i - initialLastPoint.ts)) / MULTIPLIER;
                _epoch += 1;
                if (t_i == block.timestamp) {
                    lastPoint.blk = block.number;
                    break;
                } else {
                    _pointHistory[_epoch] = lastPoint;
                }
            }
        }

        if (_tokenId != 0) {
            // If last point was in this block, the slope change has been applied already
            // But in such case we have 0 slope(s)
            lastPoint.slope += (uNew.slope - uOld.slope);
            lastPoint.bias += (uNew.bias - uOld.bias);
            if (lastPoint.slope < 0) {
                lastPoint.slope = 0;
            }
            if (lastPoint.bias < 0) {
                lastPoint.bias = 0;
            }
            lastPoint.permanentLockBalance = permanentLockBalance;
        }

        // If timestamp of last global point is the same, overwrite the last global point
        // Else record the new global point into history
        // Exclude epoch 0 (note: _epoch is always >= 1, see above)
        // Two possible outcomes:
        // Missing global checkpoints in prior weeks. In this case, _epoch = epoch + x, where x > 1
        // No missing global checkpoints, but timestamp != block.timestamp. Create new checkpoint.
        // No missing global checkpoints, but timestamp == block.timestamp. Overwrite last checkpoint.
        if (_epoch != 1 && _pointHistory[_epoch - 1].ts == block.timestamp) {
            // _epoch = epoch + 1, so we do not increment epoch
            _pointHistory[_epoch - 1] = lastPoint;
        } else {
            // more than one global point may have been written, so we update epoch
            epoch = _epoch;
            _pointHistory[_epoch] = lastPoint;
        }

        if (_tokenId != 0) {
            // Schedule the slope changes (slope is going down)
            // We subtract new_user_slope from [_newLocked.end]
            // and add old_user_slope to [_oldLocked.end]
            if (_oldLocked.end > block.timestamp) {
                // oldDslope was <something> - uOld.slope, so we cancel that
                oldDslope += uOld.slope;
                if (_newLocked.end == _oldLocked.end) {
                    oldDslope -= uNew.slope; // It was a new deposit, not extension
                }
                slopeChanges[_oldLocked.end] = oldDslope;
            }

            if (_newLocked.end > block.timestamp) {
                // update slope if new lock is greater than old lock and is not permanent or if old lock is permanent
                if ((_newLocked.end > _oldLocked.end)) {
                    newDslope -= uNew.slope; // old slope disappeared at this point
                    slopeChanges[_newLocked.end] = newDslope;
                }
                // else: we recorded it already in oldDslope
            }
            // If timestamp of last user point is the same, overwrite the last user point
            // Else record the new user point into history
            // Exclude epoch 0
            uNew.ts = block.timestamp;
            uNew.blk = block.number;
            uint256 userEpoch = userPointEpoch[_tokenId];
            if (userEpoch != 0 && _userPointHistory[_tokenId][userEpoch].ts == block.timestamp) {
                _userPointHistory[_tokenId][userEpoch] = uNew;
            } else {
                userPointEpoch[_tokenId] = ++userEpoch;
                _userPointHistory[_tokenId][userEpoch] = uNew;
            }
        }
    }

    /// @notice Deposit and lock tokens for a user
    /// @param _tokenId NFT that holds lock
    /// @param _value Amount to deposit
    /// @param _unlockTime New time when to unlock the tokens, or 0 if unchanged
    /// @param _oldLocked Previous locked amount / timestamp
    /// @param _depositType The type of deposit
    function _depositFor(
        uint256 _tokenId,
        uint256 _value,
        uint256 _unlockTime,
        LockedBalance memory _oldLocked,
        DepositType _depositType
    ) internal {
        uint256 supplyBefore = supply;
        supply = supplyBefore + _value;

        // Set newLocked to _oldLocked without mangling memory
        LockedBalance memory newLocked;
        (newLocked.amount, newLocked.end, newLocked.isPermanent) = (
            _oldLocked.amount,
            _oldLocked.end,
            _oldLocked.isPermanent
        );

        // Adding to existing lock, or if a lock is expired - creating a new one
        newLocked.amount += int128(int256(_value));
        if (_unlockTime != 0) {
            newLocked.end = _unlockTime;
        }
        _locked[_tokenId] = newLocked;

        // Possibilities:
        // Both _oldLocked.end could be current or expired (>/< block.timestamp)
        // or if the lock is a permanent lock, then _oldLocked.end == 0
        // value == 0 (extend lock) or value > 0 (add to lock or extend lock)
        // newLocked.end > block.timestamp (always)
        _checkpoint(_tokenId, _oldLocked, newLocked);

        address from = _msgSender();
        if (_value != 0) {
            IERC20(token).safeTransferFrom(from, address(this), _value);
        }

        emit Deposit(from, _tokenId, _depositType, _value, newLocked.end, block.timestamp);
        emit Supply(supplyBefore, supplyBefore + _value);
    }

    /// @inheritdoc IVotingEscrow
    function checkpoint() external nonReentrant {
        _checkpoint(0, LockedBalance(0, 0, false), LockedBalance(0, 0, false));
    }

    /// @inheritdoc IVotingEscrow
    function depositFor(uint256 _tokenId, uint256 _value) external nonReentrant {
        if (escrowType[_tokenId] == EscrowType.MANAGED && _msgSender() != distributor) revert NotDistributor();
        _increaseAmountFor(_tokenId, _value, DepositType.DEPOSIT_FOR_TYPE);
    }

    /// @dev Deposit `_value` tokens for `_to` and lock for `_lockDuration`
    /// @param _value Amount to deposit
    /// @param _lockDuration Number of seconds to lock tokens for (rounded down to nearest week)
    /// @param _to Address to deposit
    function _createLock(uint256 _value, uint256 _lockDuration, address _to) internal returns (uint256) {
        uint256 unlockTime = ((block.timestamp + _lockDuration) / WEEK) * WEEK; // Locktime is rounded down to weeks

        if (_value == 0) revert ZeroAmount();
        if (unlockTime <= block.timestamp) revert LockDurationNotInFuture();
        if (unlockTime > block.timestamp + MAXTIME) revert LockDurationTooLong();

        uint256 _tokenId = ++tokenId;
        _mint(_to, _tokenId);

        _depositFor(_tokenId, _value, unlockTime, _locked[_tokenId], DepositType.CREATE_LOCK_TYPE);
        return _tokenId;
    }

    /// @inheritdoc IVotingEscrow
    function createLock(uint256 _value, uint256 _lockDuration) external nonReentrant returns (uint256) {
        return _createLock(_value, _lockDuration, _msgSender());
    }

    /// @inheritdoc IVotingEscrow
    function createLockFor(uint256 _value, uint256 _lockDuration, address _to) external nonReentrant returns (uint256) {
        return _createLock(_value, _lockDuration, _to);
    }

    function _increaseAmountFor(uint256 _tokenId, uint256 _value, DepositType _depositType) internal {
        EscrowType _escrowType = escrowType[_tokenId];
        if (_escrowType == EscrowType.LOCKED) revert NotManagedOrNormalNFT();

        LockedBalance memory oldLocked = _locked[_tokenId];

        if (_value == 0) revert ZeroAmount();
        if (oldLocked.amount <= 0) revert NoLockFound();
        if (oldLocked.end <= block.timestamp && !oldLocked.isPermanent) revert LockExpired();

        if (oldLocked.isPermanent) permanentLockBalance += _value;
        _checkpointDelegatee(_delegates[_tokenId], _value, true);
        _depositFor(_tokenId, _value, 0, oldLocked, _depositType);

        if (_escrowType == EscrowType.MANAGED) {
            // increaseAmount called on managed tokens are treated as locked rewards
            address _lockedManagedReward = managedToLocked[_tokenId];
            address _token = token;
            IERC20(_token).safeApprove(_lockedManagedReward, _value);
            IReward(_lockedManagedReward).notifyRewardAmount(_token, _value);
            IERC20(_token).safeApprove(_lockedManagedReward, 0);
        }

        emit MetadataUpdate(_tokenId);
    }

    /// @inheritdoc IVotingEscrow
    function increaseAmount(uint256 _tokenId, uint256 _value) external nonReentrant {
        if (!_isApprovedOrOwner(_msgSender(), _tokenId)) revert NotApprovedOrOwner();
        _increaseAmountFor(_tokenId, _value, DepositType.INCREASE_LOCK_AMOUNT);
    }

    /// @inheritdoc IVotingEscrow
    function increaseUnlockTime(uint256 _tokenId, uint256 _lockDuration) external nonReentrant {
        if (!_isApprovedOrOwner(_msgSender(), _tokenId)) revert NotApprovedOrOwner();
        if (escrowType[_tokenId] != EscrowType.NORMAL) revert NotNormalNFT();

        LockedBalance memory oldLocked = _locked[_tokenId];
        if (oldLocked.isPermanent) revert PermanentLock();
        uint256 unlockTime = ((block.timestamp + _lockDuration) / WEEK) * WEEK; // Locktime is rounded down to weeks

        if (oldLocked.end <= block.timestamp) revert LockExpired();
        if (oldLocked.amount <= 0) revert NoLockFound();
        if (unlockTime <= oldLocked.end) revert LockDurationNotInFuture();
        if (unlockTime > block.timestamp + MAXTIME) revert LockDurationTooLong();

        _depositFor(_tokenId, 0, unlockTime, oldLocked, DepositType.INCREASE_UNLOCK_TIME);

        emit MetadataUpdate(_tokenId);
    }

    /// @inheritdoc IVotingEscrow
    function withdraw(uint256 _tokenId) external nonReentrant {
        address sender = _msgSender();
        if (!_isApprovedOrOwner(sender, _tokenId)) revert NotApprovedOrOwner();
        if (voted[_tokenId]) revert AlreadyVoted();
        if (escrowType[_tokenId] != EscrowType.NORMAL) revert NotNormalNFT();

        LockedBalance memory oldLocked = _locked[_tokenId];
        if (oldLocked.isPermanent) revert PermanentLock();
        if (block.timestamp < oldLocked.end) revert LockNotExpired();
        uint256 value = uint256(int256(oldLocked.amount));

        // Burn the NFT
        _burn(_tokenId);
        _locked[_tokenId] = LockedBalance(0, 0, false);
        uint256 supplyBefore = supply;
        supply = supplyBefore - value;

        // oldLocked can have either expired <= timestamp or zero end
        // oldLocked has only 0 end
        // Both can have >= 0 amount
        _checkpoint(_tokenId, oldLocked, LockedBalance(0, 0, false));

        IERC20(token).safeTransfer(sender, value);

        emit Withdraw(sender, _tokenId, value, block.timestamp);
        emit Supply(supplyBefore, supplyBefore - value);
    }

    /// @inheritdoc IVotingEscrow
    function merge(uint256 _from, uint256 _to) external nonReentrant {
        address sender = _msgSender();
        if (voted[_from]) revert AlreadyVoted();
        if (escrowType[_from] != EscrowType.NORMAL) revert NotNormalNFT();
        if (escrowType[_to] != EscrowType.NORMAL) revert NotNormalNFT();
        if (_from == _to) revert SameNFT();
        if (!_isApprovedOrOwner(sender, _from)) revert NotApprovedOrOwner();
        if (!_isApprovedOrOwner(sender, _to)) revert NotApprovedOrOwner();
        LockedBalance memory oldLockedTo = _locked[_to];
        if (oldLockedTo.end <= block.timestamp && !oldLockedTo.isPermanent) revert LockExpired();

        LockedBalance memory oldLockedFrom = _locked[_from];
        if (oldLockedFrom.isPermanent) revert PermanentLock();
        uint256 end = oldLockedFrom.end >= oldLockedTo.end ? oldLockedFrom.end : oldLockedTo.end;

        _burn(_from);
        _locked[_from] = LockedBalance(0, 0, false);
        _checkpoint(_from, oldLockedFrom, LockedBalance(0, 0, false));

        LockedBalance memory newLockedTo;
        newLockedTo.amount = oldLockedTo.amount + oldLockedFrom.amount;
        newLockedTo.isPermanent = oldLockedTo.isPermanent;
        if (newLockedTo.isPermanent) {
            permanentLockBalance += uint256(int256(oldLockedFrom.amount));
        } else {
            newLockedTo.end = end;
        }
        _checkpointDelegatee(_delegates[_to], uint256(int256(oldLockedFrom.amount)), true);
        _checkpoint(_to, oldLockedTo, newLockedTo);
        _locked[_to] = newLockedTo;

        emit Merge(
            sender,
            _from,
            _to,
            uint256(uint128(oldLockedFrom.amount)),
            uint256(uint128(oldLockedTo.amount)),
            uint256(uint128(newLockedTo.amount)),
            uint256(uint128(newLockedTo.end)),
            block.timestamp
        );
        emit MetadataUpdate(_to);
    }

    /// @inheritdoc IVotingEscrow
    function split(
        uint256 _from,
        uint256 _amount
    ) external nonReentrant returns (uint256 _tokenId1, uint256 _tokenId2) {
        address sender = _msgSender();
        address owner = _ownerOf(_from);
        if (owner == address(0)) revert SplitNoOwner();
        if (!canSplit[owner] && !canSplit[address(0)]) revert SplitNotAllowed();
        if (escrowType[_from] != EscrowType.NORMAL) revert NotNormalNFT();
        if (voted[_from]) revert AlreadyVoted();
        if (!_isApprovedOrOwner(sender, _from)) revert NotApprovedOrOwner();
        LockedBalance memory newLocked = _locked[_from];
        if (newLocked.end <= block.timestamp && !newLocked.isPermanent) revert LockExpired();
        int128 _splitAmount = int128(int256(_amount));
        if (_splitAmount == 0) revert ZeroAmount();
        if (newLocked.amount <= _splitAmount) revert AmountTooBig();

        // Zero out and burn old veNFT
        _burn(_from);
        _locked[_from] = LockedBalance(0, 0, false);
        _checkpoint(_from, newLocked, LockedBalance(0, 0, false));

        // Create new veNFT using old balance - amount
        newLocked.amount -= _splitAmount;
        _tokenId1 = _createSplitNFT(owner, newLocked);

        // Create new veNFT using amount
        newLocked.amount = _splitAmount;
        _tokenId2 = _createSplitNFT(owner, newLocked);

        emit Split(
            _from,
            _tokenId1,
            _tokenId2,
            sender,
            uint256(uint128(_locked[_tokenId1].amount)),
            uint256(uint128(_splitAmount)),
            uint256(uint128(newLocked.end)),
            block.timestamp
        );
    }

    function _createSplitNFT(address _to, LockedBalance memory _newLocked) private returns (uint256 _tokenId) {
        _tokenId = ++tokenId;
        _locked[_tokenId] = _newLocked;
        _checkpoint(_tokenId, LockedBalance(0, 0, false), _newLocked);
        _mint(_to, _tokenId);
    }

    /// @inheritdoc IVotingEscrow
    function toggleSplit(address _account, bool _bool) external {
        if (_msgSender() != team) revert NotTeam();
        canSplit[_account] = _bool;
    }

    /// @inheritdoc IVotingEscrow
    function lockPermanent(uint256 _tokenId) external {
        address sender = _msgSender();
        if (!_isApprovedOrOwner(sender, _tokenId)) revert NotApprovedOrOwner();
        if (escrowType[_tokenId] != EscrowType.NORMAL) revert NotNormalNFT();
        LockedBalance memory _newLocked = _locked[_tokenId];
        if (_newLocked.isPermanent) revert PermanentLock();
        if (_newLocked.end <= block.timestamp) revert LockExpired();
        if (_newLocked.amount <= 0) revert NoLockFound();

        uint256 _amount = uint256(int256(_newLocked.amount));
        permanentLockBalance += _amount;
        _newLocked.end = 0;
        _newLocked.isPermanent = true;
        _checkpoint(_tokenId, _locked[_tokenId], _newLocked);
        _locked[_tokenId] = _newLocked;

        emit LockPermanent(sender, _tokenId, _amount, block.timestamp);
        emit MetadataUpdate(_tokenId);
    }

    /// @inheritdoc IVotingEscrow
    function unlockPermanent(uint256 _tokenId) external {
        address sender = _msgSender();
        if (!_isApprovedOrOwner(sender, _tokenId)) revert NotApprovedOrOwner();
        if (escrowType[_tokenId] != EscrowType.NORMAL) revert NotNormalNFT();
        if (voted[_tokenId]) revert AlreadyVoted();
        LockedBalance memory _newLocked = _locked[_tokenId];
        if (!_newLocked.isPermanent) revert NotPermanentLock();

        uint256 _amount = uint256(int256(_newLocked.amount));
        permanentLockBalance -= _amount;
        _newLocked.end = ((block.timestamp + MAXTIME) / WEEK) * WEEK;
        _newLocked.isPermanent = false;
        _delegate(_tokenId, 0);
        _checkpoint(_tokenId, _locked[_tokenId], _newLocked);
        _locked[_tokenId] = _newLocked;

        emit UnlockPermanent(sender, _tokenId, _amount, block.timestamp);
        emit MetadataUpdate(_tokenId);
    }

    /*///////////////////////////////////////////////////////////////
                           GAUGE VOTING STORAGE
    //////////////////////////////////////////////////////////////*/

    function _balanceOfNFTAt(uint256 _tokenId, uint256 _t) internal view returns (uint256) {
        return BalanceLogicLibrary.balanceOfNFTAt(userPointEpoch, _userPointHistory, _tokenId, _t);
    }

    function _supplyAt(uint256 _timestamp) internal view returns (uint256) {
        return BalanceLogicLibrary.supplyAt(slopeChanges, _pointHistory, epoch, _timestamp);
    }

    /// @inheritdoc IVotingEscrow
    function balanceOfNFT(uint256 _tokenId) public view returns (uint256) {
        if (ownershipChange[_tokenId] == block.number) return 0;
        return _balanceOfNFTAt(_tokenId, block.timestamp);
    }

    /// @inheritdoc IVotingEscrow
    function balanceOfNFTAt(uint256 _tokenId, uint256 _t) external view returns (uint256) {
        return _balanceOfNFTAt(_tokenId, _t);
    }

    /// @inheritdoc IVotingEscrow
    function totalSupply() external view returns (uint256) {
        return _supplyAt(block.timestamp);
    }

    /// @inheritdoc IVotingEscrow
    function totalSupplyAt(uint256 _timestamp) external view returns (uint256) {
        return _supplyAt(_timestamp);
    }

    /*///////////////////////////////////////////////////////////////
                            GAUGE VOTING LOGIC
    //////////////////////////////////////////////////////////////*/

    /// @inheritdoc IVotingEscrow
    mapping(uint256 => bool) public voted;

    /// @inheritdoc IVotingEscrow
    function setVoterAndDistributor(address _voter, address _distributor) external {
        if (_msgSender() != voter) revert NotVoter();
        voter = _voter;
        distributor = _distributor;
    }

    /// @inheritdoc IVotingEscrow
    function voting(uint256 _tokenId, bool _voted) external {
        if (_msgSender() != voter) revert NotVoter();
        voted[_tokenId] = _voted;
    }

    /*///////////////////////////////////////////////////////////////
                            DAO VOTING STORAGE
    //////////////////////////////////////////////////////////////*/

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH =
        keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)");

    /// @notice The EIP-712 typehash for the delegation struct used by the contract
    bytes32 public constant DELEGATION_TYPEHASH =
        keccak256("Delegation(uint256 delegator,uint256 delegatee,uint256 nonce,uint256 expiry)");

    /// @notice A record of each accounts delegate
    mapping(uint256 => uint256) private _delegates;

    /// @notice A record of delegated token checkpoints for each tokenId, by index
    mapping(uint256 => mapping(uint48 => Checkpoint)) private _checkpoints;

    /// @inheritdoc IVotingEscrow
    mapping(uint256 => uint48) public numCheckpoints;

    /// @inheritdoc IVotingEscrow
    mapping(address => uint256) public nonces;

    /// @inheritdoc IVotingEscrow
    function delegates(uint256 delegator) external view returns (uint256) {
        return _delegates[delegator];
    }

    /// @inheritdoc IVotingEscrow
    function checkpoints(uint256 _tokenId, uint48 _index) external view returns (Checkpoint memory) {
        return _checkpoints[_tokenId][_index];
    }

    /// @inheritdoc IVotingEscrow
    function getPastVotes(address _account, uint256 _tokenId, uint256 _timestamp) external view returns (uint256) {
        return DelegationLogicLibrary.getPastVotes(numCheckpoints, _checkpoints, _account, _tokenId, _timestamp);
    }

    /// @inheritdoc IVotingEscrow
    function getPastTotalSupply(uint256 _timestamp) external view returns (uint256) {
        return _supplyAt(_timestamp);
    }

    /*///////////////////////////////////////////////////////////////
                             DAO VOTING LOGIC
    //////////////////////////////////////////////////////////////*/

    function _checkpointDelegator(uint256 _delegator, uint256 _delegatee, address _owner) internal {
        DelegationLogicLibrary.checkpointDelegator(
            _locked,
            numCheckpoints,
            _checkpoints,
            _delegates,
            _delegator,
            _delegatee,
            _owner
        );
    }

    function _checkpointDelegatee(uint256 _delegatee, uint256 balance_, bool _increase) internal {
        DelegationLogicLibrary.checkpointDelegatee(numCheckpoints, _checkpoints, _delegatee, balance_, _increase);
    }

    /// @notice Record user delegation checkpoints. Used by voting system.
    /// @dev Skips delegation if already delegated to `delegatee`.
    function _delegate(uint256 _delegator, uint256 _delegatee) internal {
        LockedBalance memory delegateLocked = _locked[_delegator];
        if (!delegateLocked.isPermanent) revert NotPermanentLock();
        if (_delegatee != 0 && _ownerOf(_delegatee) == address(0)) revert NonExistentToken();
        if (ownershipChange[_delegator] == block.number) revert OwnershipChange();
        if (_delegatee == _delegator) _delegatee = 0;
        uint256 currentDelegate = _delegates[_delegator];
        if (currentDelegate == _delegatee) return;

        uint256 delegatedBalance = uint256(uint128(delegateLocked.amount));
        _checkpointDelegator(_delegator, _delegatee, _ownerOf(_delegator));
        _checkpointDelegatee(_delegatee, delegatedBalance, true);

        emit DelegateChanged(_msgSender(), currentDelegate, _delegatee);
    }

    /// @inheritdoc IVotingEscrow
    function delegate(uint256 delegator, uint256 delegatee) external {
        if (!_isApprovedOrOwner(_msgSender(), delegator)) revert NotApprovedOrOwner();
        return _delegate(delegator, delegatee);
    }

    /// @inheritdoc IVotingEscrow
    function delegateBySig(
        uint256 delegator,
        uint256 delegatee,
        uint256 nonce,
        uint256 expiry,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) revert InvalidSignatureS();
        bytes32 domainSeparator = keccak256(
            abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name)), keccak256(bytes(version)), block.chainid, address(this))
        );
        bytes32 structHash = keccak256(abi.encode(DELEGATION_TYPEHASH, delegator, delegatee, nonce, expiry));
        bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
        address signatory = ecrecover(digest, v, r, s);
        if (!_isApprovedOrOwner(signatory, delegator)) revert NotApprovedOrOwner();
        if (signatory == address(0)) revert InvalidSignature();
        if (nonce != nonces[signatory]++) revert InvalidNonce();
        if (block.timestamp > expiry) revert SignatureExpired();
        return _delegate(delegator, delegatee);
    }

    function clock() external view returns (uint48) {
        return uint48(block.timestamp);
    }

    function CLOCK_MODE() external view returns (string memory) {
        return "mode=timestamp";
    }
}

Contract ABI

[{"inputs":[{"internalType":"address","name":"_forwarder","type":"address"},{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_factoryRegistry","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyVoted","type":"error"},{"inputs":[],"name":"AmountTooBig","type":"error"},{"inputs":[],"name":"ERC721ReceiverRejectedTokens","type":"error"},{"inputs":[],"name":"ERC721TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"InvalidManagedNFTId","type":"error"},{"inputs":[],"name":"InvalidNonce","type":"error"},{"inputs":[],"name":"InvalidSignature","type":"error"},{"inputs":[],"name":"InvalidSignatureS","type":"error"},{"inputs":[],"name":"LockDurationNotInFuture","type":"error"},{"inputs":[],"name":"LockDurationTooLong","type":"error"},{"inputs":[],"name":"LockExpired","type":"error"},{"inputs":[],"name":"LockNotExpired","type":"error"},{"inputs":[],"name":"NoLockFound","type":"error"},{"inputs":[],"name":"NonExistentToken","type":"error"},{"inputs":[],"name":"NotApprovedOrOwner","type":"error"},{"inputs":[],"name":"NotDistributor","type":"error"},{"inputs":[],"name":"NotEmergencyCouncilOrGovernor","type":"error"},{"inputs":[],"name":"NotGovernor","type":"error"},{"inputs":[],"name":"NotGovernorOrManager","type":"error"},{"inputs":[],"name":"NotLockedNFT","type":"error"},{"inputs":[],"name":"NotManagedNFT","type":"error"},{"inputs":[],"name":"NotManagedOrNormalNFT","type":"error"},{"inputs":[],"name":"NotNormalNFT","type":"error"},{"inputs":[],"name":"NotOwner","type":"error"},{"inputs":[],"name":"NotPermanentLock","type":"error"},{"inputs":[],"name":"NotTeam","type":"error"},{"inputs":[],"name":"NotVoter","type":"error"},{"inputs":[],"name":"OwnershipChange","type":"error"},{"inputs":[],"name":"PermanentLock","type":"error"},{"inputs":[],"name":"SameAddress","type":"error"},{"inputs":[],"name":"SameNFT","type":"error"},{"inputs":[],"name":"SameState","type":"error"},{"inputs":[],"name":"SignatureExpired","type":"error"},{"inputs":[],"name":"SplitNoOwner","type":"error"},{"inputs":[],"name":"SplitNotAllowed","type":"error"},{"inputs":[],"name":"TooManyTokenIDs","type":"error"},{"inputs":[],"name":"ZeroAddress","type":"error"},{"inputs":[],"name":"ZeroAmount","type":"error"},{"inputs":[],"name":"ZeroBalance","type":"error"},{"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":"_fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_toTokenId","type":"uint256"}],"name":"BatchMetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":true,"internalType":"uint256","name":"_mTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"address","name":"_lockedManagedReward","type":"address"},{"indexed":false,"internalType":"address","name":"_freeManagedReward","type":"address"}],"name":"CreateManaged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"uint256","name":"fromDelegate","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"toDelegate","type":"uint256"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"provider","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"enum IVotingEscrow.DepositType","name":"depositType","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"locktime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ts","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"_mTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_weight","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_ts","type":"uint256"}],"name":"DepositManaged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_ts","type":"uint256"}],"name":"LockPermanent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_sender","type":"address"},{"indexed":true,"internalType":"uint256","name":"_from","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"_to","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_amountFrom","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_amountTo","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_amountFinal","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_locktime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_ts","type":"uint256"}],"name":"Merge","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":"_allowedManager","type":"address"}],"name":"SetAllowedManager","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_from","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"_tokenId1","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"_tokenId2","type":"uint256"},{"indexed":false,"internalType":"address","name":"_sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"_splitAmount1","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_splitAmount2","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_locktime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_ts","type":"uint256"}],"name":"Split","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"prevSupply","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"supply","type":"uint256"}],"name":"Supply","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":true,"internalType":"address","name":"_owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_ts","type":"uint256"}],"name":"UnlockPermanent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"provider","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ts","type":"uint256"}],"name":"Withdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"_mTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_weight","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_ts","type":"uint256"}],"name":"WithdrawManaged","type":"event"},{"inputs":[],"name":"CLOCK_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowedManager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_approved","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"artProxy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"balanceOfNFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_t","type":"uint256"}],"name":"balanceOfNFTAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"canSplit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkpoint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint48","name":"_index","type":"uint48"}],"name":"checkpoints","outputs":[{"components":[{"internalType":"uint256","name":"fromTimestamp","type":"uint256"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"delegatedBalance","type":"uint256"},{"internalType":"uint256","name":"delegatee","type":"uint256"}],"internalType":"struct IVotingEscrow.Checkpoint","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"clock","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"uint256","name":"_lockDuration","type":"uint256"}],"name":"createLock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"uint256","name":"_lockDuration","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"createLockFor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"createManagedLockFor","outputs":[{"internalType":"uint256","name":"_mTokenId","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"deactivated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"delegator","type":"uint256"},{"internalType":"uint256","name":"delegatee","type":"uint256"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"delegator","type":"uint256"},{"internalType":"uint256","name":"delegatee","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"delegator","type":"uint256"}],"name":"delegates","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"depositFor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_mTokenId","type":"uint256"}],"name":"depositManaged","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"distributor","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"epoch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"escrowType","outputs":[{"internalType":"enum IVotingEscrow.EscrowType","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"factoryRegistry","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"forwarder","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"uint256","name":"_timestamp","type":"uint256"}],"name":"getPastTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_timestamp","type":"uint256"}],"name":"getPastVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"idToManaged","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"increaseAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_lockDuration","type":"uint256"}],"name":"increaseUnlockTime","outputs":[],"stateMutability":"nonpayable","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":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"isApprovedOrOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"forwarder","type":"address"}],"name":"isTrustedForwarder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"lockPermanent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"locked","outputs":[{"components":[{"internalType":"int128","name":"amount","type":"int128"},{"internalType":"uint256","name":"end","type":"uint256"},{"internalType":"bool","name":"isPermanent","type":"bool"}],"internalType":"struct IVotingEscrow.LockedBalance","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"managedToFree","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"managedToLocked","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_from","type":"uint256"},{"internalType":"uint256","name":"_to","type":"uint256"}],"name":"merge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"numCheckpoints","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"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":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"ownerToNFTokenIdList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"permanentLockBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_loc","type":"uint256"}],"name":"pointHistory","outputs":[{"components":[{"internalType":"int128","name":"bias","type":"int128"},{"internalType":"int128","name":"slope","type":"int128"},{"internalType":"uint256","name":"ts","type":"uint256"},{"internalType":"uint256","name":"blk","type":"uint256"},{"internalType":"uint256","name":"permanentLockBalance","type":"uint256"}],"internalType":"struct IVotingEscrow.GlobalPoint","name":"","type":"tuple"}],"stateMutability":"view","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":"_allowedManager","type":"address"}],"name":"setAllowedManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"},{"internalType":"bool","name":"_approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_proxy","type":"address"}],"name":"setArtProxy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mTokenId","type":"uint256"},{"internalType":"bool","name":"_state","type":"bool"}],"name":"setManagedState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_team","type":"address"}],"name":"setTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_voter","type":"address"},{"internalType":"address","name":"_distributor","type":"address"}],"name":"setVoterAndDistributor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"slopeChanges","outputs":[{"internalType":"int128","name":"","type":"int128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_from","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"split","outputs":[{"internalType":"uint256","name":"_tokenId1","type":"uint256"},{"internalType":"uint256","name":"_tokenId2","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"team","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"bool","name":"_bool","type":"bool"}],"name":"toggleSplit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_timestamp","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"unlockPermanent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"userPointEpoch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_loc","type":"uint256"}],"name":"userPointHistory","outputs":[{"components":[{"internalType":"int128","name":"bias","type":"int128"},{"internalType":"int128","name":"slope","type":"int128"},{"internalType":"uint256","name":"ts","type":"uint256"},{"internalType":"uint256","name":"blk","type":"uint256"},{"internalType":"uint256","name":"permanent","type":"uint256"}],"internalType":"struct IVotingEscrow.UserPoint","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"voted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"voter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bool","name":"_voted","type":"bool"}],"name":"voting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"weights","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"withdrawManaged","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101006040523480156200001257600080fd5b50604051620061fd380380620061fd833981016040819052620000359162000266565b6001600160a01b038084166080819052600160005560a05282811660e052811660c0526200006262000221565b600380546001600160a01b0319166001600160a01b03929092169190911790556200008c62000221565b600280546001600160a01b0319166001600160a01b0392909216919091179055437f54cdd369e4e8a8515e52ca72ec816c2101831ad1f18bf44102ed171459c9b4fa55427f54cdd369e4e8a8515e52ca72ec816c2101831ad1f18bf44102ed171459c9b4f95560076020527f1142c8ae8ad77901cd97fce843895a9ccf91a8cbd5b191350a94c1d957b07f74805460ff1990811660019081179092557f2379132be4428a30bdcf8f40c0757cba23c7e3f4204cd933dabcc3d42093e80480548216831790557f7108cf076693445f3e0461801864e91d74eb5e0eee196ef60b5961a16cd35b9380548216831790557fbc48a5b87e2e2cb168c956e8aca8ee5c5d50c657bb1c18b9ad30280d5cf98f5b805482168317905563da287a1d60e01b60009081527f7105fc4c24d760d461c0883f925f50b55888872394b962f52e936e529601d62a8054909216909217905560085460405190913091600080516020620061dd833981519152908290a46008546040516000903090600080516020620061dd833981519152908390a4505050620002b0565b6080516000906001600160a01b0316330362000244575060131936013560601c90565b503390565b80516001600160a01b03811681146200026157600080fd5b919050565b6000806000606084860312156200027c57600080fd5b620002878462000249565b9250620002976020850162000249565b9150620002a76040850162000249565b90509250925092565b60805160a05160c05160e051615ebb6200032260003960008181610d6b01528181611254015281816117700152818161185301528181613ec60152614db90152600081816106e90152611fe1015260008181610d4401526120660152600081816108a60152613c920152615ebb6000f3fe608060405234801561001057600080fd5b50600436106104805760003560e01c806370a0823111610257578063b45a3c0e11610146578063e58f5947116100c3578063ec32e6df11610087578063ec32e6df14610ca7578063f04cb3a814610cba578063f52a36f714610d09578063f645d4f914610d3f578063fc0c546a14610d6657600080fd5b8063e58f594714610bfe578063e75b1c2e14610c1e578063e7a324dc14610c31578063e7e242d414610c58578063e985e9c514610c6b57600080fd5b8063c87b56dd1161010a578063c87b56dd14610b9f578063d1c2babb14610bb2578063d9a3495214610bc5578063e0514aba14610bd8578063e0c11f9a14610beb57600080fd5b8063b45a3c0e14610ad6578063b52c05fe14610b5e578063b88d4fde14610b71578063bfe1092814610b84578063c2c4c5c114610b9757600080fd5b806391ddadf4116101d4578063a22cb46511610198578063a22cb46514610a44578063a738da8214610a57578063a899b36c14610a80578063b1548afc14610aa3578063b2383e5514610ac357600080fd5b806391ddadf414610a1857806395d89b41146104de578063981b24d0146109d95780639954a98914610a1e5780639d507b8b14610a3157600080fd5b80638ad4c4471161021b5780638ad4c4471461099b5780638bf9d84c146109ae5780638e539e8c146109d95780638fbb38ff146109ec578063900cf0cf14610a0f57600080fd5b806370a08231146108fc5780637c728000146109255780637ecebe0014610955578063834b0b691461097557806385f2aef21461098857600080fd5b8063370fb5fa116103735780634bf5d7e9116102f057806354fd4d50116102b457806354fd4d501461085f5780635594a04514610883578063572b6c05146108965780635a4f459a146108d65780636352211e146108e957600080fd5b80634bf5d7e9146107af5780634d01cb66146107d95780634d6fb775146107e257806350589793146107f5578063515857d41461083457600080fd5b806342842e0e1161033757806342842e0e1461072e578063430c20811461074157806344acb42a1461075457806346c96aac146107745780634b19becc1461078757600080fd5b8063370fb5fa146106ab57806337b1f500146106be5780633a6396a5146106d15780633bf0c9fb146106e45780633d085a371461070b57600080fd5b806320606b70116104015780632e720f7d116103c55780632e720f7d146106455780632f7f9ba914610658578063313ce5671461066b57806333230dc01461068557806335b0f6bd1461069857600080fd5b806320606b70146105bc57806323b872dd146105e357806327a6ee98146105f65780632d0485ec1461061f5780632e1a7d4d1461063257600080fd5b8063095ea7b311610448578063095ea7b3146105655780630ec84dda1461057857806317d70f7c1461058b57806318160ddd1461059457806319a0a9d51461059c57600080fd5b806301ffc9a714610485578063047fc9aa146104c757806306fdde03146104de578063081812fc1461050f578063095cf5c614610550575b600080fd5b6104b261049336600461569c565b6001600160e01b03191660009081526007602052604090205460ff1690565b60405190151581526020015b60405180910390f35b6104d060175481565b6040519081526020016104be565b610502604051806040016040528060058152602001641d9953919560da1b81525081565b6040516104be9190615709565b61053861051d36600461571c565b6000908152601160205260409020546001600160a01b031690565b6040516001600160a01b0390911681526020016104be565b61056361055e36600461574a565b610d8d565b005b610563610573366004615767565b610e11565b610563610586366004615793565b610f52565b6104d060085481565b6104d0610fdf565b6104d06105aa36600461571c565b600a6020526000908152604090205481565b6104d07f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6105636105f13660046157b5565b610fef565b61053861060436600461571c565b600e602052600090815260409020546001600160a01b031681565b61056361062d3660046157f6565b611007565b61056361064036600461571c565b611070565b61056361065336600461574a565b611315565b600554610538906001600160a01b031681565b610673601281565b60405160ff90911681526020016104be565b61056361069336600461583d565b6113a9565b6105636106a636600461571c565b61140f565b6105636106b936600461571c565b611676565b6105636106cc36600461586b565b611c98565b6104d06106df36600461574a565b611e7e565b6105387f000000000000000000000000000000000000000000000000000000000000000081565b6104b261071936600461574a565b601c6020526000908152604090205460ff1681565b61056361073c3660046157b5565b61217d565b6104b261074f366004615767565b612198565b610767610762366004615793565b6121ad565b6040516104be9190615890565b600254610538906001600160a01b031681565b61079a610795366004615793565b61222b565b604080519283526020830191909152016104be565b60408051808201909152600e81526d06d6f64653d74696d657374616d760941b6020820152610502565b6104d0601d5481565b6104d06107f03660046158cf565b612591565b61081d61080336600461571c565b60216020526000908152604090205465ffffffffffff1681565b60405165ffffffffffff90911681526020016104be565b6104d0610842366004615793565b600b60209081526000928352604080842090915290825290205481565b610502604051806040016040528060058152602001640322e302e360dc1b81525081565b600454610538906001600160a01b031681565b6104b26108a436600461574a565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0390811691161490565b6105636108e436600461586b565b612636565b6105386108f736600461571c565b612691565b6104d061090a36600461574a565b6001600160a01b031660009081526010602052604090205490565b61094861093336600461571c565b60096020526000908152604090205460ff1681565b6040516104be919061591a565b6104d061096336600461574a565b60226020526000908152604090205481565b610563610983366004615942565b61269c565b600354610538906001600160a01b031681565b6107676109a936600461571c565b612976565b6104d06109bc366004615767565b601460209081526000928352604080842090915290825290205481565b6104d06109e736600461571c565b612a07565b6104b26109fa36600461571c565b601e6020526000908152604090205460ff1681565b6104d060165481565b4261081d565b610563610a2c36600461574a565b612a12565b610563610a3f366004615793565b612b61565b610563610a5236600461583d565b612d35565b610538610a6536600461571c565b600d602052600090815260409020546001600160a01b031681565b6104b2610a8e36600461571c565b600c6020526000908152604090205460ff1681565b6104d0610ab136600461571c565b6000908152601f602052604090205490565b610563610ad1366004615793565b612de0565b610b37610ae436600461571c565b6040805160608082018352600080835260208084018290529284018190529384526018825292829020825193840183528054600f0b84526001810154918401919091526002015460ff1615159082015290565b604080518251600f0b815260208084015190820152918101511515908201526060016104be565b6104d0610b6c366004615793565b612e1c565b610563610b7f366004615a16565b612e44565b600154610538906001600160a01b031681565b610563612f67565b610502610bad36600461571c565b612fb9565b610563610bc0366004615793565b61305c565b610563610bd3366004615793565b61348c565b6104d0610be6366004615793565b6134be565b610563610bf9366004615793565b6134ca565b6104d0610c0c36600461571c565b601a6020526000908152604090205481565b610563610c2c36600461571c565b61398d565b6104d07f9947d5709c1682eaa3946b2d84115c9c0d1c946b149d76e69b457458b42ea29e81565b6104d0610c6636600461571c565b613bb4565b6104b2610c793660046157f6565b6001600160a01b03918216600090815260126020908152604080832093909416825291909152205460ff1690565b6104d0610cb5366004615ac5565b613bdc565b610ccd610cc8366004615afe565b613bfd565b6040516104be9190815181526020808301516001600160a01b031690820152604080830151908201526060918201519181019190915260800190565b610d2c610d1736600461571c565b601b60205260009081526040902054600f0b81565b604051600f9190910b81526020016104be565b6105387f000000000000000000000000000000000000000000000000000000000000000081565b6105387f000000000000000000000000000000000000000000000000000000000000000081565b6003546001600160a01b0316610da1613c8e565b6001600160a01b031614610dc857604051633a7cfa5d60e21b815260040160405180910390fd5b6001600160a01b038116610def5760405163d92e233d60e01b815260040160405180910390fd5b600380546001600160a01b0319166001600160a01b0392909216919091179055565b6000610e1b613c8e565b90506000610e2883613cd2565b90506001600160a01b038116610e515760405163d92e233d60e01b815260040160405180910390fd5b836001600160a01b0316816001600160a01b031603610e835760405163367558c360e01b815260040160405180910390fd5b6000826001600160a01b0316610e9885613cd2565b6001600160a01b0384811660009081526012602090815260408083208985168452909152902054911691909114915060ff16811582610ed5575080155b15610ef35760405163390cdd9b60e21b815260040160405180910390fd5b60008581526011602052604080822080546001600160a01b0319166001600160a01b038a811691821790925591518893918716917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050505050565b610f5a613ced565b600260008381526009602052604090205460ff166002811115610f7f57610f7f615904565b148015610fa757506001546001600160a01b0316610f9b613c8e565b6001600160a01b031614155b15610fc55760405163385296d560e01b815260040160405180910390fd5b610fd182826000613d4b565b610fdb6001600055565b5050565b6000610fea42613f96565b905090565b611002838383610ffd613c8e565b614026565b505050565b6002546001600160a01b031661101b613c8e565b6001600160a01b0316146110425760405163c18384c160e01b815260040160405180910390fd5b600280546001600160a01b039384166001600160a01b03199182161790915560018054929093169116179055565b611078613ced565b6000611082613c8e565b905061108e8183614154565b6110ab5760405163390cdd9b60e21b815260040160405180910390fd5b6000828152601e602052604090205460ff16156110db57604051637c9a1cf960e01b815260040160405180910390fd5b60008281526009602052604081205460ff1660028111156110fe576110fe615904565b1461111c576040516317a66f3760e01b815260040160405180910390fd5b60008281526018602090815260409182902082516060810184528154600f0b81526001820154928101929092526002015460ff161580159282019290925290611178576040516334d10f9560e11b815260040160405180910390fd5b806020015142101561119d5760405163342ad40160e11b815260040160405180910390fd5b8051600f0b6111ab846141be565b6040805160608101825260008082526020808301828152838501838152898452601890925293909120915182546001600160801b0319166001600160801b039091161782559151600182015590516002909101805460ff191691151591909117905560175461121a8282615b44565b6017556040805160608101825260008082526020820181905291810191909152611247908690859061426e565b61127b6001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168584614a27565b6040805183815242602082015286916001600160a01b038716917f02f25270a4d87bea75db541cdfe559334a275b4a233520ed6c0a2429667cca94910160405180910390a37f5e2aa66efd74cce82b21852e317e5490d9ecc9e6bb953ae24d90851258cc2f5c816112ec8482615b44565b6040805192835260208301919091520160405180910390a1505050506113126001600055565b50565b6003546001600160a01b0316611329613c8e565b6001600160a01b03161461135057604051633a7cfa5d60e21b815260040160405180910390fd5b600480546001600160a01b0319166001600160a01b038316179055604080516000815260001960208201527f6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c910160405180910390a150565b6003546001600160a01b03166113bd613c8e565b6001600160a01b0316146113e457604051633a7cfa5d60e21b815260040160405180910390fd5b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6000611419613c8e565b90506114258183614154565b6114425760405163390cdd9b60e21b815260040160405180910390fd5b60008281526009602052604081205460ff16600281111561146557611465615904565b14611483576040516317a66f3760e01b815260040160405180910390fd5b6000828152601e602052604090205460ff16156114b357604051637c9a1cf960e01b815260040160405180910390fd5b60008281526018602090815260409182902082516060810184528154600f0b81526001820154928101929092526002015460ff1615159181018290529061150d57604051632188f8ab60e01b815260040160405180910390fd5b60008160000151600f0b905080601d600082825461152b9190615b44565b9091555062093a80905080611544630784ce0042615b57565b61154e9190615b80565b6115589190615b94565b6020830152600060408301819052611571908590614a8a565b60008481526018602090815260409182902082516060810184528154600f0b81526001820154928101929092526002015460ff161515918101919091526115ba9085908461426e565b600084815260186020908152604091829020845181546001600160801b0319166001600160801b03909116178155848201516001820155848301516002909101805460ff19169115159190911790558151838152429181019190915285916001600160a01b038616917f668d293c0a181c1f163fd0d3c757239a9c17bd26c5e483150e374455433b27fa91015b60405180910390a3604051848152600080516020615e668339815191529060200160405180910390a150505050565b61167e613ced565b6000818152600a60205260409020546002546001600160a01b03166116a1613c8e565b6001600160a01b0316146116c85760405163c18384c160e01b815260040160405180910390fd5b806000036116e95760405163d7caa26160e01b815260040160405180910390fd5b600160008381526009602052604090205460ff16600281111561170e5761170e615904565b1461172c57604051630fd82f7760e11b815260040160405180910390fd5b6000818152600d6020908152604080832054600e835281842054868552600b8452828520868652909352818420549151633e491d4760e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081166004830152602482018890529182169491909316928490633e491d4790604401602060405180830381865afa1580156117ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117f29190615bab565b905060006118008284615b57565b9050600062093a8080611817630784ce0042615b57565b6118219190615b80565b61182b9190615b94565b60408051600180825281830190925291925060009190602080830190803683370190505090507f00000000000000000000000000000000000000000000000000000000000000008160008151811061188557611885615bc4565b6001600160a01b03928316602091820292909201015260405163f5f8d36560e01b81529088169063f5f8d365906118c2908c908590600401615bda565b600060405180830381600087803b1580156118dc57600080fd5b505af11580156118f0573d6000803e3d6000fd5b505050506000604051806060016040528085600f0b81526020018481526020016000151581525090506119838a601860008d81526020019081526020016000206040518060600160405290816000820160009054906101000a9004600f0b600f0b600f0b8152602001600182015481526020016002820160009054906101000a900460ff1615151515815250508361426e565b60008a8152601860209081526040808320845181546001600160801b0319166001600160801b0390911617815584830151600180830191909155858301516002928301805460ff19169115159190911790558d85529382902082516060810184528154600f90810b808352968301549582019590955291015460ff16151591810191909152919086900b12611a19578051611a1b565b845b81518290611a2a908390615c31565b600f0b905250601d548510611a4157601d54611a43565b845b601d6000828254611a549190615b44565b909155505060008a8152601f6020526040812054611a73918790614be9565b60008a81526018602090815260409182902082516060810184528154600f0b81526001820154928101929092526002015460ff16151591810191909152611abc908b908361426e565b60008a815260186020908152604091829020835181546001600160801b0319166001600160801b03918216178255918401516001820155838301516002909101805460ff1916911515919091179055905163278afc8b60e21b81529088166004820152602481018c90526001600160a01b038a1690639e2bf22c90604401600060405180830381600087803b158015611b5457600080fd5b505af1158015611b68573d6000803e3d6000fd5b505060405163278afc8b60e21b81526001600160801b038a166004820152602481018e90526001600160a01b038b169250639e2bf22c9150604401600060405180830381600087803b158015611bbd57600080fd5b505af1158015611bd1573d6000803e3d6000fd5b50505060008c8152600a60209081526040808320839055600b82528083208e845282528083208390558e835260099091529020805460ff1916905550898b611c1881613cd2565b6001600160a01b03167f5319474ec1e9d118585a40e615ea37be254007e6bb5b039756c3813c2d1354898842604051611c5b929190918252602082015260400190565b60405180910390a46040518b8152600080516020615e668339815191529060200160405180910390a1505050505050505050506113126001600055565b600260009054906101000a90046001600160a01b03166001600160a01b0316637778960e6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ceb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d0f9190615c5e565b6001600160a01b0316611d20613c8e565b6001600160a01b031614158015611dc65750600260009054906101000a90046001600160a01b03166001600160a01b0316630c340a246040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d85573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611da99190615c5e565b6001600160a01b0316611dba613c8e565b6001600160a01b031614155b15611de45760405163459d6a3f60e01b815260040160405180910390fd5b600260008381526009602052604090205460ff166002811115611e0957611e09615904565b14611e275760405163054b1e0160e51b815260040160405180910390fd5b6000828152600c602052604090205481151560ff909116151503611e5e57604051631490ad1160e01b815260040160405180910390fd5b6000918252600c6020526040909120805460ff1916911515919091179055565b6000611e88613ced565b6000611e92613c8e565b6005549091506001600160a01b03808316911614801590611f3b5750600260009054906101000a90046001600160a01b03166001600160a01b0316630c340a246040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f259190615c5e565b6001600160a01b0316816001600160a01b031614155b15611f5957604051633bc1d15f60e01b815260040160405180910390fd5b600860008154611f6890615c7b565b91829055509150611f798383614c66565b50611fab8260008060405180606001604052806000600f0b815260200160008152602001600115158152506001614cd5565b6000828152600960209081526040808320805460ff1916600217905580516301a15ccf60e31b8152905183926001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001692630d0ae67892600480830193928290030181865afa158015612028573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061204c9190615c5e565b60025460405163dabc8e8360e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081166004830152918216602482015291169063dabc8e839060440160408051808303816000875af11580156120be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120e29190615c94565b6000868152600d6020908152604080832080546001600160a01b038781166001600160a01b03199283168117909355600e8552948390208054878716921682179055825191825292810192909252939550919350858116928792918916917fae65a147ec014982132ce8b32019735e3c5f41457848d2ce2e2c3e0cbc9df7bc910160405180910390a45050506121786001600055565b919050565b61100283838360405180602001604052806000815250612e44565b60006121a48383614154565b90505b92915050565b6121b5615651565b600083815260196020526040902082633b9aca0081106121d7576121d7615bc4565b6040805160a081018252600492909202929092018054600f81810b8452600160801b909104900b60208301526001810154928201929092526002820154606082015260039091015460808201529392505050565b600080612236613ced565b6000612240613c8e565b9050600061224d86613cd2565b90506001600160a01b03811661227657604051632c2151ef60e11b815260040160405180910390fd5b6001600160a01b0381166000908152601c602052604090205460ff161580156122ca575060008052601c6020527fb9c6de81004e18dedadca3e5eabaab449ca91dff6f58efc9461da635fe77f8495460ff16155b156122e857604051633df16fd960e21b815260040160405180910390fd5b60008681526009602052604081205460ff16600281111561230b5761230b615904565b14612329576040516317a66f3760e01b815260040160405180910390fd5b6000868152601e602052604090205460ff161561235957604051637c9a1cf960e01b815260040160405180910390fd5b6123638287614154565b6123805760405163390cdd9b60e21b815260040160405180910390fd5b60008681526018602090815260409182902082516060810184528154600f0b8152600182015492810183905260029091015460ff1615159281019290925242108015906123cf57508060400151155b156123ed576040516307b7d7dd60e51b815260040160405180910390fd5b85600f81900b60000361241357604051631f2a200560e01b815260040160405180910390fd5b80600f0b8260000151600f0b1361243d57604051636b2f218360e01b815260040160405180910390fd5b612446886141be565b6040805160608082018352600080835260208084018281528486018381528e845260188352868420955186546001600160801b0319166001600160801b0390911617865590516001860155516002909401805460ff19169415159490941790935583519182018452808252918101829052918201526124c8908990849061426e565b80826000018181516124da9190615c31565b600f0b9052506124ea8383614e92565b600f82900b835295506124fd8383614e92565b600087815260186020908152604091829020548582015183516001600160a01b038a1681526001600160801b0392831693810193909352858216838501521660608201524260808201529051919650869188918b917f8303de8187a6102fdc3fe20c756dddd68df0ae027b77e2391c19a855e0821f339181900360a00190a45050505061258a6001600055565b9250929050565b6040516332b53f5360e11b815260216004820152602060248201526001600160a01b038416604482015260648101839052608481018290526000907335b833049c20ceb6549c6948e62e76e9c5e1ba089063656a7ea69060a401602060405180830381865af4158015612608573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061262c9190615bab565b90505b9392505050565b6002546001600160a01b031661264a613c8e565b6001600160a01b0316146126715760405163c18384c160e01b815260040160405180910390fd5b6000918252601e6020526040909120805460ff1916911515919091179055565b60006121a782613cd2565b7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08111156126dd576040516317e97eb760e31b815260040160405180910390fd5b6040805180820182526005808252641d9953919560da1b60209283015282518084018452908152640322e302e360dc1b9082015281517f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a866818301527fc792e9874e7b42c234d1e8448cec020a0f065019c8cd6f7ccdb65b8c110157e9818401527fb4bcb154e38601c389396fa918314da42d4626f13ef6d0ceb07e5f5d26b2fbc360608201524660808201523060a0808301919091528351808303909101815260c0820184528051908301207f9947d5709c1682eaa3946b2d84115c9c0d1c946b149d76e69b457458b42ea29e60e083015261010082018b905261012082018a905261014082018990526101608083018990528451808403909101815261018083019094528351939092019290922061190160f01b6101a08401526101a283018290526101c2830181905290916000906101e20160408051601f198184030181528282528051602091820120600080855291840180845281905260ff8a169284019290925260608301889052608083018790529092509060019060a0016020604051602081039080840390855afa15801561289c573d6000803e3d6000fd5b5050506020604051035190506128b2818c614154565b6128cf5760405163390cdd9b60e21b815260040160405180910390fd5b6001600160a01b0381166128f657604051638baa579f60e01b815260040160405180910390fd5b6001600160a01b038116600090815260226020526040812080549161291a83615c7b565b91905055891461293d57604051633ab3447f60e11b815260040160405180910390fd5b8742111561295e57604051630819bdcd60e01b815260040160405180910390fd5b6129688b8b614a8a565b505050505b50505050505050565b6129ae6040518060a001604052806000600f0b81526020016000600f0b81526020016000815260200160008152602001600081525090565b50600090815260066020908152604091829020825160a0810184528154600f81810b8352600160801b909104900b9281019290925260018101549282019290925260028201546060820152600390910154608082015290565b60006121a782613f96565b600260009054906101000a90046001600160a01b03166001600160a01b0316630c340a246040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a899190615c5e565b6001600160a01b0316612a9a613c8e565b6001600160a01b031614612ac157604051633b8d9d7560e21b815260040160405180910390fd5b6005546001600160a01b0390811690821603612af05760405163367558c360e01b815260040160405180910390fd5b6001600160a01b038116612b175760405163d92e233d60e01b815260040160405180910390fd5b600580546001600160a01b0319166001600160a01b0383169081179091556040517f1a6ce72407c68def4b7d2e724c896070d89cf2b2a2dd56b6897b5febd88420f590600090a250565b612b69613ced565b612b7a612b74613c8e565b83614154565b612b975760405163390cdd9b60e21b815260040160405180910390fd5b60008281526009602052604081205460ff166002811115612bba57612bba615904565b14612bd8576040516317a66f3760e01b815260040160405180910390fd5b60008281526018602090815260409182902082516060810184528154600f0b81526001820154928101929092526002015460ff161580159282019290925290612c34576040516334d10f9560e11b815260040160405180910390fd5b600062093a8080612c458542615b57565b612c4f9190615b80565b612c599190615b94565b905042826020015111612c7f576040516307b7d7dd60e51b815260040160405180910390fd5b60008260000151600f0b13612ca75760405163f90e998d60e01b815260040160405180910390fd5b81602001518111612ccb57604051638e6b5b6760e01b815260040160405180910390fd5b612cd9630784ce0042615b57565b811115612cf95760405163f761f1cd60e01b815260040160405180910390fd5b612d0884600083856003614cd5565b604051848152600080516020615e668339815191529060200160405180910390a15050610fdb6001600055565b6000612d3f613c8e565b9050806001600160a01b0316836001600160a01b031603612d735760405163367558c360e01b815260040160405180910390fd5b6001600160a01b03818116600081815260126020908152604080832094881680845294825291829020805460ff191687151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612de8613ced565b612df3612b74613c8e565b612e105760405163390cdd9b60e21b815260040160405180910390fd5b610fd182826002613d4b565b6000612e26613ced565b612e388383612e33613c8e565b614f2d565b90506121a76001600055565b6000612e4e613c8e565b9050612e5c85858584614026565b833b15612f6057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612e95908490899088908890600401615cc3565b6020604051808303816000875af1925050508015612ed0575060408051601f3d908101601f19168201909252612ecd91810190615d00565b60015b612f2d573d808015612efe576040519150601f19603f3d011682016040523d82523d6000602084013e612f03565b606091505b508051600003612f2557604051626b5e2960e61b815260040160405180910390fd5b805181602001fd5b6001600160e01b03198116630a85bd0160e11b14612f5e5760405163279929b160e21b815260040160405180910390fd5b505b5050505050565b612f6f613ced565b604080516060808201835260008083526020808401829052838501829052845192830185528183528201819052928101839052612fad92919061426e565b612fb76001600055565b565b60606000612fc683613cd2565b6001600160a01b031603612fed57604051634a1850bf60e11b815260040160405180910390fd5b6004805460405163c87b56dd60e01b81529182018490526001600160a01b03169063c87b56dd90602401600060405180830381865afa158015613034573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526121a79190810190615d1d565b613064613ced565b600061306e613c8e565b6000848152601e602052604090205490915060ff16156130a157604051637c9a1cf960e01b815260040160405180910390fd5b60008381526009602052604081205460ff1660028111156130c4576130c4615904565b146130e2576040516317a66f3760e01b815260040160405180910390fd5b60008281526009602052604081205460ff16600281111561310557613105615904565b14613123576040516317a66f3760e01b815260040160405180910390fd5b818303613143576040516349da877960e11b815260040160405180910390fd5b61314d8184614154565b61316a5760405163390cdd9b60e21b815260040160405180910390fd5b6131748183614154565b6131915760405163390cdd9b60e21b815260040160405180910390fd5b60008281526018602090815260409182902082516060810184528154600f0b8152600182015492810183905260029091015460ff1615159281019290925242108015906131e057508060400151155b156131fe576040516307b7d7dd60e51b815260040160405180910390fd5b60008481526018602090815260409182902082516060810184528154600f0b81526001820154928101929092526002015460ff16158015928201929092529061325a576040516334d10f9560e11b815260040160405180910390fd5b600082602001518260200151101561327657826020015161327c565b81602001515b9050613287866141be565b6040805160608082018352600080835260208084018281528486018381528c845260188352868420955186546001600160801b0319166001600160801b0390911617865590516001860155516002909401805460ff1916941515949094179093558351918201845280825291810182905291820152613309908790849061426e565b6040805160608101825260008082526020820181905291810191909152825184516133349190615d8b565b600f0b815260408085015115801591830191909152613371578260000151600f0b601d60008282546133669190615b57565b909155506133799050565b602081018290525b6000868152601f602052604090205483516133999190600f0b6001614be9565b6133a486858361426e565b600086815260186020908152604091829020835181546001600160801b039182166001600160801b0319909116811783558584015160018401819055868601516002909401805494151560ff19909516949094179093558751895186519184168252831694810194909452838501521660608201524260808201529051879189916001600160a01b038916917f986e3c958e3bdf1f58c2150357fc94624dd4e77b08f9802d8e2e885fa0d6a198919081900360a00190a4604051868152600080516020615e66833981519152906020015b60405180910390a15050505050610fdb6001600055565b613497612b74613c8e565b6134b45760405163390cdd9b60e21b815260040160405180910390fd5b610fdb8282614a8a565b60006121a4838361503f565b6134d2613ced565b6002546001600160a01b03166134e6613c8e565b6001600160a01b03161461350d5760405163c18384c160e01b815260040160405180910390fd5b600260008281526009602052604090205460ff16600281111561353257613532615904565b146135505760405163054b1e0160e51b815260040160405180910390fd5b60008281526009602052604081205460ff16600281111561357357613573615904565b14613591576040516317a66f3760e01b815260040160405180910390fd5b61359b824261503f565b6000036135bb5760405163334ab3f560e11b815260040160405180910390fd5b60008281526018602052604090208054600290910154600f9190910b9060ff161561360c57806001600160801b0316601d60008282546135fb9190615b44565b9091555061360c9050836000614a8a565b60008381526018602090815260408083208151606080820184528254600f0b825260018301548286015260029092015460ff1615158184015282519182018352848252928101849052908101929092526136689185919061426e565b60408051606081018252600080825260208083018281528385018381528884526018909252938220925183546001600160801b0319166001600160801b0391821617845593516001840155516002909201805460ff191692151592909217909155601d8054928416928392906136df908490615b57565b909155505060008381526018602090815260409182902082516060810184528154600f0b80825260018301549382019390935260029091015460ff1615159281019290925283908290613733908390615d8b565b600f0b9052506000848152601f602052604090205461375d906001600160801b0385166001614be9565b60008481526018602090815260409182902082516060810184528154600f0b81526001820154928101929092526002015460ff161515918101919091526137a69085908361426e565b6000848152601860209081526040808320845181546001600160801b0319166001600160801b0391821617825585840151600180840191909155868401516002909301805460ff199081169415159490941790558a8652600b85528386208a875285528386208890558a8652600a85528386208a905560098552838620805490931617909155878452600d9092529182902054915163f320772360e01b81529085166004820152602481018790526001600160a01b0390911690819063f320772390604401600060405180830381600087803b15801561388557600080fd5b505af1158015613899573d6000803e3d6000fd5b5050506000868152600e60205260409081902054905163f320772360e01b81526001600160801b0387166004820152602481018990526001600160a01b039091169150819063f320772390604401600060405180830381600087803b15801561390157600080fd5b505af1158015613915573d6000803e3d6000fd5b50505050858761392489613cd2565b6001600160a01b03167ff7757ce35992f4ee014dee2e0c97ed6245758960a6ecc9e124897a5fb7b014238742604051613967929190918252602082015260400190565b60405180910390a4604051878152600080516020615e6683398151915290602001613475565b6000613997613c8e565b90506139a38183614154565b6139c05760405163390cdd9b60e21b815260040160405180910390fd5b60008281526009602052604081205460ff1660028111156139e3576139e3615904565b14613a01576040516317a66f3760e01b815260040160405180910390fd5b60008281526018602090815260409182902082516060810184528154600f0b81526001820154928101929092526002015460ff161580159282019290925290613a5d576040516334d10f9560e11b815260040160405180910390fd5b42816020015111613a81576040516307b7d7dd60e51b815260040160405180910390fd5b60008160000151600f0b13613aa95760405163f90e998d60e01b815260040160405180910390fd5b60008160000151600f0b905080601d6000828254613ac79190615b57565b90915550506000602080840182905260016040808601829052878452601883529283902083516060810185528154600f0b8152918101549282019290925260029091015460ff16151591810191909152613b239085908461426e565b600084815260186020908152604091829020845181546001600160801b0319166001600160801b03909116178155848201516001820155848301516002909101805460ff19169115159190911790558151838152429181019190915285916001600160a01b038616917f793cb7a30a4bb8669ec607dfcbdc93f5a3e9d282f38191fddab43ccaf79efb809101611647565b600081815260136020526040812054439003613bd257506000919050565b6121a7824261503f565b6000613be6613ced565b613bf1848484614f2d565b905061262f6001600055565b613c3160405180608001604052806000815260200160006001600160a01b0316815260200160008152602001600081525090565b5060009182526020808052604080842065ffffffffffff9390931684529181529181902081516080810183528154815260018201546001600160a01b03169381019390935260028101549183019190915260030154606082015290565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163303613ccd575060131936013560601c90565b503390565b6000908152600f60205260409020546001600160a01b031690565b600260005403613d445760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600055565b60008381526009602052604090205460ff166001816002811115613d7157613d71615904565b03613d8f57604051635eb32db160e11b815260040160405180910390fd5b600084815260186020908152604080832081516060810183528154600f0b81526001820154938101939093526002015460ff1615159082015290849003613de957604051631f2a200560e01b815260040160405180910390fd5b60008160000151600f0b13613e115760405163f90e998d60e01b815260040160405180910390fd5b42816020015111158015613e2757508060400151155b15613e45576040516307b7d7dd60e51b815260040160405180910390fd5b806040015115613e675783601d6000828254613e619190615b57565b90915550505b6000858152601f6020526040902054613e8290856001614be9565b613e90858560008487614cd5565b6002826002811115613ea457613ea4615904565b03613f6e576000858152600d60205260409020546001600160a01b03908116907f000000000000000000000000000000000000000000000000000000000000000090613ef390821683886150cb565b60405163b66503cf60e01b81526001600160a01b0382811660048301526024820188905283169063b66503cf90604401600060405180830381600087803b158015613f3d57600080fd5b505af1158015613f51573d6000803e3d6000fd5b50613f6b925050506001600160a01b0382168360006150cb565b50505b604051858152600080516020615e668339815191529060200160405180910390a15050505050565b601654604051637259b01960e01b8152601b60048201526006602482015260448101919091526064810182905260009073fa38b962562df7f9eed9d8db3cc261053efc263b90637259b01990608401602060405180830381865af4158015614002573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121a79190615bab565b600160008381526009602052604090205460ff16600281111561404b5761404b615904565b0361406957604051635eb32db160e11b815260040160405180910390fd5b6140738183614154565b6140905760405163390cdd9b60e21b815260040160405180910390fd5b836001600160a01b03166140a383613cd2565b6001600160a01b0316146140ca576040516330cd747160e01b815260040160405180910390fd5b600082815260116020526040902080546001600160a01b03191690556140f084836151e0565b6140fc82600085615261565b61410683836152cb565b6000828152601360205260408082204390555183916001600160a01b0380871692908816917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a450505050565b60008061416083613cd2565b6000848152601160209081526040808320546001600160a01b0380861680865260128552838620828c1680885295529290942054949550908214939216149060ff1682806141ab5750815b806141b35750805b979650505050505050565b60006141c8613c8e565b90506141d48183614154565b6141f15760405163390cdd9b60e21b815260040160405180910390fd5b60006141fc83613cd2565b600084815260116020526040812080546001600160a01b031916905590915061422790849080615261565b61423181846151e0565b60405183906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a4505050565b614276615651565b61427e615651565b601654600090819087156143bc57856040015161429c5760006142a2565b8551600f0b5b60808501526020870151421080156142c1575060008760000151600f0b135b156143065786516142d790630784ce0090615db8565b600f0b6020808701919091528701516142f1904290615b44565b85602001516143009190615df6565b600f0b85525b428660200151118015614320575060008660000151600f0b135b1561436557855161433690630784ce0090615db8565b600f0b602080860191909152860151614350904290615b44565b846020015161435f9190615df6565b600f0b84525b6020808801516000908152601b8252604090205490870151600f9190910b9350156143bc5786602001518660200151036143a1578291506143bc565b6020808701516000908152601b9091526040902054600f0b91505b6040805160a0810182526000808252602082018190524292820192909252436060820152608081019190915281156144455750600081815260066020908152604091829020825160a0810184528154600f81810b8352600160801b909104900b928101929092526001810154928201929092526002820154606082015260039091015460808201525b60008160400151905060006040518060a001604052808460000151600f0b81526020018460200151600f0b8152602001846040015181526020018460600151815260200184608001518152509050600083604001514211156144de5760408401516144b09042615b44565b60608501516144bf9043615b44565b6144d190670de0b6b3a7640000615b94565b6144db9190615b80565b90505b600062093a806144ee8186615b80565b6144f89190615b94565b905060005b60ff81101561467c5761451362093a8083615b57565b91506000428311156145275742925061453b565b506000828152601b6020526040902054600f0b5b6145458684615b44565b87602001516145549190615df6565b87518890614563908390615c31565b600f0b90525060208701805182919061457d908390615d8b565b600f90810b90915288516000910b1215905061459857600087525b60008760200151600f0b12156145b057600060208801525b60408088018490528501519295508592670de0b6b3a7640000906145d49085615b44565b6145de9086615b94565b6145e89190615b80565b85606001516145f79190615b57565b6060880152614607600189615b57565b975042830361461c575043606087015261467c565b6000888152600660209081526040918290208951918a01516001600160801b03908116600160801b0292169190911781559088015160018201556060880151600282015560808801516003909101555061467581615c7b565b90506144fd565b50508b1561470b57886020015188602001516146989190615c31565b846020018181516146a99190615d8b565b600f0b905250885188516146bd9190615c31565b845185906146cc908390615d8b565b600f90810b90915260208601516000910b121590506146ed57600060208501525b60008460000151600f0b121561470257600084525b601d5460808501525b8460011415801561473b57504260066000614727600189615b44565b815260200190815260200160002060010154145b156147a5578360066000614750600189615b44565b815260208082019290925260409081016000208351928401516001600160801b03908116600160801b0293169290921782558201516001820155606082015160028201556080909101516003909101556147fa565b60168590556000858152600660209081526040918290208651918701516001600160801b03908116600160801b0292169190911781559085015160018201556060850151600282015560808501516003909101555b8b15614a1957428b60200151111561486c57602089015161481b9088615d8b565b96508a602001518a602001510361483e57602088015161483b9088615c31565b96505b60208b8101516000908152601b9091526040902080546001600160801b0319166001600160801b0389161790555b428a6020015111156148c7578a602001518a6020015111156148c75760208801516148979087615c31565b60208b8101516000908152601b9091526040902080546001600160801b0319166001600160801b03831617905595505b426040808a01919091524360608a015260008d8152601a6020522054801580159061491b575060008d8152601960205260409020429082633b9aca00811061491157614911615bc4565b6004020160010154145b156149915760008d8152601960205260409020899082633b9aca00811061494457614944615bc4565b825160208401516001600160801b03908116600160801b02911617600491909102919091019081556040820151600182015560608201516002820155608090910151600390910155614a17565b61499a81615c7b565b60008e8152601a6020908152604080832084905560199091529020909150899082633b9aca0081106149ce576149ce615bc4565b825160208401516001600160801b03908116600160801b029116176004919091029190910190815560408201516001820155606082015160028201556080909101516003909101555b505b505050505050505050505050565b6040516001600160a01b03831660248201526044810182905261100290849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915261535d565b60008281526018602090815260409182902082516060810184528154600f0b81526001820154928101929092526002015460ff16151591810182905290614ae457604051632188f8ab60e01b815260040160405180910390fd5b8115801590614b0457506000614af983613cd2565b6001600160a01b0316145b15614b2257604051634a1850bf60e11b815260040160405180910390fd5b600083815260136020526040902054439003614b51576040516342d6fce760e01b815260040160405180910390fd5b828203614b5d57600091505b6000838152601f6020526040902054828103614b795750505050565b81516001600160801b0316614b978585614b9282613cd2565b615261565b614ba384826001614be9565b8382614bad613c8e565b6001600160a01b03167ff1aa2a9e40138176a3ee6099df056f5c175f8511a0d8b8275d94d1ea5de4677360405160405180910390a45050505050565b6040516375f199b960e11b81526021600482015260206024820152604481018490526064810183905281151560848201527335b833049c20ceb6549c6948e62e76e9c5e1ba089063ebe333729060a4015b60006040518083038186803b158015614c5257600080fd5b505af415801561296d573d6000803e3d6000fd5b60006001600160a01b038316614c7e57614c7e615e16565b614c8883836152cb565b614c9482600085615261565b60405182906001600160a01b038516906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a450600192915050565b601754614ce28582615b57565b6017556040805160608101825260008082526020808301828152838501928352875191880151948801511515909252929052600f9190910b80825286908290614d2c908390615d8b565b600f0b9052508415614d4057602081018590525b600087815260186020908152604091829020835181546001600160801b0319166001600160801b03909116178155908301516001820155908201516002909101805460ff1916911515919091179055614d9a87858361426e565b6000614da4613c8e565b90508615614de157614de16001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001682308a61542f565b836003811115614df357614df3615904565b602083810151604080518b8152928301919091524282820152518a916001600160a01b038516917f8835c22a0c751188de86681e15904223c054bedd5c68ec8858945b78312902739181900360600190a47f5e2aa66efd74cce82b21852e317e5490d9ecc9e6bb953ae24d90851258cc2f5c83614e708982615b57565b6040805192835260208301919091520160405180910390a15050505050505050565b6000600860008154614ea390615c7b565b91829055506000818152601860209081526040808320865181546001600160801b0319166001600160801b03909116178155868301516001820155868201516002909101805460ff19169115159190911790558051606081018252838152918201839052810191909152909150614f1c9082908461426e565b614f268382614c66565b5092915050565b60008062093a8080614f3f8642615b57565b614f499190615b80565b614f539190615b94565b905084600003614f7657604051631f2a200560e01b815260040160405180910390fd5b428111614f9657604051638e6b5b6760e01b815260040160405180910390fd5b614fa4630784ce0042615b57565b811115614fc45760405163f761f1cd60e01b815260040160405180910390fd5b6000600860008154614fd590615c7b565b91829055509050614fe68482614c66565b5060008181526018602090815260409182902082516060810184528154600f0b81526001808301549382019390935260029091015460ff1615159281019290925261503691839189918691614cd5565b95945050505050565b604051637b29b3d160e01b8152601a600482015260196024820152604481018390526064810182905260009073fa38b962562df7f9eed9d8db3cc261053efc263b90637b29b3d190608401602060405180830381865af41580156150a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121a49190615bab565b8015806151455750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa15801561511f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906151439190615bab565b155b6151b05760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b6064820152608401613d3b565b6040516001600160a01b03831660248201526044810182905261100290849063095ea7b360e01b90606401614a53565b816001600160a01b03166151f382613cd2565b6001600160a01b03161461520957615209615e16565b6000818152600f6020526040902080546001600160a01b031916905561522f828261546d565b6001600160a01b0382166000908152601060205260408120805460019290615258908490615b44565b90915550505050565b60405163690f66bf60e01b8152601860048201526021602482015260206044820152601f60648201526084810184905260a481018390526001600160a01b03821660c48201527335b833049c20ceb6549c6948e62e76e9c5e1ba089063690f66bf9060e401614c3a565b60006152d682613cd2565b6001600160a01b0316146152ec576152ec615e16565b6000818152600f6020908152604080832080546001600160a01b0319166001600160a01b038716908117909155808452601080845282852080546014865284872081885286528487208890558787526015865293862093909355908452909152805460019290615258908490615b57565b60006153b2826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661552c9092919063ffffffff16565b80519091501561100257808060200190518101906153d09190615e2c565b6110025760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401613d3b565b6040516001600160a01b03808516602483015283166044820152606481018290526154679085906323b872dd60e01b90608401614a53565b50505050565b6001600160a01b03821660009081526010602052604081205461549290600190615b44565b6000838152601560205260409020549091508082036154e1576001600160a01b038416600090815260146020908152604080832085845282528083208390558583526015909152812055615467565b6001600160a01b039390931660009081526014602090815260408083209383529281528282208054868452848420819055835260159091528282209490945592839055908252812055565b606061262c848460008585600080866001600160a01b031685876040516155539190615e49565b60006040518083038185875af1925050503d8060008114615590576040519150601f19603f3d011682016040523d82523d6000602084013e615595565b606091505b50915091506155a6878383876155b3565b925050505b949350505050565b6060831561562257825160000361561b576001600160a01b0385163b61561b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401613d3b565b50816155ab565b6155ab83838151156156375781518083602001fd5b8060405162461bcd60e51b8152600401613d3b9190615709565b6040518060a001604052806000600f0b81526020016000600f0b81526020016000815260200160008152602001600081525090565b6001600160e01b03198116811461131257600080fd5b6000602082840312156156ae57600080fd5b813561262f81615686565b60005b838110156156d45781810151838201526020016156bc565b50506000910152565b600081518084526156f58160208601602086016156b9565b601f01601f19169290920160200192915050565b6020815260006121a460208301846156dd565b60006020828403121561572e57600080fd5b5035919050565b6001600160a01b038116811461131257600080fd5b60006020828403121561575c57600080fd5b813561262f81615735565b6000806040838503121561577a57600080fd5b823561578581615735565b946020939093013593505050565b600080604083850312156157a657600080fd5b50508035926020909101359150565b6000806000606084860312156157ca57600080fd5b83356157d581615735565b925060208401356157e581615735565b929592945050506040919091013590565b6000806040838503121561580957600080fd5b823561581481615735565b9150602083013561582481615735565b809150509250929050565b801515811461131257600080fd5b6000806040838503121561585057600080fd5b823561585b81615735565b915060208301356158248161582f565b6000806040838503121561587e57600080fd5b8235915060208301356158248161582f565b60a081016121a782848051600f0b82526020810151600f0b60208301526040810151604083015260608101516060830152608081015160808301525050565b6000806000606084860312156158e457600080fd5b83356158ef81615735565b95602085013595506040909401359392505050565b634e487b7160e01b600052602160045260246000fd5b602081016003831061593c57634e487b7160e01b600052602160045260246000fd5b91905290565b600080600080600080600060e0888a03121561595d57600080fd5b87359650602088013595506040880135945060608801359350608088013560ff8116811461598a57600080fd5b9699959850939692959460a0840135945060c09093013592915050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156159e6576159e66159a7565b604052919050565b600067ffffffffffffffff821115615a0857615a086159a7565b50601f01601f191660200190565b60008060008060808587031215615a2c57600080fd5b8435615a3781615735565b93506020850135615a4781615735565b925060408501359150606085013567ffffffffffffffff811115615a6a57600080fd5b8501601f81018713615a7b57600080fd5b8035615a8e615a89826159ee565b6159bd565b818152886020838501011115615aa357600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b600080600060608486031215615ada57600080fd5b83359250602084013591506040840135615af381615735565b809150509250925092565b60008060408385031215615b1157600080fd5b82359150602083013565ffffffffffff8116811461582457600080fd5b634e487b7160e01b600052601160045260246000fd5b818103818111156121a7576121a7615b2e565b808201808211156121a7576121a7615b2e565b634e487b7160e01b600052601260045260246000fd5b600082615b8f57615b8f615b6a565b500490565b80820281158282048414176121a7576121a7615b2e565b600060208284031215615bbd57600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b6000604082018483526020604081850152818551808452606086019150828701935060005b81811015615c245784516001600160a01b031683529383019391830191600101615bff565b5090979650505050505050565b600f82810b9082900b0360016001607f1b0319811260016001607f1b03821317156121a7576121a7615b2e565b600060208284031215615c7057600080fd5b815161262f81615735565b600060018201615c8d57615c8d615b2e565b5060010190565b60008060408385031215615ca757600080fd5b8251615cb281615735565b602084015190925061582481615735565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090615cf6908301846156dd565b9695505050505050565b600060208284031215615d1257600080fd5b815161262f81615686565b600060208284031215615d2f57600080fd5b815167ffffffffffffffff811115615d4657600080fd5b8201601f81018413615d5757600080fd5b8051615d65615a89826159ee565b818152856020838501011115615d7a57600080fd5b6150368260208301602086016156b9565b600f81810b9083900b0160016001607f1b03811360016001607f1b0319821217156121a7576121a7615b2e565b600081600f0b83600f0b80615dcf57615dcf615b6a565b60016001607f1b0319821460001982141615615ded57615ded615b2e565b90059392505050565b600082600f0b82600f0b0280600f0b9150808214614f2657614f26615b2e565b634e487b7160e01b600052600160045260246000fd5b600060208284031215615e3e57600080fd5b815161262f8161582f565b60008251615e5b8184602087016156b9565b919091019291505056fef8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce7a2646970667358221220d7cbc06ee19342786eba17b59e99983ef41d67ad5b50356be23ee4dc508aec4264736f6c63430008130033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef0000000000000000000000003133b05af8c34278792bb1c1b15c1367fb3b4f47000000000000000000000000acd5552d06b18926aec72434c439eb13c9fc49e80000000000000000000000005ab4685021d2817a2ffde7c4b2f78f3b7f99f897

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106104805760003560e01c806370a0823111610257578063b45a3c0e11610146578063e58f5947116100c3578063ec32e6df11610087578063ec32e6df14610ca7578063f04cb3a814610cba578063f52a36f714610d09578063f645d4f914610d3f578063fc0c546a14610d6657600080fd5b8063e58f594714610bfe578063e75b1c2e14610c1e578063e7a324dc14610c31578063e7e242d414610c58578063e985e9c514610c6b57600080fd5b8063c87b56dd1161010a578063c87b56dd14610b9f578063d1c2babb14610bb2578063d9a3495214610bc5578063e0514aba14610bd8578063e0c11f9a14610beb57600080fd5b8063b45a3c0e14610ad6578063b52c05fe14610b5e578063b88d4fde14610b71578063bfe1092814610b84578063c2c4c5c114610b9757600080fd5b806391ddadf4116101d4578063a22cb46511610198578063a22cb46514610a44578063a738da8214610a57578063a899b36c14610a80578063b1548afc14610aa3578063b2383e5514610ac357600080fd5b806391ddadf414610a1857806395d89b41146104de578063981b24d0146109d95780639954a98914610a1e5780639d507b8b14610a3157600080fd5b80638ad4c4471161021b5780638ad4c4471461099b5780638bf9d84c146109ae5780638e539e8c146109d95780638fbb38ff146109ec578063900cf0cf14610a0f57600080fd5b806370a08231146108fc5780637c728000146109255780637ecebe0014610955578063834b0b691461097557806385f2aef21461098857600080fd5b8063370fb5fa116103735780634bf5d7e9116102f057806354fd4d50116102b457806354fd4d501461085f5780635594a04514610883578063572b6c05146108965780635a4f459a146108d65780636352211e146108e957600080fd5b80634bf5d7e9146107af5780634d01cb66146107d95780634d6fb775146107e257806350589793146107f5578063515857d41461083457600080fd5b806342842e0e1161033757806342842e0e1461072e578063430c20811461074157806344acb42a1461075457806346c96aac146107745780634b19becc1461078757600080fd5b8063370fb5fa146106ab57806337b1f500146106be5780633a6396a5146106d15780633bf0c9fb146106e45780633d085a371461070b57600080fd5b806320606b70116104015780632e720f7d116103c55780632e720f7d146106455780632f7f9ba914610658578063313ce5671461066b57806333230dc01461068557806335b0f6bd1461069857600080fd5b806320606b70146105bc57806323b872dd146105e357806327a6ee98146105f65780632d0485ec1461061f5780632e1a7d4d1461063257600080fd5b8063095ea7b311610448578063095ea7b3146105655780630ec84dda1461057857806317d70f7c1461058b57806318160ddd1461059457806319a0a9d51461059c57600080fd5b806301ffc9a714610485578063047fc9aa146104c757806306fdde03146104de578063081812fc1461050f578063095cf5c614610550575b600080fd5b6104b261049336600461569c565b6001600160e01b03191660009081526007602052604090205460ff1690565b60405190151581526020015b60405180910390f35b6104d060175481565b6040519081526020016104be565b610502604051806040016040528060058152602001641d9953919560da1b81525081565b6040516104be9190615709565b61053861051d36600461571c565b6000908152601160205260409020546001600160a01b031690565b6040516001600160a01b0390911681526020016104be565b61056361055e36600461574a565b610d8d565b005b610563610573366004615767565b610e11565b610563610586366004615793565b610f52565b6104d060085481565b6104d0610fdf565b6104d06105aa36600461571c565b600a6020526000908152604090205481565b6104d07f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6105636105f13660046157b5565b610fef565b61053861060436600461571c565b600e602052600090815260409020546001600160a01b031681565b61056361062d3660046157f6565b611007565b61056361064036600461571c565b611070565b61056361065336600461574a565b611315565b600554610538906001600160a01b031681565b610673601281565b60405160ff90911681526020016104be565b61056361069336600461583d565b6113a9565b6105636106a636600461571c565b61140f565b6105636106b936600461571c565b611676565b6105636106cc36600461586b565b611c98565b6104d06106df36600461574a565b611e7e565b6105387f0000000000000000000000005ab4685021d2817a2ffde7c4b2f78f3b7f99f89781565b6104b261071936600461574a565b601c6020526000908152604090205460ff1681565b61056361073c3660046157b5565b61217d565b6104b261074f366004615767565b612198565b610767610762366004615793565b6121ad565b6040516104be9190615890565b600254610538906001600160a01b031681565b61079a610795366004615793565b61222b565b604080519283526020830191909152016104be565b60408051808201909152600e81526d06d6f64653d74696d657374616d760941b6020820152610502565b6104d0601d5481565b6104d06107f03660046158cf565b612591565b61081d61080336600461571c565b60216020526000908152604090205465ffffffffffff1681565b60405165ffffffffffff90911681526020016104be565b6104d0610842366004615793565b600b60209081526000928352604080842090915290825290205481565b610502604051806040016040528060058152602001640322e302e360dc1b81525081565b600454610538906001600160a01b031681565b6104b26108a436600461574a565b7f0000000000000000000000003133b05af8c34278792bb1c1b15c1367fb3b4f476001600160a01b0390811691161490565b6105636108e436600461586b565b612636565b6105386108f736600461571c565b612691565b6104d061090a36600461574a565b6001600160a01b031660009081526010602052604090205490565b61094861093336600461571c565b60096020526000908152604090205460ff1681565b6040516104be919061591a565b6104d061096336600461574a565b60226020526000908152604090205481565b610563610983366004615942565b61269c565b600354610538906001600160a01b031681565b6107676109a936600461571c565b612976565b6104d06109bc366004615767565b601460209081526000928352604080842090915290825290205481565b6104d06109e736600461571c565b612a07565b6104b26109fa36600461571c565b601e6020526000908152604090205460ff1681565b6104d060165481565b4261081d565b610563610a2c36600461574a565b612a12565b610563610a3f366004615793565b612b61565b610563610a5236600461583d565b612d35565b610538610a6536600461571c565b600d602052600090815260409020546001600160a01b031681565b6104b2610a8e36600461571c565b600c6020526000908152604090205460ff1681565b6104d0610ab136600461571c565b6000908152601f602052604090205490565b610563610ad1366004615793565b612de0565b610b37610ae436600461571c565b6040805160608082018352600080835260208084018290529284018190529384526018825292829020825193840183528054600f0b84526001810154918401919091526002015460ff1615159082015290565b604080518251600f0b815260208084015190820152918101511515908201526060016104be565b6104d0610b6c366004615793565b612e1c565b610563610b7f366004615a16565b612e44565b600154610538906001600160a01b031681565b610563612f67565b610502610bad36600461571c565b612fb9565b610563610bc0366004615793565b61305c565b610563610bd3366004615793565b61348c565b6104d0610be6366004615793565b6134be565b610563610bf9366004615793565b6134ca565b6104d0610c0c36600461571c565b601a6020526000908152604090205481565b610563610c2c36600461571c565b61398d565b6104d07f9947d5709c1682eaa3946b2d84115c9c0d1c946b149d76e69b457458b42ea29e81565b6104d0610c6636600461571c565b613bb4565b6104b2610c793660046157f6565b6001600160a01b03918216600090815260126020908152604080832093909416825291909152205460ff1690565b6104d0610cb5366004615ac5565b613bdc565b610ccd610cc8366004615afe565b613bfd565b6040516104be9190815181526020808301516001600160a01b031690820152604080830151908201526060918201519181019190915260800190565b610d2c610d1736600461571c565b601b60205260009081526040902054600f0b81565b604051600f9190910b81526020016104be565b6105387f0000000000000000000000003133b05af8c34278792bb1c1b15c1367fb3b4f4781565b6105387f000000000000000000000000acd5552d06b18926aec72434c439eb13c9fc49e881565b6003546001600160a01b0316610da1613c8e565b6001600160a01b031614610dc857604051633a7cfa5d60e21b815260040160405180910390fd5b6001600160a01b038116610def5760405163d92e233d60e01b815260040160405180910390fd5b600380546001600160a01b0319166001600160a01b0392909216919091179055565b6000610e1b613c8e565b90506000610e2883613cd2565b90506001600160a01b038116610e515760405163d92e233d60e01b815260040160405180910390fd5b836001600160a01b0316816001600160a01b031603610e835760405163367558c360e01b815260040160405180910390fd5b6000826001600160a01b0316610e9885613cd2565b6001600160a01b0384811660009081526012602090815260408083208985168452909152902054911691909114915060ff16811582610ed5575080155b15610ef35760405163390cdd9b60e21b815260040160405180910390fd5b60008581526011602052604080822080546001600160a01b0319166001600160a01b038a811691821790925591518893918716917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050505050565b610f5a613ced565b600260008381526009602052604090205460ff166002811115610f7f57610f7f615904565b148015610fa757506001546001600160a01b0316610f9b613c8e565b6001600160a01b031614155b15610fc55760405163385296d560e01b815260040160405180910390fd5b610fd182826000613d4b565b610fdb6001600055565b5050565b6000610fea42613f96565b905090565b611002838383610ffd613c8e565b614026565b505050565b6002546001600160a01b031661101b613c8e565b6001600160a01b0316146110425760405163c18384c160e01b815260040160405180910390fd5b600280546001600160a01b039384166001600160a01b03199182161790915560018054929093169116179055565b611078613ced565b6000611082613c8e565b905061108e8183614154565b6110ab5760405163390cdd9b60e21b815260040160405180910390fd5b6000828152601e602052604090205460ff16156110db57604051637c9a1cf960e01b815260040160405180910390fd5b60008281526009602052604081205460ff1660028111156110fe576110fe615904565b1461111c576040516317a66f3760e01b815260040160405180910390fd5b60008281526018602090815260409182902082516060810184528154600f0b81526001820154928101929092526002015460ff161580159282019290925290611178576040516334d10f9560e11b815260040160405180910390fd5b806020015142101561119d5760405163342ad40160e11b815260040160405180910390fd5b8051600f0b6111ab846141be565b6040805160608101825260008082526020808301828152838501838152898452601890925293909120915182546001600160801b0319166001600160801b039091161782559151600182015590516002909101805460ff191691151591909117905560175461121a8282615b44565b6017556040805160608101825260008082526020820181905291810191909152611247908690859061426e565b61127b6001600160a01b037f000000000000000000000000acd5552d06b18926aec72434c439eb13c9fc49e8168584614a27565b6040805183815242602082015286916001600160a01b038716917f02f25270a4d87bea75db541cdfe559334a275b4a233520ed6c0a2429667cca94910160405180910390a37f5e2aa66efd74cce82b21852e317e5490d9ecc9e6bb953ae24d90851258cc2f5c816112ec8482615b44565b6040805192835260208301919091520160405180910390a1505050506113126001600055565b50565b6003546001600160a01b0316611329613c8e565b6001600160a01b03161461135057604051633a7cfa5d60e21b815260040160405180910390fd5b600480546001600160a01b0319166001600160a01b038316179055604080516000815260001960208201527f6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c910160405180910390a150565b6003546001600160a01b03166113bd613c8e565b6001600160a01b0316146113e457604051633a7cfa5d60e21b815260040160405180910390fd5b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6000611419613c8e565b90506114258183614154565b6114425760405163390cdd9b60e21b815260040160405180910390fd5b60008281526009602052604081205460ff16600281111561146557611465615904565b14611483576040516317a66f3760e01b815260040160405180910390fd5b6000828152601e602052604090205460ff16156114b357604051637c9a1cf960e01b815260040160405180910390fd5b60008281526018602090815260409182902082516060810184528154600f0b81526001820154928101929092526002015460ff1615159181018290529061150d57604051632188f8ab60e01b815260040160405180910390fd5b60008160000151600f0b905080601d600082825461152b9190615b44565b9091555062093a80905080611544630784ce0042615b57565b61154e9190615b80565b6115589190615b94565b6020830152600060408301819052611571908590614a8a565b60008481526018602090815260409182902082516060810184528154600f0b81526001820154928101929092526002015460ff161515918101919091526115ba9085908461426e565b600084815260186020908152604091829020845181546001600160801b0319166001600160801b03909116178155848201516001820155848301516002909101805460ff19169115159190911790558151838152429181019190915285916001600160a01b038616917f668d293c0a181c1f163fd0d3c757239a9c17bd26c5e483150e374455433b27fa91015b60405180910390a3604051848152600080516020615e668339815191529060200160405180910390a150505050565b61167e613ced565b6000818152600a60205260409020546002546001600160a01b03166116a1613c8e565b6001600160a01b0316146116c85760405163c18384c160e01b815260040160405180910390fd5b806000036116e95760405163d7caa26160e01b815260040160405180910390fd5b600160008381526009602052604090205460ff16600281111561170e5761170e615904565b1461172c57604051630fd82f7760e11b815260040160405180910390fd5b6000818152600d6020908152604080832054600e835281842054868552600b8452828520868652909352818420549151633e491d4760e01b81526001600160a01b037f000000000000000000000000acd5552d06b18926aec72434c439eb13c9fc49e881166004830152602482018890529182169491909316928490633e491d4790604401602060405180830381865afa1580156117ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117f29190615bab565b905060006118008284615b57565b9050600062093a8080611817630784ce0042615b57565b6118219190615b80565b61182b9190615b94565b60408051600180825281830190925291925060009190602080830190803683370190505090507f000000000000000000000000acd5552d06b18926aec72434c439eb13c9fc49e88160008151811061188557611885615bc4565b6001600160a01b03928316602091820292909201015260405163f5f8d36560e01b81529088169063f5f8d365906118c2908c908590600401615bda565b600060405180830381600087803b1580156118dc57600080fd5b505af11580156118f0573d6000803e3d6000fd5b505050506000604051806060016040528085600f0b81526020018481526020016000151581525090506119838a601860008d81526020019081526020016000206040518060600160405290816000820160009054906101000a9004600f0b600f0b600f0b8152602001600182015481526020016002820160009054906101000a900460ff1615151515815250508361426e565b60008a8152601860209081526040808320845181546001600160801b0319166001600160801b0390911617815584830151600180830191909155858301516002928301805460ff19169115159190911790558d85529382902082516060810184528154600f90810b808352968301549582019590955291015460ff16151591810191909152919086900b12611a19578051611a1b565b845b81518290611a2a908390615c31565b600f0b905250601d548510611a4157601d54611a43565b845b601d6000828254611a549190615b44565b909155505060008a8152601f6020526040812054611a73918790614be9565b60008a81526018602090815260409182902082516060810184528154600f0b81526001820154928101929092526002015460ff16151591810191909152611abc908b908361426e565b60008a815260186020908152604091829020835181546001600160801b0319166001600160801b03918216178255918401516001820155838301516002909101805460ff1916911515919091179055905163278afc8b60e21b81529088166004820152602481018c90526001600160a01b038a1690639e2bf22c90604401600060405180830381600087803b158015611b5457600080fd5b505af1158015611b68573d6000803e3d6000fd5b505060405163278afc8b60e21b81526001600160801b038a166004820152602481018e90526001600160a01b038b169250639e2bf22c9150604401600060405180830381600087803b158015611bbd57600080fd5b505af1158015611bd1573d6000803e3d6000fd5b50505060008c8152600a60209081526040808320839055600b82528083208e845282528083208390558e835260099091529020805460ff1916905550898b611c1881613cd2565b6001600160a01b03167f5319474ec1e9d118585a40e615ea37be254007e6bb5b039756c3813c2d1354898842604051611c5b929190918252602082015260400190565b60405180910390a46040518b8152600080516020615e668339815191529060200160405180910390a1505050505050505050506113126001600055565b600260009054906101000a90046001600160a01b03166001600160a01b0316637778960e6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ceb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d0f9190615c5e565b6001600160a01b0316611d20613c8e565b6001600160a01b031614158015611dc65750600260009054906101000a90046001600160a01b03166001600160a01b0316630c340a246040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d85573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611da99190615c5e565b6001600160a01b0316611dba613c8e565b6001600160a01b031614155b15611de45760405163459d6a3f60e01b815260040160405180910390fd5b600260008381526009602052604090205460ff166002811115611e0957611e09615904565b14611e275760405163054b1e0160e51b815260040160405180910390fd5b6000828152600c602052604090205481151560ff909116151503611e5e57604051631490ad1160e01b815260040160405180910390fd5b6000918252600c6020526040909120805460ff1916911515919091179055565b6000611e88613ced565b6000611e92613c8e565b6005549091506001600160a01b03808316911614801590611f3b5750600260009054906101000a90046001600160a01b03166001600160a01b0316630c340a246040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f259190615c5e565b6001600160a01b0316816001600160a01b031614155b15611f5957604051633bc1d15f60e01b815260040160405180910390fd5b600860008154611f6890615c7b565b91829055509150611f798383614c66565b50611fab8260008060405180606001604052806000600f0b815260200160008152602001600115158152506001614cd5565b6000828152600960209081526040808320805460ff1916600217905580516301a15ccf60e31b8152905183926001600160a01b037f0000000000000000000000005ab4685021d2817a2ffde7c4b2f78f3b7f99f8971692630d0ae67892600480830193928290030181865afa158015612028573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061204c9190615c5e565b60025460405163dabc8e8360e01b81526001600160a01b037f0000000000000000000000003133b05af8c34278792bb1c1b15c1367fb3b4f4781166004830152918216602482015291169063dabc8e839060440160408051808303816000875af11580156120be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120e29190615c94565b6000868152600d6020908152604080832080546001600160a01b038781166001600160a01b03199283168117909355600e8552948390208054878716921682179055825191825292810192909252939550919350858116928792918916917fae65a147ec014982132ce8b32019735e3c5f41457848d2ce2e2c3e0cbc9df7bc910160405180910390a45050506121786001600055565b919050565b61100283838360405180602001604052806000815250612e44565b60006121a48383614154565b90505b92915050565b6121b5615651565b600083815260196020526040902082633b9aca0081106121d7576121d7615bc4565b6040805160a081018252600492909202929092018054600f81810b8452600160801b909104900b60208301526001810154928201929092526002820154606082015260039091015460808201529392505050565b600080612236613ced565b6000612240613c8e565b9050600061224d86613cd2565b90506001600160a01b03811661227657604051632c2151ef60e11b815260040160405180910390fd5b6001600160a01b0381166000908152601c602052604090205460ff161580156122ca575060008052601c6020527fb9c6de81004e18dedadca3e5eabaab449ca91dff6f58efc9461da635fe77f8495460ff16155b156122e857604051633df16fd960e21b815260040160405180910390fd5b60008681526009602052604081205460ff16600281111561230b5761230b615904565b14612329576040516317a66f3760e01b815260040160405180910390fd5b6000868152601e602052604090205460ff161561235957604051637c9a1cf960e01b815260040160405180910390fd5b6123638287614154565b6123805760405163390cdd9b60e21b815260040160405180910390fd5b60008681526018602090815260409182902082516060810184528154600f0b8152600182015492810183905260029091015460ff1615159281019290925242108015906123cf57508060400151155b156123ed576040516307b7d7dd60e51b815260040160405180910390fd5b85600f81900b60000361241357604051631f2a200560e01b815260040160405180910390fd5b80600f0b8260000151600f0b1361243d57604051636b2f218360e01b815260040160405180910390fd5b612446886141be565b6040805160608082018352600080835260208084018281528486018381528e845260188352868420955186546001600160801b0319166001600160801b0390911617865590516001860155516002909401805460ff19169415159490941790935583519182018452808252918101829052918201526124c8908990849061426e565b80826000018181516124da9190615c31565b600f0b9052506124ea8383614e92565b600f82900b835295506124fd8383614e92565b600087815260186020908152604091829020548582015183516001600160a01b038a1681526001600160801b0392831693810193909352858216838501521660608201524260808201529051919650869188918b917f8303de8187a6102fdc3fe20c756dddd68df0ae027b77e2391c19a855e0821f339181900360a00190a45050505061258a6001600055565b9250929050565b6040516332b53f5360e11b815260216004820152602060248201526001600160a01b038416604482015260648101839052608481018290526000907335b833049c20ceb6549c6948e62e76e9c5e1ba089063656a7ea69060a401602060405180830381865af4158015612608573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061262c9190615bab565b90505b9392505050565b6002546001600160a01b031661264a613c8e565b6001600160a01b0316146126715760405163c18384c160e01b815260040160405180910390fd5b6000918252601e6020526040909120805460ff1916911515919091179055565b60006121a782613cd2565b7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08111156126dd576040516317e97eb760e31b815260040160405180910390fd5b6040805180820182526005808252641d9953919560da1b60209283015282518084018452908152640322e302e360dc1b9082015281517f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a866818301527fc792e9874e7b42c234d1e8448cec020a0f065019c8cd6f7ccdb65b8c110157e9818401527fb4bcb154e38601c389396fa918314da42d4626f13ef6d0ceb07e5f5d26b2fbc360608201524660808201523060a0808301919091528351808303909101815260c0820184528051908301207f9947d5709c1682eaa3946b2d84115c9c0d1c946b149d76e69b457458b42ea29e60e083015261010082018b905261012082018a905261014082018990526101608083018990528451808403909101815261018083019094528351939092019290922061190160f01b6101a08401526101a283018290526101c2830181905290916000906101e20160408051601f198184030181528282528051602091820120600080855291840180845281905260ff8a169284019290925260608301889052608083018790529092509060019060a0016020604051602081039080840390855afa15801561289c573d6000803e3d6000fd5b5050506020604051035190506128b2818c614154565b6128cf5760405163390cdd9b60e21b815260040160405180910390fd5b6001600160a01b0381166128f657604051638baa579f60e01b815260040160405180910390fd5b6001600160a01b038116600090815260226020526040812080549161291a83615c7b565b91905055891461293d57604051633ab3447f60e11b815260040160405180910390fd5b8742111561295e57604051630819bdcd60e01b815260040160405180910390fd5b6129688b8b614a8a565b505050505b50505050505050565b6129ae6040518060a001604052806000600f0b81526020016000600f0b81526020016000815260200160008152602001600081525090565b50600090815260066020908152604091829020825160a0810184528154600f81810b8352600160801b909104900b9281019290925260018101549282019290925260028201546060820152600390910154608082015290565b60006121a782613f96565b600260009054906101000a90046001600160a01b03166001600160a01b0316630c340a246040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a899190615c5e565b6001600160a01b0316612a9a613c8e565b6001600160a01b031614612ac157604051633b8d9d7560e21b815260040160405180910390fd5b6005546001600160a01b0390811690821603612af05760405163367558c360e01b815260040160405180910390fd5b6001600160a01b038116612b175760405163d92e233d60e01b815260040160405180910390fd5b600580546001600160a01b0319166001600160a01b0383169081179091556040517f1a6ce72407c68def4b7d2e724c896070d89cf2b2a2dd56b6897b5febd88420f590600090a250565b612b69613ced565b612b7a612b74613c8e565b83614154565b612b975760405163390cdd9b60e21b815260040160405180910390fd5b60008281526009602052604081205460ff166002811115612bba57612bba615904565b14612bd8576040516317a66f3760e01b815260040160405180910390fd5b60008281526018602090815260409182902082516060810184528154600f0b81526001820154928101929092526002015460ff161580159282019290925290612c34576040516334d10f9560e11b815260040160405180910390fd5b600062093a8080612c458542615b57565b612c4f9190615b80565b612c599190615b94565b905042826020015111612c7f576040516307b7d7dd60e51b815260040160405180910390fd5b60008260000151600f0b13612ca75760405163f90e998d60e01b815260040160405180910390fd5b81602001518111612ccb57604051638e6b5b6760e01b815260040160405180910390fd5b612cd9630784ce0042615b57565b811115612cf95760405163f761f1cd60e01b815260040160405180910390fd5b612d0884600083856003614cd5565b604051848152600080516020615e668339815191529060200160405180910390a15050610fdb6001600055565b6000612d3f613c8e565b9050806001600160a01b0316836001600160a01b031603612d735760405163367558c360e01b815260040160405180910390fd5b6001600160a01b03818116600081815260126020908152604080832094881680845294825291829020805460ff191687151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612de8613ced565b612df3612b74613c8e565b612e105760405163390cdd9b60e21b815260040160405180910390fd5b610fd182826002613d4b565b6000612e26613ced565b612e388383612e33613c8e565b614f2d565b90506121a76001600055565b6000612e4e613c8e565b9050612e5c85858584614026565b833b15612f6057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612e95908490899088908890600401615cc3565b6020604051808303816000875af1925050508015612ed0575060408051601f3d908101601f19168201909252612ecd91810190615d00565b60015b612f2d573d808015612efe576040519150601f19603f3d011682016040523d82523d6000602084013e612f03565b606091505b508051600003612f2557604051626b5e2960e61b815260040160405180910390fd5b805181602001fd5b6001600160e01b03198116630a85bd0160e11b14612f5e5760405163279929b160e21b815260040160405180910390fd5b505b5050505050565b612f6f613ced565b604080516060808201835260008083526020808401829052838501829052845192830185528183528201819052928101839052612fad92919061426e565b612fb76001600055565b565b60606000612fc683613cd2565b6001600160a01b031603612fed57604051634a1850bf60e11b815260040160405180910390fd5b6004805460405163c87b56dd60e01b81529182018490526001600160a01b03169063c87b56dd90602401600060405180830381865afa158015613034573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526121a79190810190615d1d565b613064613ced565b600061306e613c8e565b6000848152601e602052604090205490915060ff16156130a157604051637c9a1cf960e01b815260040160405180910390fd5b60008381526009602052604081205460ff1660028111156130c4576130c4615904565b146130e2576040516317a66f3760e01b815260040160405180910390fd5b60008281526009602052604081205460ff16600281111561310557613105615904565b14613123576040516317a66f3760e01b815260040160405180910390fd5b818303613143576040516349da877960e11b815260040160405180910390fd5b61314d8184614154565b61316a5760405163390cdd9b60e21b815260040160405180910390fd5b6131748183614154565b6131915760405163390cdd9b60e21b815260040160405180910390fd5b60008281526018602090815260409182902082516060810184528154600f0b8152600182015492810183905260029091015460ff1615159281019290925242108015906131e057508060400151155b156131fe576040516307b7d7dd60e51b815260040160405180910390fd5b60008481526018602090815260409182902082516060810184528154600f0b81526001820154928101929092526002015460ff16158015928201929092529061325a576040516334d10f9560e11b815260040160405180910390fd5b600082602001518260200151101561327657826020015161327c565b81602001515b9050613287866141be565b6040805160608082018352600080835260208084018281528486018381528c845260188352868420955186546001600160801b0319166001600160801b0390911617865590516001860155516002909401805460ff1916941515949094179093558351918201845280825291810182905291820152613309908790849061426e565b6040805160608101825260008082526020820181905291810191909152825184516133349190615d8b565b600f0b815260408085015115801591830191909152613371578260000151600f0b601d60008282546133669190615b57565b909155506133799050565b602081018290525b6000868152601f602052604090205483516133999190600f0b6001614be9565b6133a486858361426e565b600086815260186020908152604091829020835181546001600160801b039182166001600160801b0319909116811783558584015160018401819055868601516002909401805494151560ff19909516949094179093558751895186519184168252831694810194909452838501521660608201524260808201529051879189916001600160a01b038916917f986e3c958e3bdf1f58c2150357fc94624dd4e77b08f9802d8e2e885fa0d6a198919081900360a00190a4604051868152600080516020615e66833981519152906020015b60405180910390a15050505050610fdb6001600055565b613497612b74613c8e565b6134b45760405163390cdd9b60e21b815260040160405180910390fd5b610fdb8282614a8a565b60006121a4838361503f565b6134d2613ced565b6002546001600160a01b03166134e6613c8e565b6001600160a01b03161461350d5760405163c18384c160e01b815260040160405180910390fd5b600260008281526009602052604090205460ff16600281111561353257613532615904565b146135505760405163054b1e0160e51b815260040160405180910390fd5b60008281526009602052604081205460ff16600281111561357357613573615904565b14613591576040516317a66f3760e01b815260040160405180910390fd5b61359b824261503f565b6000036135bb5760405163334ab3f560e11b815260040160405180910390fd5b60008281526018602052604090208054600290910154600f9190910b9060ff161561360c57806001600160801b0316601d60008282546135fb9190615b44565b9091555061360c9050836000614a8a565b60008381526018602090815260408083208151606080820184528254600f0b825260018301548286015260029092015460ff1615158184015282519182018352848252928101849052908101929092526136689185919061426e565b60408051606081018252600080825260208083018281528385018381528884526018909252938220925183546001600160801b0319166001600160801b0391821617845593516001840155516002909201805460ff191692151592909217909155601d8054928416928392906136df908490615b57565b909155505060008381526018602090815260409182902082516060810184528154600f0b80825260018301549382019390935260029091015460ff1615159281019290925283908290613733908390615d8b565b600f0b9052506000848152601f602052604090205461375d906001600160801b0385166001614be9565b60008481526018602090815260409182902082516060810184528154600f0b81526001820154928101929092526002015460ff161515918101919091526137a69085908361426e565b6000848152601860209081526040808320845181546001600160801b0319166001600160801b0391821617825585840151600180840191909155868401516002909301805460ff199081169415159490941790558a8652600b85528386208a875285528386208890558a8652600a85528386208a905560098552838620805490931617909155878452600d9092529182902054915163f320772360e01b81529085166004820152602481018790526001600160a01b0390911690819063f320772390604401600060405180830381600087803b15801561388557600080fd5b505af1158015613899573d6000803e3d6000fd5b5050506000868152600e60205260409081902054905163f320772360e01b81526001600160801b0387166004820152602481018990526001600160a01b039091169150819063f320772390604401600060405180830381600087803b15801561390157600080fd5b505af1158015613915573d6000803e3d6000fd5b50505050858761392489613cd2565b6001600160a01b03167ff7757ce35992f4ee014dee2e0c97ed6245758960a6ecc9e124897a5fb7b014238742604051613967929190918252602082015260400190565b60405180910390a4604051878152600080516020615e6683398151915290602001613475565b6000613997613c8e565b90506139a38183614154565b6139c05760405163390cdd9b60e21b815260040160405180910390fd5b60008281526009602052604081205460ff1660028111156139e3576139e3615904565b14613a01576040516317a66f3760e01b815260040160405180910390fd5b60008281526018602090815260409182902082516060810184528154600f0b81526001820154928101929092526002015460ff161580159282019290925290613a5d576040516334d10f9560e11b815260040160405180910390fd5b42816020015111613a81576040516307b7d7dd60e51b815260040160405180910390fd5b60008160000151600f0b13613aa95760405163f90e998d60e01b815260040160405180910390fd5b60008160000151600f0b905080601d6000828254613ac79190615b57565b90915550506000602080840182905260016040808601829052878452601883529283902083516060810185528154600f0b8152918101549282019290925260029091015460ff16151591810191909152613b239085908461426e565b600084815260186020908152604091829020845181546001600160801b0319166001600160801b03909116178155848201516001820155848301516002909101805460ff19169115159190911790558151838152429181019190915285916001600160a01b038616917f793cb7a30a4bb8669ec607dfcbdc93f5a3e9d282f38191fddab43ccaf79efb809101611647565b600081815260136020526040812054439003613bd257506000919050565b6121a7824261503f565b6000613be6613ced565b613bf1848484614f2d565b905061262f6001600055565b613c3160405180608001604052806000815260200160006001600160a01b0316815260200160008152602001600081525090565b5060009182526020808052604080842065ffffffffffff9390931684529181529181902081516080810183528154815260018201546001600160a01b03169381019390935260028101549183019190915260030154606082015290565b60007f0000000000000000000000003133b05af8c34278792bb1c1b15c1367fb3b4f476001600160a01b03163303613ccd575060131936013560601c90565b503390565b6000908152600f60205260409020546001600160a01b031690565b600260005403613d445760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600055565b60008381526009602052604090205460ff166001816002811115613d7157613d71615904565b03613d8f57604051635eb32db160e11b815260040160405180910390fd5b600084815260186020908152604080832081516060810183528154600f0b81526001820154938101939093526002015460ff1615159082015290849003613de957604051631f2a200560e01b815260040160405180910390fd5b60008160000151600f0b13613e115760405163f90e998d60e01b815260040160405180910390fd5b42816020015111158015613e2757508060400151155b15613e45576040516307b7d7dd60e51b815260040160405180910390fd5b806040015115613e675783601d6000828254613e619190615b57565b90915550505b6000858152601f6020526040902054613e8290856001614be9565b613e90858560008487614cd5565b6002826002811115613ea457613ea4615904565b03613f6e576000858152600d60205260409020546001600160a01b03908116907f000000000000000000000000acd5552d06b18926aec72434c439eb13c9fc49e890613ef390821683886150cb565b60405163b66503cf60e01b81526001600160a01b0382811660048301526024820188905283169063b66503cf90604401600060405180830381600087803b158015613f3d57600080fd5b505af1158015613f51573d6000803e3d6000fd5b50613f6b925050506001600160a01b0382168360006150cb565b50505b604051858152600080516020615e668339815191529060200160405180910390a15050505050565b601654604051637259b01960e01b8152601b60048201526006602482015260448101919091526064810182905260009073fa38b962562df7f9eed9d8db3cc261053efc263b90637259b01990608401602060405180830381865af4158015614002573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121a79190615bab565b600160008381526009602052604090205460ff16600281111561404b5761404b615904565b0361406957604051635eb32db160e11b815260040160405180910390fd5b6140738183614154565b6140905760405163390cdd9b60e21b815260040160405180910390fd5b836001600160a01b03166140a383613cd2565b6001600160a01b0316146140ca576040516330cd747160e01b815260040160405180910390fd5b600082815260116020526040902080546001600160a01b03191690556140f084836151e0565b6140fc82600085615261565b61410683836152cb565b6000828152601360205260408082204390555183916001600160a01b0380871692908816917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a450505050565b60008061416083613cd2565b6000848152601160209081526040808320546001600160a01b0380861680865260128552838620828c1680885295529290942054949550908214939216149060ff1682806141ab5750815b806141b35750805b979650505050505050565b60006141c8613c8e565b90506141d48183614154565b6141f15760405163390cdd9b60e21b815260040160405180910390fd5b60006141fc83613cd2565b600084815260116020526040812080546001600160a01b031916905590915061422790849080615261565b61423181846151e0565b60405183906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a4505050565b614276615651565b61427e615651565b601654600090819087156143bc57856040015161429c5760006142a2565b8551600f0b5b60808501526020870151421080156142c1575060008760000151600f0b135b156143065786516142d790630784ce0090615db8565b600f0b6020808701919091528701516142f1904290615b44565b85602001516143009190615df6565b600f0b85525b428660200151118015614320575060008660000151600f0b135b1561436557855161433690630784ce0090615db8565b600f0b602080860191909152860151614350904290615b44565b846020015161435f9190615df6565b600f0b84525b6020808801516000908152601b8252604090205490870151600f9190910b9350156143bc5786602001518660200151036143a1578291506143bc565b6020808701516000908152601b9091526040902054600f0b91505b6040805160a0810182526000808252602082018190524292820192909252436060820152608081019190915281156144455750600081815260066020908152604091829020825160a0810184528154600f81810b8352600160801b909104900b928101929092526001810154928201929092526002820154606082015260039091015460808201525b60008160400151905060006040518060a001604052808460000151600f0b81526020018460200151600f0b8152602001846040015181526020018460600151815260200184608001518152509050600083604001514211156144de5760408401516144b09042615b44565b60608501516144bf9043615b44565b6144d190670de0b6b3a7640000615b94565b6144db9190615b80565b90505b600062093a806144ee8186615b80565b6144f89190615b94565b905060005b60ff81101561467c5761451362093a8083615b57565b91506000428311156145275742925061453b565b506000828152601b6020526040902054600f0b5b6145458684615b44565b87602001516145549190615df6565b87518890614563908390615c31565b600f0b90525060208701805182919061457d908390615d8b565b600f90810b90915288516000910b1215905061459857600087525b60008760200151600f0b12156145b057600060208801525b60408088018490528501519295508592670de0b6b3a7640000906145d49085615b44565b6145de9086615b94565b6145e89190615b80565b85606001516145f79190615b57565b6060880152614607600189615b57565b975042830361461c575043606087015261467c565b6000888152600660209081526040918290208951918a01516001600160801b03908116600160801b0292169190911781559088015160018201556060880151600282015560808801516003909101555061467581615c7b565b90506144fd565b50508b1561470b57886020015188602001516146989190615c31565b846020018181516146a99190615d8b565b600f0b905250885188516146bd9190615c31565b845185906146cc908390615d8b565b600f90810b90915260208601516000910b121590506146ed57600060208501525b60008460000151600f0b121561470257600084525b601d5460808501525b8460011415801561473b57504260066000614727600189615b44565b815260200190815260200160002060010154145b156147a5578360066000614750600189615b44565b815260208082019290925260409081016000208351928401516001600160801b03908116600160801b0293169290921782558201516001820155606082015160028201556080909101516003909101556147fa565b60168590556000858152600660209081526040918290208651918701516001600160801b03908116600160801b0292169190911781559085015160018201556060850151600282015560808501516003909101555b8b15614a1957428b60200151111561486c57602089015161481b9088615d8b565b96508a602001518a602001510361483e57602088015161483b9088615c31565b96505b60208b8101516000908152601b9091526040902080546001600160801b0319166001600160801b0389161790555b428a6020015111156148c7578a602001518a6020015111156148c75760208801516148979087615c31565b60208b8101516000908152601b9091526040902080546001600160801b0319166001600160801b03831617905595505b426040808a01919091524360608a015260008d8152601a6020522054801580159061491b575060008d8152601960205260409020429082633b9aca00811061491157614911615bc4565b6004020160010154145b156149915760008d8152601960205260409020899082633b9aca00811061494457614944615bc4565b825160208401516001600160801b03908116600160801b02911617600491909102919091019081556040820151600182015560608201516002820155608090910151600390910155614a17565b61499a81615c7b565b60008e8152601a6020908152604080832084905560199091529020909150899082633b9aca0081106149ce576149ce615bc4565b825160208401516001600160801b03908116600160801b029116176004919091029190910190815560408201516001820155606082015160028201556080909101516003909101555b505b505050505050505050505050565b6040516001600160a01b03831660248201526044810182905261100290849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915261535d565b60008281526018602090815260409182902082516060810184528154600f0b81526001820154928101929092526002015460ff16151591810182905290614ae457604051632188f8ab60e01b815260040160405180910390fd5b8115801590614b0457506000614af983613cd2565b6001600160a01b0316145b15614b2257604051634a1850bf60e11b815260040160405180910390fd5b600083815260136020526040902054439003614b51576040516342d6fce760e01b815260040160405180910390fd5b828203614b5d57600091505b6000838152601f6020526040902054828103614b795750505050565b81516001600160801b0316614b978585614b9282613cd2565b615261565b614ba384826001614be9565b8382614bad613c8e565b6001600160a01b03167ff1aa2a9e40138176a3ee6099df056f5c175f8511a0d8b8275d94d1ea5de4677360405160405180910390a45050505050565b6040516375f199b960e11b81526021600482015260206024820152604481018490526064810183905281151560848201527335b833049c20ceb6549c6948e62e76e9c5e1ba089063ebe333729060a4015b60006040518083038186803b158015614c5257600080fd5b505af415801561296d573d6000803e3d6000fd5b60006001600160a01b038316614c7e57614c7e615e16565b614c8883836152cb565b614c9482600085615261565b60405182906001600160a01b038516906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a450600192915050565b601754614ce28582615b57565b6017556040805160608101825260008082526020808301828152838501928352875191880151948801511515909252929052600f9190910b80825286908290614d2c908390615d8b565b600f0b9052508415614d4057602081018590525b600087815260186020908152604091829020835181546001600160801b0319166001600160801b03909116178155908301516001820155908201516002909101805460ff1916911515919091179055614d9a87858361426e565b6000614da4613c8e565b90508615614de157614de16001600160a01b037f000000000000000000000000acd5552d06b18926aec72434c439eb13c9fc49e81682308a61542f565b836003811115614df357614df3615904565b602083810151604080518b8152928301919091524282820152518a916001600160a01b038516917f8835c22a0c751188de86681e15904223c054bedd5c68ec8858945b78312902739181900360600190a47f5e2aa66efd74cce82b21852e317e5490d9ecc9e6bb953ae24d90851258cc2f5c83614e708982615b57565b6040805192835260208301919091520160405180910390a15050505050505050565b6000600860008154614ea390615c7b565b91829055506000818152601860209081526040808320865181546001600160801b0319166001600160801b03909116178155868301516001820155868201516002909101805460ff19169115159190911790558051606081018252838152918201839052810191909152909150614f1c9082908461426e565b614f268382614c66565b5092915050565b60008062093a8080614f3f8642615b57565b614f499190615b80565b614f539190615b94565b905084600003614f7657604051631f2a200560e01b815260040160405180910390fd5b428111614f9657604051638e6b5b6760e01b815260040160405180910390fd5b614fa4630784ce0042615b57565b811115614fc45760405163f761f1cd60e01b815260040160405180910390fd5b6000600860008154614fd590615c7b565b91829055509050614fe68482614c66565b5060008181526018602090815260409182902082516060810184528154600f0b81526001808301549382019390935260029091015460ff1615159281019290925261503691839189918691614cd5565b95945050505050565b604051637b29b3d160e01b8152601a600482015260196024820152604481018390526064810182905260009073fa38b962562df7f9eed9d8db3cc261053efc263b90637b29b3d190608401602060405180830381865af41580156150a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121a49190615bab565b8015806151455750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa15801561511f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906151439190615bab565b155b6151b05760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b6064820152608401613d3b565b6040516001600160a01b03831660248201526044810182905261100290849063095ea7b360e01b90606401614a53565b816001600160a01b03166151f382613cd2565b6001600160a01b03161461520957615209615e16565b6000818152600f6020526040902080546001600160a01b031916905561522f828261546d565b6001600160a01b0382166000908152601060205260408120805460019290615258908490615b44565b90915550505050565b60405163690f66bf60e01b8152601860048201526021602482015260206044820152601f60648201526084810184905260a481018390526001600160a01b03821660c48201527335b833049c20ceb6549c6948e62e76e9c5e1ba089063690f66bf9060e401614c3a565b60006152d682613cd2565b6001600160a01b0316146152ec576152ec615e16565b6000818152600f6020908152604080832080546001600160a01b0319166001600160a01b038716908117909155808452601080845282852080546014865284872081885286528487208890558787526015865293862093909355908452909152805460019290615258908490615b57565b60006153b2826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661552c9092919063ffffffff16565b80519091501561100257808060200190518101906153d09190615e2c565b6110025760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401613d3b565b6040516001600160a01b03808516602483015283166044820152606481018290526154679085906323b872dd60e01b90608401614a53565b50505050565b6001600160a01b03821660009081526010602052604081205461549290600190615b44565b6000838152601560205260409020549091508082036154e1576001600160a01b038416600090815260146020908152604080832085845282528083208390558583526015909152812055615467565b6001600160a01b039390931660009081526014602090815260408083209383529281528282208054868452848420819055835260159091528282209490945592839055908252812055565b606061262c848460008585600080866001600160a01b031685876040516155539190615e49565b60006040518083038185875af1925050503d8060008114615590576040519150601f19603f3d011682016040523d82523d6000602084013e615595565b606091505b50915091506155a6878383876155b3565b925050505b949350505050565b6060831561562257825160000361561b576001600160a01b0385163b61561b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401613d3b565b50816155ab565b6155ab83838151156156375781518083602001fd5b8060405162461bcd60e51b8152600401613d3b9190615709565b6040518060a001604052806000600f0b81526020016000600f0b81526020016000815260200160008152602001600081525090565b6001600160e01b03198116811461131257600080fd5b6000602082840312156156ae57600080fd5b813561262f81615686565b60005b838110156156d45781810151838201526020016156bc565b50506000910152565b600081518084526156f58160208601602086016156b9565b601f01601f19169290920160200192915050565b6020815260006121a460208301846156dd565b60006020828403121561572e57600080fd5b5035919050565b6001600160a01b038116811461131257600080fd5b60006020828403121561575c57600080fd5b813561262f81615735565b6000806040838503121561577a57600080fd5b823561578581615735565b946020939093013593505050565b600080604083850312156157a657600080fd5b50508035926020909101359150565b6000806000606084860312156157ca57600080fd5b83356157d581615735565b925060208401356157e581615735565b929592945050506040919091013590565b6000806040838503121561580957600080fd5b823561581481615735565b9150602083013561582481615735565b809150509250929050565b801515811461131257600080fd5b6000806040838503121561585057600080fd5b823561585b81615735565b915060208301356158248161582f565b6000806040838503121561587e57600080fd5b8235915060208301356158248161582f565b60a081016121a782848051600f0b82526020810151600f0b60208301526040810151604083015260608101516060830152608081015160808301525050565b6000806000606084860312156158e457600080fd5b83356158ef81615735565b95602085013595506040909401359392505050565b634e487b7160e01b600052602160045260246000fd5b602081016003831061593c57634e487b7160e01b600052602160045260246000fd5b91905290565b600080600080600080600060e0888a03121561595d57600080fd5b87359650602088013595506040880135945060608801359350608088013560ff8116811461598a57600080fd5b9699959850939692959460a0840135945060c09093013592915050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156159e6576159e66159a7565b604052919050565b600067ffffffffffffffff821115615a0857615a086159a7565b50601f01601f191660200190565b60008060008060808587031215615a2c57600080fd5b8435615a3781615735565b93506020850135615a4781615735565b925060408501359150606085013567ffffffffffffffff811115615a6a57600080fd5b8501601f81018713615a7b57600080fd5b8035615a8e615a89826159ee565b6159bd565b818152886020838501011115615aa357600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b600080600060608486031215615ada57600080fd5b83359250602084013591506040840135615af381615735565b809150509250925092565b60008060408385031215615b1157600080fd5b82359150602083013565ffffffffffff8116811461582457600080fd5b634e487b7160e01b600052601160045260246000fd5b818103818111156121a7576121a7615b2e565b808201808211156121a7576121a7615b2e565b634e487b7160e01b600052601260045260246000fd5b600082615b8f57615b8f615b6a565b500490565b80820281158282048414176121a7576121a7615b2e565b600060208284031215615bbd57600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b6000604082018483526020604081850152818551808452606086019150828701935060005b81811015615c245784516001600160a01b031683529383019391830191600101615bff565b5090979650505050505050565b600f82810b9082900b0360016001607f1b0319811260016001607f1b03821317156121a7576121a7615b2e565b600060208284031215615c7057600080fd5b815161262f81615735565b600060018201615c8d57615c8d615b2e565b5060010190565b60008060408385031215615ca757600080fd5b8251615cb281615735565b602084015190925061582481615735565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090615cf6908301846156dd565b9695505050505050565b600060208284031215615d1257600080fd5b815161262f81615686565b600060208284031215615d2f57600080fd5b815167ffffffffffffffff811115615d4657600080fd5b8201601f81018413615d5757600080fd5b8051615d65615a89826159ee565b818152856020838501011115615d7a57600080fd5b6150368260208301602086016156b9565b600f81810b9083900b0160016001607f1b03811360016001607f1b0319821217156121a7576121a7615b2e565b600081600f0b83600f0b80615dcf57615dcf615b6a565b60016001607f1b0319821460001982141615615ded57615ded615b2e565b90059392505050565b600082600f0b82600f0b0280600f0b9150808214614f2657614f26615b2e565b634e487b7160e01b600052600160045260246000fd5b600060208284031215615e3e57600080fd5b815161262f8161582f565b60008251615e5b8184602087016156b9565b919091019291505056fef8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce7a2646970667358221220d7cbc06ee19342786eba17b59e99983ef41d67ad5b50356be23ee4dc508aec4264736f6c63430008130033

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

0000000000000000000000003133b05af8c34278792bb1c1b15c1367fb3b4f47000000000000000000000000acd5552d06b18926aec72434c439eb13c9fc49e80000000000000000000000005ab4685021d2817a2ffde7c4b2f78f3b7f99f897

-----Decoded View---------------
Arg [0] : _forwarder (address): 0x3133b05aF8c34278792BB1c1B15C1367FB3B4F47
Arg [1] : _token (address): 0xaCd5552d06B18926aec72434c439Eb13C9FC49E8
Arg [2] : _factoryRegistry (address): 0x5aB4685021d2817a2ffde7c4B2f78F3b7f99f897

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000003133b05af8c34278792bb1c1b15c1367fb3b4f47
Arg [1] : 000000000000000000000000acd5552d06b18926aec72434c439eb13c9fc49e8
Arg [2] : 0000000000000000000000005ab4685021d2817a2ffde7c4b2f78f3b7f99f897


Library Used

BalanceLogicLibrary : 0xfa38b962562df7f9eed9d8db3cc261053efc263bUnverified
DelegationLogicLibrary : 0x35b833049c20ceb6549c6948e62e76e9c5e1ba08Unverified

Deployed Bytecode Sourcemap

92578:53019:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109781:136;;;;;;:::i;:::-;-1:-1:-1;;;;;;109876:33:0;109852:4;109876:33;;;:19;:33;;;;;;;;;109781:136;;;;565:14:1;;558:22;540:41;;528:2;513:18;109781:136:0;;;;;;;;114794:21;;;;;;;;;738:25:1;;;726:2;711:18;114794:21:0;592:177:1;102218:37:0;;;;;;;;;;;;;;;-1:-1:-1;;;102218:37:0;;;;;;;;;;;;:::i;104481:120::-;;;;;;:::i;:::-;104543:7;104570:23;;;:13;:23;;;;;;-1:-1:-1;;;;;104570:23:0;;104481:120;;;;-1:-1:-1;;;;;1879:32:1;;;1861:51;;1849:2;1834:18;104481:120:0;1715:203:1;102399:181:0;;;;;;:::i;:::-;;:::i;:::-;;105657:753;;;;;;:::i;:::-;;:::i;125945:274::-;;;;;;:::i;:::-;;:::i;94065:22::-;;;;;;138451:107;;;:::i;95417:46::-;;;;;;:::i;:::-;;;;;;;;;;;;;;139702:131;;139753:80;139702:131;;107813:145;;;;;;:::i;:::-;;:::i;95788:48::-;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;95788:48:0;;;139038:204;;;;;;:::i;:::-;;:::i;130106:1162::-;;;;;;:::i;:::-;;:::i;102588:192::-;;;;;;:::i;:::-;;:::i;93179:29::-;;;;;-1:-1:-1;;;;;93179:29:0;;;102355:35;;102388:2;102355:35;;;;;4092:4:1;4080:17;;;4062:36;;4050:2;4035:18;102355:35:0;3920:184:1;135338:158:0;;;;;;:::i;:::-;;:::i;136487:913::-;;;;;;:::i;:::-;;:::i;98823:2311::-;;;;;;:::i;:::-;;:::i;101595:425::-;;;;;;:::i;:::-;;:::i;96070:890::-;;;;;;:::i;:::-;;:::i;92927:40::-;;;;;115100;;;;;;:::i;:::-;;;;;;;;;;;;;;;;108001:142;;;;;;:::i;:::-;;:::i;104840:156::-;;;;;;:::i;:::-;;:::i;115444:158::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;93044:20::-;;;;;-1:-1:-1;;;;;93044:20:0;;;133304:1694;;;;;;:::i;:::-;;:::i;:::-;;;;5720:25:1;;;5776:2;5761:18;;5754:34;;;;5693:18;133304:1694:0;5546:248:1;145492:102:0;145563:23;;;;;;;;;;;;-1:-1:-1;;;145563:23:0;;;;145492:102;;115200:35;;;;;;140917:233;;;;;;:::i;:::-;;:::i;140385:48::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6361:14:1;6349:27;;;6331:46;;6319:2;6304:18;140385:48:0;6187:196:1;95505:62:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;102308:40;;;;;;;;;;;;;;;-1:-1:-1;;;102308:40:0;;;;;93097:23;;;;;-1:-1:-1;;;;;93097:23:0;;;40087:138;;;;;;:::i;:::-;40200:17;-1:-1:-1;;;;;40187:30:0;;;;;;;40087:138;139285:154;;;;;;:::i;:::-;;:::i;103643:111::-;;;;;;:::i;:::-;;:::i;103797:120::-;;;;;;:::i;:::-;-1:-1:-1;;;;;103882:27:0;103855:7;103882:27;;;:19;:27;;;;;;;103797:120;95325:48;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:::i;140477:41::-;;;;;;:::i;:::-;;;;;;;;;;;;;;143389:1990;;;;;;:::i;:::-;;:::i;93071:19::-;;;;;-1:-1:-1;;;;;93071:19:0;;;115645:124;;;;;;:::i;:::-;;:::i;110152:75::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;141193:127;;;;;;:::i;:::-;;:::i;138957:37::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;114767:20;;;;;;145387:97;145460:15;145387:97;;101177:375;;;;;;:::i;:::-;;:::i;129133:930::-;;;;;;:::i;:::-;;:::i;106453:347::-;;;;;;:::i;:::-;;:::i;95696:50::-;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;95696:50:0;;;95609:43;;;;;;:::i;:::-;;;;;;;;;;;;;;;;140562:117;;;;;;:::i;:::-;140623:7;140650:21;;;:10;:21;;;;;;;140562:117;128834:256;;;;;;:::i;:::-;;:::i;115279:122::-;;;;;;:::i;:::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;115376:17:0;;;:7;:17;;;;;;115369:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115279:122;;;;;8057:13:1;;8053:2;8042:29;8024:48;;8128:4;8116:17;;;8110:24;8088:20;;;8081:54;8193:17;;;8187:24;8180:32;8173:40;8151:20;;;8144:70;8012:2;7997:18;115279:122:0;7816:404:1;127162:173:0;;;;;;:::i;:::-;;:::i;108580:972::-;;;;;;:::i;:::-;;:::i;93011:26::-;;;;;-1:-1:-1;;;;;93011:26:0;;;125769:133;;;:::i;102823:214::-;;;;;;:::i;:::-;;:::i;131311:1950::-;;;;;;:::i;:::-;;:::i;143136:210::-;;;;;;:::i;:::-;;:::i;138267:141::-;;;;;;:::i;:::-;;:::i;97003:1777::-;;;;;;:::i;:::-;;:::i;114956:49::-;;;;;;:::i;:::-;;;;;;;;;;;;;;135539:905;;;;;;:::i;:::-;;:::i;139927:144::-;;139982:89;139927:144;;138020:204;;;;;;:::i;:::-;;:::i;104644:153::-;;;;;;:::i;:::-;-1:-1:-1;;;;;104753:24:0;;;104728:4;104753:24;;;:16;:24;;;;;;;;104752:37;;;;;;;;;;;;;;;104644:153;127378:180;;;;;;:::i;:::-;;:::i;140722:152::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;10811:13:1;;10793:32;;10885:4;10873:17;;;10867:24;-1:-1:-1;;;;;10863:50:1;10841:20;;;10834:80;10970:4;10958:17;;;10952:24;10930:20;;;10923:54;11033:4;11021:17;;;11015:24;10993:20;;;10986:54;;;;10780:3;10765:19;;10590:456;115047:46:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11224:2:1;11213:22;;;;11195:41;;11183:2;11168:18;115047:46:0;11051:191:1;92886:34:0;;;;;92974:30;;;;;102399:181;102471:4;;-1:-1:-1;;;;;102471:4:0;102455:12;:10;:12::i;:::-;-1:-1:-1;;;;;102455:20:0;;102451:42;;102484:9;;-1:-1:-1;;;102484:9:0;;;;;;;;;;;102451:42;-1:-1:-1;;;;;102508:19:0;;102504:45;;102536:13;;-1:-1:-1;;;102536:13:0;;;;;;;;;;;102504:45;102560:4;:12;;-1:-1:-1;;;;;;102560:12:0;-1:-1:-1;;;;;102560:12:0;;;;;;;;;;102399:181::o;105657:753::-;105731:14;105748:12;:10;:12::i;:::-;105731:29;;105771:13;105787:18;105796:8;105787;:18::i;:::-;105771:34;-1:-1:-1;;;;;;105872:19:0;;105868:45;;105900:13;;-1:-1:-1;;;105900:13:0;;;;;;;;;;;105868:45;105992:9;-1:-1:-1;;;;;105983:18:0;:5;-1:-1:-1;;;;;105983:18:0;;105979:44;;106010:13;;-1:-1:-1;;;106010:13:0;;;;;;;;;;;105979:44;106065:18;106109:6;-1:-1:-1;;;;;106087:28:0;:18;106096:8;106087;:18::i;:::-;-1:-1:-1;;;;;106158:23:0;;;106127:27;106158:23;;;:16;:23;;;;;;;;106157:33;;;;;;;;;;;106087:28;;;;;;;-1:-1:-1;106157:33:0;;106205:14;;106087:28;106205:41;;;106224:22;106223:23;106205:41;106201:74;;;106255:20;;-1:-1:-1;;;106255:20:0;;;;;;;;;;;106201:74;106315:23;;;;:13;:23;;;;;;:35;;-1:-1:-1;;;;;;106315:35:0;-1:-1:-1;;;;;106315:35:0;;;;;;;;;106366:36;;106315:23;;106366:36;;;;;;;105720:690;;;;105657:753;;:::o;125945:274::-;38700:21;:19;:21::i;:::-;126060:18:::1;126036:20;::::0;;;:10:::1;:20;::::0;;;;;::::1;;:42;::::0;::::1;;;;;;:::i;:::-;;:73;;;;-1:-1:-1::0;126098:11:0::1;::::0;-1:-1:-1;;;;;126098:11:0::1;126082:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;126082:27:0::1;;;126036:73;126032:102;;;126118:16;;-1:-1:-1::0;;;126118:16:0::1;;;;;;;;;;;126032:102;126145:66;126164:8;126174:6;126182:28;126145:18;:66::i;:::-;38744:20:::0;38138:1;39264:7;:22;39081:213;38744:20;125945:274;;:::o;138451:107::-;138497:7;138524:26;138534:15;138524:9;:26::i;:::-;138517:33;;138451:107;:::o;107813:145::-;107901:49;107915:5;107922:3;107927:8;107937:12;:10;:12::i;:::-;107901:13;:49::i;:::-;107813:145;;;:::o;139038:204::-;139148:5;;-1:-1:-1;;;;;139148:5:0;139132:12;:10;:12::i;:::-;-1:-1:-1;;;;;139132:21:0;;139128:44;;139162:10;;-1:-1:-1;;;139162:10:0;;;;;;;;;;;139128:44;139183:5;:14;;-1:-1:-1;;;;;139183:14:0;;;-1:-1:-1;;;;;;139183:14:0;;;;;;;;139208:26;;;;;;;;;;;139038:204::o;130106:1162::-;38700:21;:19;:21::i;:::-;130175:14:::1;130192:12;:10;:12::i;:::-;130175:29;;130220:36;130239:6;130247:8;130220:18;:36::i;:::-;130215:70;;130265:20;;-1:-1:-1::0;;;130265:20:0::1;;;;;;;;;;;130215:70;130300:15;::::0;;;:5:::1;:15;::::0;;;;;::::1;;130296:42;;;130324:14;;-1:-1:-1::0;;;130324:14:0::1;;;;;;;;;;;130296:42;130377:17;130353:20:::0;;;:10:::1;:20;::::0;;;;;::::1;;:41;::::0;::::1;;;;;;:::i;:::-;;130349:68;;130403:14;;-1:-1:-1::0;;;130403:14:0::1;;;;;;;;;;;130349:68;130430:30;130463:17:::0;;;:7:::1;:17;::::0;;;;;;;;130430:50;;::::1;::::0;::::1;::::0;;;;::::1;;::::0;;;;::::1;::::0;;;::::1;::::0;;;;::::1;;::::0;::::1;;;::::0;::::1;::::0;;;;;;;;130491:49:::1;;130525:15;;-1:-1:-1::0;;;130525:15:0::1;;;;;;;;;;;130491:49;130573:9;:13;;;130555:15;:31;130551:60;;;130595:16;;-1:-1:-1::0;;;130595:16:0::1;;;;;;;;;;;130551:60;130653:16:::0;;130646:24:::1;;130709:15;130715:8:::0;130709:5:::1;:15::i;:::-;130755:26;::::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;130755:26:0;;;::::1;::::0;;::::1;::::0;;;;;;;;;130735:17;;;:7:::1;:17:::0;;;;;;;:46;;;;-1:-1:-1;;;;;;130735:46:0::1;-1:-1:-1::0;;;;;130735:46:0;;;::::1;::::0;;;;-1:-1:-1;130735:46:0;::::1;::::0;;;::::1;::::0;;::::1;::::0;;-1:-1:-1;;130735:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;130815:6:::1;::::0;130841:20:::1;130856:5:::0;130815:6;130841:20:::1;:::i;:::-;130832:6;:29:::0;131053:26:::1;::::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;131053:26:0;;;::::1;::::0;::::1;::::0;;;;;;;;;;131020:60:::1;::::0;131032:8;;131042:9;;131020:11:::1;:60::i;:::-;131093:41;-1:-1:-1::0;;;;;131100:5:0::1;131093:26;131120:6:::0;131128:5;131093:26:::1;:41::i;:::-;131152:50;::::0;;5720:25:1;;;131186:15:0::1;5776:2:1::0;5761:18;;5754:34;131169:8:0;;-1:-1:-1;;;;;131152:50:0;::::1;::::0;::::1;::::0;5693:18:1;131152:50:0::1;;;;;;;131218:42;131225:12:::0;131239:20:::1;131254:5:::0;131225:12;131239:20:::1;:::i;:::-;131218:42;::::0;;5720:25:1;;;5776:2;5761:18;;5754:34;;;;5693:18;131218:42:0::1;;;;;;;130164:1104;;;;38744:20:::0;38138:1;39264:7;:22;39081:213;38744:20;130106:1162;:::o;102588:192::-;102665:4;;-1:-1:-1;;;;;102665:4:0;102649:12;:10;:12::i;:::-;-1:-1:-1;;;;;102649:20:0;;102645:42;;102678:9;;-1:-1:-1;;;102678:9:0;;;;;;;;;;;102645:42;102698:8;:17;;-1:-1:-1;;;;;;102698:17:0;-1:-1:-1;;;;;102698:17:0;;;;;102731:41;;;-1:-1:-1;5720:25:1;;-1:-1:-1;;5776:2:1;5761:18;;5754:34;102731:41:0;;5693:18:1;102731:41:0;;;;;;;102588:192;:::o;135338:158::-;135429:4;;-1:-1:-1;;;;;135429:4:0;135413:12;:10;:12::i;:::-;-1:-1:-1;;;;;135413:20:0;;135409:42;;135442:9;;-1:-1:-1;;;135442:9:0;;;;;;;;;;;135409:42;-1:-1:-1;;;;;135462:18:0;;;;;;;;:8;:18;;;;;:26;;-1:-1:-1;;135462:26:0;;;;;;;;;;135338:158::o;136487:913::-;136550:14;136567:12;:10;:12::i;:::-;136550:29;;136595:36;136614:6;136622:8;136595:18;:36::i;:::-;136590:70;;136640:20;;-1:-1:-1;;;136640:20:0;;;;;;;;;;;136590:70;136699:17;136675:20;;;:10;:20;;;;;;;;:41;;;;;;;;:::i;:::-;;136671:68;;136725:14;;-1:-1:-1;;;136725:14:0;;;;;;;;;;;136671:68;136754:15;;;;:5;:15;;;;;;;;136750:42;;;136778:14;;-1:-1:-1;;;136778:14:0;;;;;;;;;;;136750:42;136803:31;136837:17;;;:7;:17;;;;;;;;;136803:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136865:54;;136901:18;;-1:-1:-1;;;136901:18:0;;;;;;;;;;;136865:54;136932:15;136965:10;:17;;;136958:25;;136932:52;;137019:7;136995:20;;:31;;;;;;;:::i;:::-;;;;-1:-1:-1;114582:7:0;;-1:-1:-1;114582:7:0;137056:25;114632:15;137056;:25;:::i;:::-;137055:34;;;;:::i;:::-;137054:43;;;;:::i;:::-;137037:14;;;:60;137133:5;137108:22;;;:30;;;137149:22;;137159:8;;137149:9;:22::i;:::-;137204:17;;;;:7;:17;;;;;;;;;137182:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137194:8;;137223:10;137182:11;:52::i;:::-;137245:17;;;;:7;:17;;;;;;;;;:30;;;;-1:-1:-1;;;;;;137245:30:0;-1:-1:-1;;;;;137245:30:0;;;;;;;;;;-1:-1:-1;137245:30:0;;;;;;;;;;;;;-1:-1:-1;;137245:30:0;;;;;;;;;;137293:59;;5720:25:1;;;137336:15:0;5761:18:1;;;5754:34;;;;137245:17:0;;-1:-1:-1;;;;;137293:59:0;;;;;5693:18:1;137293:59:0;;;;;;;;137368:24;;738:25:1;;;-1:-1:-1;;;;;;;;;;;137368:24:0;726:2:1;711:18;137368:24:0;;;;;;;136539:861;;;136487:913;:::o;98823:2311::-;38700:21;:19;:21::i;:::-;98899:17:::1;98919:21:::0;;;:11:::1;:21;::::0;;;;;98971:5:::1;::::0;-1:-1:-1;;;;;98971:5:0::1;98955:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;98955:21:0::1;;98951:44;;98985:10;;-1:-1:-1::0;;;98985:10:0::1;;;;;;;;;;;98951:44;99010:9;99023:1;99010:14:::0;99006:48:::1;;99033:21;;-1:-1:-1::0;;;99033:21:0::1;;;;;;;;;;;99006:48;99093:17;99069:20;::::0;;;:10:::1;:20;::::0;;;;;::::1;;:41;::::0;::::1;;;;;;:::i;:::-;;99065:68;;99119:14;;-1:-1:-1::0;;;99119:14:0::1;;;;;;;;;;;99065:68;99181:28;99212:26:::0;;;:15:::1;:26;::::0;;;;;;;;99278:13:::1;:24:::0;;;;;;99331:17;;;:7:::1;:17:::0;;;;;:28;;;;;;;;;;99388:62;;-1:-1:-1;;;99388:62:0;;-1:-1:-1;;;;;99433:5:0::1;12525:32:1::0;;99388:62:0::1;::::0;::::1;12507:51:1::0;12574:18;;;12567:34;;;99212:26:0;;::::1;::::0;99278:24;;;::::1;::::0;99212:26;;99388:36:::1;::::0;12480:18:1;;99388:62:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;99370:80:::0;-1:-1:-1;99461:14:0::1;99478:17;99370:80:::0;99478:7;:17:::1;:::i;:::-;99461:34:::0;-1:-1:-1;99506:19:0::1;114582:7;::::0;99530:25:::1;114632:15;99530;:25;:::i;:::-;99529:34;;;;:::i;:::-;99528:43;;;;:::i;:::-;99674:16;::::0;;99688:1:::1;99674:16:::0;;;;;::::1;::::0;;;99506:65;;-1:-1:-1;99647:24:0::1;::::0;99674:16;::::1;::::0;;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;99674:16:0::1;99647:43;;99722:5;99701:7;99709:1;99701:10;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;99701:27:0;;::::1;:10;::::0;;::::1;::::0;;;;;:27;99739:58:::1;::::0;-1:-1:-1;;;99739:58:0;;:39;;::::1;::::0;::::1;::::0;:58:::1;::::0;99779:8;;99789:7;;99739:58:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;99838:36;99877:57;;;;;;;;99905:6;99877:57;;;;;;99915:11;99877:57;;;;99928:5;99877:57;;;;::::0;99838:96:::1;;99945:57;99957:8;99967:7;:17;99975:8;99967:17;;;;;;;;;;;99945:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;99986:15;99945:11;:57::i;:::-;100013:17;::::0;;;:7:::1;:17;::::0;;;;;;;:35;;;;-1:-1:-1;;;;;;100013:35:0::1;-1:-1:-1::0;;;;;100013:35:0;;;::::1;::::0;;;;::::1;::::0;-1:-1:-1;100013:35:0;;::::1;::::0;;;;;;::::1;::::0;::::1;::::0;;::::1;::::0;;-1:-1:-1;;100013:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;100132:18;;;;;;;100092:58;;::::1;::::0;::::1;::::0;;;;100013:35:::1;100092:58:::0;;::::1;::::0;;;;;::::1;::::0;;;::::1;::::0;;;;;::::1;::::0;100013:35:::1;100092:58;;;::::0;;;;;;;;100292:48;;;::::1;;:99;;100368:23:::0;;100292:99:::1;;;100357:6;100292:99;100250:152:::0;;:16;;:152:::1;::::0;;;::::1;:::i;:::-;;;::::0;;-1:-1:-1;100447:20:0::1;::::0;100438:29;::::1;:61;;100479:20;;100438:61;;;100470:6;100438:61;100413:20;;:87;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;100532:21:0::1;::::0;;;:10:::1;:21;::::0;;;;;100511:58:::1;::::0;100555:6;;100511:20:::1;:58::i;:::-;100603:18;::::0;;;:7:::1;:18;::::0;;;;;;;;100580:60;;::::1;::::0;::::1;::::0;;;;::::1;;::::0;;;;::::1;::::0;;;::::1;::::0;;;;::::1;;::::0;::::1;;;;::::0;;;;;;;::::1;::::0;100592:9;;100623:16;100580:11:::1;:60::i;:::-;100651:18;::::0;;;:7:::1;:18;::::0;;;;;;;;:37;;;;-1:-1:-1;;;;;;100651:37:0::1;-1:-1:-1::0;;;;;100651:37:0;;;::::1;::::0;;;;::::1;::::0;-1:-1:-1;100651:37:0;::::1;::::0;;;::::1;::::0;::::1;::::0;;::::1;::::0;;-1:-1:-1;;100651:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;100701:76;;-1:-1:-1;;;100701:76:0;;100741:25;;::::1;100701:76;::::0;::::1;5720:25:1::0;5761:18;;;5754:34;;;-1:-1:-1;;;;;100701:39:0;::::1;::::0;::::1;::::0;5693:18:1;;100701:76:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;100788:74:0::1;::::0;-1:-1:-1;;;100788:74:0;;-1:-1:-1;;;;;100826:25:0;::::1;100788:74;::::0;::::1;5720:25:1::0;5761:18;;;5754:34;;;-1:-1:-1;;;;;100788:37:0;::::1;::::0;-1:-1:-1;100788:37:0::1;::::0;-1:-1:-1;5693:18:1;;100788:74:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;;100882:21:0::1;::::0;;;:11:::1;:21;::::0;;;;;;;100875:28;;;100921:7:::1;:17:::0;;;;;:28;;;;;;;;100914:35;;;100967:20;;;:10:::1;:20:::0;;;;;100960:27;;-1:-1:-1;;100960:27:0::1;::::0;;-1:-1:-1;100939:9:0;100894:8;101021:18:::1;100894:8:::0;101021::::1;:18::i;:::-;-1:-1:-1::0;;;;;101005:81:0::1;;101062:6;101070:15;101005:81;;;;;;5720:25:1::0;;;5776:2;5761:18;;5754:34;5708:2;5693:18;;5546:248;101005:81:0::1;;;;;;;;101102:24;::::0;738:25:1;;;-1:-1:-1;;;;;;;;;;;101102:24:0;726:2:1;711:18;101102:24:0::1;;;;;;;98888:2246;;;;;;;;;;38744:20:::0;38138:1;39264:7;:22;39081:213;101595:425;101699:5;;;;;;;;;-1:-1:-1;;;;;101699:5:0;-1:-1:-1;;;;;101692:30:0;;:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;101676:48:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;101676:48:0;;;:92;;;;;101751:5;;;;;;;;;-1:-1:-1;;;;;101751:5:0;-1:-1:-1;;;;;101744:22:0;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;101728:40:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;101728:40:0;;;101676:92;101672:149;;;101790:31;;-1:-1:-1;;;101790:31:0;;;;;;;;;;;101672:149;101861:18;101836:21;;;;:10;:21;;;;;;;;:43;;;;;;;;:::i;:::-;;101832:71;;101888:15;;-1:-1:-1;;;101888:15:0;;;;;;;;;;;101832:71;101918:22;;;;:11;:22;;;;;;:32;;;:22;;;;:32;;;101914:56;;101959:11;;-1:-1:-1;;;101959:11:0;;;;;;;;;;;101914:56;101981:22;;;;:11;:22;;;;;;:31;;-1:-1:-1;;101981:31:0;;;;;;;;;;101595:425::o;96070:890::-;96144:17;38700:21;:19;:21::i;:::-;96174:14:::1;96191:12;:10;:12::i;:::-;96228:14;::::0;96174:29;;-1:-1:-1;;;;;;96218:24:0;;::::1;96228:14:::0;::::1;96218:24;::::0;::::1;::::0;:62:::1;;;96263:5;;;;;;;;;-1:-1:-1::0;;;;;96263:5:0::1;-1:-1:-1::0;;;;;96256:22:0::1;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;96246:34:0::1;:6;-1:-1:-1::0;;;;;96246:34:0::1;;;96218:62;96214:97;;;96289:22;;-1:-1:-1::0;;;96289:22:0::1;;;;;;;;;;;96214:97;96338:7;;96336:9;;;;;:::i;:::-;::::0;;;;-1:-1:-1;96336:9:0;-1:-1:-1;96356:21:0::1;96362:3:::0;96336:9;96356:5:::1;:21::i;:::-;;96388:85;96400:9;96411:1;96414::::0;96417:25:::1;;;;;;;;96431:1;96417:25;;;;;;96434:1;96417:25;;;;96437:4;96417:25;;;;::::0;96444:28:::1;96388:11;:85::i;:::-;96486:21;::::0;;;:10:::1;:21;::::0;;;;;;;:42;;-1:-1:-1;;96486:42:0::1;96510:18;96486:42;::::0;;96639:57;;-1:-1:-1;;;96639:57:0;;;;96486:21;;-1:-1:-1;;;;;96656:15:0::1;96639:55;::::0;::::1;::::0;:57:::1;::::0;;::::1;::::0;96486:21;96639:57;;;;;:55;:57:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;96733:5;::::0;96602:137:::1;::::0;-1:-1:-1;;;96602:137:0;;-1:-1:-1;;;;;96722:9:0::1;14547:15:1::0;;96602:137:0::1;::::0;::::1;14529:34:1::0;96733:5:0;;::::1;14579:18:1::0;;;14572:43;96602:119:0;::::1;::::0;::::1;::::0;14464:18:1;;96602:137:0::1;::::0;::::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;96750:26;::::0;;;:15:::1;:26;::::0;;;;;;;:49;;-1:-1:-1;;;;;96750:49:0;;::::1;-1:-1:-1::0;;;;;;96750:49:0;;::::1;::::0;::::1;::::0;;;96810:13:::1;:24:::0;;;;;;:45;;;;::::1;::::0;::::1;::::0;::::1;::::0;;96873:79;;14529:34:1;;;14579:18;;;14572:43;;;;96750:49:0;;-1:-1:-1;96810:45:0;;-1:-1:-1;96873:79:0;;::::1;::::0;96750:26;;96873:79;;::::1;::::0;::::1;::::0;14464:18:1;96873:79:0::1;;;;;;;96163:797;;;38744:20:::0;38138:1;39264:7;:22;39081:213;38744:20;96070:890;;;:::o;108001:142::-;108093:42;108110:5;108117:3;108122:8;108093:42;;;;;;;;;;;;:16;:42::i;104840:156::-;104926:4;104950:38;104969:8;104979;104950:18;:38::i;:::-;104943:45;;104840:156;;;;;:::o;115444:158::-;115525:16;;:::i;:::-;115561:27;;;;:17;:27;;;;;115589:4;115561:33;;;;;;;:::i;:::-;115554:40;;;;;;;;115561:33;;;;;;;;;115554:40;;;;;;;;-1:-1:-1;;;115554:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115444:158;-1:-1:-1;;;115444:158:0:o;133304:1694::-;133407:17;133426;38700:21;:19;:21::i;:::-;133456:14:::1;133473:12;:10;:12::i;:::-;133456:29;;133496:13;133512:15;133521:5;133512:8;:15::i;:::-;133496:31:::0;-1:-1:-1;;;;;;133542:19:0;::::1;133538:46;;133570:14;;-1:-1:-1::0;;;133570:14:0::1;;;;;;;;;;;133538:46;-1:-1:-1::0;;;;;133600:15:0;::::1;;::::0;;;:8:::1;:15;::::0;;;;;::::1;;133599:16;:41:::0;::::1;;;-1:-1:-1::0;133620:20:0::1;::::0;;:8:::1;:20;::::0;;;::::1;;133619:21;133599:41;133595:71;;;133649:17;;-1:-1:-1::0;;;133649:17:0::1;;;;;;;;;;;133595:71;133702:17;133681::::0;;;:10:::1;:17;::::0;;;;;::::1;;:38;::::0;::::1;;;;;;:::i;:::-;;133677:65;;133728:14;;-1:-1:-1::0;;;133728:14:0::1;;;;;;;;;;;133677:65;133757:12;::::0;;;:5:::1;:12;::::0;;;;;::::1;;133753:39;;;133778:14;;-1:-1:-1::0;;;133778:14:0::1;;;;;;;;;;;133753:39;133808:33;133827:6;133835:5;133808:18;:33::i;:::-;133803:67;;133850:20;;-1:-1:-1::0;;;133850:20:0::1;;;;;;;;;;;133803:67;133881:30;133914:14:::0;;;:7:::1;:14;::::0;;;;;;;;133881:47;;::::1;::::0;::::1;::::0;;;;::::1;;::::0;;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;::::0;::::1;;;;::::0;;;;;;;133960:15:::1;-1:-1:-1::0;133943:32:0;::::1;::::0;:58:::1;;;133980:9;:21;;;133979:22;133943:58;133939:84;;;134010:13;;-1:-1:-1::0;;;134010:13:0::1;;;;;;;;;;;133939:84;134070:7:::0;134094:17:::1;::::0;;::::1;134034:19;134094:17:::0;134090:42:::1;;134120:12;;-1:-1:-1::0;;;134120:12:0::1;;;;;;;;;;;134090:42;134167:12;134147:32;;:9;:16;;;:32;;;134143:59;;134188:14;;-1:-1:-1::0;;;134188:14:0::1;;;;;;;;;;;134143:59;134255:12;134261:5;134255;:12::i;:::-;134295:26;::::0;;::::1;::::0;;::::1;::::0;;-1:-1:-1;134295:26:0;;;::::1;::::0;;::::1;::::0;;;;;;;;;134278:14;;;:7:::1;:14:::0;;;;;:43;;;;-1:-1:-1;;;;;;134278:43:0::1;-1:-1:-1::0;;;;;134278:43:0;;;::::1;::::0;;;;-1:-1:-1;134278:43:0;::::1;::::0;;::::1;::::0;;::::1;::::0;;-1:-1:-1;;134278:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;134362:26;;;;::::1;::::0;;;;;;;::::1;::::0;;;;;;;134332:57:::1;::::0;134278:14;;134351:9;;134332:11:::1;:57::i;:::-;134478:12;134458:9;:16;;:32;;;;;;;:::i;:::-;;;::::0;;-1:-1:-1;134513:33:0::1;134529:5:::0;134536:9;134513:15:::1;:33::i;:::-;134601:31;::::0;;::::1;::::0;;134501:45;-1:-1:-1;134655:33:0::1;134671:5:::0;134601:9;134655:15:::1;:33::i;:::-;134831:18;::::0;;;:7:::1;:18;::::0;;;;;;;;:25;134934:13;;::::1;::::0;134706:284;;-1:-1:-1;;;;;15293:32:1;;15275:51;;-1:-1:-1;;;;;134815:43:0;;;15342:18:1;;;15335:34;;;;134873:30:0;;::::1;15385:18:1::0;;;15378:34;134918:31:0::1;15443:2:1::0;15428:18;;15421:34;134964:15:0::1;15486:3:1::0;15471:19;;15464:35;134706:284:0;;134643:45;;-1:-1:-1;134643:45:0;;134831:18;;134726:5;;134706:284:::1;::::0;;;;15262:3:1;134706:284:0;;::::1;133445:1553;;;;38744:20:::0;38138:1;39264:7;:22;39081:213;38744:20;133304:1694;;;;;:::o;140917:233::-;141045:97;;-1:-1:-1;;;141045:97:0;;141081:14;141045:97;;;15875:25:1;141097:12:0;15916:18:1;;;15909:34;-1:-1:-1;;;;;15979:32:1;;15959:18;;;15952:60;16028:18;;;16021:34;;;16071:19;;;16064:35;;;141018:7:0;;141045:22;;:35;;15847:19:1;;141045:97:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;141038:104;;140917:233;;;;;;:::o;139285:154::-;139372:5;;-1:-1:-1;;;;;139372:5:0;139356:12;:10;:12::i;:::-;-1:-1:-1;;;;;139356:21:0;;139352:44;;139386:10;;-1:-1:-1;;;139386:10:0;;;;;;;;;;;139352:44;139407:15;;;;:5;:15;;;;;;:24;;-1:-1:-1;;139407:24:0;;;;;;;;;;139285:154::o;103643:111::-;103701:7;103728:18;103737:8;103728;:18::i;143389:1990::-;144502:66;144489:79;;144485:111;;;144577:19;;-1:-1:-1;;;144577:19:0;;;;;;;;;;;144485:111;144701:4;;;;;;;;;;;;-1:-1:-1;;;144701:4:0;;;;;144725:7;;;;;;;;;;-1:-1:-1;;;144725:7:0;;;;144657:108;;139753:80;144657:108;;;16369:25:1;144685:22:0;16410:18:1;;;16403:34;144709:25:0;16453:18:1;;;16446:34;144736:13:0;16496:18:1;;;16489:34;144759:4:0;16539:19:1;;;;16532:61;;;;144657:108:0;;;;;;;;;;16341:19:1;;;144657:108:0;;144633:143;;;;;;139982:89;144818:68;;;16863:25:1;16904:18;;;16897:34;;;16947:18;;;16940:34;;;16990:18;;;16983:34;;;17033:19;;;;17026:35;;;144818:68:0;;;;;;;;;;16835:19:1;;;144818:68:0;;;144808:79;;;;;;;;;;-1:-1:-1;;;144925:57:0;;;17330:27:1;17373:11;;;17366:27;;;17409:12;;;17402:28;;;144633:143:0;;-1:-1:-1;;17446:12:1;;144925:57:0;;;-1:-1:-1;;144925:57:0;;;;;;;;;144915:68;;144925:57;144915:68;;;;144994:17;145014:26;;;;;;;;;17696:25:1;;;17769:4;17757:17;;17737:18;;;17730:45;;;;17791:18;;;17784:34;;;17834:18;;;17827:34;;;144915:68:0;;-1:-1:-1;144994:17:0;145014:26;;17668:19:1;;145014:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144994:46;;145056:40;145075:9;145086;145056:18;:40::i;:::-;145051:74;;145105:20;;-1:-1:-1;;;145105:20:0;;;;;;;;;;;145051:74;-1:-1:-1;;;;;145140:23:0;;145136:54;;145172:18;;-1:-1:-1;;;145172:18:0;;;;;;;;;;;145136:54;-1:-1:-1;;;;;145214:17:0;;;;;;:6;:17;;;;;:19;;;;;;:::i;:::-;;;;;145205:5;:28;145201:55;;145242:14;;-1:-1:-1;;;145242:14:0;;;;;;;;;;;145201:55;145289:6;145271:15;:24;145267:55;;;145304:18;;-1:-1:-1;;;145304:18:0;;;;;;;;;;;145267:55;145340:31;145350:9;145361;145340;:31::i;:::-;145333:38;;;;143389:1990;;;;;;;;:::o;115645:124::-;115704:18;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115704:18:0;-1:-1:-1;115742:19:0;;;;:13;:19;;;;;;;;;115735:26;;;;;;;;;;;;;;;-1:-1:-1;;;115735:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115645:124::o;141193:127::-;141264:7;141291:21;141301:10;141291:9;:21::i;101177:375::-;101276:5;;;;;;;;;-1:-1:-1;;;;;101276:5:0;-1:-1:-1;;;;;101269:22:0;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;101253:40:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;101253:40:0;;101249:66;;101302:13;;-1:-1:-1;;;101302:13:0;;;;;;;;;;;101249:66;101349:14;;-1:-1:-1;;;;;101349:14:0;;;101330:33;;;;101326:59;;101372:13;;-1:-1:-1;;;101372:13:0;;;;;;;;;;;101326:59;-1:-1:-1;;;;;101400:29:0;;101396:55;;101438:13;;-1:-1:-1;;;101438:13:0;;;;;;;;;;;101396:55;101462:14;:32;;-1:-1:-1;;;;;;101462:32:0;-1:-1:-1;;;;;101462:32:0;;;;;;;;101510:34;;;;-1:-1:-1;;101510:34:0;101177:375;:::o;129133:930::-;38700:21;:19;:21::i;:::-;129240:42:::1;129259:12;:10;:12::i;:::-;129273:8;129240:18;:42::i;:::-;129235:76;;129291:20;;-1:-1:-1::0;;;129291:20:0::1;;;;;;;;;;;129235:76;129350:17;129326:20:::0;;;:10:::1;:20;::::0;;;;;::::1;;:41;::::0;::::1;;;;;;:::i;:::-;;129322:68;;129376:14;;-1:-1:-1::0;;;129376:14:0::1;;;;;;;;;;;129322:68;129403:30;129436:17:::0;;;:7:::1;:17;::::0;;;;;;;;129403:50;;::::1;::::0;::::1;::::0;;;;::::1;;::::0;;;;::::1;::::0;;;::::1;::::0;;;;::::1;;::::0;::::1;;;::::0;::::1;::::0;;;;;;;;129464:49:::1;;129498:15;;-1:-1:-1::0;;;129498:15:0::1;;;;;;;;;;;129464:49;129524:18;114582:7;::::0;129547:31:::1;129565:13:::0;129547:15:::1;:31;:::i;:::-;129546:40;;;;:::i;:::-;129545:49;;;;:::i;:::-;129524:70;;129665:15;129648:9;:13;;;:32;129644:58;;129689:13;;-1:-1:-1::0;;;129689:13:0::1;;;;;;;;;;;129644:58;129737:1;129717:9;:16;;;:21;;;129713:47;;129747:13;;-1:-1:-1::0;;;129747:13:0::1;;;;;;;;;;;129713:47;129789:9;:13;;;129775:10;:27;129771:65;;129811:25;;-1:-1:-1::0;;;129811:25:0::1;;;;;;;;;;;129771:65;129864:25;114632:15;129864;:25;:::i;:::-;129851:10;:38;129847:72;;;129898:21;;-1:-1:-1::0;;;129898:21:0::1;;;;;;;;;;;129847:72;129932:81;129944:8;129954:1;129957:10;129969:9;129980:32;129932:11;:81::i;:::-;130031:24;::::0;738:25:1;;;-1:-1:-1;;;;;;;;;;;130031:24:0;726:2:1;711:18;130031:24:0::1;;;;;;;129224:839;;38744:20:::0;38138:1;39264:7;:22;39081:213;106453:347;106535:14;106552:12;:10;:12::i;:::-;106535:29;;106646:6;-1:-1:-1;;;;;106633:19:0;:9;-1:-1:-1;;;;;106633:19:0;;106629:45;;106661:13;;-1:-1:-1;;;106661:13:0;;;;;;;;;;;106629:45;-1:-1:-1;;;;;106685:24:0;;;;;;;:16;:24;;;;;;;;:35;;;;;;;;;;;;;:47;;-1:-1:-1;;106685:47:0;;;;;;;;;;106748:44;;540:41:1;;;106748:44:0;;513:18:1;106748:44:0;;;;;;;106524:276;106453:347;;:::o;128834:256::-;38700:21;:19;:21::i;:::-;128930:42:::1;128949:12;:10;:12::i;128930:42::-;128925:76;;128981:20;;-1:-1:-1::0;;;128981:20:0::1;;;;;;;;;;;128925:76;129012:70;129031:8;129041:6;129049:32;129012:18;:70::i;127162:173::-:0;127252:7;38700:21;:19;:21::i;:::-;127279:48:::1;127291:6;127299:13;127314:12;:10;:12::i;:::-;127279:11;:48::i;:::-;127272:55;;38744:20:::0;38138:1;39264:7;:22;39081:213;108580:972;108690:14;108707:12;:10;:12::i;:::-;108690:29;;108730:43;108744:5;108751:3;108756:8;108766:6;108730:13;:43::i;:::-;108473:20;;108521:8;108786:759;;108932:69;;-1:-1:-1;;;108932:69:0;;-1:-1:-1;;;;;108932:37:0;;;;;:69;;108970:6;;108978:5;;108985:8;;108995:5;;108932:69;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;108932:69:0;;;;;;;;-1:-1:-1;;108932:69:0;;;;;;;;;;;;:::i;:::-;;;108928:606;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109258:6;:13;109275:1;109258:18;109254:265;;109308:46;;-1:-1:-1;;;109308:46:0;;;;;;;;;;;109254:265;109469:6;109463:13;109454:6;109450:2;109446:15;109439:38;108928:606;-1:-1:-1;;;;;;109051:58:0;;-1:-1:-1;;;109051:58:0;109047:144;;109141:30;;-1:-1:-1;;;109141:30:0;;;;;;;;;;;109047:144;109002:204;108928:606;108679:873;108580:972;;;;:::o;125769:133::-;38700:21;:19;:21::i;:::-;125839:26:::1;::::0;;::::1;::::0;;::::1;::::0;;125836:1:::1;125839:26:::0;;;::::1;::::0;;::::1;::::0;;;;;;;;;125867;;;;::::1;::::0;;;;;;::::1;::::0;;;;;;;;;125824:70:::1;::::0;125836:1;125839:26;125824:11:::1;:70::i;:::-;38744:20:::0;38138:1;39264:7;:22;39081:213;38744:20;125769:133::o;102823:214::-;102882:13;102942:1;102912:18;102921:8;102912;:18::i;:::-;-1:-1:-1;;;;;102912:32:0;;102908:63;;102953:18;;-1:-1:-1;;;102953:18:0;;;;;;;;;;;102908:63;103001:8;;;102989:40;;-1:-1:-1;;;102989:40:0;;;;;738:25:1;;;-1:-1:-1;;;;;103001:8:0;;102989:30;;711:18:1;;102989:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;102989:40:0;;;;;;;;;;;;:::i;131311:1950::-;38700:21;:19;:21::i;:::-;131387:14:::1;131404:12;:10;:12::i;:::-;131431;::::0;;;:5:::1;:12;::::0;;;;;131387:29;;-1:-1:-1;131431:12:0::1;;131427:39;;;131452:14;;-1:-1:-1::0;;;131452:14:0::1;;;;;;;;;;;131427:39;131502:17;131481::::0;;;:10:::1;:17;::::0;;;;;::::1;;:38;::::0;::::1;;;;;;:::i;:::-;;131477:65;;131528:14;;-1:-1:-1::0;;;131528:14:0::1;;;;;;;;;;;131477:65;131576:17;131557:15:::0;;;:10:::1;:15;::::0;;;;;::::1;;:36;::::0;::::1;;;;;;:::i;:::-;;131553:63;;131602:14;;-1:-1:-1::0;;;131602:14:0::1;;;;;;;;;;;131553:63;131640:3;131631:5;:12:::0;131627:34:::1;;131652:9;;-1:-1:-1::0;;;131652:9:0::1;;;;;;;;;;;131627:34;131677:33;131696:6;131704:5;131677:18;:33::i;:::-;131672:67;;131719:20;;-1:-1:-1::0;;;131719:20:0::1;;;;;;;;;;;131672:67;131755:31;131774:6;131782:3;131755:18;:31::i;:::-;131750:65;;131795:20;;-1:-1:-1::0;;;131795:20:0::1;;;;;;;;;;;131750:65;131826:32;131861:12:::0;;;:7:::1;:12;::::0;;;;;;;;131826:47;;::::1;::::0;::::1;::::0;;;;::::1;;::::0;;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;::::0;::::1;;;;::::0;;;;;;;131907:15:::1;-1:-1:-1::0;131888:34:0;::::1;::::0;:62:::1;;;131927:11;:23;;;131926:24;131888:62;131884:88;;;131959:13;;-1:-1:-1::0;;;131959:13:0::1;;;;;;;;;;;131884:88;131985:34;132022:14:::0;;;:7:::1;:14;::::0;;;;;;;;131985:51;;::::1;::::0;::::1;::::0;;;;::::1;;::::0;;;;::::1;::::0;;;::::1;::::0;;;;::::1;;::::0;::::1;;;::::0;::::1;::::0;;;;;;;;132047:53:::1;;132085:15;;-1:-1:-1::0;;;132085:15:0::1;;;;;;;;;;;132047:53;132111:11;132146;:15;;;132125:13;:17;;;:36;;:74;;132184:11;:15;;;132125:74;;;132164:13;:17;;;132125:74;132111:88;;132212:12;132218:5;132212;:12::i;:::-;132252:26;::::0;;::::1;::::0;;::::1;::::0;;-1:-1:-1;132252:26:0;;;::::1;::::0;;::::1;::::0;;;;;;;;;132235:14;;;:7:::1;:14:::0;;;;;:43;;;;-1:-1:-1;;;;;;132235:43:0::1;-1:-1:-1::0;;;;;132235:43:0;;;::::1;::::0;;;;-1:-1:-1;132235:43:0;::::1;::::0;;::::1;::::0;;::::1;::::0;;-1:-1:-1;;132235:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;132323:26;;;;::::1;::::0;;;;;;;::::1;::::0;;;;;;;132289:61:::1;::::0;132235:14;;132308:13;;132289:11:::1;:61::i;:::-;-1:-1:-1::0;;;;;;;;;;;;;;;;;;;;;;;;;132448:20:0;;132427:18;;:41:::1;::::0;132448:20;132427:41:::1;:::i;:::-;132406:62;;::::0;;132505:23:::1;::::0;;::::1;::::0;132479:49:::1;::::0;::::1;:23:::0;;::::1;:49:::0;;;;132539:171:::1;;132622:13;:20;;;132615:28;;132583:20;;:61;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;132539:171:0::1;::::0;-1:-1:-1;132539:171:0::1;;132677:15;::::0;::::1;:21:::0;;;132539:171:::1;132741:15;::::0;;;:10:::1;:15;::::0;;;;;132773:20;;132720:82:::1;::::0;132741:15;132766:28:::1;;132797:4;132720:20;:82::i;:::-;132813:42;132825:3;132830:11;132843;132813;:42::i;:::-;132866:12;::::0;;;:7:::1;:12;::::0;;;;;;;;:26;;;;-1:-1:-1;;;;;132866:26:0;;;-1:-1:-1;;;;;;132866:26:0;;::::1;::::0;::::1;::::0;;;;::::1;::::0;-1:-1:-1;132866:26:0;::::1;::::0;;;;;::::1;::::0;::::1;::::0;;::::1;::::0;;;::::1;;-1:-1:-1::0;;132866:26:0;;::::1;::::0;;;::::1;::::0;;;133005:20;;133058:18;;132910:308;;132989:38;;::::1;16863:25:1::0;;133042:36:0;::::1;16904:18:1::0;;;16897:34;;;;16947:18;;;16940:34;133144:33:0::1;17005:2:1::0;16990:18;;16983:34;133192:15:0::1;17048:3:1::0;17033:19;;17026:35;132910:308:0;;132866:12;;132951:5;;-1:-1:-1;;;;;132910:308:0;::::1;::::0;::::1;::::0;;;;;16850:3:1;132910:308:0;;::::1;133234:19;::::0;738:25:1;;;-1:-1:-1;;;;;;;;;;;133234:19:0;726:2:1;711:18;133234:19:0::1;;;;;;;;131376:1885;;;;;38744:20:::0;38138:1;39264:7;:22;39081:213;143136:210;143217:43;143236:12;:10;:12::i;143217:43::-;143212:77;;143269:20;;-1:-1:-1;;;143269:20:0;;;;;;;;;;;143212:77;143307:31;143317:9;143328;143307;:31::i;138267:141::-;138344:7;138371:29;138387:8;138397:2;138371:15;:29::i;97003:1777::-;38700:21;:19;:21::i;:::-;97117:5:::1;::::0;-1:-1:-1;;;;;97117:5:0::1;97101:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;97101:21:0::1;;97097:44;;97131:10;;-1:-1:-1::0;;;97131:10:0::1;;;;;;;;;;;97097:44;97181:18;97156:21;::::0;;;:10:::1;:21;::::0;;;;;::::1;;:43;::::0;::::1;;;;;;:::i;:::-;;97152:71;;97208:15;;-1:-1:-1::0;;;97208:15:0::1;;;;;;;;;;;97152:71;97262:17;97238:20:::0;;;:10:::1;:20;::::0;;;;;::::1;;:41;::::0;::::1;;;;;;:::i;:::-;;97234:68;;97288:14;;-1:-1:-1::0;;;97288:14:0::1;;;;;;;;;;;97234:68;97317:42;97333:8;97343:15;97317;:42::i;:::-;97363:1;97317:47:::0;97313:73:::1;;97373:13;;-1:-1:-1::0;;;97373:13:0::1;;;;;;;;;;;97313:73;97427:14;97444:17:::0;;;:7:::1;:17;::::0;;;;:24;;97483:29:::1;::::0;;::::1;::::0;97444:24:::1;::::0;;;::::1;::::0;97483:29:::1;;97479:148;;;97569:7;-1:-1:-1::0;;;;;97553:25:0::1;97529:20;;:49;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;97593:22:0::1;::::0;-1:-1:-1;97603:8:0;97613:1:::1;97593:9;:22::i;:::-;97659:17;::::0;;;:7:::1;:17;::::0;;;;;;;97637:68;;::::1;::::0;;::::1;::::0;;;;::::1;;::::0;;;;::::1;::::0;;;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;;;;::::0;;;;97678:26;;;;::::1;::::0;;;;;;;::::1;::::0;;;;;;;;;;97637:68:::1;::::0;97649:8;;97637:68;:11:::1;:68::i;:::-;97736:26;::::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;97736:26:0;;;::::1;::::0;;::::1;::::0;;;;;;;;;97716:17;;;:7:::1;:17:::0;;;;;;:46;;;;-1:-1:-1;;;;;;97716:46:0::1;-1:-1:-1::0;;;;;97716:46:0;;;::::1;::::0;;;;-1:-1:-1;97716:46:0;::::1;::::0;;::::1;::::0;;::::1;::::0;;-1:-1:-1;;97716:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;97860:20:::1;:31:::0;;97824:25;;::::1;::::0;;;-1:-1:-1;97860:31:0::1;::::0;97824:25;;97860:31:::1;:::i;:::-;::::0;;;-1:-1:-1;;97902:30:0::1;97935:18:::0;;;:7:::1;:18;::::0;;;;;;;;97902:51;;::::1;::::0;::::1;::::0;;;;::::1;;::::0;;;;;::::1;::::0;;;::::1;::::0;;;;::::1;::::0;;::::1;::::0;::::1;;;;::::0;;;;;;;97984:7;;97902:51;;97964:27:::1;::::0;97984:7;;97964:27:::1;:::i;:::-;;;::::0;;-1:-1:-1;98023:21:0::1;::::0;;;:10:::1;:21;::::0;;;;;98002:76:::1;::::0;-1:-1:-1;;;;;98046:25:0;::::1;98073:4;98002:20;:76::i;:::-;98112:18;::::0;;;:7:::1;:18;::::0;;;;;;;;98089:53;;::::1;::::0;::::1;::::0;;;;::::1;;::::0;;;;::::1;::::0;;;::::1;::::0;;;;::::1;;::::0;::::1;;;;::::0;;;;;;;::::1;::::0;98101:9;;98132;98089:11:::1;:53::i;:::-;98153:18;::::0;;;:7:::1;:18;::::0;;;;;;;:30;;;;-1:-1:-1;;;;;;98153:30:0::1;-1:-1:-1::0;;;;;98153:30:0;;;::::1;::::0;;;;::::1;::::0;-1:-1:-1;98153:30:0;;::::1;::::0;;;;;;::::1;::::0;::::1;::::0;;::::1;::::0;;-1:-1:-1;;98153:30:0;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;98196:17;;;:7:::1;:17:::0;;;;;:28;;;;;;;;:38;;;98245:21;;;:11:::1;:21:::0;;;;;:33;;;98289:10:::1;:20:::0;;;;;:40;;;;::::1;;::::0;;;98373:26;;;:15:::1;:26:::0;;;;;;;;98410:75;;-1:-1:-1;;;98410:75:0;;98449:25;;::::1;98410:75;::::0;::::1;5720:25:1::0;5761:18;;;5754:34;;;-1:-1:-1;;;;;98373:26:0;;::::1;::::0;;;98410:38:::1;::::0;5693:18:1;;98410:75:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;;98496:26:0::1;98525:24:::0;;;:13:::1;:24;::::0;;;;;;;98560:73;;-1:-1:-1;;;98560:73:0;;-1:-1:-1;;;;;98597:25:0;::::1;98560:73;::::0;::::1;5720:25:1::0;5761:18;;;5754:34;;;-1:-1:-1;;;;;98525:24:0;;::::1;::::0;-1:-1:-1;98525:24:0;;98560:36:::1;::::0;5693:18:1;;98560:73:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;98696:9;98686:8;98666:18;98675:8;98666;:18::i;:::-;-1:-1:-1::0;;;;;98651:81:0::1;;98707:7;98716:15;98651:81;;;;;;5720:25:1::0;;;5776:2;5761:18;;5754:34;5708:2;5693:18;;5546:248;98651:81:0::1;;;;;;;;98748:24;::::0;738:25:1;;;-1:-1:-1;;;;;;;;;;;98748:24:0;726:2:1;711:18;98748:24:0::1;592:177:1::0;135539:905:0;135600:14;135617:12;:10;:12::i;:::-;135600:29;;135645:36;135664:6;135672:8;135645:18;:36::i;:::-;135640:70;;135690:20;;-1:-1:-1;;;135690:20:0;;;;;;;;;;;135640:70;135749:17;135725:20;;;:10;:20;;;;;;;;:41;;;;;;;;:::i;:::-;;135721:68;;135775:14;;-1:-1:-1;;;135775:14:0;;;;;;;;;;;135721:68;135800:31;135834:17;;;:7;:17;;;;;;;;;135800:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135862:50;;135897:15;;-1:-1:-1;;;135897:15:0;;;;;;;;;;;135862:50;135945:15;135927:10;:14;;;:33;135923:59;;135969:13;;-1:-1:-1;;;135969:13:0;;;;;;;;;;;135923:59;136018:1;135997:10;:17;;;:22;;;135993:48;;136028:13;;-1:-1:-1;;;136028:13:0;;;;;;;;;;;135993:48;136054:15;136087:10;:17;;;136080:25;;136054:52;;136141:7;136117:20;;:31;;;;;;;:::i;:::-;;;;-1:-1:-1;;136176:1:0;136159:14;;;;:18;;;136213:4;136188:22;;;;:29;;;136250:17;;;:7;:17;;;;;;136228:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136240:8;;136159:10;136228:11;:52::i;:::-;136291:17;;;;:7;:17;;;;;;;;;:30;;;;-1:-1:-1;;;;;;136291:30:0;-1:-1:-1;;;;;136291:30:0;;;;;;;;;;-1:-1:-1;136291:30:0;;;;;;;;;;;;;-1:-1:-1;;136291:30:0;;;;;;;;;;136339:57;;5720:25:1;;;136380:15:0;5761:18:1;;;5754:34;;;;136291:17:0;;-1:-1:-1;;;;;136339:57:0;;;;;5693:18:1;136339:57:0;5546:248:1;138020:204:0;138081:7;138105:25;;;:15;:25;;;;;;138134:12;138105:41;;138101:55;;-1:-1:-1;138155:1:0;;138020:204;-1:-1:-1;138020:204:0:o;138101:55::-;138174:42;138190:8;138200:15;138174;:42::i;127378:180::-;127484:7;38700:21;:19;:21::i;:::-;127511:39:::1;127523:6;127531:13;127546:3;127511:11;:39::i;:::-;127504:46;;38744:20:::0;38138:1;39264:7;:22;39081:213;140722:152;140799:17;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140799:17:0;-1:-1:-1;140836:22:0;;;;:12;:22;;;;;;;:30;;;;;;;;;;;;;;140829:37;;;;;;;;;;;;;;;-1:-1:-1;;;;;140829:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;140722:152::o;40233:458::-;40295:14;40200:17;-1:-1:-1;;;;;40187:30:0;40345:10;40187:30;40322:362;;-1:-1:-1;;;40579:14:0;40575:23;40562:37;40558:2;40554:46;40233:458;:::o;40322:362::-;-1:-1:-1;6516:10:0;;138451:107::o;103487:113::-;103546:7;103573:19;;;:9;:19;;;;;;-1:-1:-1;;;;;103573:19:0;;103487:113::o;38780:293::-;38182:1;38914:7;;:19;38906:63;;;;-1:-1:-1;;;38906:63:0;;20193:2:1;38906:63:0;;;20175:21:1;20232:2;20212:18;;;20205:30;20271:33;20251:18;;;20244:61;20322:18;;38906:63:0;;;;;;;;;38182:1;39047:7;:18;38780:293::o;127566:1225::-;127674:22;127699:20;;;:10;:20;;;;;;;;;127734:11;:32;;;;;;;;:::i;:::-;;127730:68;;127775:23;;-1:-1:-1;;;127775:23:0;;;;;;;;;;;127730:68;127811:30;127844:17;;;:7;:17;;;;;;;;127811:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127878:11;;;127874:36;;127898:12;;-1:-1:-1;;;127898:12:0;;;;;;;;;;;127874:36;127945:1;127925:9;:16;;;:21;;;127921:47;;127955:13;;-1:-1:-1;;;127955:13:0;;;;;;;;;;;127921:47;128000:15;127983:9;:13;;;:32;;:58;;;;;128020:9;:21;;;128019:22;127983:58;127979:84;;;128050:13;;-1:-1:-1;;;128050:13:0;;;;;;;;;;;127979:84;128080:9;:21;;;128076:57;;;128127:6;128103:20;;:30;;;;;;;:::i;:::-;;;;-1:-1:-1;;128076:57:0;128165:20;;;;:10;:20;;;;;;128144:56;;128187:6;128195:4;128144:20;:56::i;:::-;128211:57;128223:8;128233:6;128241:1;128244:9;128255:12;128211:11;:57::i;:::-;128300:18;128285:11;:33;;;;;;;;:::i;:::-;;128281:461;;128421:28;128452:25;;;:15;:25;;;;;;-1:-1:-1;;;;;128452:25:0;;;;128509:5;;128529:56;;:26;;128452:25;128578:6;128529:26;:56::i;:::-;128600:64;;-1:-1:-1;;;128600:64:0;;-1:-1:-1;;;;;12525:32:1;;;128600:64:0;;;12507:51:1;12574:18;;;12567:34;;;128600:48:0;;;;;12480:18:1;;128600:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;128679:51:0;;-1:-1:-1;;;;;;;;128679:26:0;;128706:20;128728:1;128679:26;:51::i;:::-;128320:422;;128281:461;128759:24;;738:25:1;;;-1:-1:-1;;;;;;;;;;;128759:24:0;726:2:1;711:18;128759:24:0;;;;;;;127663:1128;;127566:1225;;;:::o;137804:173::-;137951:5;;137893:76;;-1:-1:-1;;;137893:76:0;;137922:12;137893:76;;;20665:25:1;137936:13:0;20706:18:1;;;20699:34;20749:18;;;20742:34;;;;20792:18;;;20785:34;;;137866:7:0;;137893:19;;:28;;20637:19:1;;137893:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;106840:930::-;106974:17;106950:20;;;;:10;:20;;;;;;;;:41;;;;;;;;:::i;:::-;;106946:77;;107000:23;;-1:-1:-1;;;107000:23:0;;;;;;;;;;;106946:77;107070:37;107089:7;107098:8;107070:18;:37::i;:::-;107065:71;;107116:20;;-1:-1:-1;;;107116:20:0;;;;;;;;;;;107065:71;107244:5;-1:-1:-1;;;;;107222:27:0;:18;107231:8;107222;:18::i;:::-;-1:-1:-1;;;;;107222:27:0;;107218:50;;107258:10;;-1:-1:-1;;;107258:10:0;;;;;;;;;;;107218:50;107286:23;;;;:13;:23;;;;;107279:30;;-1:-1:-1;;;;;;107279:30:0;;;107384:33;107401:5;107300:8;107384:16;:33::i;:::-;107466:38;107487:8;107497:1;107500:3;107466:20;:38::i;:::-;107535:26;107547:3;107552:8;107535:11;:26::i;:::-;107647:25;;;;:15;:25;;;;;;107675:12;107647:40;;107732:30;107663:8;;-1:-1:-1;;;;;107732:30:0;;;;;;;;;;;106840:930;;;;:::o;105004:424::-;105091:4;105108:13;105124:18;105133:8;105124;:18::i;:::-;105153:19;105240:23;;;:13;:23;;;;;;;;;-1:-1:-1;;;;;105175:17:0;;;105306:23;;;:16;:23;;;;;105175:17;;;105305:35;;;;;;;;;;105108:34;;-1:-1:-1;105175:17:0;;;;105240:23;;105228:35;;105305;;105175:17;;105358:35;;;105376:17;105358:35;:62;;;;105397:23;105358:62;105351:69;105004:424;-1:-1:-1;;;;;;;105004:424:0:o;113852:502::-;113905:14;113922:12;:10;:12::i;:::-;113905:29;;113950:36;113969:6;113977:8;113950:18;:36::i;:::-;113945:70;;113995:20;;-1:-1:-1;;;113995:20:0;;;;;;;;;;;113945:70;114026:13;114042:18;114051:8;114042;:18::i;:::-;114107:23;;;;:13;:23;;;;;114100:30;;-1:-1:-1;;;;;;114100:30:0;;;114026:34;;-1:-1:-1;114179:45:0;;114121:8;;114107:23;114179:20;:45::i;:::-;114260:33;114277:5;114284:8;114260:16;:33::i;:::-;114309:37;;114337:8;;114333:1;;-1:-1:-1;;;;;114309:37:0;;;;;114333:1;;114309:37;113894:460;;113852:502;:::o;116272:7603::-;116397:21;;:::i;:::-;116429;;:::i;:::-;116540:5;;116461:16;;;;116562:13;;116558:1253;;116609:10;:22;;;:63;;116671:1;116609:63;;;116649:17;;116642:25;;116609:63;116592:14;;;:80;116782:14;;;;116799:15;-1:-1:-1;116782:57:0;;;;;116838:1;116818:10;:17;;;:21;;;116782:57;116778:231;;;116873:17;;:28;;114690:15;;116873:28;:::i;:::-;116860:41;;:10;;;;:41;;;;116959:14;;;:32;;116976:15;;116959:32;:::i;:::-;116932:4;:10;;;:61;;;;:::i;:::-;116920:73;;;;116778:231;117044:15;117027:10;:14;;;:32;:57;;;;;117083:1;117063:10;:17;;;:21;;;117027:57;117023:231;;;117118:17;;:28;;114690:15;;117118:28;:::i;:::-;117105:41;;:10;;;;:41;;;;117204:14;;;:32;;117221:15;;117204:32;:::i;:::-;117177:4;:10;;;:61;;;;:::i;:::-;117165:73;;;;117023:231;117520:14;;;;;117507:28;;;;:12;:28;;;;;;117554:14;;;;117507:28;;;;;;-1:-1:-1;117554:19:0;117550:250;;117616:10;:14;;;117598:10;:14;;;:32;117594:191;;117667:9;117655:21;;117594:191;;;117750:14;;;;;117737:28;;;;:12;:28;;;;;;;;;;-1:-1:-1;117594:191:0;117854:173;;;;;;;;117823:28;117854:173;;;;;;;;;117930:15;117854:173;;;;;;;117965:12;117854:173;;;;;;;;;;;118042:10;;118038:76;;-1:-1:-1;118081:21:0;;;;:13;:21;;;;;;;;;118069:33;;;;;;;;;;;;;;;-1:-1:-1;;;118069:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118038:76;118124:22;118149:9;:12;;;118124:37;;118386:35;118424:227;;;;;;;;118457:9;:14;;;118424:227;;;;;;118493:9;:15;;;118424:227;;;;;;118527:9;:12;;;118424:227;;;;118559:9;:13;;;118424:227;;;;118609:9;:30;;;118424:227;;;118386:265;;118662:18;118730:9;:12;;;118712:15;:30;118708:156;;;118839:12;;;;118821:30;;:15;:30;:::i;:::-;118802:13;;;;118787:28;;:12;:28;:::i;:::-;118773:43;;114751:7;118773:43;:::i;:::-;118772:80;;;;:::i;:::-;118759:93;;118708:156;119103:11;114582:7;119118:21;114582:7;119118:14;:21;:::i;:::-;119117:30;;;;:::i;:::-;119103:44;;119167:9;119162:1438;119186:3;119182:1;:7;119162:1438;;;119392:11;114582:7;119392:11;;:::i;:::-;;;119493:14;119540:15;119534:3;:21;119530:167;;;119586:15;119580:21;;119530:167;;;-1:-1:-1;119660:17:0;;;;:12;:17;;;;;;;;119530:167;119765:20;119771:14;119765:3;:20;:::i;:::-;119733:9;:15;;;:54;;;;:::i;:::-;119715:72;;:9;;:72;;;;;:::i;:::-;;;;;-1:-1:-1;119806:15:0;;;:26;;119825:7;;119806:15;:26;;119825:7;;119806:26;:::i;:::-;;;;;;;;119855:14;;119872:1;119855:18;;;119851:125;;-1:-1:-1;119851:125:0;;119955:1;119938:18;;119851:125;120016:1;119998:9;:15;;;:19;;;119994:145;;;120118:1;120100:15;;;:19;119994:145;120196:12;;;;:18;;;120293:19;;;120174:3;;-1:-1:-1;120174:3:0;;114751:7;;120287:25;;120174:3;120287:25;:::i;:::-;120273:40;;:10;:40;:::i;:::-;120272:55;;;;:::i;:::-;120249:16;:20;;;:78;;;;:::i;:::-;120233:13;;;:94;120346:11;120356:1;120346:11;;:::i;:::-;;;120387:15;120380:3;:22;120376:209;;-1:-1:-1;120443:12:0;120427:13;;;:28;120478:5;;120376:209;120532:21;;;;:13;:21;;;;;;;;;:33;;;;;;-1:-1:-1;;;;;120532:33:0;;;-1:-1:-1;;;120532:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;119191:3:0;;;:::i;:::-;;;119162:1438;;;-1:-1:-1;;120627:13:0;;120623:541;;120833:4;:10;;;120820:4;:10;;;:23;;;;:::i;:::-;120800:9;:15;;:44;;;;;;;:::i;:::-;;;;;-1:-1:-1;120890:9:0;;120878;;:21;;120890:9;120878:21;:::i;:::-;120859:41;;:9;;:41;;;;;:::i;:::-;;;;;;;;120919:15;;;;120937:1;120919:19;;;120915:79;;-1:-1:-1;120915:79:0;;120977:1;120959:15;;;:19;120915:79;121029:1;121012:9;:14;;;:18;;;121008:77;;;121068:1;121051:18;;121008:77;121132:20;;121099:30;;;:53;120623:541;121738:6;121748:1;121738:11;;:62;;;;-1:-1:-1;121785:15:0;121753:13;:25;121767:10;121776:1;121767:6;:10;:::i;:::-;121753:25;;;;;;;;;;;:28;;;:47;121738:62;121734:377;;;121910:9;121882:13;:25;121896:10;121905:1;121896:6;:10;:::i;:::-;121882:25;;;;;;;;;;;;;;-1:-1:-1;121882:25:0;:37;;;;;;-1:-1:-1;;;;;121882:37:0;;;-1:-1:-1;;;121882:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121734:377;;;122037:5;:14;;;122066:21;;;;:13;:21;;;;;;;;;:33;;;;;;-1:-1:-1;;;;;122066:33:0;;;-1:-1:-1;;;122066:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121734:377;122127:13;;122123:1745;;122367:15;122350:10;:14;;;:32;122346:394;;;122494:10;;;;122481:23;;;;:::i;:::-;;;122545:10;:14;;;122527:10;:14;;;:32;122523:143;;122597:10;;;;122584:23;;;;:::i;:::-;;;122523:143;122697:14;;;;;122684:28;;;;:12;:28;;;;;;:40;;-1:-1:-1;;;;;;122684:40:0;-1:-1:-1;;;;;122684:40:0;;;;;122346:394;122777:15;122760:10;:14;;;:32;122756:460;;;122954:10;:14;;;122937:10;:14;;;:31;122932:207;;;123007:10;;;;122994:23;;;;:::i;:::-;123092:14;;;;;123079:28;;;;:12;:28;;;;;;:40;;-1:-1:-1;;;;;;123079:40:0;-1:-1:-1;;;;;123079:40:0;;;;;;-1:-1:-1;122932:207:0;123423:15;123413:7;;;;:25;;;;123464:12;123453:8;;;:23;-1:-1:-1;123511:24:0;;;:14;:24;;;;123554:14;;;;;:78;;-1:-1:-1;123572:27:0;;;;:17;:27;;;;;123617:15;;123600:9;123572:38;;;;;;;:::i;:::-;;;;:41;;;:60;123554:78;123550:307;;;123653:27;;;;:17;:27;;;;;123694:4;;123681:9;123653:38;;;;;;;:::i;:::-;:45;;;;;;-1:-1:-1;;;;;123653:45:0;;;-1:-1:-1;;;123653:45:0;;;;:38;;;;;;;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123550:307;;;123766:11;;;:::i;:::-;123739:24;;;;:14;:24;;;;;;;;:38;;;123796:17;:27;;;;;123766:11;;-1:-1:-1;123837:4:0;;123766:11;123796:38;;;;;;;:::i;:::-;:45;;;;;;-1:-1:-1;;;;;123796:45:0;;;-1:-1:-1;;;123796:45:0;;;;:38;;;;;;;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123550:307;122142:1726;122123:1745;116386:7489;;;;;;;;;116272:7603;;;:::o;49299:177::-;49409:58;;-1:-1:-1;;;;;12525:32:1;;49409:58:0;;;12507:51:1;12574:18;;;12567:34;;;49382:86:0;;49402:5;;-1:-1:-1;;;49432:23:0;12480:18:1;;49409:58:0;;;;-1:-1:-1;;49409:58:0;;;;;;;;;;;;;;-1:-1:-1;;;;;49409:58:0;-1:-1:-1;;;;;;49409:58:0;;;;;;;;;;49382:19;:86::i;142236:857::-;142315:35;142353:19;;;:7;:19;;;;;;;;;142315:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142383:58;;142423:18;;-1:-1:-1;;;142423:18:0;;;;;;;;;;;142383:58;142456:15;;;;;:53;;-1:-1:-1;142507:1:0;142475:20;142484:10;142475:8;:20::i;:::-;-1:-1:-1;;;;;142475:34:0;;142456:53;142452:84;;;142518:18;;-1:-1:-1;;;142518:18:0;;;;;;;;;;;142452:84;142551:27;;;;:15;:27;;;;;;142582:12;142551:43;;142547:73;;142603:17;;-1:-1:-1;;;142603:17:0;;;;;;;;;;;142547:73;142649:10;142635;:24;142631:44;;142674:1;142661:14;;142631:44;142686:23;142712:22;;;:10;:22;;;;;;142749:29;;;142745:42;;142780:7;;142236:857;;:::o;142745:42::-;142842:21;;-1:-1:-1;;;;;142826:39:0;142876:66;142897:10;142909;142921:20;142897:10;142921:8;:20::i;:::-;142876;:66::i;:::-;142953:56;142974:10;142986:16;143004:4;142953:20;:56::i;:::-;143074:10;143057:15;143043:12;:10;:12::i;:::-;-1:-1:-1;;;;;143027:58:0;;;;;;;;;;;142304:789;;;142236:857;;:::o;141867:217::-;141971:105;;-1:-1:-1;;;141971:105:0;;142014:14;141971:105;;;21745:25:1;142030:12:0;21786:18:1;;;21779:34;21829:18;;;21822:34;;;21872:18;;;21865:34;;;21943:14;;21936:22;21915:19;;;21908:51;141971:22:0;;:42;;21717:19:1;;141971:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111619:417;111683:4;-1:-1:-1;;;;;111751:17:0;;111744:25;;;;:::i;:::-;111842:26;111854:3;111859:8;111842:11;:26::i;:::-;111917:38;111938:8;111948:1;111951:3;111917:20;:38::i;:::-;111971:35;;111997:8;;-1:-1:-1;;;;;111971:35:0;;;111988:1;;111971:35;;111988:1;;111971:35;-1:-1:-1;112024:4:0;111619:417;;;;:::o;124214:1512::-;124444:6;;124470:21;124485:6;124444;124470:21;:::i;:::-;124461:6;:30;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;124683:17:0;;124715:14;;;;124744:22;;;;124609:168;;;;;;;;;;;;;;;;124906:6;;-1:-1:-1;;124872:42:0;;124906:6;;124872:42;:::i;:::-;;;;;-1:-1:-1;124929:16:0;;124925:76;;124962:13;;;:27;;;124925:76;125011:17;;;;:7;:17;;;;;;;;;:29;;;;-1:-1:-1;;;;;;125011:29:0;-1:-1:-1;;;;;125011:29:0;;;;;;;;;;-1:-1:-1;125011:29:0;;;;;;;;;;;;;-1:-1:-1;;125011:29:0;;;;;;;;;;125367:44;125011:17;125389:10;125011:29;125367:11;:44::i;:::-;125424:12;125439;:10;:12::i;:::-;125424:27;-1:-1:-1;125466:11:0;;125462:103;;125494:59;-1:-1:-1;;;;;125501:5:0;125494:30;125525:4;125539;125546:6;125494:30;:59::i;:::-;125606:12;125582:77;;;;;;;;:::i;:::-;125628:13;;;;;125582:77;;;22304:25:1;;;22345:18;;;22338:34;;;;125643:15:0;22388:18:1;;;22381:34;125582:77:0;125596:8;;-1:-1:-1;;;;;125582:77:0;;;;;;;;22292:2:1;125582:77:0;;;125675:43;125682:12;125696:21;125711:6;125682:12;125696:21;:::i;:::-;125675:43;;;5720:25:1;;;5776:2;5761:18;;5754:34;;;;5693:18;125675:43:0;;;;;;;124410:1316;;;124214:1512;;;;;:::o;135006:289::-;135094:16;135136:7;;135134:9;;;;;:::i;:::-;;;;;-1:-1:-1;135154:17:0;;;;:7;:17;;;;;;;;:30;;;;-1:-1:-1;;;;;;135154:30:0;-1:-1:-1;;;;;135154:30:0;;;;;;;;;;-1:-1:-1;135154:30:0;;;;;;;;;;;;;-1:-1:-1;;135154:30:0;;;;;;;;;;135217:26;;;;;;;;;;;;;;;;;;;;;;135134:9;;-1:-1:-1;135195:61:0;;135134:9;;135154:30;135195:11;:61::i;:::-;135267:20;135273:3;135278:8;135267:5;:20::i;:::-;;135006:289;;;;:::o;126482:637::-;126573:7;;114582;;126616:31;126634:13;126616:15;:31;:::i;:::-;126615:40;;;;:::i;:::-;126614:49;;;;:::i;:::-;126593:70;;126717:6;126727:1;126717:11;126713:36;;126737:12;;-1:-1:-1;;;126737:12:0;;;;;;;;;;;126713:36;126778:15;126764:10;:29;126760:67;;126802:25;;-1:-1:-1;;;126802:25:0;;;;;;;;;;;126760:67;126855:25;114632:15;126855;:25;:::i;:::-;126842:10;:38;126838:72;;;126889:21;;-1:-1:-1;;;126889:21:0;;;;;;;;;;;126838:72;126923:16;126944:7;;126942:9;;;;;:::i;:::-;;;;;-1:-1:-1;126942:9:0;-1:-1:-1;126962:20:0;126968:3;126942:9;126962:5;:20::i;:::-;-1:-1:-1;127037:17:0;;;;:7;:17;;;;;;;;;126995:90;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127007:8;;127017:6;;127025:10;;126995:11;:90::i;:::-;127103:8;126482:637;-1:-1:-1;;;;;126482:637:0:o;137600:196::-;137705:83;;-1:-1:-1;;;137705:83:0;;137740:14;137705:83;;;20665:25:1;137756:17:0;20706:18:1;;;20699:34;20749:18;;;20742:34;;;20792:18;;;20785:34;;;137678:7:0;;137705:19;;:34;;20637:19:1;;137705:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;49958:582::-;50288:10;;;50287:62;;-1:-1:-1;50304:39:0;;-1:-1:-1;;;50304:39:0;;50328:4;50304:39;;;14529:34:1;-1:-1:-1;;;;;14599:15:1;;;14579:18;;;14572:43;50304:15:0;;;;;14464:18:1;;50304:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:44;50287:62;50265:166;;;;-1:-1:-1;;;50265:166:0;;23135:2:1;50265:166:0;;;23117:21:1;23174:2;23154:18;;;23147:30;23213:34;23193:18;;;23186:62;-1:-1:-1;;;23264:18:1;;;23257:52;23326:19;;50265:166:0;22933:418:1;50265:166:0;50469:62;;-1:-1:-1;;;;;12525:32:1;;50469:62:0;;;12507:51:1;12574:18;;;12567:34;;;50442:90:0;;50462:5;;-1:-1:-1;;;50492:22:0;12480:18:1;;50469:62:0;12333:274:1;113357:424:0;113520:5;-1:-1:-1;;;;;113498:27:0;:18;113507:8;113498;:18::i;:::-;-1:-1:-1;;;;;113498:27:0;;113491:35;;;;:::i;:::-;113596:1;113566:19;;;:9;:19;;;;;:32;;-1:-1:-1;;;;;;113566:32:0;;;113655:42;113681:5;113576:8;113655:25;:42::i;:::-;-1:-1:-1;;;;;113742:26:0;;;;;;:19;:26;;;;;:31;;113772:1;;113742:26;:31;;113772:1;;113742:31;:::i;:::-;;;;-1:-1:-1;;;;113357:424:0:o;141518:341::-;141624:227;;-1:-1:-1;;;141624:227:0;;141681:7;141624:227;;;23855:25:1;141703:14:0;23896:18:1;;;23889:34;141732:12:0;23939:18:1;;;23932:34;141759:10:0;23982:18:1;;;23975:34;24025:19;;;24018:35;;;24069:19;;;24062:35;;;-1:-1:-1;;;;;24134:32:1;;24113:19;;;24106:61;141624:22:0;;:42;;23827:19:1;;141624:227:0;23356:817:1;110875:404:0;111037:1;111007:18;111016:8;111007;:18::i;:::-;-1:-1:-1;;;;;111007:32:0;;111000:40;;;;:::i;:::-;111080:19;;;;:9;:19;;;;;;;;:25;;-1:-1:-1;;;;;;111080:25:0;-1:-1:-1;;;;;111080:25:0;;;;;;;;110620:24;;;:19;:24;;;;;;;;110657:20;:25;;;;;:39;;;;;;;;:50;;;110718:27;;;:17;:27;;;;;:42;;;;111242:24;;;;;;:29;;-1:-1:-1;;111080:19:0;111242:29;;-1:-1:-1;;111242:29:0;:::i;52187:716::-;52611:23;52637:69;52665:4;52637:69;;;;;;;;;;;;;;;;;52645:5;-1:-1:-1;;;;;52637:27:0;;;:69;;;;;:::i;:::-;52721:17;;52611:95;;-1:-1:-1;52721:21:0;52717:179;;52818:10;52807:30;;;;;;;;;;;;:::i;:::-;52799:85;;;;-1:-1:-1;;;52799:85:0;;24630:2:1;52799:85:0;;;24612:21:1;24669:2;24649:18;;;24642:30;24708:34;24688:18;;;24681:62;-1:-1:-1;;;24759:18:1;;;24752:40;24809:19;;52799:85:0;24428:406:1;49484:205:0;49612:68;;-1:-1:-1;;;;;25097:15:1;;;49612:68:0;;;25079:34:1;25149:15;;25129:18;;;25122:43;25181:18;;;25174:34;;;49585:96:0;;49605:5;;-1:-1:-1;;;49635:27:0;25014:18:1;;49612:68:0;24839:375:1;49585:96:0;49484:205;;;;:::o;112216:1027::-;-1:-1:-1;;;;;112346:26:0;;112323:20;112346:26;;;:19;:26;;;;;;:30;;112375:1;;112346:30;:::i;:::-;112387:20;112410:27;;;:17;:27;;;;;;112323:53;;-1:-1:-1;112454:28:0;;;112450:786;;-1:-1:-1;;;;;112543:27:0;;112587:1;112543:27;;;:20;:27;;;;;;;;:41;;;;;;;;:45;;;112644:27;;;:17;:27;;;;;:31;112450:786;;;-1:-1:-1;;;;;112730:27:0;;;;112708:19;112730:27;;;:20;:27;;;;;;;;:41;;;;;;;;;;;112852;;;;;;:55;;;112963:30;;:17;:30;;;;;;:45;;;;113092;;;;113193:27;;;;;:31;112216:1027::o;10826:229::-;10963:12;10995:52;11017:6;11025:4;11031:1;11034:12;10963;12200;12214:23;12241:6;-1:-1:-1;;;;;12241:11:0;12260:5;12267:4;12241:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12199:73;;;;12290:69;12317:6;12325:7;12334:10;12346:12;12290:26;:69::i;:::-;12283:76;;;;11912:455;;;;;;;:::o;14485:644::-;14670:12;14699:7;14695:427;;;14727:10;:17;14748:1;14727:22;14723:290;;-1:-1:-1;;;;;8365:19:0;;;14937:60;;;;-1:-1:-1;;;14937:60:0;;26120:2:1;14937:60:0;;;26102:21:1;26159:2;26139:18;;;26132:30;26198:31;26178:18;;;26171:59;26247:18;;14937:60:0;25918:353:1;14937:60:0;-1:-1:-1;15034:10:0;15027:17;;14695:427;15077:33;15085:10;15097:12;15832:17;;:21;15828:388;;16064:10;16058:17;16121:15;16108:10;16104:2;16100:19;16093:44;15828:388;16191:12;16184:20;;-1:-1:-1;;;16184:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;774:250::-;859:1;869:113;883:6;880:1;877:13;869:113;;;959:11;;;953:18;940:11;;;933:39;905:2;898:10;869:113;;;-1:-1:-1;;1016:1:1;998:16;;991:27;774:250::o;1029:271::-;1071:3;1109:5;1103:12;1136:6;1131:3;1124:19;1152:76;1221:6;1214:4;1209:3;1205:14;1198:4;1191:5;1187:16;1152:76;:::i;:::-;1282:2;1261:15;-1:-1:-1;;1257:29:1;1248:39;;;;1289:4;1244:50;;1029:271;-1:-1:-1;;1029:271:1:o;1305:220::-;1454:2;1443:9;1436:21;1417:4;1474:45;1515:2;1504:9;1500:18;1492:6;1474:45;:::i;1530:180::-;1589:6;1642:2;1630:9;1621:7;1617:23;1613:32;1610:52;;;1658:1;1655;1648:12;1610:52;-1:-1:-1;1681:23:1;;1530:180;-1:-1:-1;1530:180:1:o;1923:131::-;-1:-1:-1;;;;;1998:31:1;;1988:42;;1978:70;;2044:1;2041;2034:12;2059:247;2118:6;2171:2;2159:9;2150:7;2146:23;2142:32;2139:52;;;2187:1;2184;2177:12;2139:52;2226:9;2213:23;2245:31;2270:5;2245:31;:::i;2311:315::-;2379:6;2387;2440:2;2428:9;2419:7;2415:23;2411:32;2408:52;;;2456:1;2453;2446:12;2408:52;2495:9;2482:23;2514:31;2539:5;2514:31;:::i;:::-;2564:5;2616:2;2601:18;;;;2588:32;;-1:-1:-1;;;2311:315:1:o;2631:248::-;2699:6;2707;2760:2;2748:9;2739:7;2735:23;2731:32;2728:52;;;2776:1;2773;2766:12;2728:52;-1:-1:-1;;2799:23:1;;;2869:2;2854:18;;;2841:32;;-1:-1:-1;2631:248:1:o;3066:456::-;3143:6;3151;3159;3212:2;3200:9;3191:7;3187:23;3183:32;3180:52;;;3228:1;3225;3218:12;3180:52;3267:9;3254:23;3286:31;3311:5;3286:31;:::i;:::-;3336:5;-1:-1:-1;3393:2:1;3378:18;;3365:32;3406:33;3365:32;3406:33;:::i;:::-;3066:456;;3458:7;;-1:-1:-1;;;3512:2:1;3497:18;;;;3484:32;;3066:456::o;3527:388::-;3595:6;3603;3656:2;3644:9;3635:7;3631:23;3627:32;3624:52;;;3672:1;3669;3662:12;3624:52;3711:9;3698:23;3730:31;3755:5;3730:31;:::i;:::-;3780:5;-1:-1:-1;3837:2:1;3822:18;;3809:32;3850:33;3809:32;3850:33;:::i;:::-;3902:7;3892:17;;;3527:388;;;;;:::o;4109:118::-;4195:5;4188:13;4181:21;4174:5;4171:32;4161:60;;4217:1;4214;4207:12;4232:382;4297:6;4305;4358:2;4346:9;4337:7;4333:23;4329:32;4326:52;;;4374:1;4371;4364:12;4326:52;4413:9;4400:23;4432:31;4457:5;4432:31;:::i;:::-;4482:5;-1:-1:-1;4539:2:1;4524:18;;4511:32;4552:30;4511:32;4552:30;:::i;4619:309::-;4684:6;4692;4745:2;4733:9;4724:7;4720:23;4716:32;4713:52;;;4761:1;4758;4751:12;4713:52;4797:9;4784:23;4774:33;;4857:2;4846:9;4842:18;4829:32;4870:28;4892:5;4870:28;:::i;5288:253::-;5476:3;5461:19;;5489:46;5465:9;5517:6;5029:5;5023:12;5019:2;5008:28;5003:3;4996:41;5101:4;5094:5;5090:16;5084:23;5080:2;5069:39;5062:4;5057:3;5053:14;5046:63;5158:4;5151:5;5147:16;5141:23;5134:4;5129:3;5125:14;5118:47;5214:4;5207:5;5203:16;5197:23;5190:4;5185:3;5181:14;5174:47;5270:4;5263:5;5259:16;5253:23;5246:4;5241:3;5237:14;5230:47;;;4933:350;5799:383;5876:6;5884;5892;5945:2;5933:9;5924:7;5920:23;5916:32;5913:52;;;5961:1;5958;5951:12;5913:52;6000:9;5987:23;6019:31;6044:5;6019:31;:::i;:::-;6069:5;6121:2;6106:18;;6093:32;;-1:-1:-1;6172:2:1;6157:18;;;6144:32;;5799:383;-1:-1:-1;;;5799:383:1:o;6388:127::-;6449:10;6444:3;6440:20;6437:1;6430:31;6480:4;6477:1;6470:15;6504:4;6501:1;6494:15;6520:343;6667:2;6652:18;;6700:1;6689:13;;6679:144;;6745:10;6740:3;6736:20;6733:1;6726:31;6780:4;6777:1;6770:15;6808:4;6805:1;6798:15;6679:144;6832:25;;;6520:343;:::o;6868:681::-;6979:6;6987;6995;7003;7011;7019;7027;7080:3;7068:9;7059:7;7055:23;7051:33;7048:53;;;7097:1;7094;7087:12;7048:53;7133:9;7120:23;7110:33;;7190:2;7179:9;7175:18;7162:32;7152:42;;7241:2;7230:9;7226:18;7213:32;7203:42;;7292:2;7281:9;7277:18;7264:32;7254:42;;7346:3;7335:9;7331:19;7318:33;7391:4;7384:5;7380:16;7373:5;7370:27;7360:55;;7411:1;7408;7401:12;7360:55;6868:681;;;;-1:-1:-1;6868:681:1;;;;7434:5;7486:3;7471:19;;7458:33;;-1:-1:-1;7538:3:1;7523:19;;;7510:33;;6868:681;-1:-1:-1;;6868:681:1:o;8225:127::-;8286:10;8281:3;8277:20;8274:1;8267:31;8317:4;8314:1;8307:15;8341:4;8338:1;8331:15;8357:275;8428:2;8422:9;8493:2;8474:13;;-1:-1:-1;;8470:27:1;8458:40;;8528:18;8513:34;;8549:22;;;8510:62;8507:88;;;8575:18;;:::i;:::-;8611:2;8604:22;8357:275;;-1:-1:-1;8357:275:1:o;8637:186::-;8685:4;8718:18;8710:6;8707:30;8704:56;;;8740:18;;:::i;:::-;-1:-1:-1;8806:2:1;8785:15;-1:-1:-1;;8781:29:1;8812:4;8777:40;;8637:186::o;8828:1016::-;8923:6;8931;8939;8947;9000:3;8988:9;8979:7;8975:23;8971:33;8968:53;;;9017:1;9014;9007:12;8968:53;9056:9;9043:23;9075:31;9100:5;9075:31;:::i;:::-;9125:5;-1:-1:-1;9182:2:1;9167:18;;9154:32;9195:33;9154:32;9195:33;:::i;:::-;9247:7;-1:-1:-1;9301:2:1;9286:18;;9273:32;;-1:-1:-1;9356:2:1;9341:18;;9328:32;9383:18;9372:30;;9369:50;;;9415:1;9412;9405:12;9369:50;9438:22;;9491:4;9483:13;;9479:27;-1:-1:-1;9469:55:1;;9520:1;9517;9510:12;9469:55;9556:2;9543:16;9581:48;9597:31;9625:2;9597:31;:::i;:::-;9581:48;:::i;:::-;9652:2;9645:5;9638:17;9692:7;9687:2;9682;9678;9674:11;9670:20;9667:33;9664:53;;;9713:1;9710;9703:12;9664:53;9768:2;9763;9759;9755:11;9750:2;9743:5;9739:14;9726:45;9812:1;9807:2;9802;9795:5;9791:14;9787:23;9780:34;9833:5;9823:15;;;;;8828:1016;;;;;;;:::o;9849:383::-;9926:6;9934;9942;9995:2;9983:9;9974:7;9970:23;9966:32;9963:52;;;10011:1;10008;10001:12;9963:52;10047:9;10034:23;10024:33;;10104:2;10093:9;10089:18;10076:32;10066:42;;10158:2;10147:9;10143:18;10130:32;10171:31;10196:5;10171:31;:::i;:::-;10221:5;10211:15;;;9849:383;;;;;:::o;10237:348::-;10304:6;10312;10365:2;10353:9;10344:7;10340:23;10336:32;10333:52;;;10381:1;10378;10371:12;10333:52;10417:9;10404:23;10394:33;;10477:2;10466:9;10462:18;10449:32;10521:14;10514:5;10510:26;10503:5;10500:37;10490:65;;10551:1;10548;10541:12;11247:127;11308:10;11303:3;11299:20;11296:1;11289:31;11339:4;11336:1;11329:15;11363:4;11360:1;11353:15;11379:128;11446:9;;;11467:11;;;11464:37;;;11481:18;;:::i;11773:125::-;11838:9;;;11859:10;;;11856:36;;;11872:18;;:::i;11903:127::-;11964:10;11959:3;11955:20;11952:1;11945:31;11995:4;11992:1;11985:15;12019:4;12016:1;12009:15;12035:120;12075:1;12101;12091:35;;12106:18;;:::i;:::-;-1:-1:-1;12140:9:1;;12035:120::o;12160:168::-;12233:9;;;12264;;12281:15;;;12275:22;;12261:37;12251:71;;12302:18;;:::i;12612:184::-;12682:6;12735:2;12723:9;12714:7;12710:23;12706:32;12703:52;;;12751:1;12748;12741:12;12703:52;-1:-1:-1;12774:16:1;;12612:184;-1:-1:-1;12612:184:1:o;12801:127::-;12862:10;12857:3;12853:20;12850:1;12843:31;12893:4;12890:1;12883:15;12917:4;12914:1;12907:15;12933:729;13103:4;13151:2;13140:9;13136:18;13181:6;13170:9;13163:25;13207:2;13245;13240;13229:9;13225:18;13218:30;13268:6;13303;13297:13;13334:6;13326;13319:22;13372:2;13361:9;13357:18;13350:25;;13410:2;13402:6;13398:15;13384:29;;13431:1;13441:195;13455:6;13452:1;13449:13;13441:195;;;13520:13;;-1:-1:-1;;;;;13516:39:1;13504:52;;13611:15;;;;13576:12;;;;13552:1;13470:9;13441:195;;;-1:-1:-1;13653:3:1;;12933:729;-1:-1:-1;;;;;;;12933:729:1:o;13667:249::-;13767:2;13756:17;;;13737;;;;13733:41;-1:-1:-1;;;;;;13789:50:1;;-1:-1:-1;;;;;13841:45:1;;13786:101;13783:127;;;13890:18;;:::i;13921:251::-;13991:6;14044:2;14032:9;14023:7;14019:23;14015:32;14012:52;;;14060:1;14057;14050:12;14012:52;14092:9;14086:16;14111:31;14136:5;14111:31;:::i;14177:135::-;14216:3;14237:17;;;14234:43;;14257:18;;:::i;:::-;-1:-1:-1;14304:1:1;14293:13;;14177:135::o;14626:385::-;14705:6;14713;14766:2;14754:9;14745:7;14741:23;14737:32;14734:52;;;14782:1;14779;14772:12;14734:52;14814:9;14808:16;14833:31;14858:5;14833:31;:::i;:::-;14933:2;14918:18;;14912:25;14883:5;;-1:-1:-1;14946:33:1;14912:25;14946:33;:::i;17872:489::-;-1:-1:-1;;;;;18141:15:1;;;18123:34;;18193:15;;18188:2;18173:18;;18166:43;18240:2;18225:18;;18218:34;;;18288:3;18283:2;18268:18;;18261:31;;;18066:4;;18309:46;;18335:19;;18327:6;18309:46;:::i;:::-;18301:54;17872:489;-1:-1:-1;;;;;;17872:489:1:o;18366:249::-;18435:6;18488:2;18476:9;18467:7;18463:23;18459:32;18456:52;;;18504:1;18501;18494:12;18456:52;18536:9;18530:16;18555:30;18579:5;18555:30;:::i;18620:648::-;18700:6;18753:2;18741:9;18732:7;18728:23;18724:32;18721:52;;;18769:1;18766;18759:12;18721:52;18802:9;18796:16;18835:18;18827:6;18824:30;18821:50;;;18867:1;18864;18857:12;18821:50;18890:22;;18943:4;18935:13;;18931:27;-1:-1:-1;18921:55:1;;18972:1;18969;18962:12;18921:55;19001:2;18995:9;19026:48;19042:31;19070:2;19042:31;:::i;19026:48::-;19097:2;19090:5;19083:17;19137:7;19132:2;19127;19123;19119:11;19115:20;19112:33;19109:53;;;19158:1;19155;19148:12;19109:53;19171:67;19235:2;19230;19223:5;19219:14;19214:2;19210;19206:11;19171:67;:::i;19273:245::-;19371:2;19341:17;;;19360;;;;19337:41;-1:-1:-1;;;;;19393:44:1;;-1:-1:-1;;;;;;19439:49:1;;19390:99;19387:125;;;19492:18;;:::i;20830:305::-;20869:1;20911;20907:2;20896:17;20948:1;20944:2;20933:17;20969:3;20959:37;;20976:18;;:::i;:::-;-1:-1:-1;;;;;;21012:48:1;;-1:-1:-1;;21062:15:1;;21008:70;21005:96;;;21081:18;;:::i;:::-;21115:14;;;20830:305;-1:-1:-1;;;20830:305:1:o;21140:241::-;21179:7;21258:1;21254:2;21243:17;21239:1;21235:2;21224:17;21220:41;21296:11;21292:2;21281:27;21270:38;;21339:11;21330:7;21327:24;21317:58;;21355:18;;:::i;21970:127::-;22031:10;22026:3;22022:20;22019:1;22012:31;22062:4;22059:1;22052:15;22086:4;22083:1;22076:15;24178:245;24245:6;24298:2;24286:9;24277:7;24273:23;24269:32;24266:52;;;24314:1;24311;24304:12;24266:52;24346:9;24340:16;24365:28;24387:5;24365:28;:::i;25626:287::-;25755:3;25793:6;25787:13;25809:66;25868:6;25863:3;25856:4;25848:6;25844:17;25809:66;:::i;:::-;25891:16;;;;;25626:287;-1:-1:-1;;25626:287:1:o

Swarm Source

ipfs://d7cbc06ee19342786eba17b59e99983ef41d67ad5b50356be23ee4dc508aec42
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.