ETH Price: $3,463.71 (+2.05%)
Gas: 17 Gwei

Token

Omni Beast (OMNB)
 

Overview

Max Total Supply

0 OMNB

Holders

685

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 OMNB
0x91fa982255f24f7cb841c6218a08177241777ade
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Beast

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-22
*/

// File: contracts/ETHBeast.sol



// File: contracts/interfaces/ILayerZeroUserApplicationConfig.sol

pragma solidity >=0.5.0;

interface ILayerZeroUserApplicationConfig {
    // @notice set the configuration of the LayerZero messaging library of the specified version
    // @param _version - messaging library version
    // @param _chainId - the chainId for the pending config change
    // @param _configType - type of configuration. every messaging library has its own convention.
    // @param _config - configuration in the bytes. can encode arbitrary content.
    function setConfig(
        uint16 _version,
        uint16 _chainId,
        uint256 _configType,
        bytes calldata _config
    ) external;

    // @notice set the send() LayerZero messaging library version to _version
    // @param _version - new messaging library version
    function setSendVersion(uint16 _version) external;

    // @notice set the lzReceive() LayerZero messaging library version to _version
    // @param _version - new messaging library version
    function setReceiveVersion(uint16 _version) external;

    // @notice Only when the UA needs to resume the message flow in blocking mode and clear the stored payload
    // @param _srcChainId - the chainId of the source chain
    // @param _srcAddress - the contract address of the source contract at the source chain
    function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress)
        external;
}

// File: contracts/interfaces/ILayerZeroEndpoint.sol

pragma solidity >=0.5.0;

interface ILayerZeroEndpoint is ILayerZeroUserApplicationConfig {
    // @notice send a LayerZero message to the specified address at a LayerZero endpoint.
    // @param _dstChainId - the destination chain identifier
    // @param _destination - the address on destination chain (in bytes). address length/format may vary by chains
    // @param _payload - a custom bytes payload to send to the destination contract
    // @param _refundAddress - if the source transaction is cheaper than the amount of value passed, refund the additional amount to this address
    // @param _zroPaymentAddress - the address of the ZRO token holder who would pay for the transaction
    // @param _adapterParams - parameters for custom functionality. e.g. receive airdropped native gas from the relayer on destination
    function send(
        uint16 _dstChainId,
        bytes calldata _destination,
        bytes calldata _payload,
        address payable _refundAddress,
        address _zroPaymentAddress,
        bytes calldata _adapterParams
    ) external payable;

    // @notice used by the messaging library to publish verified payload
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source contract (as bytes) at the source chain
    // @param _dstAddress - the address on destination chain
    // @param _nonce - the unbound message ordering nonce
    // @param _gasLimit - the gas limit for external contract execution
    // @param _payload - verified payload to send to the destination contract
    function receivePayload(
        uint16 _srcChainId,
        bytes calldata _srcAddress,
        address _dstAddress,
        uint64 _nonce,
        uint256 _gasLimit,
        bytes calldata _payload
    ) external;

    // @notice get the inboundNonce of a receiver from a source chain which could be EVM or non-EVM chain
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source chain contract address
    function getInboundNonce(uint16 _srcChainId, bytes calldata _srcAddress)
        external
        view
        returns (uint64);

    // @notice get the outboundNonce from this source chain which, consequently, is always an EVM
    // @param _srcAddress - the source chain contract address
    function getOutboundNonce(uint16 _dstChainId, address _srcAddress)
        external
        view
        returns (uint64);

    // @notice gets a quote in source native gas, for the amount that send() requires to pay for message delivery
    // @param _dstChainId - the destination chain identifier
    // @param _userApplication - the user app address on this EVM chain
    // @param _payload - the custom message to send over LayerZero
    // @param _payInZRO - if false, user app pays the protocol fee in native token
    // @param _adapterParam - parameters for the adapter service, e.g. send some dust native token to dstChain
    function estimateFees(
        uint16 _dstChainId,
        address _userApplication,
        bytes calldata _payload,
        bool _payInZRO,
        bytes calldata _adapterParam
    ) external view returns (uint256 nativeFee, uint256 zroFee);

    // @notice get this Endpoint's immutable source identifier
    function getChainId() external view returns (uint16);

    // @notice the interface to retry failed message on this Endpoint destination
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source chain contract address
    // @param _payload - the payload to be retried
    function retryPayload(
        uint16 _srcChainId,
        bytes calldata _srcAddress,
        bytes calldata _payload
    ) external;

    // @notice query if any STORED payload (message blocking) at the endpoint.
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source chain contract address
    function hasStoredPayload(uint16 _srcChainId, bytes calldata _srcAddress)
        external
        view
        returns (bool);

    // @notice query if the _libraryAddress is valid for sending msgs.
    // @param _userApplication - the user app address on this EVM chain
    function getSendLibraryAddress(address _userApplication)
        external
        view
        returns (address);

    // @notice query if the _libraryAddress is valid for receiving msgs.
    // @param _userApplication - the user app address on this EVM chain
    function getReceiveLibraryAddress(address _userApplication)
        external
        view
        returns (address);

    // @notice query if the non-reentrancy guard for send() is on
    // @return true if the guard is on. false otherwise
    function isSendingPayload() external view returns (bool);

    // @notice query if the non-reentrancy guard for receive() is on
    // @return true if the guard is on. false otherwise
    function isReceivingPayload() external view returns (bool);

    // @notice get the configuration of the LayerZero messaging library of the specified version
    // @param _version - messaging library version
    // @param _chainId - the chainId for the pending config change
    // @param _userApplication - the contract address of the user application
    // @param _configType - type of configuration. every messaging library has its own convention.
    function getConfig(
        uint16 _version,
        uint16 _chainId,
        address _userApplication,
        uint256 _configType
    ) external view returns (bytes memory);

    // @notice get the send() LayerZero messaging library version
    // @param _userApplication - the contract address of the user application
    function getSendVersion(address _userApplication)
        external
        view
        returns (uint16);

    // @notice get the lzReceive() LayerZero messaging library version
    // @param _userApplication - the contract address of the user application
    function getReceiveVersion(address _userApplication)
        external
        view
        returns (uint16);
}

// File: contracts/interfaces/ILayerZeroReceiver.sol

pragma solidity >=0.5.0;

interface ILayerZeroReceiver {
    // @notice LayerZero endpoint will invoke this function to deliver the message on the destination
    // @param _srcChainId - the source endpoint identifier
    // @param _srcAddress - the source sending contract address from the source chain
    // @param _nonce - the ordered message nonce
    // @param _payload - the signed payload is the UA bytes has encoded to be sent
    function lzReceive(
        uint16 _srcChainId,
        bytes calldata _srcAddress,
        uint64 _nonce,
        bytes calldata _payload
    ) external;
}
// File: @openzeppelin/contracts/utils/Strings.sol

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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol

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

// File: @openzeppelin/contracts/access/Ownable.sol

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        _transferOwnership(newOwner);
    }

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

// File: @openzeppelin/contracts/utils/Address.sol

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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                value,
                "Address: low-level call with value failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(
            data
        );
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data)
        internal
        view
        returns (bytes memory)
    {
        return
            functionStaticCall(
                target,
                data,
                "Address: low-level static call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return
            functionDelegateCall(
                target,
                data,
                "Address: low-level delegate call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol

// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol

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

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol

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

pragma solidity ^0.8.0;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

// File: contracts/NonblockingReceiver.sol

pragma solidity ^0.8.6;

abstract contract NonblockingReceiver is Ownable, ILayerZeroReceiver {
    ILayerZeroEndpoint internal endpoint;

    struct FailedMessages {
        uint256 payloadLength;
        bytes32 payloadHash;
    }

    mapping(uint16 => mapping(bytes => mapping(uint256 => FailedMessages)))
        public failedMessages;
    mapping(uint16 => bytes) public trustedRemoteLookup;

    event MessageFailed(
        uint16 _srcChainId,
        bytes _srcAddress,
        uint64 _nonce,
        bytes _payload
    );

    function lzReceive(
        uint16 _srcChainId,
        bytes memory _srcAddress,
        uint64 _nonce,
        bytes memory _payload
    ) external override {
        require(msg.sender == address(endpoint)); // boilerplate! lzReceive must be called by the endpoint for security
        require(
            _srcAddress.length == trustedRemoteLookup[_srcChainId].length &&
                keccak256(_srcAddress) ==
                keccak256(trustedRemoteLookup[_srcChainId]),
            "NonblockingReceiver: invalid source sending contract"
        );

        // try-catch all errors/exceptions
        // having failed messages does not block messages passing
        try this.onLzReceive(_srcChainId, _srcAddress, _nonce, _payload) {
            // do nothing
        } catch {
            // error / exception
            failedMessages[_srcChainId][_srcAddress][_nonce] = FailedMessages(
                _payload.length,
                keccak256(_payload)
            );
            emit MessageFailed(_srcChainId, _srcAddress, _nonce, _payload);
        }
    }

    function onLzReceive(
        uint16 _srcChainId,
        bytes memory _srcAddress,
        uint64 _nonce,
        bytes memory _payload
    ) public {
        // only internal transaction
        require(
            msg.sender == address(this),
            "NonblockingReceiver: caller must be Bridge."
        );

        // handle incoming message
        _LzReceive(_srcChainId, _srcAddress, _nonce, _payload);
    }

    // abstract function
    function _LzReceive(
        uint16 _srcChainId,
        bytes memory _srcAddress,
        uint64 _nonce,
        bytes memory _payload
    ) internal virtual;

    function _lzSend(
        uint16 _dstChainId,
        bytes memory _payload,
        address payable _refundAddress,
        address _zroPaymentAddress,
        bytes memory _txParam
    ) internal {
        endpoint.send{value: msg.value}(
            _dstChainId,
            trustedRemoteLookup[_dstChainId],
            _payload,
            _refundAddress,
            _zroPaymentAddress,
            _txParam
        );
    }

    function retryMessage(
        uint16 _srcChainId,
        bytes memory _srcAddress,
        uint64 _nonce,
        bytes calldata _payload
    ) external payable {
        // assert there is message to retry
        FailedMessages storage failedMsg = failedMessages[_srcChainId][
            _srcAddress
        ][_nonce];
        require(
            failedMsg.payloadHash != bytes32(0),
            "NonblockingReceiver: no stored message"
        );
        require(
            _payload.length == failedMsg.payloadLength &&
                keccak256(_payload) == failedMsg.payloadHash,
            "LayerZero: invalid payload"
        );
        // clear the stored message
        failedMsg.payloadLength = 0;
        failedMsg.payloadHash = bytes32(0);
        // execute the message. revert if it fails again
        this.onLzReceive(_srcChainId, _srcAddress, _nonce, _payload);
    }

    function setTrustedRemote(uint16 _chainId, bytes calldata _trustedRemote)
        external
        onlyOwner
    {
        trustedRemoteLookup[_chainId] = _trustedRemote;
    }
}

pragma solidity ^0.8.7;

contract Beast is Ownable, ERC721, NonblockingReceiver {
    using Strings for uint256;
    
    address public _owner;
    uint256 nextTokenId = 4566; // change before deployment
    uint256 MAX_MINT_ETH = 8000; // change before deployment
    bool public_sale_running = false;
    uint256 gasForDestinationLzReceive = 350000;

    constructor()
        ERC721("Omni Beast", "OMNB")
    {
        _owner = msg.sender;
        endpoint = ILayerZeroEndpoint(address(0x66A71Dcef29A0fFBDBE3c6a460a3B5BC225Cd675)); // change before deployment
    }

    function mint(uint8 numTokens) external {
        require(public_sale_running);
        require(numTokens < 3, "Max 2 NFTs per transaction");
        require(
            nextTokenId + numTokens <= MAX_MINT_ETH,
            "Mint exceeds supply"
        );
        _safeMint(msg.sender, ++nextTokenId);
        if (numTokens == 2) {
            _safeMint(msg.sender, ++nextTokenId);
        }
    }

    // This function transfers the nft from your address on the
    // source chain to the same address on the destination chain
    function traverseChains(uint16 _chainId, uint256 tokenId) public payable {
        require(
            msg.sender == ownerOf(tokenId),
            "You must own the token to traverse"
        );
        require(
            trustedRemoteLookup[_chainId].length > 0,
            "This chain is currently unavailable for travel"
        );

        // burn NFT, eliminating it from circulation on src chain
        _burn(tokenId);

        // abi.encode() the payload with the values to send
        bytes memory payload = abi.encode(msg.sender, tokenId);

        // encode adapterParams to specify more gas for the destination
        uint16 version = 1;
        bytes memory adapterParams = abi.encodePacked(
            version,
            gasForDestinationLzReceive
        );

        // get the fees we need to pay to LayerZero + Relayer to cover message delivery
        // you will be refunded for extra gas paid
        (uint256 messageFee, ) = endpoint.estimateFees(
            _chainId,
            address(this),
            payload,
            false,
            adapterParams
        );

        require(
            msg.value >= messageFee,
            "msg.value not enough to cover messageFee. Send gas for message fees"
        );

        endpoint.send{value: msg.value}(
            _chainId, // destination chainId
            trustedRemoteLookup[_chainId], // destination address of nft contract
            payload, // abi.encoded()'ed bytes
            payable(msg.sender), // refund address
            address(0x0), // 'zroPaymentAddress' unused for this
            adapterParams // txParameters
        );
    }

    // Withdraw any trapped ETH
    function withdraw(uint256 amt) external onlyOwner {
        (bool sent, ) = payable(_owner).call{value: amt}("");
        require(sent, "Failed to withdraw Ether");
    }

    // just in case this fixed variable limits us from future integrations
    function setGasForDestinationLzReceive(uint256 newVal) external onlyOwner {
        gasForDestinationLzReceive = newVal;
    }

    function toggleMinting() external onlyOwner {
        public_sale_running = !public_sale_running;
    }
    
    // ------------------
    // Internal Functions
    // ------------------

    function _LzReceive(
        uint16 _srcChainId,
        bytes memory _srcAddress,
        uint64 _nonce,
        bytes memory _payload
    ) internal override {
        // decode
        (address toAddr, uint256 tokenId) = abi.decode(
            _payload,
            (address, uint256)
        );

        // mint the tokens back into existence on destination chain
        _safeMint(toAddr, tokenId);
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        return string(abi.encodePacked("https://fangedbeast.com/metadata/", tokenId.toString()));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"MessageFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"failedMessages","outputs":[{"internalType":"uint256","name":"payloadLength","type":"uint256"},{"internalType":"bytes32","name":"payloadHash","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"numTokens","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"onLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"retryMessage","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newVal","type":"uint256"}],"name":"setGasForDestinationLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"bytes","name":"_trustedRemote","type":"bytes"}],"name":"setTrustedRemote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"traverseChains","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedRemoteLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526111d6600b55611f40600c556000600d60006101000a81548160ff02191690831515021790555062055730600e553480156200003f57600080fd5b506040518060400160405280600a81526020017f4f6d6e69204265617374000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4f4d4e4200000000000000000000000000000000000000000000000000000000815250620000cc620000c06200019c60201b60201c565b620001a460201b60201c565b8160019080519060200190620000e492919062000268565b508060029080519060200190620000fd92919062000268565b50505033600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507366a71dcef29a0ffbdbe3c6a460a3b5bc225cd675600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200037d565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002769062000318565b90600052602060002090601f0160209004810192826200029a5760008555620002e6565b82601f10620002b557805160ff1916838001178555620002e6565b82800160010185558215620002e6579182015b82811115620002e5578251825591602001919060010190620002c8565b5b509050620002f59190620002f9565b5090565b5b8082111562000314576000816000905550600101620002fa565b5090565b600060028204905060018216806200033157607f821691505b602082108114156200034857620003476200034e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614a06806200038d6000396000f3fe6080604052600436106101b65760003560e01c80637d55094d116100ec578063b88d4fde1161008a578063d1deba1f11610064578063d1deba1f146105f7578063e985e9c514610613578063eb8d72b714610650578063f2fde38b14610679576101b6565b8063b88d4fde14610575578063c87b56dd1461059e578063cf89fa03146105db576101b6565b8063943fb872116100c6578063943fb872146104cd57806395d89b41146104f6578063a22cb46514610521578063b2bdfa7b1461054a576101b6565b80637d55094d1461044d5780638da5cb5b146104645780638ee749121461048f576101b6565b80632e1a7d4d116101595780636ecd2306116101335780636ecd23061461039357806370a08231146103bc578063715018a6146103f95780637533d78814610410576101b6565b80632e1a7d4d1461030457806342842e0e1461032d5780636352211e14610356576101b6565b8063081812fc11610195578063081812fc1461024c578063095ea7b3146102895780631c37a822146102b257806323b872dd146102db576101b6565b80621d3567146101bb57806301ffc9a7146101e457806306fdde0314610221575b600080fd5b3480156101c757600080fd5b506101e260048036038101906101dd9190612f8e565b6106a2565b005b3480156101f057600080fd5b5061020b60048036038101906102069190612d94565b6108e4565b604051610218919061388b565b60405180910390f35b34801561022d57600080fd5b506102366109c6565b60405161024391906138c8565b60405180910390f35b34801561025857600080fd5b50610273600480360381019061026e919061306d565b610a58565b60405161028091906137fb565b60405180910390f35b34801561029557600080fd5b506102b060048036038101906102ab9190612d54565b610add565b005b3480156102be57600080fd5b506102d960048036038101906102d49190612f8e565b610bf5565b005b3480156102e757600080fd5b5061030260048036038101906102fd9190612c3e565b610c75565b005b34801561031057600080fd5b5061032b6004803603810190610326919061306d565b610cd5565b005b34801561033957600080fd5b50610354600480360381019061034f9190612c3e565b610e23565b005b34801561036257600080fd5b5061037d6004803603810190610378919061306d565b610e43565b60405161038a91906137fb565b60405180910390f35b34801561039f57600080fd5b506103ba60048036038101906103b591906130da565b610ef5565b005b3480156103c857600080fd5b506103e360048036038101906103de9190612b91565b610ff5565b6040516103f09190613d69565b60405180910390f35b34801561040557600080fd5b5061040e6110ad565b005b34801561041c57600080fd5b5061043760048036038101906104329190612dee565b611135565b60405161044491906138a6565b60405180910390f35b34801561045957600080fd5b506104626111d5565b005b34801561047057600080fd5b5061047961127d565b60405161048691906137fb565b60405180910390f35b34801561049b57600080fd5b506104b660048036038101906104b19190612e7b565b6112a6565b6040516104c4929190613d84565b60405180910390f35b3480156104d957600080fd5b506104f460048036038101906104ef919061306d565b6112fa565b005b34801561050257600080fd5b5061050b611380565b60405161051891906138c8565b60405180910390f35b34801561052d57600080fd5b5061054860048036038101906105439190612d14565b611412565b005b34801561055657600080fd5b5061055f611428565b60405161056c91906137fb565b60405180910390f35b34801561058157600080fd5b5061059c60048036038101906105979190612c91565b61144e565b005b3480156105aa57600080fd5b506105c560048036038101906105c0919061306d565b6114b0565b6040516105d291906138c8565b60405180910390f35b6105f560048036038101906105f0919061302d565b6114e1565b005b610611600480360381019061060c9190612eea565b6117d4565b005b34801561061f57600080fd5b5061063a60048036038101906106359190612bfe565b611974565b604051610647919061388b565b60405180910390f35b34801561065c57600080fd5b5061067760048036038101906106729190612e1b565b611a08565b005b34801561068557600080fd5b506106a0600480360381019061069b9190612b91565b611ab4565b005b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106fc57600080fd5b600960008561ffff1661ffff168152602001908152602001600020805461072290614022565b905083511480156107685750600960008561ffff1661ffff1681526020019081526020016000206040516107569190613781565b60405180910390208380519060200120145b6107a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079e90613b2a565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff16631c37a822858585856040518563ffffffff1660e01b81526004016107e69493929190613ca0565b600060405180830381600087803b15801561080057600080fd5b505af1925050508015610811575060015b6108dd576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff1681526020019081526020016000208460405161085b919061376a565b908152602001604051809103902060008467ffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101559050507fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d848484846040516108d09493929190613ca0565b60405180910390a16108de565b5b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109af57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109bf57506109be82611bac565b5b9050919050565b6060600180546109d590614022565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0190614022565b8015610a4e5780601f10610a2357610100808354040283529160200191610a4e565b820191906000526020600020905b815481529060010190602001808311610a3157829003601f168201915b5050505050905090565b6000610a6382611c16565b610aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9990613aea565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ae882610e43565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5090613b8a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b78611c82565b73ffffffffffffffffffffffffffffffffffffffff161480610ba75750610ba681610ba1611c82565b611974565b5b610be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdd90613a4a565b60405180910390fd5b610bf08383611c8a565b505050565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5a90613aaa565b60405180910390fd5b610c6f84848484611d43565b50505050565b610c86610c80611c82565b82611d70565b610cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbc90613baa565b60405180910390fd5b610cd0838383611e4e565b505050565b610cdd611c82565b73ffffffffffffffffffffffffffffffffffffffff16610cfb61127d565b73ffffffffffffffffffffffffffffffffffffffff1614610d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4890613b0a565b60405180910390fd5b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610d9990613798565b60006040518083038185875af1925050503d8060008114610dd6576040519150601f19603f3d011682016040523d82523d6000602084013e610ddb565b606091505b5050905080610e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1690613b6a565b60405180910390fd5b5050565b610e3e8383836040518060200160405280600081525061144e565b505050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee390613a8a565b60405180910390fd5b80915050919050565b600d60009054906101000a900460ff16610f0e57600080fd5b60038160ff1610610f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4b90613a2a565b60405180910390fd5b600c548160ff16600b54610f689190613e66565b1115610fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa0906139ea565b60405180910390fd5b610fc733600b60008154610fbc90614085565b9190508190556120aa565b60028160ff161415610ff257610ff133600b60008154610fe690614085565b9190508190556120aa565b5b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d90613a6a565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110b5611c82565b73ffffffffffffffffffffffffffffffffffffffff166110d361127d565b73ffffffffffffffffffffffffffffffffffffffff1614611129576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112090613b0a565b60405180910390fd5b61113360006120c8565b565b6009602052806000526040600020600091509050805461115490614022565b80601f016020809104026020016040519081016040528092919081815260200182805461118090614022565b80156111cd5780601f106111a2576101008083540402835291602001916111cd565b820191906000526020600020905b8154815290600101906020018083116111b057829003601f168201915b505050505081565b6111dd611c82565b73ffffffffffffffffffffffffffffffffffffffff166111fb61127d565b73ffffffffffffffffffffffffffffffffffffffff1614611251576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124890613b0a565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60086020528260005260406000208280516020810182018051848252602083016020850120818352809550505050505060205280600052604060002060009250925050508060000154908060010154905082565b611302611c82565b73ffffffffffffffffffffffffffffffffffffffff1661132061127d565b73ffffffffffffffffffffffffffffffffffffffff1614611376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136d90613b0a565b60405180910390fd5b80600e8190555050565b60606002805461138f90614022565b80601f01602080910402602001604051908101604052809291908181526020018280546113bb90614022565b80156114085780601f106113dd57610100808354040283529160200191611408565b820191906000526020600020905b8154815290600101906020018083116113eb57829003601f168201915b5050505050905090565b61142461141d611c82565b838361218c565b5050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61145f611459611c82565b83611d70565b61149e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149590613baa565b60405180910390fd5b6114aa848484846122f9565b50505050565b60606114bb82612355565b6040516020016114cb91906137ad565b6040516020818303038152906040529050919050565b6114ea81610e43565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611557576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154e906139ca565b60405180910390fd5b6000600960008461ffff1661ffff168152602001908152602001600020805461157f90614022565b9050116115c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b89061398a565b60405180910390fd5b6115ca816124b6565b600033826040516020016115df929190613862565b6040516020818303038152906040529050600060019050600081600e5460405160200161160d9291906137cf565b60405160208183030381529060405290506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340a7bb108730876000876040518663ffffffff1660e01b8152600401611684959493929190613bea565b604080518083038186803b15801561169b57600080fd5b505afa1580156116af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116d3919061309a565b50905080341015611719576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611710906138ea565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c58031003488600960008b61ffff1661ffff16815260200190815260200160002088336000896040518863ffffffff1660e01b815260040161179a96959493929190613cf3565b6000604051808303818588803b1580156117b357600080fd5b505af11580156117c7573d6000803e3d6000fd5b5050505050505050505050565b6000600860008761ffff1661ffff168152602001908152602001600020856040516117ff919061376a565b908152602001604051809103902060008567ffffffffffffffff16815260200190815260200160002090506000801b81600101541415611874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186b90613bca565b60405180910390fd5b8060000154838390501480156118a457508060010154838360405161189a929190613751565b6040518091039020145b6118e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118da906139aa565b60405180910390fd5b600081600001819055506000801b81600101819055503073ffffffffffffffffffffffffffffffffffffffff16631c37a82287878787876040518663ffffffff1660e01b815260040161193a959493929190613c4b565b600060405180830381600087803b15801561195457600080fd5b505af1158015611968573d6000803e3d6000fd5b50505050505050505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a10611c82565b73ffffffffffffffffffffffffffffffffffffffff16611a2e61127d565b73ffffffffffffffffffffffffffffffffffffffff1614611a84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7b90613b0a565b60405180910390fd5b8181600960008661ffff1661ffff1681526020019081526020016000209190611aae929190612956565b50505050565b611abc611c82565b73ffffffffffffffffffffffffffffffffffffffff16611ada61127d565b73ffffffffffffffffffffffffffffffffffffffff1614611b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2790613b0a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b979061392a565b60405180910390fd5b611ba9816120c8565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611cfd83610e43565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190611d5a9190612bbe565b91509150611d6882826120aa565b505050505050565b6000611d7b82611c16565b611dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db190613a0a565b60405180910390fd5b6000611dc583610e43565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e3457508373ffffffffffffffffffffffffffffffffffffffff16611e1c84610a58565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e455750611e448185611974565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e6e82610e43565b73ffffffffffffffffffffffffffffffffffffffff1614611ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebb90613b4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2b9061394a565b60405180910390fd5b611f3f8383836125c7565b611f4a600082611c8a565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f9a9190613eed565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ff19190613e66565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6120c48282604051806020016040528060008152506125cc565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f29061396a565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122ec919061388b565b60405180910390a3505050565b612304848484611e4e565b61231084848484612627565b61234f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123469061390a565b60405180910390fd5b50505050565b6060600082141561239d576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124b1565b600082905060005b600082146123cf5780806123b890614085565b915050600a826123c89190613ebc565b91506123a5565b60008167ffffffffffffffff8111156123eb576123ea6141d7565b5b6040519080825280601f01601f19166020018201604052801561241d5781602001600182028036833780820191505090505b5090505b600085146124aa576001826124369190613eed565b9150600a8561244591906140ea565b60306124519190613e66565b60f81b818381518110612467576124666141a8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124a39190613ebc565b9450612421565b8093505050505b919050565b60006124c182610e43565b90506124cf816000846125c7565b6124da600083611c8a565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461252a9190613eed565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6125d683836127be565b6125e36000848484612627565b612622576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126199061390a565b60405180910390fd5b505050565b60006126488473ffffffffffffffffffffffffffffffffffffffff16612943565b156127b1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612671611c82565b8786866040518563ffffffff1660e01b81526004016126939493929190613816565b602060405180830381600087803b1580156126ad57600080fd5b505af19250505080156126de57506040513d601f19601f820116820180604052508101906126db9190612dc1565b60015b612761573d806000811461270e576040519150601f19603f3d011682016040523d82523d6000602084013e612713565b606091505b50600081511415612759576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127509061390a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127b6565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561282e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282590613aca565b60405180910390fd5b61283a600083836125c7565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461288a9190613e66565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461296290614022565b90600052602060002090601f01602090048101928261298457600085556129cb565b82601f1061299d57803560ff19168380011785556129cb565b828001600101855582156129cb579182015b828111156129ca5782358255916020019190600101906129af565b5b5090506129d891906129dc565b5090565b5b808211156129f55760008160009055506001016129dd565b5090565b6000612a0c612a0784613dd2565b613dad565b905082815260208101848484011115612a2857612a27614215565b5b612a33848285613fe0565b509392505050565b600081359050612a4a81614918565b92915050565b600081519050612a5f8161492f565b92915050565b600081359050612a7481614946565b92915050565b600081359050612a898161495d565b92915050565b600081519050612a9e8161495d565b92915050565b60008083601f840112612aba57612ab961420b565b5b8235905067ffffffffffffffff811115612ad757612ad6614206565b5b602083019150836001820283011115612af357612af2614210565b5b9250929050565b600082601f830112612b0f57612b0e61420b565b5b8135612b1f8482602086016129f9565b91505092915050565b600081359050612b3781614974565b92915050565b600081359050612b4c8161498b565b92915050565b600081519050612b618161498b565b92915050565b600081359050612b76816149a2565b92915050565b600081359050612b8b816149b9565b92915050565b600060208284031215612ba757612ba661421f565b5b6000612bb584828501612a3b565b91505092915050565b60008060408385031215612bd557612bd461421f565b5b6000612be385828601612a50565b9250506020612bf485828601612b52565b9150509250929050565b60008060408385031215612c1557612c1461421f565b5b6000612c2385828601612a3b565b9250506020612c3485828601612a3b565b9150509250929050565b600080600060608486031215612c5757612c5661421f565b5b6000612c6586828701612a3b565b9350506020612c7686828701612a3b565b9250506040612c8786828701612b3d565b9150509250925092565b60008060008060808587031215612cab57612caa61421f565b5b6000612cb987828801612a3b565b9450506020612cca87828801612a3b565b9350506040612cdb87828801612b3d565b925050606085013567ffffffffffffffff811115612cfc57612cfb61421a565b5b612d0887828801612afa565b91505092959194509250565b60008060408385031215612d2b57612d2a61421f565b5b6000612d3985828601612a3b565b9250506020612d4a85828601612a65565b9150509250929050565b60008060408385031215612d6b57612d6a61421f565b5b6000612d7985828601612a3b565b9250506020612d8a85828601612b3d565b9150509250929050565b600060208284031215612daa57612da961421f565b5b6000612db884828501612a7a565b91505092915050565b600060208284031215612dd757612dd661421f565b5b6000612de584828501612a8f565b91505092915050565b600060208284031215612e0457612e0361421f565b5b6000612e1284828501612b28565b91505092915050565b600080600060408486031215612e3457612e3361421f565b5b6000612e4286828701612b28565b935050602084013567ffffffffffffffff811115612e6357612e6261421a565b5b612e6f86828701612aa4565b92509250509250925092565b600080600060608486031215612e9457612e9361421f565b5b6000612ea286828701612b28565b935050602084013567ffffffffffffffff811115612ec357612ec261421a565b5b612ecf86828701612afa565b9250506040612ee086828701612b3d565b9150509250925092565b600080600080600060808688031215612f0657612f0561421f565b5b6000612f1488828901612b28565b955050602086013567ffffffffffffffff811115612f3557612f3461421a565b5b612f4188828901612afa565b9450506040612f5288828901612b67565b935050606086013567ffffffffffffffff811115612f7357612f7261421a565b5b612f7f88828901612aa4565b92509250509295509295909350565b60008060008060808587031215612fa857612fa761421f565b5b6000612fb687828801612b28565b945050602085013567ffffffffffffffff811115612fd757612fd661421a565b5b612fe387828801612afa565b9350506040612ff487828801612b67565b925050606085013567ffffffffffffffff8111156130155761301461421a565b5b61302187828801612afa565b91505092959194509250565b600080604083850312156130445761304361421f565b5b600061305285828601612b28565b925050602061306385828601612b3d565b9150509250929050565b6000602082840312156130835761308261421f565b5b600061309184828501612b3d565b91505092915050565b600080604083850312156130b1576130b061421f565b5b60006130bf85828601612b52565b92505060206130d085828601612b52565b9150509250929050565b6000602082840312156130f0576130ef61421f565b5b60006130fe84828501612b7c565b91505092915050565b61311081613f33565b82525050565b61311f81613f21565b82525050565b61312e81613f45565b82525050565b61313d81613f51565b82525050565b600061314f8385613e2e565b935061315c838584613fe0565b61316583614224565b840190509392505050565b600061317c8385613e3f565b9350613189838584613fe0565b82840190509392505050565b60006131a082613e18565b6131aa8185613e2e565b93506131ba818560208601613fef565b6131c381614224565b840191505092915050565b60006131d982613e18565b6131e38185613e3f565b93506131f3818560208601613fef565b80840191505092915050565b6000815461320c81614022565b6132168186613e2e565b94506001821660008114613231576001811461324357613276565b60ff1983168652602086019350613276565b61324c85613e03565b60005b8381101561326e5781548189015260018201915060208101905061324f565b808801955050505b50505092915050565b6000815461328c81614022565b6132968186613e3f565b945060018216600081146132b157600181146132c2576132f5565b60ff198316865281860193506132f5565b6132cb85613e03565b60005b838110156132ed578154818901526001820191506020810190506132ce565b838801955050505b50505092915050565b600061330982613e23565b6133138185613e4a565b9350613323818560208601613fef565b61332c81614224565b840191505092915050565b600061334282613e23565b61334c8185613e5b565b935061335c818560208601613fef565b80840191505092915050565b6000613375604383613e4a565b915061338082614242565b606082019050919050565b6000613398603283613e4a565b91506133a3826142b7565b604082019050919050565b60006133bb602683613e4a565b91506133c682614306565b604082019050919050565b60006133de602483613e4a565b91506133e982614355565b604082019050919050565b6000613401601983613e4a565b915061340c826143a4565b602082019050919050565b6000613424602e83613e4a565b915061342f826143cd565b604082019050919050565b6000613447601a83613e4a565b91506134528261441c565b602082019050919050565b600061346a602283613e4a565b915061347582614445565b604082019050919050565b600061348d601383613e4a565b915061349882614494565b602082019050919050565b60006134b0602c83613e4a565b91506134bb826144bd565b604082019050919050565b60006134d3601a83613e4a565b91506134de8261450c565b602082019050919050565b60006134f6603883613e4a565b915061350182614535565b604082019050919050565b6000613519602a83613e4a565b915061352482614584565b604082019050919050565b600061353c602983613e4a565b9150613547826145d3565b604082019050919050565b600061355f602b83613e4a565b915061356a82614622565b604082019050919050565b6000613582602083613e4a565b915061358d82614671565b602082019050919050565b60006135a5602c83613e4a565b91506135b08261469a565b604082019050919050565b60006135c8602083613e4a565b91506135d3826146e9565b602082019050919050565b60006135eb603483613e4a565b91506135f682614712565b604082019050919050565b600061360e602983613e4a565b915061361982614761565b604082019050919050565b6000613631601883613e4a565b915061363c826147b0565b602082019050919050565b6000613654602183613e4a565b915061365f826147d9565b604082019050919050565b6000613677600083613e3f565b915061368282614828565b600082019050919050565b600061369a603183613e4a565b91506136a58261482b565b604082019050919050565b60006136bd602683613e4a565b91506136c88261487a565b604082019050919050565b60006136e0602183613e5b565b91506136eb826148c9565b602182019050919050565b6136ff81613f87565b82525050565b61371661371182613f87565b6140ce565b82525050565b61372581613fb5565b82525050565b61373c61373782613fb5565b6140e0565b82525050565b61374b81613fbf565b82525050565b600061375e828486613170565b91508190509392505050565b600061377682846131ce565b915081905092915050565b600061378d828461327f565b915081905092915050565b60006137a38261366a565b9150819050919050565b60006137b8826136d3565b91506137c48284613337565b915081905092915050565b60006137db8285613705565b6002820191506137eb828461372b565b6020820191508190509392505050565b60006020820190506138106000830184613116565b92915050565b600060808201905061382b6000830187613116565b6138386020830186613116565b613845604083018561371c565b81810360608301526138578184613195565b905095945050505050565b60006040820190506138776000830185613116565b613884602083018461371c565b9392505050565b60006020820190506138a06000830184613125565b92915050565b600060208201905081810360008301526138c08184613195565b905092915050565b600060208201905081810360008301526138e281846132fe565b905092915050565b6000602082019050818103600083015261390381613368565b9050919050565b600060208201905081810360008301526139238161338b565b9050919050565b60006020820190508181036000830152613943816133ae565b9050919050565b60006020820190508181036000830152613963816133d1565b9050919050565b60006020820190508181036000830152613983816133f4565b9050919050565b600060208201905081810360008301526139a381613417565b9050919050565b600060208201905081810360008301526139c38161343a565b9050919050565b600060208201905081810360008301526139e38161345d565b9050919050565b60006020820190508181036000830152613a0381613480565b9050919050565b60006020820190508181036000830152613a23816134a3565b9050919050565b60006020820190508181036000830152613a43816134c6565b9050919050565b60006020820190508181036000830152613a63816134e9565b9050919050565b60006020820190508181036000830152613a838161350c565b9050919050565b60006020820190508181036000830152613aa38161352f565b9050919050565b60006020820190508181036000830152613ac381613552565b9050919050565b60006020820190508181036000830152613ae381613575565b9050919050565b60006020820190508181036000830152613b0381613598565b9050919050565b60006020820190508181036000830152613b23816135bb565b9050919050565b60006020820190508181036000830152613b43816135de565b9050919050565b60006020820190508181036000830152613b6381613601565b9050919050565b60006020820190508181036000830152613b8381613624565b9050919050565b60006020820190508181036000830152613ba381613647565b9050919050565b60006020820190508181036000830152613bc38161368d565b9050919050565b60006020820190508181036000830152613be3816136b0565b9050919050565b600060a082019050613bff60008301886136f6565b613c0c6020830187613116565b8181036040830152613c1e8186613195565b9050613c2d6060830185613125565b8181036080830152613c3f8184613195565b90509695505050505050565b6000608082019050613c6060008301886136f6565b8181036020830152613c728187613195565b9050613c816040830186613742565b8181036060830152613c94818486613143565b90509695505050505050565b6000608082019050613cb560008301876136f6565b8181036020830152613cc78186613195565b9050613cd66040830185613742565b8181036060830152613ce88184613195565b905095945050505050565b600060c082019050613d0860008301896136f6565b8181036020830152613d1a81886131ff565b90508181036040830152613d2e8187613195565b9050613d3d6060830186613107565b613d4a6080830185613116565b81810360a0830152613d5c8184613195565b9050979650505050505050565b6000602082019050613d7e600083018461371c565b92915050565b6000604082019050613d99600083018561371c565b613da66020830184613134565b9392505050565b6000613db7613dc8565b9050613dc38282614054565b919050565b6000604051905090565b600067ffffffffffffffff821115613ded57613dec6141d7565b5b613df682614224565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e7182613fb5565b9150613e7c83613fb5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613eb157613eb061411b565b5b828201905092915050565b6000613ec782613fb5565b9150613ed283613fb5565b925082613ee257613ee161414a565b5b828204905092915050565b6000613ef882613fb5565b9150613f0383613fb5565b925082821015613f1657613f1561411b565b5b828203905092915050565b6000613f2c82613f95565b9050919050565b6000613f3e82613f95565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561400d578082015181840152602081019050613ff2565b8381111561401c576000848401525b50505050565b6000600282049050600182168061403a57607f821691505b6020821081141561404e5761404d614179565b5b50919050565b61405d82614224565b810181811067ffffffffffffffff8211171561407c5761407b6141d7565b5b80604052505050565b600061409082613fb5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140c3576140c261411b565b5b600182019050919050565b60006140d982614235565b9050919050565b6000819050919050565b60006140f582613fb5565b915061410083613fb5565b9250826141105761410f61414a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160f01b9050919050565b7f6d73672e76616c7565206e6f7420656e6f75676820746f20636f766572206d6560008201527f73736167654665652e2053656e642067617320666f72206d657373616765206660208201527f6565730000000000000000000000000000000000000000000000000000000000604082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5468697320636861696e2069732063757272656e746c7920756e617661696c6160008201527f626c6520666f722074726176656c000000000000000000000000000000000000602082015250565b7f4c617965725a65726f3a20696e76616c6964207061796c6f6164000000000000600082015250565b7f596f75206d757374206f776e2074686520746f6b656e20746f2074726176657260008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74206578636565647320737570706c7900000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d61782032204e46547320706572207472616e73616374696f6e000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460008201527f206265204272696467652e000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560008201527f7263652073656e64696e6720636f6e7472616374000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4661696c656420746f2077697468647261772045746865720000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60008201527f6573736167650000000000000000000000000000000000000000000000000000602082015250565b7f68747470733a2f2f66616e67656462656173742e636f6d2f6d6574616461746160008201527f2f00000000000000000000000000000000000000000000000000000000000000602082015250565b61492181613f21565b811461492c57600080fd5b50565b61493881613f33565b811461494357600080fd5b50565b61494f81613f45565b811461495a57600080fd5b50565b61496681613f5b565b811461497157600080fd5b50565b61497d81613f87565b811461498857600080fd5b50565b61499481613fb5565b811461499f57600080fd5b50565b6149ab81613fbf565b81146149b657600080fd5b50565b6149c281613fd3565b81146149cd57600080fd5b5056fea2646970667358221220e1355f1b2de3c16a9826c66408ffd2377a4af97ed792947650de972b1233e15664736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101b65760003560e01c80637d55094d116100ec578063b88d4fde1161008a578063d1deba1f11610064578063d1deba1f146105f7578063e985e9c514610613578063eb8d72b714610650578063f2fde38b14610679576101b6565b8063b88d4fde14610575578063c87b56dd1461059e578063cf89fa03146105db576101b6565b8063943fb872116100c6578063943fb872146104cd57806395d89b41146104f6578063a22cb46514610521578063b2bdfa7b1461054a576101b6565b80637d55094d1461044d5780638da5cb5b146104645780638ee749121461048f576101b6565b80632e1a7d4d116101595780636ecd2306116101335780636ecd23061461039357806370a08231146103bc578063715018a6146103f95780637533d78814610410576101b6565b80632e1a7d4d1461030457806342842e0e1461032d5780636352211e14610356576101b6565b8063081812fc11610195578063081812fc1461024c578063095ea7b3146102895780631c37a822146102b257806323b872dd146102db576101b6565b80621d3567146101bb57806301ffc9a7146101e457806306fdde0314610221575b600080fd5b3480156101c757600080fd5b506101e260048036038101906101dd9190612f8e565b6106a2565b005b3480156101f057600080fd5b5061020b60048036038101906102069190612d94565b6108e4565b604051610218919061388b565b60405180910390f35b34801561022d57600080fd5b506102366109c6565b60405161024391906138c8565b60405180910390f35b34801561025857600080fd5b50610273600480360381019061026e919061306d565b610a58565b60405161028091906137fb565b60405180910390f35b34801561029557600080fd5b506102b060048036038101906102ab9190612d54565b610add565b005b3480156102be57600080fd5b506102d960048036038101906102d49190612f8e565b610bf5565b005b3480156102e757600080fd5b5061030260048036038101906102fd9190612c3e565b610c75565b005b34801561031057600080fd5b5061032b6004803603810190610326919061306d565b610cd5565b005b34801561033957600080fd5b50610354600480360381019061034f9190612c3e565b610e23565b005b34801561036257600080fd5b5061037d6004803603810190610378919061306d565b610e43565b60405161038a91906137fb565b60405180910390f35b34801561039f57600080fd5b506103ba60048036038101906103b591906130da565b610ef5565b005b3480156103c857600080fd5b506103e360048036038101906103de9190612b91565b610ff5565b6040516103f09190613d69565b60405180910390f35b34801561040557600080fd5b5061040e6110ad565b005b34801561041c57600080fd5b5061043760048036038101906104329190612dee565b611135565b60405161044491906138a6565b60405180910390f35b34801561045957600080fd5b506104626111d5565b005b34801561047057600080fd5b5061047961127d565b60405161048691906137fb565b60405180910390f35b34801561049b57600080fd5b506104b660048036038101906104b19190612e7b565b6112a6565b6040516104c4929190613d84565b60405180910390f35b3480156104d957600080fd5b506104f460048036038101906104ef919061306d565b6112fa565b005b34801561050257600080fd5b5061050b611380565b60405161051891906138c8565b60405180910390f35b34801561052d57600080fd5b5061054860048036038101906105439190612d14565b611412565b005b34801561055657600080fd5b5061055f611428565b60405161056c91906137fb565b60405180910390f35b34801561058157600080fd5b5061059c60048036038101906105979190612c91565b61144e565b005b3480156105aa57600080fd5b506105c560048036038101906105c0919061306d565b6114b0565b6040516105d291906138c8565b60405180910390f35b6105f560048036038101906105f0919061302d565b6114e1565b005b610611600480360381019061060c9190612eea565b6117d4565b005b34801561061f57600080fd5b5061063a60048036038101906106359190612bfe565b611974565b604051610647919061388b565b60405180910390f35b34801561065c57600080fd5b5061067760048036038101906106729190612e1b565b611a08565b005b34801561068557600080fd5b506106a0600480360381019061069b9190612b91565b611ab4565b005b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106fc57600080fd5b600960008561ffff1661ffff168152602001908152602001600020805461072290614022565b905083511480156107685750600960008561ffff1661ffff1681526020019081526020016000206040516107569190613781565b60405180910390208380519060200120145b6107a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079e90613b2a565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff16631c37a822858585856040518563ffffffff1660e01b81526004016107e69493929190613ca0565b600060405180830381600087803b15801561080057600080fd5b505af1925050508015610811575060015b6108dd576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff1681526020019081526020016000208460405161085b919061376a565b908152602001604051809103902060008467ffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101559050507fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d848484846040516108d09493929190613ca0565b60405180910390a16108de565b5b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109af57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109bf57506109be82611bac565b5b9050919050565b6060600180546109d590614022565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0190614022565b8015610a4e5780601f10610a2357610100808354040283529160200191610a4e565b820191906000526020600020905b815481529060010190602001808311610a3157829003601f168201915b5050505050905090565b6000610a6382611c16565b610aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9990613aea565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ae882610e43565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5090613b8a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b78611c82565b73ffffffffffffffffffffffffffffffffffffffff161480610ba75750610ba681610ba1611c82565b611974565b5b610be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdd90613a4a565b60405180910390fd5b610bf08383611c8a565b505050565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5a90613aaa565b60405180910390fd5b610c6f84848484611d43565b50505050565b610c86610c80611c82565b82611d70565b610cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbc90613baa565b60405180910390fd5b610cd0838383611e4e565b505050565b610cdd611c82565b73ffffffffffffffffffffffffffffffffffffffff16610cfb61127d565b73ffffffffffffffffffffffffffffffffffffffff1614610d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4890613b0a565b60405180910390fd5b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610d9990613798565b60006040518083038185875af1925050503d8060008114610dd6576040519150601f19603f3d011682016040523d82523d6000602084013e610ddb565b606091505b5050905080610e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1690613b6a565b60405180910390fd5b5050565b610e3e8383836040518060200160405280600081525061144e565b505050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee390613a8a565b60405180910390fd5b80915050919050565b600d60009054906101000a900460ff16610f0e57600080fd5b60038160ff1610610f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4b90613a2a565b60405180910390fd5b600c548160ff16600b54610f689190613e66565b1115610fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa0906139ea565b60405180910390fd5b610fc733600b60008154610fbc90614085565b9190508190556120aa565b60028160ff161415610ff257610ff133600b60008154610fe690614085565b9190508190556120aa565b5b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d90613a6a565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110b5611c82565b73ffffffffffffffffffffffffffffffffffffffff166110d361127d565b73ffffffffffffffffffffffffffffffffffffffff1614611129576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112090613b0a565b60405180910390fd5b61113360006120c8565b565b6009602052806000526040600020600091509050805461115490614022565b80601f016020809104026020016040519081016040528092919081815260200182805461118090614022565b80156111cd5780601f106111a2576101008083540402835291602001916111cd565b820191906000526020600020905b8154815290600101906020018083116111b057829003601f168201915b505050505081565b6111dd611c82565b73ffffffffffffffffffffffffffffffffffffffff166111fb61127d565b73ffffffffffffffffffffffffffffffffffffffff1614611251576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124890613b0a565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60086020528260005260406000208280516020810182018051848252602083016020850120818352809550505050505060205280600052604060002060009250925050508060000154908060010154905082565b611302611c82565b73ffffffffffffffffffffffffffffffffffffffff1661132061127d565b73ffffffffffffffffffffffffffffffffffffffff1614611376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136d90613b0a565b60405180910390fd5b80600e8190555050565b60606002805461138f90614022565b80601f01602080910402602001604051908101604052809291908181526020018280546113bb90614022565b80156114085780601f106113dd57610100808354040283529160200191611408565b820191906000526020600020905b8154815290600101906020018083116113eb57829003601f168201915b5050505050905090565b61142461141d611c82565b838361218c565b5050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61145f611459611c82565b83611d70565b61149e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149590613baa565b60405180910390fd5b6114aa848484846122f9565b50505050565b60606114bb82612355565b6040516020016114cb91906137ad565b6040516020818303038152906040529050919050565b6114ea81610e43565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611557576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154e906139ca565b60405180910390fd5b6000600960008461ffff1661ffff168152602001908152602001600020805461157f90614022565b9050116115c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b89061398a565b60405180910390fd5b6115ca816124b6565b600033826040516020016115df929190613862565b6040516020818303038152906040529050600060019050600081600e5460405160200161160d9291906137cf565b60405160208183030381529060405290506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340a7bb108730876000876040518663ffffffff1660e01b8152600401611684959493929190613bea565b604080518083038186803b15801561169b57600080fd5b505afa1580156116af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116d3919061309a565b50905080341015611719576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611710906138ea565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c58031003488600960008b61ffff1661ffff16815260200190815260200160002088336000896040518863ffffffff1660e01b815260040161179a96959493929190613cf3565b6000604051808303818588803b1580156117b357600080fd5b505af11580156117c7573d6000803e3d6000fd5b5050505050505050505050565b6000600860008761ffff1661ffff168152602001908152602001600020856040516117ff919061376a565b908152602001604051809103902060008567ffffffffffffffff16815260200190815260200160002090506000801b81600101541415611874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186b90613bca565b60405180910390fd5b8060000154838390501480156118a457508060010154838360405161189a929190613751565b6040518091039020145b6118e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118da906139aa565b60405180910390fd5b600081600001819055506000801b81600101819055503073ffffffffffffffffffffffffffffffffffffffff16631c37a82287878787876040518663ffffffff1660e01b815260040161193a959493929190613c4b565b600060405180830381600087803b15801561195457600080fd5b505af1158015611968573d6000803e3d6000fd5b50505050505050505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a10611c82565b73ffffffffffffffffffffffffffffffffffffffff16611a2e61127d565b73ffffffffffffffffffffffffffffffffffffffff1614611a84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7b90613b0a565b60405180910390fd5b8181600960008661ffff1661ffff1681526020019081526020016000209190611aae929190612956565b50505050565b611abc611c82565b73ffffffffffffffffffffffffffffffffffffffff16611ada61127d565b73ffffffffffffffffffffffffffffffffffffffff1614611b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2790613b0a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b979061392a565b60405180910390fd5b611ba9816120c8565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611cfd83610e43565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190611d5a9190612bbe565b91509150611d6882826120aa565b505050505050565b6000611d7b82611c16565b611dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db190613a0a565b60405180910390fd5b6000611dc583610e43565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e3457508373ffffffffffffffffffffffffffffffffffffffff16611e1c84610a58565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e455750611e448185611974565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e6e82610e43565b73ffffffffffffffffffffffffffffffffffffffff1614611ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebb90613b4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2b9061394a565b60405180910390fd5b611f3f8383836125c7565b611f4a600082611c8a565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f9a9190613eed565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ff19190613e66565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6120c48282604051806020016040528060008152506125cc565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f29061396a565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122ec919061388b565b60405180910390a3505050565b612304848484611e4e565b61231084848484612627565b61234f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123469061390a565b60405180910390fd5b50505050565b6060600082141561239d576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124b1565b600082905060005b600082146123cf5780806123b890614085565b915050600a826123c89190613ebc565b91506123a5565b60008167ffffffffffffffff8111156123eb576123ea6141d7565b5b6040519080825280601f01601f19166020018201604052801561241d5781602001600182028036833780820191505090505b5090505b600085146124aa576001826124369190613eed565b9150600a8561244591906140ea565b60306124519190613e66565b60f81b818381518110612467576124666141a8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124a39190613ebc565b9450612421565b8093505050505b919050565b60006124c182610e43565b90506124cf816000846125c7565b6124da600083611c8a565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461252a9190613eed565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6125d683836127be565b6125e36000848484612627565b612622576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126199061390a565b60405180910390fd5b505050565b60006126488473ffffffffffffffffffffffffffffffffffffffff16612943565b156127b1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612671611c82565b8786866040518563ffffffff1660e01b81526004016126939493929190613816565b602060405180830381600087803b1580156126ad57600080fd5b505af19250505080156126de57506040513d601f19601f820116820180604052508101906126db9190612dc1565b60015b612761573d806000811461270e576040519150601f19603f3d011682016040523d82523d6000602084013e612713565b606091505b50600081511415612759576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127509061390a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127b6565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561282e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282590613aca565b60405180910390fd5b61283a600083836125c7565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461288a9190613e66565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461296290614022565b90600052602060002090601f01602090048101928261298457600085556129cb565b82601f1061299d57803560ff19168380011785556129cb565b828001600101855582156129cb579182015b828111156129ca5782358255916020019190600101906129af565b5b5090506129d891906129dc565b5090565b5b808211156129f55760008160009055506001016129dd565b5090565b6000612a0c612a0784613dd2565b613dad565b905082815260208101848484011115612a2857612a27614215565b5b612a33848285613fe0565b509392505050565b600081359050612a4a81614918565b92915050565b600081519050612a5f8161492f565b92915050565b600081359050612a7481614946565b92915050565b600081359050612a898161495d565b92915050565b600081519050612a9e8161495d565b92915050565b60008083601f840112612aba57612ab961420b565b5b8235905067ffffffffffffffff811115612ad757612ad6614206565b5b602083019150836001820283011115612af357612af2614210565b5b9250929050565b600082601f830112612b0f57612b0e61420b565b5b8135612b1f8482602086016129f9565b91505092915050565b600081359050612b3781614974565b92915050565b600081359050612b4c8161498b565b92915050565b600081519050612b618161498b565b92915050565b600081359050612b76816149a2565b92915050565b600081359050612b8b816149b9565b92915050565b600060208284031215612ba757612ba661421f565b5b6000612bb584828501612a3b565b91505092915050565b60008060408385031215612bd557612bd461421f565b5b6000612be385828601612a50565b9250506020612bf485828601612b52565b9150509250929050565b60008060408385031215612c1557612c1461421f565b5b6000612c2385828601612a3b565b9250506020612c3485828601612a3b565b9150509250929050565b600080600060608486031215612c5757612c5661421f565b5b6000612c6586828701612a3b565b9350506020612c7686828701612a3b565b9250506040612c8786828701612b3d565b9150509250925092565b60008060008060808587031215612cab57612caa61421f565b5b6000612cb987828801612a3b565b9450506020612cca87828801612a3b565b9350506040612cdb87828801612b3d565b925050606085013567ffffffffffffffff811115612cfc57612cfb61421a565b5b612d0887828801612afa565b91505092959194509250565b60008060408385031215612d2b57612d2a61421f565b5b6000612d3985828601612a3b565b9250506020612d4a85828601612a65565b9150509250929050565b60008060408385031215612d6b57612d6a61421f565b5b6000612d7985828601612a3b565b9250506020612d8a85828601612b3d565b9150509250929050565b600060208284031215612daa57612da961421f565b5b6000612db884828501612a7a565b91505092915050565b600060208284031215612dd757612dd661421f565b5b6000612de584828501612a8f565b91505092915050565b600060208284031215612e0457612e0361421f565b5b6000612e1284828501612b28565b91505092915050565b600080600060408486031215612e3457612e3361421f565b5b6000612e4286828701612b28565b935050602084013567ffffffffffffffff811115612e6357612e6261421a565b5b612e6f86828701612aa4565b92509250509250925092565b600080600060608486031215612e9457612e9361421f565b5b6000612ea286828701612b28565b935050602084013567ffffffffffffffff811115612ec357612ec261421a565b5b612ecf86828701612afa565b9250506040612ee086828701612b3d565b9150509250925092565b600080600080600060808688031215612f0657612f0561421f565b5b6000612f1488828901612b28565b955050602086013567ffffffffffffffff811115612f3557612f3461421a565b5b612f4188828901612afa565b9450506040612f5288828901612b67565b935050606086013567ffffffffffffffff811115612f7357612f7261421a565b5b612f7f88828901612aa4565b92509250509295509295909350565b60008060008060808587031215612fa857612fa761421f565b5b6000612fb687828801612b28565b945050602085013567ffffffffffffffff811115612fd757612fd661421a565b5b612fe387828801612afa565b9350506040612ff487828801612b67565b925050606085013567ffffffffffffffff8111156130155761301461421a565b5b61302187828801612afa565b91505092959194509250565b600080604083850312156130445761304361421f565b5b600061305285828601612b28565b925050602061306385828601612b3d565b9150509250929050565b6000602082840312156130835761308261421f565b5b600061309184828501612b3d565b91505092915050565b600080604083850312156130b1576130b061421f565b5b60006130bf85828601612b52565b92505060206130d085828601612b52565b9150509250929050565b6000602082840312156130f0576130ef61421f565b5b60006130fe84828501612b7c565b91505092915050565b61311081613f33565b82525050565b61311f81613f21565b82525050565b61312e81613f45565b82525050565b61313d81613f51565b82525050565b600061314f8385613e2e565b935061315c838584613fe0565b61316583614224565b840190509392505050565b600061317c8385613e3f565b9350613189838584613fe0565b82840190509392505050565b60006131a082613e18565b6131aa8185613e2e565b93506131ba818560208601613fef565b6131c381614224565b840191505092915050565b60006131d982613e18565b6131e38185613e3f565b93506131f3818560208601613fef565b80840191505092915050565b6000815461320c81614022565b6132168186613e2e565b94506001821660008114613231576001811461324357613276565b60ff1983168652602086019350613276565b61324c85613e03565b60005b8381101561326e5781548189015260018201915060208101905061324f565b808801955050505b50505092915050565b6000815461328c81614022565b6132968186613e3f565b945060018216600081146132b157600181146132c2576132f5565b60ff198316865281860193506132f5565b6132cb85613e03565b60005b838110156132ed578154818901526001820191506020810190506132ce565b838801955050505b50505092915050565b600061330982613e23565b6133138185613e4a565b9350613323818560208601613fef565b61332c81614224565b840191505092915050565b600061334282613e23565b61334c8185613e5b565b935061335c818560208601613fef565b80840191505092915050565b6000613375604383613e4a565b915061338082614242565b606082019050919050565b6000613398603283613e4a565b91506133a3826142b7565b604082019050919050565b60006133bb602683613e4a565b91506133c682614306565b604082019050919050565b60006133de602483613e4a565b91506133e982614355565b604082019050919050565b6000613401601983613e4a565b915061340c826143a4565b602082019050919050565b6000613424602e83613e4a565b915061342f826143cd565b604082019050919050565b6000613447601a83613e4a565b91506134528261441c565b602082019050919050565b600061346a602283613e4a565b915061347582614445565b604082019050919050565b600061348d601383613e4a565b915061349882614494565b602082019050919050565b60006134b0602c83613e4a565b91506134bb826144bd565b604082019050919050565b60006134d3601a83613e4a565b91506134de8261450c565b602082019050919050565b60006134f6603883613e4a565b915061350182614535565b604082019050919050565b6000613519602a83613e4a565b915061352482614584565b604082019050919050565b600061353c602983613e4a565b9150613547826145d3565b604082019050919050565b600061355f602b83613e4a565b915061356a82614622565b604082019050919050565b6000613582602083613e4a565b915061358d82614671565b602082019050919050565b60006135a5602c83613e4a565b91506135b08261469a565b604082019050919050565b60006135c8602083613e4a565b91506135d3826146e9565b602082019050919050565b60006135eb603483613e4a565b91506135f682614712565b604082019050919050565b600061360e602983613e4a565b915061361982614761565b604082019050919050565b6000613631601883613e4a565b915061363c826147b0565b602082019050919050565b6000613654602183613e4a565b915061365f826147d9565b604082019050919050565b6000613677600083613e3f565b915061368282614828565b600082019050919050565b600061369a603183613e4a565b91506136a58261482b565b604082019050919050565b60006136bd602683613e4a565b91506136c88261487a565b604082019050919050565b60006136e0602183613e5b565b91506136eb826148c9565b602182019050919050565b6136ff81613f87565b82525050565b61371661371182613f87565b6140ce565b82525050565b61372581613fb5565b82525050565b61373c61373782613fb5565b6140e0565b82525050565b61374b81613fbf565b82525050565b600061375e828486613170565b91508190509392505050565b600061377682846131ce565b915081905092915050565b600061378d828461327f565b915081905092915050565b60006137a38261366a565b9150819050919050565b60006137b8826136d3565b91506137c48284613337565b915081905092915050565b60006137db8285613705565b6002820191506137eb828461372b565b6020820191508190509392505050565b60006020820190506138106000830184613116565b92915050565b600060808201905061382b6000830187613116565b6138386020830186613116565b613845604083018561371c565b81810360608301526138578184613195565b905095945050505050565b60006040820190506138776000830185613116565b613884602083018461371c565b9392505050565b60006020820190506138a06000830184613125565b92915050565b600060208201905081810360008301526138c08184613195565b905092915050565b600060208201905081810360008301526138e281846132fe565b905092915050565b6000602082019050818103600083015261390381613368565b9050919050565b600060208201905081810360008301526139238161338b565b9050919050565b60006020820190508181036000830152613943816133ae565b9050919050565b60006020820190508181036000830152613963816133d1565b9050919050565b60006020820190508181036000830152613983816133f4565b9050919050565b600060208201905081810360008301526139a381613417565b9050919050565b600060208201905081810360008301526139c38161343a565b9050919050565b600060208201905081810360008301526139e38161345d565b9050919050565b60006020820190508181036000830152613a0381613480565b9050919050565b60006020820190508181036000830152613a23816134a3565b9050919050565b60006020820190508181036000830152613a43816134c6565b9050919050565b60006020820190508181036000830152613a63816134e9565b9050919050565b60006020820190508181036000830152613a838161350c565b9050919050565b60006020820190508181036000830152613aa38161352f565b9050919050565b60006020820190508181036000830152613ac381613552565b9050919050565b60006020820190508181036000830152613ae381613575565b9050919050565b60006020820190508181036000830152613b0381613598565b9050919050565b60006020820190508181036000830152613b23816135bb565b9050919050565b60006020820190508181036000830152613b43816135de565b9050919050565b60006020820190508181036000830152613b6381613601565b9050919050565b60006020820190508181036000830152613b8381613624565b9050919050565b60006020820190508181036000830152613ba381613647565b9050919050565b60006020820190508181036000830152613bc38161368d565b9050919050565b60006020820190508181036000830152613be3816136b0565b9050919050565b600060a082019050613bff60008301886136f6565b613c0c6020830187613116565b8181036040830152613c1e8186613195565b9050613c2d6060830185613125565b8181036080830152613c3f8184613195565b90509695505050505050565b6000608082019050613c6060008301886136f6565b8181036020830152613c728187613195565b9050613c816040830186613742565b8181036060830152613c94818486613143565b90509695505050505050565b6000608082019050613cb560008301876136f6565b8181036020830152613cc78186613195565b9050613cd66040830185613742565b8181036060830152613ce88184613195565b905095945050505050565b600060c082019050613d0860008301896136f6565b8181036020830152613d1a81886131ff565b90508181036040830152613d2e8187613195565b9050613d3d6060830186613107565b613d4a6080830185613116565b81810360a0830152613d5c8184613195565b9050979650505050505050565b6000602082019050613d7e600083018461371c565b92915050565b6000604082019050613d99600083018561371c565b613da66020830184613134565b9392505050565b6000613db7613dc8565b9050613dc38282614054565b919050565b6000604051905090565b600067ffffffffffffffff821115613ded57613dec6141d7565b5b613df682614224565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e7182613fb5565b9150613e7c83613fb5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613eb157613eb061411b565b5b828201905092915050565b6000613ec782613fb5565b9150613ed283613fb5565b925082613ee257613ee161414a565b5b828204905092915050565b6000613ef882613fb5565b9150613f0383613fb5565b925082821015613f1657613f1561411b565b5b828203905092915050565b6000613f2c82613f95565b9050919050565b6000613f3e82613f95565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561400d578082015181840152602081019050613ff2565b8381111561401c576000848401525b50505050565b6000600282049050600182168061403a57607f821691505b6020821081141561404e5761404d614179565b5b50919050565b61405d82614224565b810181811067ffffffffffffffff8211171561407c5761407b6141d7565b5b80604052505050565b600061409082613fb5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140c3576140c261411b565b5b600182019050919050565b60006140d982614235565b9050919050565b6000819050919050565b60006140f582613fb5565b915061410083613fb5565b9250826141105761410f61414a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160f01b9050919050565b7f6d73672e76616c7565206e6f7420656e6f75676820746f20636f766572206d6560008201527f73736167654665652e2053656e642067617320666f72206d657373616765206660208201527f6565730000000000000000000000000000000000000000000000000000000000604082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5468697320636861696e2069732063757272656e746c7920756e617661696c6160008201527f626c6520666f722074726176656c000000000000000000000000000000000000602082015250565b7f4c617965725a65726f3a20696e76616c6964207061796c6f6164000000000000600082015250565b7f596f75206d757374206f776e2074686520746f6b656e20746f2074726176657260008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74206578636565647320737570706c7900000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d61782032204e46547320706572207472616e73616374696f6e000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460008201527f206265204272696467652e000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560008201527f7263652073656e64696e6720636f6e7472616374000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4661696c656420746f2077697468647261772045746865720000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60008201527f6573736167650000000000000000000000000000000000000000000000000000602082015250565b7f68747470733a2f2f66616e67656462656173742e636f6d2f6d6574616461746160008201527f2f00000000000000000000000000000000000000000000000000000000000000602082015250565b61492181613f21565b811461492c57600080fd5b50565b61493881613f33565b811461494357600080fd5b50565b61494f81613f45565b811461495a57600080fd5b50565b61496681613f5b565b811461497157600080fd5b50565b61497d81613f87565b811461498857600080fd5b50565b61499481613fb5565b811461499f57600080fd5b50565b6149ab81613fbf565b81146149b657600080fd5b50565b6149c281613fd3565b81146149cd57600080fd5b5056fea2646970667358221220e1355f1b2de3c16a9826c66408ffd2377a4af97ed792947650de972b1233e15664736f6c63430008070033

Deployed Bytecode Sourcemap

50130:4066:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46790:1098;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32855:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34024:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35717:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35240:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47896:435;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36636:376;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52973:173;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37083:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33631:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50696:409;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33274:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13167:103;;;;;;;;;;;;;:::i;:::-;;46589:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53366:105;;;;;;;;;;;;;:::i;:::-;;12516:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46480:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;53230:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34193:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36097:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50230:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37339:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53998:195;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51244:1688;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48991:916;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36355:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49915:181;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13425:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46790:1098;46995:8;;;;;;;;;;;46973:31;;:10;:31;;;46965:40;;;;;;47130:19;:32;47150:11;47130:32;;;;;;;;;;;;;;;:39;;;;;:::i;:::-;;;47108:11;:18;:61;:168;;;;;47243:19;:32;47263:11;47243:32;;;;;;;;;;;;;;;47233:43;;;;;;:::i;:::-;;;;;;;;47200:11;47190:22;;;;;;:86;47108:168;47086:270;;;;;;;;;;;;:::i;:::-;;;;;;;;;47484:4;:16;;;47501:11;47514;47527:6;47535:8;47484:60;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47480:401;;47691:101;;;;;;;;47724:8;:15;47691:101;;;;47768:8;47758:19;;;;;;47691:101;;;47640:14;:27;47655:11;47640:27;;;;;;;;;;;;;;;47668:11;47640:40;;;;;;:::i;:::-;;;;;;;;;;;;;:48;47681:6;47640:48;;;;;;;;;;;;;:152;;;;;;;;;;;;;;;;;;;47812:57;47826:11;47839;47852:6;47860:8;47812:57;;;;;;;;;:::i;:::-;;;;;;;;47480:401;;;;46790:1098;;;;:::o;32855:355::-;33002:4;33059:25;33044:40;;;:11;:40;;;;:105;;;;33116:33;33101:48;;;:11;:48;;;;33044:105;:158;;;;33166:36;33190:11;33166:23;:36::i;:::-;33044:158;33024:178;;32855:355;;;:::o;34024:100::-;34078:13;34111:5;34104:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34024:100;:::o;35717:308::-;35838:7;35885:16;35893:7;35885;:16::i;:::-;35863:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;35993:15;:24;36009:7;35993:24;;;;;;;;;;;;;;;;;;;;;35986:31;;35717:308;;;:::o;35240:411::-;35321:13;35337:23;35352:7;35337:14;:23::i;:::-;35321:39;;35385:5;35379:11;;:2;:11;;;;35371:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;35479:5;35463:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;35488:37;35505:5;35512:12;:10;:12::i;:::-;35488:16;:37::i;:::-;35463:62;35441:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;35622:21;35631:2;35635:7;35622:8;:21::i;:::-;35310:341;35240:411;;:::o;47896:435::-;48144:4;48122:27;;:10;:27;;;48100:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;48269:54;48280:11;48293;48306:6;48314:8;48269:10;:54::i;:::-;47896:435;;;;:::o;36636:376::-;36845:41;36864:12;:10;:12::i;:::-;36878:7;36845:18;:41::i;:::-;36823:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;36976:28;36986:4;36992:2;36996:7;36976:9;:28::i;:::-;36636:376;;;:::o;52973:173::-;12747:12;:10;:12::i;:::-;12736:23;;:7;:5;:7::i;:::-;:23;;;12728:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53035:9:::1;53058:6;;;;;;;;;;;53050:20;;53078:3;53050:36;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53034:52;;;53105:4;53097:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;53023:123;52973:173:::0;:::o;37083:185::-;37221:39;37238:4;37244:2;37248:7;37221:39;;;;;;;;;;;;:16;:39::i;:::-;37083:185;;;:::o;33631:326::-;33748:7;33773:13;33789:7;:16;33797:7;33789:16;;;;;;;;;;;;;;;;;;;;;33773:32;;33855:1;33838:19;;:5;:19;;;;33816:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;33944:5;33937:12;;;33631:326;;;:::o;50696:409::-;50755:19;;;;;;;;;;;50747:28;;;;;;50806:1;50794:9;:13;;;50786:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;50898:12;;50885:9;50871:23;;:11;;:23;;;;:::i;:::-;:39;;50849:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;50968:36;50978:10;50992:11;;50990:13;;;;;:::i;:::-;;;;;;;50968:9;:36::i;:::-;51032:1;51019:9;:14;;;51015:83;;;51050:36;51060:10;51074:11;;51072:13;;;;;:::i;:::-;;;;;;;51050:9;:36::i;:::-;51015:83;50696:409;:::o;33274:295::-;33391:7;33455:1;33438:19;;:5;:19;;;;33416:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;33545:9;:16;33555:5;33545:16;;;;;;;;;;;;;;;;33538:23;;33274:295;;;:::o;13167:103::-;12747:12;:10;:12::i;:::-;12736:23;;:7;:5;:7::i;:::-;:23;;;12728:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13232:30:::1;13259:1;13232:18;:30::i;:::-;13167:103::o:0;46589:51::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53366:105::-;12747:12;:10;:12::i;:::-;12736:23;;:7;:5;:7::i;:::-;:23;;;12728:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53444:19:::1;;;;;;;;;;;53443:20;53421:19;;:42;;;;;;;;;;;;;;;;;;53366:105::o:0;12516:87::-;12562:7;12589:6;;;;;;;;;;;12582:13;;12516:87;:::o;46480:102::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53230:128::-;12747:12;:10;:12::i;:::-;12736:23;;:7;:5;:7::i;:::-;:23;;;12728:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53344:6:::1;53315:26;:35;;;;53230:128:::0;:::o;34193:104::-;34249:13;34282:7;34275:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34193:104;:::o;36097:187::-;36224:52;36243:12;:10;:12::i;:::-;36257:8;36267;36224:18;:52::i;:::-;36097:187;;:::o;50230:21::-;;;;;;;;;;;;;:::o;37339:365::-;37528:41;37547:12;:10;:12::i;:::-;37561:7;37528:18;:41::i;:::-;37506:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;37657:39;37671:4;37677:2;37681:7;37690:5;37657:13;:39::i;:::-;37339:365;;;;:::o;53998:195::-;54071:13;54165:18;:7;:16;:18::i;:::-;54111:73;;;;;;;;:::i;:::-;;;;;;;;;;;;;54097:88;;53998:195;;;:::o;51244:1688::-;51364:16;51372:7;51364;:16::i;:::-;51350:30;;:10;:30;;;51328:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;51514:1;51475:19;:29;51495:8;51475:29;;;;;;;;;;;;;;;:36;;;;;:::i;:::-;;;:40;51453:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;51669:14;51675:7;51669:5;:14::i;:::-;51757:20;51791:10;51803:7;51780:31;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51757:54;;51897:14;51914:1;51897:18;;51926:26;51986:7;52008:26;;51955:90;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51926:119;;52200:18;52224:8;;;;;;;;;;;:21;;;52260:8;52291:4;52311:7;52333:5;52353:13;52224:153;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52199:178;;;52425:10;52412:9;:23;;52390:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;52543:8;;;;;;;;;;;:13;;;52564:9;52589:8;52635:19;:29;52655:8;52635:29;;;;;;;;;;;;;;;52718:7;52774:10;52826:3;52884:13;52543:381;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51317:1615;;;;51244:1688;;:::o;48991:916::-;49215:32;49250:14;:27;49265:11;49250:27;;;;;;;;;;;;;;;49292:11;49250:64;;;;;;:::i;:::-;;;;;;;;;;;;;:72;49315:6;49250:72;;;;;;;;;;;;;49215:107;;49388:1;49380:10;;49355:9;:21;;;:35;;49333:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;49508:9;:23;;;49489:8;;:15;;:42;:107;;;;;49575:9;:21;;;49562:8;;49552:19;;;;;;;:::i;:::-;;;;;;;;:44;49489:107;49467:183;;;;;;;;;;;;:::i;:::-;;;;;;;;;49724:1;49698:9;:23;;:27;;;;49768:1;49760:10;;49736:9;:21;;:34;;;;49839:4;:16;;;49856:11;49869;49882:6;49890:8;;49839:60;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49159:748;48991:916;;;;;:::o;36355:214::-;36497:4;36526:18;:25;36545:5;36526:25;;;;;;;;;;;;;;;:35;36552:8;36526:35;;;;;;;;;;;;;;;;;;;;;;;;;36519:42;;36355:214;;;;:::o;49915:181::-;12747:12;:10;:12::i;:::-;12736:23;;:7;:5;:7::i;:::-;:23;;;12728:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50074:14:::1;;50042:19;:29;50062:8;50042:29;;;;;;;;;;;;;;;:46;;;;;;;:::i;:::-;;49915:181:::0;;;:::o;13425:238::-;12747:12;:10;:12::i;:::-;12736:23;;:7;:5;:7::i;:::-;:23;;;12728:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13548:1:::1;13528:22;;:8;:22;;;;13506:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;13627:28;13646:8;13627:18;:28::i;:::-;13425:238:::0;:::o;25442:207::-;25572:4;25616:25;25601:40;;;:11;:40;;;;25594:47;;25442:207;;;:::o;39251:127::-;39316:4;39368:1;39340:30;;:7;:16;39348:7;39340:16;;;;;;;;;;;;;;;;;;;;;:30;;;;39333:37;;39251:127;;;:::o;11219:98::-;11272:7;11299:10;11292:17;;11219:98;:::o;43305:174::-;43407:2;43380:15;:24;43396:7;43380:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43463:7;43459:2;43425:46;;43434:23;43449:7;43434:14;:23::i;:::-;43425:46;;;;;;;;;;;;43305:174;;:::o;53566:424::-;53762:14;53778:15;53822:8;53797:77;;;;;;;;;;;;:::i;:::-;53761:113;;;;53956:26;53966:6;53974:7;53956:9;:26::i;:::-;53731:259;;53566:424;;;;:::o;39545:452::-;39674:4;39718:16;39726:7;39718;:16::i;:::-;39696:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;39817:13;39833:23;39848:7;39833:14;:23::i;:::-;39817:39;;39886:5;39875:16;;:7;:16;;;:64;;;;39932:7;39908:31;;:20;39920:7;39908:11;:20::i;:::-;:31;;;39875:64;:113;;;;39956:32;39973:5;39980:7;39956:16;:32::i;:::-;39875:113;39867:122;;;39545:452;;;;:::o;42572:615::-;42745:4;42718:31;;:23;42733:7;42718:14;:23::i;:::-;:31;;;42696:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;42851:1;42837:16;;:2;:16;;;;42829:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;42907:39;42928:4;42934:2;42938:7;42907:20;:39::i;:::-;43011:29;43028:1;43032:7;43011:8;:29::i;:::-;43072:1;43053:9;:15;43063:4;43053:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;43101:1;43084:9;:13;43094:2;43084:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;43132:2;43113:7;:16;43121:7;43113:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;43171:7;43167:2;43152:27;;43161:4;43152:27;;;;;;;;;;;;42572:615;;;:::o;40339:110::-;40415:26;40425:2;40429:7;40415:26;;;;;;;;;;;;:9;:26::i;:::-;40339:110;;:::o;13823:191::-;13897:16;13916:6;;;;;;;;;;;13897:25;;13942:8;13933:6;;:17;;;;;;;;;;;;;;;;;;13997:8;13966:40;;13987:8;13966:40;;;;;;;;;;;;13886:128;13823:191;:::o;43621:315::-;43776:8;43767:17;;:5;:17;;;;43759:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;43863:8;43825:18;:25;43844:5;43825:25;;;;;;;;;;;;;;;:35;43851:8;43825:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;43909:8;43887:41;;43902:5;43887:41;;;43919:8;43887:41;;;;;;:::i;:::-;;;;;;;;43621:315;;;:::o;38586:352::-;38743:28;38753:4;38759:2;38763:7;38743:9;:28::i;:::-;38804:48;38827:4;38833:2;38837:7;38846:5;38804:22;:48::i;:::-;38782:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;38586:352;;;;:::o;8751:723::-;8807:13;9037:1;9028:5;:10;9024:53;;;9055:10;;;;;;;;;;;;;;;;;;;;;9024:53;9087:12;9102:5;9087:20;;9118:14;9143:78;9158:1;9150:4;:9;9143:78;;9176:8;;;;;:::i;:::-;;;;9207:2;9199:10;;;;;:::i;:::-;;;9143:78;;;9231:19;9263:6;9253:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9231:39;;9281:154;9297:1;9288:5;:10;9281:154;;9325:1;9315:11;;;;;:::i;:::-;;;9392:2;9384:5;:10;;;;:::i;:::-;9371:2;:24;;;;:::i;:::-;9358:39;;9341:6;9348;9341:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;9421:2;9412:11;;;;;:::i;:::-;;;9281:154;;;9459:6;9445:21;;;;;8751:723;;;;:::o;41875:360::-;41935:13;41951:23;41966:7;41951:14;:23::i;:::-;41935:39;;41987:48;42008:5;42023:1;42027:7;41987:20;:48::i;:::-;42076:29;42093:1;42097:7;42076:8;:29::i;:::-;42138:1;42118:9;:16;42128:5;42118:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;42157:7;:16;42165:7;42157:16;;;;;;;;;;;;42150:23;;;;;;;;;;;42219:7;42215:1;42191:36;;42200:5;42191:36;;;;;;;;;;;;41924:311;41875:360;:::o;46053:126::-;;;;:::o;40676:321::-;40806:18;40812:2;40816:7;40806:5;:18::i;:::-;40857:54;40888:1;40892:2;40896:7;40905:5;40857:22;:54::i;:::-;40835:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;40676:321;;;:::o;44501:980::-;44656:4;44677:15;:2;:13;;;:15::i;:::-;44673:801;;;44746:2;44730:36;;;44789:12;:10;:12::i;:::-;44824:4;44851:7;44881:5;44730:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44709:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45105:1;45088:6;:13;:18;45084:320;;;45131:108;;;;;;;;;;:::i;:::-;;;;;;;;45084:320;45354:6;45348:13;45339:6;45335:2;45331:15;45324:38;44709:710;44979:41;;;44969:51;;;:6;:51;;;;44962:58;;;;;44673:801;45458:4;45451:11;;44501:980;;;;;;;:::o;41333:313::-;41427:1;41413:16;;:2;:16;;;;41405:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;41479:45;41508:1;41512:2;41516:7;41479:20;:45::i;:::-;41554:1;41537:9;:13;41547:2;41537:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;41585:2;41566:7;:16;41574:7;41566:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;41630:7;41626:2;41605:33;;41622:1;41605:33;;;;;;;;;;;;41333:313;;:::o;14839:387::-;14899:4;15107:12;15174:7;15162:20;15154:28;;15217:1;15210:4;:8;15203:15;;;14839:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:159::-;633:5;664:6;658:13;649:22;;680:41;715:5;680:41;:::i;:::-;568:159;;;;:::o;733:133::-;776:5;814:6;801:20;792:29;;830:30;854:5;830:30;:::i;:::-;733:133;;;;:::o;872:137::-;917:5;955:6;942:20;933:29;;971:32;997:5;971:32;:::i;:::-;872:137;;;;:::o;1015:141::-;1071:5;1102:6;1096:13;1087:22;;1118:32;1144:5;1118:32;:::i;:::-;1015:141;;;;:::o;1175:552::-;1232:8;1242:6;1292:3;1285:4;1277:6;1273:17;1269:27;1259:122;;1300:79;;:::i;:::-;1259:122;1413:6;1400:20;1390:30;;1443:18;1435:6;1432:30;1429:117;;;1465:79;;:::i;:::-;1429:117;1579:4;1571:6;1567:17;1555:29;;1633:3;1625:4;1617:6;1613:17;1603:8;1599:32;1596:41;1593:128;;;1640:79;;:::i;:::-;1593:128;1175:552;;;;;:::o;1746:338::-;1801:5;1850:3;1843:4;1835:6;1831:17;1827:27;1817:122;;1858:79;;:::i;:::-;1817:122;1975:6;1962:20;2000:78;2074:3;2066:6;2059:4;2051:6;2047:17;2000:78;:::i;:::-;1991:87;;1807:277;1746:338;;;;:::o;2090:137::-;2135:5;2173:6;2160:20;2151:29;;2189:32;2215:5;2189:32;:::i;:::-;2090:137;;;;:::o;2233:139::-;2279:5;2317:6;2304:20;2295:29;;2333:33;2360:5;2333:33;:::i;:::-;2233:139;;;;:::o;2378:143::-;2435:5;2466:6;2460:13;2451:22;;2482:33;2509:5;2482:33;:::i;:::-;2378:143;;;;:::o;2527:137::-;2572:5;2610:6;2597:20;2588:29;;2626:32;2652:5;2626:32;:::i;:::-;2527:137;;;;:::o;2670:135::-;2714:5;2752:6;2739:20;2730:29;;2768:31;2793:5;2768:31;:::i;:::-;2670:135;;;;:::o;2811:329::-;2870:6;2919:2;2907:9;2898:7;2894:23;2890:32;2887:119;;;2925:79;;:::i;:::-;2887:119;3045:1;3070:53;3115:7;3106:6;3095:9;3091:22;3070:53;:::i;:::-;3060:63;;3016:117;2811:329;;;;:::o;3146:523::-;3233:6;3241;3290:2;3278:9;3269:7;3265:23;3261:32;3258:119;;;3296:79;;:::i;:::-;3258:119;3416:1;3441:72;3505:7;3496:6;3485:9;3481:22;3441:72;:::i;:::-;3431:82;;3387:136;3562:2;3588:64;3644:7;3635:6;3624:9;3620:22;3588:64;:::i;:::-;3578:74;;3533:129;3146:523;;;;;:::o;3675:474::-;3743:6;3751;3800:2;3788:9;3779:7;3775:23;3771:32;3768:119;;;3806:79;;:::i;:::-;3768:119;3926:1;3951:53;3996:7;3987:6;3976:9;3972:22;3951:53;:::i;:::-;3941:63;;3897:117;4053:2;4079:53;4124:7;4115:6;4104:9;4100:22;4079:53;:::i;:::-;4069:63;;4024:118;3675:474;;;;;:::o;4155:619::-;4232:6;4240;4248;4297:2;4285:9;4276:7;4272:23;4268:32;4265:119;;;4303:79;;:::i;:::-;4265:119;4423:1;4448:53;4493:7;4484:6;4473:9;4469:22;4448:53;:::i;:::-;4438:63;;4394:117;4550:2;4576:53;4621:7;4612:6;4601:9;4597:22;4576:53;:::i;:::-;4566:63;;4521:118;4678:2;4704:53;4749:7;4740:6;4729:9;4725:22;4704:53;:::i;:::-;4694:63;;4649:118;4155:619;;;;;:::o;4780:943::-;4875:6;4883;4891;4899;4948:3;4936:9;4927:7;4923:23;4919:33;4916:120;;;4955:79;;:::i;:::-;4916:120;5075:1;5100:53;5145:7;5136:6;5125:9;5121:22;5100:53;:::i;:::-;5090:63;;5046:117;5202:2;5228:53;5273:7;5264:6;5253:9;5249:22;5228:53;:::i;:::-;5218:63;;5173:118;5330:2;5356:53;5401:7;5392:6;5381:9;5377:22;5356:53;:::i;:::-;5346:63;;5301:118;5486:2;5475:9;5471:18;5458:32;5517:18;5509:6;5506:30;5503:117;;;5539:79;;:::i;:::-;5503:117;5644:62;5698:7;5689:6;5678:9;5674:22;5644:62;:::i;:::-;5634:72;;5429:287;4780:943;;;;;;;:::o;5729:468::-;5794:6;5802;5851:2;5839:9;5830:7;5826:23;5822:32;5819:119;;;5857:79;;:::i;:::-;5819:119;5977:1;6002:53;6047:7;6038:6;6027:9;6023:22;6002:53;:::i;:::-;5992:63;;5948:117;6104:2;6130:50;6172:7;6163:6;6152:9;6148:22;6130:50;:::i;:::-;6120:60;;6075:115;5729:468;;;;;:::o;6203:474::-;6271:6;6279;6328:2;6316:9;6307:7;6303:23;6299:32;6296:119;;;6334:79;;:::i;:::-;6296:119;6454:1;6479:53;6524:7;6515:6;6504:9;6500:22;6479:53;:::i;:::-;6469:63;;6425:117;6581:2;6607:53;6652:7;6643:6;6632:9;6628:22;6607:53;:::i;:::-;6597:63;;6552:118;6203:474;;;;;:::o;6683:327::-;6741:6;6790:2;6778:9;6769:7;6765:23;6761:32;6758:119;;;6796:79;;:::i;:::-;6758:119;6916:1;6941:52;6985:7;6976:6;6965:9;6961:22;6941:52;:::i;:::-;6931:62;;6887:116;6683:327;;;;:::o;7016:349::-;7085:6;7134:2;7122:9;7113:7;7109:23;7105:32;7102:119;;;7140:79;;:::i;:::-;7102:119;7260:1;7285:63;7340:7;7331:6;7320:9;7316:22;7285:63;:::i;:::-;7275:73;;7231:127;7016:349;;;;:::o;7371:327::-;7429:6;7478:2;7466:9;7457:7;7453:23;7449:32;7446:119;;;7484:79;;:::i;:::-;7446:119;7604:1;7629:52;7673:7;7664:6;7653:9;7649:22;7629:52;:::i;:::-;7619:62;;7575:116;7371:327;;;;:::o;7704:670::-;7782:6;7790;7798;7847:2;7835:9;7826:7;7822:23;7818:32;7815:119;;;7853:79;;:::i;:::-;7815:119;7973:1;7998:52;8042:7;8033:6;8022:9;8018:22;7998:52;:::i;:::-;7988:62;;7944:116;8127:2;8116:9;8112:18;8099:32;8158:18;8150:6;8147:30;8144:117;;;8180:79;;:::i;:::-;8144:117;8293:64;8349:7;8340:6;8329:9;8325:22;8293:64;:::i;:::-;8275:82;;;;8070:297;7704:670;;;;;:::o;8380:795::-;8465:6;8473;8481;8530:2;8518:9;8509:7;8505:23;8501:32;8498:119;;;8536:79;;:::i;:::-;8498:119;8656:1;8681:52;8725:7;8716:6;8705:9;8701:22;8681:52;:::i;:::-;8671:62;;8627:116;8810:2;8799:9;8795:18;8782:32;8841:18;8833:6;8830:30;8827:117;;;8863:79;;:::i;:::-;8827:117;8968:62;9022:7;9013:6;9002:9;8998:22;8968:62;:::i;:::-;8958:72;;8753:287;9079:2;9105:53;9150:7;9141:6;9130:9;9126:22;9105:53;:::i;:::-;9095:63;;9050:118;8380:795;;;;;:::o;9181:1137::-;9285:6;9293;9301;9309;9317;9366:3;9354:9;9345:7;9341:23;9337:33;9334:120;;;9373:79;;:::i;:::-;9334:120;9493:1;9518:52;9562:7;9553:6;9542:9;9538:22;9518:52;:::i;:::-;9508:62;;9464:116;9647:2;9636:9;9632:18;9619:32;9678:18;9670:6;9667:30;9664:117;;;9700:79;;:::i;:::-;9664:117;9805:62;9859:7;9850:6;9839:9;9835:22;9805:62;:::i;:::-;9795:72;;9590:287;9916:2;9942:52;9986:7;9977:6;9966:9;9962:22;9942:52;:::i;:::-;9932:62;;9887:117;10071:2;10060:9;10056:18;10043:32;10102:18;10094:6;10091:30;10088:117;;;10124:79;;:::i;:::-;10088:117;10237:64;10293:7;10284:6;10273:9;10269:22;10237:64;:::i;:::-;10219:82;;;;10014:297;9181:1137;;;;;;;;:::o;10324:1117::-;10426:6;10434;10442;10450;10499:3;10487:9;10478:7;10474:23;10470:33;10467:120;;;10506:79;;:::i;:::-;10467:120;10626:1;10651:52;10695:7;10686:6;10675:9;10671:22;10651:52;:::i;:::-;10641:62;;10597:116;10780:2;10769:9;10765:18;10752:32;10811:18;10803:6;10800:30;10797:117;;;10833:79;;:::i;:::-;10797:117;10938:62;10992:7;10983:6;10972:9;10968:22;10938:62;:::i;:::-;10928:72;;10723:287;11049:2;11075:52;11119:7;11110:6;11099:9;11095:22;11075:52;:::i;:::-;11065:62;;11020:117;11204:2;11193:9;11189:18;11176:32;11235:18;11227:6;11224:30;11221:117;;;11257:79;;:::i;:::-;11221:117;11362:62;11416:7;11407:6;11396:9;11392:22;11362:62;:::i;:::-;11352:72;;11147:287;10324:1117;;;;;;;:::o;11447:472::-;11514:6;11522;11571:2;11559:9;11550:7;11546:23;11542:32;11539:119;;;11577:79;;:::i;:::-;11539:119;11697:1;11722:52;11766:7;11757:6;11746:9;11742:22;11722:52;:::i;:::-;11712:62;;11668:116;11823:2;11849:53;11894:7;11885:6;11874:9;11870:22;11849:53;:::i;:::-;11839:63;;11794:118;11447:472;;;;;:::o;11925:329::-;11984:6;12033:2;12021:9;12012:7;12008:23;12004:32;12001:119;;;12039:79;;:::i;:::-;12001:119;12159:1;12184:53;12229:7;12220:6;12209:9;12205:22;12184:53;:::i;:::-;12174:63;;12130:117;11925:329;;;;:::o;12260:507::-;12339:6;12347;12396:2;12384:9;12375:7;12371:23;12367:32;12364:119;;;12402:79;;:::i;:::-;12364:119;12522:1;12547:64;12603:7;12594:6;12583:9;12579:22;12547:64;:::i;:::-;12537:74;;12493:128;12660:2;12686:64;12742:7;12733:6;12722:9;12718:22;12686:64;:::i;:::-;12676:74;;12631:129;12260:507;;;;;:::o;12773:325::-;12830:6;12879:2;12867:9;12858:7;12854:23;12850:32;12847:119;;;12885:79;;:::i;:::-;12847:119;13005:1;13030:51;13073:7;13064:6;13053:9;13049:22;13030:51;:::i;:::-;13020:61;;12976:115;12773:325;;;;:::o;13104:142::-;13207:32;13233:5;13207:32;:::i;:::-;13202:3;13195:45;13104:142;;:::o;13252:118::-;13339:24;13357:5;13339:24;:::i;:::-;13334:3;13327:37;13252:118;;:::o;13376:109::-;13457:21;13472:5;13457:21;:::i;:::-;13452:3;13445:34;13376:109;;:::o;13491:118::-;13578:24;13596:5;13578:24;:::i;:::-;13573:3;13566:37;13491:118;;:::o;13637:301::-;13733:3;13754:70;13817:6;13812:3;13754:70;:::i;:::-;13747:77;;13834:43;13870:6;13865:3;13858:5;13834:43;:::i;:::-;13902:29;13924:6;13902:29;:::i;:::-;13897:3;13893:39;13886:46;;13637:301;;;;;:::o;13966:314::-;14080:3;14101:88;14182:6;14177:3;14101:88;:::i;:::-;14094:95;;14199:43;14235:6;14230:3;14223:5;14199:43;:::i;:::-;14267:6;14262:3;14258:16;14251:23;;13966:314;;;;;:::o;14286:360::-;14372:3;14400:38;14432:5;14400:38;:::i;:::-;14454:70;14517:6;14512:3;14454:70;:::i;:::-;14447:77;;14533:52;14578:6;14573:3;14566:4;14559:5;14555:16;14533:52;:::i;:::-;14610:29;14632:6;14610:29;:::i;:::-;14605:3;14601:39;14594:46;;14376:270;14286:360;;;;:::o;14652:373::-;14756:3;14784:38;14816:5;14784:38;:::i;:::-;14838:88;14919:6;14914:3;14838:88;:::i;:::-;14831:95;;14935:52;14980:6;14975:3;14968:4;14961:5;14957:16;14935:52;:::i;:::-;15012:6;15007:3;15003:16;14996:23;;14760:265;14652:373;;;;:::o;15053:798::-;15136:3;15173:5;15167:12;15202:36;15228:9;15202:36;:::i;:::-;15254:70;15317:6;15312:3;15254:70;:::i;:::-;15247:77;;15355:1;15344:9;15340:17;15371:1;15366:135;;;;15515:1;15510:335;;;;15333:512;;15366:135;15450:4;15446:9;15435;15431:25;15426:3;15419:38;15486:4;15481:3;15477:14;15470:21;;15366:135;;15510:335;15577:37;15608:5;15577:37;:::i;:::-;15636:1;15650:154;15664:6;15661:1;15658:13;15650:154;;;15738:7;15732:14;15728:1;15723:3;15719:11;15712:35;15788:1;15779:7;15775:15;15764:26;;15686:4;15683:1;15679:12;15674:17;;15650:154;;;15833:1;15828:3;15824:11;15817:18;;15517:328;;15333:512;;15140:711;;15053:798;;;;:::o;15879:841::-;15980:3;16017:5;16011:12;16046:36;16072:9;16046:36;:::i;:::-;16098:88;16179:6;16174:3;16098:88;:::i;:::-;16091:95;;16217:1;16206:9;16202:17;16233:1;16228:137;;;;16379:1;16374:340;;;;16195:519;;16228:137;16312:4;16308:9;16297;16293:25;16288:3;16281:38;16348:6;16343:3;16339:16;16332:23;;16228:137;;16374:340;16441:37;16472:5;16441:37;:::i;:::-;16500:1;16514:154;16528:6;16525:1;16522:13;16514:154;;;16602:7;16596:14;16592:1;16587:3;16583:11;16576:35;16652:1;16643:7;16639:15;16628:26;;16550:4;16547:1;16543:12;16538:17;;16514:154;;;16697:6;16692:3;16688:16;16681:23;;16381:333;;16195:519;;15984:736;;15879:841;;;;:::o;16726:364::-;16814:3;16842:39;16875:5;16842:39;:::i;:::-;16897:71;16961:6;16956:3;16897:71;:::i;:::-;16890:78;;16977:52;17022:6;17017:3;17010:4;17003:5;16999:16;16977:52;:::i;:::-;17054:29;17076:6;17054:29;:::i;:::-;17049:3;17045:39;17038:46;;16818:272;16726:364;;;;:::o;17096:377::-;17202:3;17230:39;17263:5;17230:39;:::i;:::-;17285:89;17367:6;17362:3;17285:89;:::i;:::-;17278:96;;17383:52;17428:6;17423:3;17416:4;17409:5;17405:16;17383:52;:::i;:::-;17460:6;17455:3;17451:16;17444:23;;17206:267;17096:377;;;;:::o;17479:366::-;17621:3;17642:67;17706:2;17701:3;17642:67;:::i;:::-;17635:74;;17718:93;17807:3;17718:93;:::i;:::-;17836:2;17831:3;17827:12;17820:19;;17479:366;;;:::o;17851:::-;17993:3;18014:67;18078:2;18073:3;18014:67;:::i;:::-;18007:74;;18090:93;18179:3;18090:93;:::i;:::-;18208:2;18203:3;18199:12;18192:19;;17851:366;;;:::o;18223:::-;18365:3;18386:67;18450:2;18445:3;18386:67;:::i;:::-;18379:74;;18462:93;18551:3;18462:93;:::i;:::-;18580:2;18575:3;18571:12;18564:19;;18223:366;;;:::o;18595:::-;18737:3;18758:67;18822:2;18817:3;18758:67;:::i;:::-;18751:74;;18834:93;18923:3;18834:93;:::i;:::-;18952:2;18947:3;18943:12;18936:19;;18595:366;;;:::o;18967:::-;19109:3;19130:67;19194:2;19189:3;19130:67;:::i;:::-;19123:74;;19206:93;19295:3;19206:93;:::i;:::-;19324:2;19319:3;19315:12;19308:19;;18967:366;;;:::o;19339:::-;19481:3;19502:67;19566:2;19561:3;19502:67;:::i;:::-;19495:74;;19578:93;19667:3;19578:93;:::i;:::-;19696:2;19691:3;19687:12;19680:19;;19339:366;;;:::o;19711:::-;19853:3;19874:67;19938:2;19933:3;19874:67;:::i;:::-;19867:74;;19950:93;20039:3;19950:93;:::i;:::-;20068:2;20063:3;20059:12;20052:19;;19711:366;;;:::o;20083:::-;20225:3;20246:67;20310:2;20305:3;20246:67;:::i;:::-;20239:74;;20322:93;20411:3;20322:93;:::i;:::-;20440:2;20435:3;20431:12;20424:19;;20083:366;;;:::o;20455:::-;20597:3;20618:67;20682:2;20677:3;20618:67;:::i;:::-;20611:74;;20694:93;20783:3;20694:93;:::i;:::-;20812:2;20807:3;20803:12;20796:19;;20455:366;;;:::o;20827:::-;20969:3;20990:67;21054:2;21049:3;20990:67;:::i;:::-;20983:74;;21066:93;21155:3;21066:93;:::i;:::-;21184:2;21179:3;21175:12;21168:19;;20827:366;;;:::o;21199:::-;21341:3;21362:67;21426:2;21421:3;21362:67;:::i;:::-;21355:74;;21438:93;21527:3;21438:93;:::i;:::-;21556:2;21551:3;21547:12;21540:19;;21199:366;;;:::o;21571:::-;21713:3;21734:67;21798:2;21793:3;21734:67;:::i;:::-;21727:74;;21810:93;21899:3;21810:93;:::i;:::-;21928:2;21923:3;21919:12;21912:19;;21571:366;;;:::o;21943:::-;22085:3;22106:67;22170:2;22165:3;22106:67;:::i;:::-;22099:74;;22182:93;22271:3;22182:93;:::i;:::-;22300:2;22295:3;22291:12;22284:19;;21943:366;;;:::o;22315:::-;22457:3;22478:67;22542:2;22537:3;22478:67;:::i;:::-;22471:74;;22554:93;22643:3;22554:93;:::i;:::-;22672:2;22667:3;22663:12;22656:19;;22315:366;;;:::o;22687:::-;22829:3;22850:67;22914:2;22909:3;22850:67;:::i;:::-;22843:74;;22926:93;23015:3;22926:93;:::i;:::-;23044:2;23039:3;23035:12;23028:19;;22687:366;;;:::o;23059:::-;23201:3;23222:67;23286:2;23281:3;23222:67;:::i;:::-;23215:74;;23298:93;23387:3;23298:93;:::i;:::-;23416:2;23411:3;23407:12;23400:19;;23059:366;;;:::o;23431:::-;23573:3;23594:67;23658:2;23653:3;23594:67;:::i;:::-;23587:74;;23670:93;23759:3;23670:93;:::i;:::-;23788:2;23783:3;23779:12;23772:19;;23431:366;;;:::o;23803:::-;23945:3;23966:67;24030:2;24025:3;23966:67;:::i;:::-;23959:74;;24042:93;24131:3;24042:93;:::i;:::-;24160:2;24155:3;24151:12;24144:19;;23803:366;;;:::o;24175:::-;24317:3;24338:67;24402:2;24397:3;24338:67;:::i;:::-;24331:74;;24414:93;24503:3;24414:93;:::i;:::-;24532:2;24527:3;24523:12;24516:19;;24175:366;;;:::o;24547:::-;24689:3;24710:67;24774:2;24769:3;24710:67;:::i;:::-;24703:74;;24786:93;24875:3;24786:93;:::i;:::-;24904:2;24899:3;24895:12;24888:19;;24547:366;;;:::o;24919:::-;25061:3;25082:67;25146:2;25141:3;25082:67;:::i;:::-;25075:74;;25158:93;25247:3;25158:93;:::i;:::-;25276:2;25271:3;25267:12;25260:19;;24919:366;;;:::o;25291:::-;25433:3;25454:67;25518:2;25513:3;25454:67;:::i;:::-;25447:74;;25530:93;25619:3;25530:93;:::i;:::-;25648:2;25643:3;25639:12;25632:19;;25291:366;;;:::o;25663:398::-;25822:3;25843:83;25924:1;25919:3;25843:83;:::i;:::-;25836:90;;25935:93;26024:3;25935:93;:::i;:::-;26053:1;26048:3;26044:11;26037:18;;25663:398;;;:::o;26067:366::-;26209:3;26230:67;26294:2;26289:3;26230:67;:::i;:::-;26223:74;;26306:93;26395:3;26306:93;:::i;:::-;26424:2;26419:3;26415:12;26408:19;;26067:366;;;:::o;26439:::-;26581:3;26602:67;26666:2;26661:3;26602:67;:::i;:::-;26595:74;;26678:93;26767:3;26678:93;:::i;:::-;26796:2;26791:3;26787:12;26780:19;;26439:366;;;:::o;26811:402::-;26971:3;26992:85;27074:2;27069:3;26992:85;:::i;:::-;26985:92;;27086:93;27175:3;27086:93;:::i;:::-;27204:2;27199:3;27195:12;27188:19;;26811:402;;;:::o;27219:115::-;27304:23;27321:5;27304:23;:::i;:::-;27299:3;27292:36;27219:115;;:::o;27340:153::-;27443:43;27462:23;27479:5;27462:23;:::i;:::-;27443:43;:::i;:::-;27438:3;27431:56;27340:153;;:::o;27499:118::-;27586:24;27604:5;27586:24;:::i;:::-;27581:3;27574:37;27499:118;;:::o;27623:157::-;27728:45;27748:24;27766:5;27748:24;:::i;:::-;27728:45;:::i;:::-;27723:3;27716:58;27623:157;;:::o;27786:115::-;27871:23;27888:5;27871:23;:::i;:::-;27866:3;27859:36;27786:115;;:::o;27907:291::-;28047:3;28069:103;28168:3;28159:6;28151;28069:103;:::i;:::-;28062:110;;28189:3;28182:10;;27907:291;;;;;:::o;28204:271::-;28334:3;28356:93;28445:3;28436:6;28356:93;:::i;:::-;28349:100;;28466:3;28459:10;;28204:271;;;;:::o;28481:265::-;28608:3;28630:90;28716:3;28707:6;28630:90;:::i;:::-;28623:97;;28737:3;28730:10;;28481:265;;;;:::o;28752:379::-;28936:3;28958:147;29101:3;28958:147;:::i;:::-;28951:154;;29122:3;29115:10;;28752:379;;;:::o;29137:541::-;29370:3;29392:148;29536:3;29392:148;:::i;:::-;29385:155;;29557:95;29648:3;29639:6;29557:95;:::i;:::-;29550:102;;29669:3;29662:10;;29137:541;;;;:::o;29684:392::-;29822:3;29837:73;29906:3;29897:6;29837:73;:::i;:::-;29935:1;29930:3;29926:11;29919:18;;29947:75;30018:3;30009:6;29947:75;:::i;:::-;30047:2;30042:3;30038:12;30031:19;;30067:3;30060:10;;29684:392;;;;;:::o;30082:222::-;30175:4;30213:2;30202:9;30198:18;30190:26;;30226:71;30294:1;30283:9;30279:17;30270:6;30226:71;:::i;:::-;30082:222;;;;:::o;30310:640::-;30505:4;30543:3;30532:9;30528:19;30520:27;;30557:71;30625:1;30614:9;30610:17;30601:6;30557:71;:::i;:::-;30638:72;30706:2;30695:9;30691:18;30682:6;30638:72;:::i;:::-;30720;30788:2;30777:9;30773:18;30764:6;30720:72;:::i;:::-;30839:9;30833:4;30829:20;30824:2;30813:9;30809:18;30802:48;30867:76;30938:4;30929:6;30867:76;:::i;:::-;30859:84;;30310:640;;;;;;;:::o;30956:332::-;31077:4;31115:2;31104:9;31100:18;31092:26;;31128:71;31196:1;31185:9;31181:17;31172:6;31128:71;:::i;:::-;31209:72;31277:2;31266:9;31262:18;31253:6;31209:72;:::i;:::-;30956:332;;;;;:::o;31294:210::-;31381:4;31419:2;31408:9;31404:18;31396:26;;31432:65;31494:1;31483:9;31479:17;31470:6;31432:65;:::i;:::-;31294:210;;;;:::o;31510:309::-;31621:4;31659:2;31648:9;31644:18;31636:26;;31708:9;31702:4;31698:20;31694:1;31683:9;31679:17;31672:47;31736:76;31807:4;31798:6;31736:76;:::i;:::-;31728:84;;31510:309;;;;:::o;31825:313::-;31938:4;31976:2;31965:9;31961:18;31953:26;;32025:9;32019:4;32015:20;32011:1;32000:9;31996:17;31989:47;32053:78;32126:4;32117:6;32053:78;:::i;:::-;32045:86;;31825:313;;;;:::o;32144:419::-;32310:4;32348:2;32337:9;32333:18;32325:26;;32397:9;32391:4;32387:20;32383:1;32372:9;32368:17;32361:47;32425:131;32551:4;32425:131;:::i;:::-;32417:139;;32144:419;;;:::o;32569:::-;32735:4;32773:2;32762:9;32758:18;32750:26;;32822:9;32816:4;32812:20;32808:1;32797:9;32793:17;32786:47;32850:131;32976:4;32850:131;:::i;:::-;32842:139;;32569:419;;;:::o;32994:::-;33160:4;33198:2;33187:9;33183:18;33175:26;;33247:9;33241:4;33237:20;33233:1;33222:9;33218:17;33211:47;33275:131;33401:4;33275:131;:::i;:::-;33267:139;;32994:419;;;:::o;33419:::-;33585:4;33623:2;33612:9;33608:18;33600:26;;33672:9;33666:4;33662:20;33658:1;33647:9;33643:17;33636:47;33700:131;33826:4;33700:131;:::i;:::-;33692:139;;33419:419;;;:::o;33844:::-;34010:4;34048:2;34037:9;34033:18;34025:26;;34097:9;34091:4;34087:20;34083:1;34072:9;34068:17;34061:47;34125:131;34251:4;34125:131;:::i;:::-;34117:139;;33844:419;;;:::o;34269:::-;34435:4;34473:2;34462:9;34458:18;34450:26;;34522:9;34516:4;34512:20;34508:1;34497:9;34493:17;34486:47;34550:131;34676:4;34550:131;:::i;:::-;34542:139;;34269:419;;;:::o;34694:::-;34860:4;34898:2;34887:9;34883:18;34875:26;;34947:9;34941:4;34937:20;34933:1;34922:9;34918:17;34911:47;34975:131;35101:4;34975:131;:::i;:::-;34967:139;;34694:419;;;:::o;35119:::-;35285:4;35323:2;35312:9;35308:18;35300:26;;35372:9;35366:4;35362:20;35358:1;35347:9;35343:17;35336:47;35400:131;35526:4;35400:131;:::i;:::-;35392:139;;35119:419;;;:::o;35544:::-;35710:4;35748:2;35737:9;35733:18;35725:26;;35797:9;35791:4;35787:20;35783:1;35772:9;35768:17;35761:47;35825:131;35951:4;35825:131;:::i;:::-;35817:139;;35544:419;;;:::o;35969:::-;36135:4;36173:2;36162:9;36158:18;36150:26;;36222:9;36216:4;36212:20;36208:1;36197:9;36193:17;36186:47;36250:131;36376:4;36250:131;:::i;:::-;36242:139;;35969:419;;;:::o;36394:::-;36560:4;36598:2;36587:9;36583:18;36575:26;;36647:9;36641:4;36637:20;36633:1;36622:9;36618:17;36611:47;36675:131;36801:4;36675:131;:::i;:::-;36667:139;;36394:419;;;:::o;36819:::-;36985:4;37023:2;37012:9;37008:18;37000:26;;37072:9;37066:4;37062:20;37058:1;37047:9;37043:17;37036:47;37100:131;37226:4;37100:131;:::i;:::-;37092:139;;36819:419;;;:::o;37244:::-;37410:4;37448:2;37437:9;37433:18;37425:26;;37497:9;37491:4;37487:20;37483:1;37472:9;37468:17;37461:47;37525:131;37651:4;37525:131;:::i;:::-;37517:139;;37244:419;;;:::o;37669:::-;37835:4;37873:2;37862:9;37858:18;37850:26;;37922:9;37916:4;37912:20;37908:1;37897:9;37893:17;37886:47;37950:131;38076:4;37950:131;:::i;:::-;37942:139;;37669:419;;;:::o;38094:::-;38260:4;38298:2;38287:9;38283:18;38275:26;;38347:9;38341:4;38337:20;38333:1;38322:9;38318:17;38311:47;38375:131;38501:4;38375:131;:::i;:::-;38367:139;;38094:419;;;:::o;38519:::-;38685:4;38723:2;38712:9;38708:18;38700:26;;38772:9;38766:4;38762:20;38758:1;38747:9;38743:17;38736:47;38800:131;38926:4;38800:131;:::i;:::-;38792:139;;38519:419;;;:::o;38944:::-;39110:4;39148:2;39137:9;39133:18;39125:26;;39197:9;39191:4;39187:20;39183:1;39172:9;39168:17;39161:47;39225:131;39351:4;39225:131;:::i;:::-;39217:139;;38944:419;;;:::o;39369:::-;39535:4;39573:2;39562:9;39558:18;39550:26;;39622:9;39616:4;39612:20;39608:1;39597:9;39593:17;39586:47;39650:131;39776:4;39650:131;:::i;:::-;39642:139;;39369:419;;;:::o;39794:::-;39960:4;39998:2;39987:9;39983:18;39975:26;;40047:9;40041:4;40037:20;40033:1;40022:9;40018:17;40011:47;40075:131;40201:4;40075:131;:::i;:::-;40067:139;;39794:419;;;:::o;40219:::-;40385:4;40423:2;40412:9;40408:18;40400:26;;40472:9;40466:4;40462:20;40458:1;40447:9;40443:17;40436:47;40500:131;40626:4;40500:131;:::i;:::-;40492:139;;40219:419;;;:::o;40644:::-;40810:4;40848:2;40837:9;40833:18;40825:26;;40897:9;40891:4;40887:20;40883:1;40872:9;40868:17;40861:47;40925:131;41051:4;40925:131;:::i;:::-;40917:139;;40644:419;;;:::o;41069:::-;41235:4;41273:2;41262:9;41258:18;41250:26;;41322:9;41316:4;41312:20;41308:1;41297:9;41293:17;41286:47;41350:131;41476:4;41350:131;:::i;:::-;41342:139;;41069:419;;;:::o;41494:::-;41660:4;41698:2;41687:9;41683:18;41675:26;;41747:9;41741:4;41737:20;41733:1;41722:9;41718:17;41711:47;41775:131;41901:4;41775:131;:::i;:::-;41767:139;;41494:419;;;:::o;41919:::-;42085:4;42123:2;42112:9;42108:18;42100:26;;42172:9;42166:4;42162:20;42158:1;42147:9;42143:17;42136:47;42200:131;42326:4;42200:131;:::i;:::-;42192:139;;41919:419;;;:::o;42344:822::-;42577:4;42615:3;42604:9;42600:19;42592:27;;42629:69;42695:1;42684:9;42680:17;42671:6;42629:69;:::i;:::-;42708:72;42776:2;42765:9;42761:18;42752:6;42708:72;:::i;:::-;42827:9;42821:4;42817:20;42812:2;42801:9;42797:18;42790:48;42855:76;42926:4;42917:6;42855:76;:::i;:::-;42847:84;;42941:66;43003:2;42992:9;42988:18;42979:6;42941:66;:::i;:::-;43055:9;43049:4;43045:20;43039:3;43028:9;43024:19;43017:49;43083:76;43154:4;43145:6;43083:76;:::i;:::-;43075:84;;42344:822;;;;;;;;:::o;43172:739::-;43391:4;43429:3;43418:9;43414:19;43406:27;;43443:69;43509:1;43498:9;43494:17;43485:6;43443:69;:::i;:::-;43559:9;43553:4;43549:20;43544:2;43533:9;43529:18;43522:48;43587:76;43658:4;43649:6;43587:76;:::i;:::-;43579:84;;43673:70;43739:2;43728:9;43724:18;43715:6;43673:70;:::i;:::-;43790:9;43784:4;43780:20;43775:2;43764:9;43760:18;43753:48;43818:86;43899:4;43890:6;43882;43818:86;:::i;:::-;43810:94;;43172:739;;;;;;;;:::o;43917:719::-;44126:4;44164:3;44153:9;44149:19;44141:27;;44178:69;44244:1;44233:9;44229:17;44220:6;44178:69;:::i;:::-;44294:9;44288:4;44284:20;44279:2;44268:9;44264:18;44257:48;44322:76;44393:4;44384:6;44322:76;:::i;:::-;44314:84;;44408:70;44474:2;44463:9;44459:18;44450:6;44408:70;:::i;:::-;44525:9;44519:4;44515:20;44510:2;44499:9;44495:18;44488:48;44553:76;44624:4;44615:6;44553:76;:::i;:::-;44545:84;;43917:719;;;;;;;:::o;44642:1058::-;44940:4;44978:3;44967:9;44963:19;44955:27;;44992:69;45058:1;45047:9;45043:17;45034:6;44992:69;:::i;:::-;45108:9;45102:4;45098:20;45093:2;45082:9;45078:18;45071:48;45136:73;45204:4;45195:6;45136:73;:::i;:::-;45128:81;;45256:9;45250:4;45246:20;45241:2;45230:9;45226:18;45219:48;45284:76;45355:4;45346:6;45284:76;:::i;:::-;45276:84;;45370:88;45454:2;45443:9;45439:18;45430:6;45370:88;:::i;:::-;45468:73;45536:3;45525:9;45521:19;45512:6;45468:73;:::i;:::-;45589:9;45583:4;45579:20;45573:3;45562:9;45558:19;45551:49;45617:76;45688:4;45679:6;45617:76;:::i;:::-;45609:84;;44642:1058;;;;;;;;;:::o;45706:222::-;45799:4;45837:2;45826:9;45822:18;45814:26;;45850:71;45918:1;45907:9;45903:17;45894:6;45850:71;:::i;:::-;45706:222;;;;:::o;45934:332::-;46055:4;46093:2;46082:9;46078:18;46070:26;;46106:71;46174:1;46163:9;46159:17;46150:6;46106:71;:::i;:::-;46187:72;46255:2;46244:9;46240:18;46231:6;46187:72;:::i;:::-;45934:332;;;;;:::o;46272:129::-;46306:6;46333:20;;:::i;:::-;46323:30;;46362:33;46390:4;46382:6;46362:33;:::i;:::-;46272:129;;;:::o;46407:75::-;46440:6;46473:2;46467:9;46457:19;;46407:75;:::o;46488:307::-;46549:4;46639:18;46631:6;46628:30;46625:56;;;46661:18;;:::i;:::-;46625:56;46699:29;46721:6;46699:29;:::i;:::-;46691:37;;46783:4;46777;46773:15;46765:23;;46488:307;;;:::o;46801:140::-;46849:4;46872:3;46864:11;;46895:3;46892:1;46885:14;46929:4;46926:1;46916:18;46908:26;;46801:140;;;:::o;46947:98::-;46998:6;47032:5;47026:12;47016:22;;46947:98;;;:::o;47051:99::-;47103:6;47137:5;47131:12;47121:22;;47051:99;;;:::o;47156:168::-;47239:11;47273:6;47268:3;47261:19;47313:4;47308:3;47304:14;47289:29;;47156:168;;;;:::o;47330:147::-;47431:11;47468:3;47453:18;;47330:147;;;;:::o;47483:169::-;47567:11;47601:6;47596:3;47589:19;47641:4;47636:3;47632:14;47617:29;;47483:169;;;;:::o;47658:148::-;47760:11;47797:3;47782:18;;47658:148;;;;:::o;47812:305::-;47852:3;47871:20;47889:1;47871:20;:::i;:::-;47866:25;;47905:20;47923:1;47905:20;:::i;:::-;47900:25;;48059:1;47991:66;47987:74;47984:1;47981:81;47978:107;;;48065:18;;:::i;:::-;47978:107;48109:1;48106;48102:9;48095:16;;47812:305;;;;:::o;48123:185::-;48163:1;48180:20;48198:1;48180:20;:::i;:::-;48175:25;;48214:20;48232:1;48214:20;:::i;:::-;48209:25;;48253:1;48243:35;;48258:18;;:::i;:::-;48243:35;48300:1;48297;48293:9;48288:14;;48123:185;;;;:::o;48314:191::-;48354:4;48374:20;48392:1;48374:20;:::i;:::-;48369:25;;48408:20;48426:1;48408:20;:::i;:::-;48403:25;;48447:1;48444;48441:8;48438:34;;;48452:18;;:::i;:::-;48438:34;48497:1;48494;48490:9;48482:17;;48314:191;;;;:::o;48511:96::-;48548:7;48577:24;48595:5;48577:24;:::i;:::-;48566:35;;48511:96;;;:::o;48613:104::-;48658:7;48687:24;48705:5;48687:24;:::i;:::-;48676:35;;48613:104;;;:::o;48723:90::-;48757:7;48800:5;48793:13;48786:21;48775:32;;48723:90;;;:::o;48819:77::-;48856:7;48885:5;48874:16;;48819:77;;;:::o;48902:149::-;48938:7;48978:66;48971:5;48967:78;48956:89;;48902:149;;;:::o;49057:89::-;49093:7;49133:6;49126:5;49122:18;49111:29;;49057:89;;;:::o;49152:126::-;49189:7;49229:42;49222:5;49218:54;49207:65;;49152:126;;;:::o;49284:77::-;49321:7;49350:5;49339:16;;49284:77;;;:::o;49367:101::-;49403:7;49443:18;49436:5;49432:30;49421:41;;49367:101;;;:::o;49474:86::-;49509:7;49549:4;49542:5;49538:16;49527:27;;49474:86;;;:::o;49566:154::-;49650:6;49645:3;49640;49627:30;49712:1;49703:6;49698:3;49694:16;49687:27;49566:154;;;:::o;49726:307::-;49794:1;49804:113;49818:6;49815:1;49812:13;49804:113;;;49903:1;49898:3;49894:11;49888:18;49884:1;49879:3;49875:11;49868:39;49840:2;49837:1;49833:10;49828:15;;49804:113;;;49935:6;49932:1;49929:13;49926:101;;;50015:1;50006:6;50001:3;49997:16;49990:27;49926:101;49775:258;49726:307;;;:::o;50039:320::-;50083:6;50120:1;50114:4;50110:12;50100:22;;50167:1;50161:4;50157:12;50188:18;50178:81;;50244:4;50236:6;50232:17;50222:27;;50178:81;50306:2;50298:6;50295:14;50275:18;50272:38;50269:84;;;50325:18;;:::i;:::-;50269:84;50090:269;50039:320;;;:::o;50365:281::-;50448:27;50470:4;50448:27;:::i;:::-;50440:6;50436:40;50578:6;50566:10;50563:22;50542:18;50530:10;50527:34;50524:62;50521:88;;;50589:18;;:::i;:::-;50521:88;50629:10;50625:2;50618:22;50408:238;50365:281;;:::o;50652:233::-;50691:3;50714:24;50732:5;50714:24;:::i;:::-;50705:33;;50760:66;50753:5;50750:77;50747:103;;;50830:18;;:::i;:::-;50747:103;50877:1;50870:5;50866:13;50859:20;;50652:233;;;:::o;50891:94::-;50929:7;50958:21;50973:5;50958:21;:::i;:::-;50947:32;;50891:94;;;:::o;50991:79::-;51030:7;51059:5;51048:16;;50991:79;;;:::o;51076:176::-;51108:1;51125:20;51143:1;51125:20;:::i;:::-;51120:25;;51159:20;51177:1;51159:20;:::i;:::-;51154:25;;51198:1;51188:35;;51203:18;;:::i;:::-;51188:35;51244:1;51241;51237:9;51232:14;;51076:176;;;;:::o;51258:180::-;51306:77;51303:1;51296:88;51403:4;51400:1;51393:15;51427:4;51424:1;51417:15;51444:180;51492:77;51489:1;51482:88;51589:4;51586:1;51579:15;51613:4;51610:1;51603:15;51630:180;51678:77;51675:1;51668:88;51775:4;51772:1;51765:15;51799:4;51796:1;51789:15;51816:180;51864:77;51861:1;51854:88;51961:4;51958:1;51951:15;51985:4;51982:1;51975:15;52002:180;52050:77;52047:1;52040:88;52147:4;52144:1;52137:15;52171:4;52168:1;52161:15;52188:117;52297:1;52294;52287:12;52311:117;52420:1;52417;52410:12;52434:117;52543:1;52540;52533:12;52557:117;52666:1;52663;52656:12;52680:117;52789:1;52786;52779:12;52803:117;52912:1;52909;52902:12;52926:102;52967:6;53018:2;53014:7;53009:2;53002:5;52998:14;52994:28;52984:38;;52926:102;;;:::o;53034:96::-;53068:8;53117:5;53112:3;53108:15;53087:36;;53034:96;;;:::o;53136:291::-;53276:34;53272:1;53264:6;53260:14;53253:58;53345:34;53340:2;53332:6;53328:15;53321:59;53414:5;53409:2;53401:6;53397:15;53390:30;53136:291;:::o;53433:237::-;53573:34;53569:1;53561:6;53557:14;53550:58;53642:20;53637:2;53629:6;53625:15;53618:45;53433:237;:::o;53676:225::-;53816:34;53812:1;53804:6;53800:14;53793:58;53885:8;53880:2;53872:6;53868:15;53861:33;53676:225;:::o;53907:223::-;54047:34;54043:1;54035:6;54031:14;54024:58;54116:6;54111:2;54103:6;54099:15;54092:31;53907:223;:::o;54136:175::-;54276:27;54272:1;54264:6;54260:14;54253:51;54136:175;:::o;54317:233::-;54457:34;54453:1;54445:6;54441:14;54434:58;54526:16;54521:2;54513:6;54509:15;54502:41;54317:233;:::o;54556:176::-;54696:28;54692:1;54684:6;54680:14;54673:52;54556:176;:::o;54738:221::-;54878:34;54874:1;54866:6;54862:14;54855:58;54947:4;54942:2;54934:6;54930:15;54923:29;54738:221;:::o;54965:169::-;55105:21;55101:1;55093:6;55089:14;55082:45;54965:169;:::o;55140:231::-;55280:34;55276:1;55268:6;55264:14;55257:58;55349:14;55344:2;55336:6;55332:15;55325:39;55140:231;:::o;55377:176::-;55517:28;55513:1;55505:6;55501:14;55494:52;55377:176;:::o;55559:243::-;55699:34;55695:1;55687:6;55683:14;55676:58;55768:26;55763:2;55755:6;55751:15;55744:51;55559:243;:::o;55808:229::-;55948:34;55944:1;55936:6;55932:14;55925:58;56017:12;56012:2;56004:6;56000:15;55993:37;55808:229;:::o;56043:228::-;56183:34;56179:1;56171:6;56167:14;56160:58;56252:11;56247:2;56239:6;56235:15;56228:36;56043:228;:::o;56277:230::-;56417:34;56413:1;56405:6;56401:14;56394:58;56486:13;56481:2;56473:6;56469:15;56462:38;56277:230;:::o;56513:182::-;56653:34;56649:1;56641:6;56637:14;56630:58;56513:182;:::o;56701:231::-;56841:34;56837:1;56829:6;56825:14;56818:58;56910:14;56905:2;56897:6;56893:15;56886:39;56701:231;:::o;56938:182::-;57078:34;57074:1;57066:6;57062:14;57055:58;56938:182;:::o;57126:239::-;57266:34;57262:1;57254:6;57250:14;57243:58;57335:22;57330:2;57322:6;57318:15;57311:47;57126:239;:::o;57371:228::-;57511:34;57507:1;57499:6;57495:14;57488:58;57580:11;57575:2;57567:6;57563:15;57556:36;57371:228;:::o;57605:174::-;57745:26;57741:1;57733:6;57729:14;57722:50;57605:174;:::o;57785:220::-;57925:34;57921:1;57913:6;57909:14;57902:58;57994:3;57989:2;57981:6;57977:15;57970:28;57785:220;:::o;58011:114::-;;:::o;58131:236::-;58271:34;58267:1;58259:6;58255:14;58248:58;58340:19;58335:2;58327:6;58323:15;58316:44;58131:236;:::o;58373:225::-;58513:34;58509:1;58501:6;58497:14;58490:58;58582:8;58577:2;58569:6;58565:15;58558:33;58373:225;:::o;58604:228::-;58744:34;58740:1;58732:6;58728:14;58721:58;58817:3;58812:2;58804:6;58800:15;58793:28;58604:228;:::o;58842:130::-;58919:24;58937:5;58919:24;:::i;:::-;58912:5;58909:35;58899:63;;58958:1;58955;58948:12;58899:63;58842:130;:::o;58982:146::-;59067:32;59093:5;59067:32;:::i;:::-;59060:5;59057:43;59047:71;;59114:1;59111;59104:12;59047:71;58982:146;:::o;59138:124::-;59212:21;59227:5;59212:21;:::i;:::-;59205:5;59202:32;59192:60;;59248:1;59245;59238:12;59192:60;59138:124;:::o;59272:128::-;59348:23;59365:5;59348:23;:::i;:::-;59341:5;59338:34;59328:62;;59386:1;59383;59376:12;59328:62;59272:128;:::o;59410:::-;59486:23;59503:5;59486:23;:::i;:::-;59479:5;59476:34;59466:62;;59524:1;59521;59514:12;59466:62;59410:128;:::o;59548:130::-;59625:24;59643:5;59625:24;:::i;:::-;59618:5;59615:35;59605:63;;59664:1;59661;59654:12;59605:63;59548:130;:::o;59688:128::-;59764:23;59781:5;59764:23;:::i;:::-;59757:5;59754:34;59744:62;;59802:1;59799;59792:12;59744:62;59688:128;:::o;59826:126::-;59901:22;59917:5;59901:22;:::i;:::-;59894:5;59891:33;59881:61;;59938:1;59935;59928:12;59881:61;59826:126;:::o

Swarm Source

ipfs://e1355f1b2de3c16a9826c66408ffd2377a4af97ed792947650de972b1233e156
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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