ETH Price: $3,338.14 (+4.38%)

Token

Interport Token (ITP)

Overview

Max Total Supply

1,767.1049749 ITP

Holders

555

Total Transfers

-

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
InterportTokenOFT

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU AGPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at zkevm.polygonscan.com on 2023-09-23
*/

// Sources flattened with hardhat v2.12.7 https://hardhat.org

// SPDX-License-Identifier: AGPL-3.0-only

// File @layerzerolabs/solidity-examples/contracts/interfaces/[email protected]

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, uint _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 @layerzerolabs/solidity-examples/contracts/interfaces/[email protected]

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, uint _gasLimit, bytes calldata _payload) external;

    // @notice get the inboundNonce of a lzApp 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 (uint nativeFee, uint 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, uint _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 @layerzerolabs/solidity-examples/contracts/interfaces/[email protected]

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 @layerzerolabs/solidity-examples/contracts/util/[email protected]

/*
 * @title Solidity Bytes Arrays Utils
 * @author Gon├ºalo S├í <[email protected]>
 *
 * @dev Bytes tightly packed arrays utility library for ethereum contracts written in Solidity.
 *      The library lets you concatenate, slice and type cast bytes arrays both in memory and storage.
 */
pragma solidity >=0.8.0 <0.9.0;


library BytesLib {
    function concat(
        bytes memory _preBytes,
        bytes memory _postBytes
    )
    internal
    pure
    returns (bytes memory)
    {
        bytes memory tempBytes;

        assembly {
        // Get a location of some free memory and store it in tempBytes as
        // Solidity does for memory variables.
            tempBytes := mload(0x40)

        // Store the length of the first bytes array at the beginning of
        // the memory for tempBytes.
            let length := mload(_preBytes)
            mstore(tempBytes, length)

        // Maintain a memory counter for the current write location in the
        // temp bytes array by adding the 32 bytes for the array length to
        // the starting location.
            let mc := add(tempBytes, 0x20)
        // Stop copying when the memory counter reaches the length of the
        // first bytes array.
            let end := add(mc, length)

            for {
            // Initialize a copy counter to the start of the _preBytes data,
            // 32 bytes into its memory.
                let cc := add(_preBytes, 0x20)
            } lt(mc, end) {
            // Increase both counters by 32 bytes each iteration.
                mc := add(mc, 0x20)
                cc := add(cc, 0x20)
            } {
            // Write the _preBytes data into the tempBytes memory 32 bytes
            // at a time.
                mstore(mc, mload(cc))
            }

        // Add the length of _postBytes to the current length of tempBytes
        // and store it as the new length in the first 32 bytes of the
        // tempBytes memory.
            length := mload(_postBytes)
            mstore(tempBytes, add(length, mload(tempBytes)))

        // Move the memory counter back from a multiple of 0x20 to the
        // actual end of the _preBytes data.
            mc := end
        // Stop copying when the memory counter reaches the new combined
        // length of the arrays.
            end := add(mc, length)

            for {
                let cc := add(_postBytes, 0x20)
            } lt(mc, end) {
                mc := add(mc, 0x20)
                cc := add(cc, 0x20)
            } {
                mstore(mc, mload(cc))
            }

        // Update the free-memory pointer by padding our last write location
        // to 32 bytes: add 31 bytes to the end of tempBytes to move to the
        // next 32 byte block, then round down to the nearest multiple of
        // 32. If the sum of the length of the two arrays is zero then add
        // one before rounding down to leave a blank 32 bytes (the length block with 0).
            mstore(0x40, and(
            add(add(end, iszero(add(length, mload(_preBytes)))), 31),
            not(31) // Round down to the nearest 32 bytes.
            ))
        }

        return tempBytes;
    }

    function concatStorage(bytes storage _preBytes, bytes memory _postBytes) internal {
        assembly {
        // Read the first 32 bytes of _preBytes storage, which is the length
        // of the array. (We don't need to use the offset into the slot
        // because arrays use the entire slot.)
            let fslot := sload(_preBytes.slot)
        // Arrays of 31 bytes or less have an even value in their slot,
        // while longer arrays have an odd value. The actual length is
        // the slot divided by two for odd values, and the lowest order
        // byte divided by two for even values.
        // If the slot is even, bitwise and the slot with 255 and divide by
        // two to get the length. If the slot is odd, bitwise and the slot
        // with -1 and divide by two.
            let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2)
            let mlength := mload(_postBytes)
            let newlength := add(slength, mlength)
        // slength can contain both the length and contents of the array
        // if length < 32 bytes so let's prepare for that
        // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage
            switch add(lt(slength, 32), lt(newlength, 32))
            case 2 {
            // Since the new array still fits in the slot, we just need to
            // update the contents of the slot.
            // uint256(bytes_storage) = uint256(bytes_storage) + uint256(bytes_memory) + new_length
                sstore(
                _preBytes.slot,
                // all the modifications to the slot are inside this
                // next block
                add(
                // we can just add to the slot contents because the
                // bytes we want to change are the LSBs
                fslot,
                add(
                mul(
                div(
                // load the bytes from memory
                mload(add(_postBytes, 0x20)),
                // zero all bytes to the right
                exp(0x100, sub(32, mlength))
                ),
                // and now shift left the number of bytes to
                // leave space for the length in the slot
                exp(0x100, sub(32, newlength))
                ),
                // increase length by the double of the memory
                // bytes length
                mul(mlength, 2)
                )
                )
                )
            }
            case 1 {
            // The stored value fits in the slot, but the combined value
            // will exceed it.
            // get the keccak hash to get the contents of the array
                mstore(0x0, _preBytes.slot)
                let sc := add(keccak256(0x0, 0x20), div(slength, 32))

            // save new length
                sstore(_preBytes.slot, add(mul(newlength, 2), 1))

            // The contents of the _postBytes array start 32 bytes into
            // the structure. Our first read should obtain the `submod`
            // bytes that can fit into the unused space in the last word
            // of the stored array. To get this, we read 32 bytes starting
            // from `submod`, so the data we read overlaps with the array
            // contents by `submod` bytes. Masking the lowest-order
            // `submod` bytes allows us to add that value directly to the
            // stored value.

                let submod := sub(32, slength)
                let mc := add(_postBytes, submod)
                let end := add(_postBytes, mlength)
                let mask := sub(exp(0x100, submod), 1)

                sstore(
                sc,
                add(
                and(
                fslot,
                0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00
                ),
                and(mload(mc), mask)
                )
                )

                for {
                    mc := add(mc, 0x20)
                    sc := add(sc, 1)
                } lt(mc, end) {
                    sc := add(sc, 1)
                    mc := add(mc, 0x20)
                } {
                    sstore(sc, mload(mc))
                }

                mask := exp(0x100, sub(mc, end))

                sstore(sc, mul(div(mload(mc), mask), mask))
            }
            default {
            // get the keccak hash to get the contents of the array
                mstore(0x0, _preBytes.slot)
            // Start copying to the last used word of the stored array.
                let sc := add(keccak256(0x0, 0x20), div(slength, 32))

            // save new length
                sstore(_preBytes.slot, add(mul(newlength, 2), 1))

            // Copy over the first `submod` bytes of the new data as in
            // case 1 above.
                let slengthmod := mod(slength, 32)
                let mlengthmod := mod(mlength, 32)
                let submod := sub(32, slengthmod)
                let mc := add(_postBytes, submod)
                let end := add(_postBytes, mlength)
                let mask := sub(exp(0x100, submod), 1)

                sstore(sc, add(sload(sc), and(mload(mc), mask)))

                for {
                    sc := add(sc, 1)
                    mc := add(mc, 0x20)
                } lt(mc, end) {
                    sc := add(sc, 1)
                    mc := add(mc, 0x20)
                } {
                    sstore(sc, mload(mc))
                }

                mask := exp(0x100, sub(mc, end))

                sstore(sc, mul(div(mload(mc), mask), mask))
            }
        }
    }

    function slice(
        bytes memory _bytes,
        uint256 _start,
        uint256 _length
    )
    internal
    pure
    returns (bytes memory)
    {
        require(_length + 31 >= _length, "slice_overflow");
        require(_bytes.length >= _start + _length, "slice_outOfBounds");

        bytes memory tempBytes;

        assembly {
            switch iszero(_length)
            case 0 {
            // Get a location of some free memory and store it in tempBytes as
            // Solidity does for memory variables.
                tempBytes := mload(0x40)

            // The first word of the slice result is potentially a partial
            // word read from the original array. To read it, we calculate
            // the length of that partial word and start copying that many
            // bytes into the array. The first word we copy will start with
            // data we don't care about, but the last `lengthmod` bytes will
            // land at the beginning of the contents of the new array. When
            // we're done copying, we overwrite the full first word with
            // the actual length of the slice.
                let lengthmod := and(_length, 31)

            // The multiplication in the next line is necessary
            // because when slicing multiples of 32 bytes (lengthmod == 0)
            // the following copy loop was copying the origin's length
            // and then ending prematurely not copying everything it should.
                let mc := add(add(tempBytes, lengthmod), mul(0x20, iszero(lengthmod)))
                let end := add(mc, _length)

                for {
                // The multiplication in the next line has the same exact purpose
                // as the one above.
                    let cc := add(add(add(_bytes, lengthmod), mul(0x20, iszero(lengthmod))), _start)
                } lt(mc, end) {
                    mc := add(mc, 0x20)
                    cc := add(cc, 0x20)
                } {
                    mstore(mc, mload(cc))
                }

                mstore(tempBytes, _length)

            //update free-memory pointer
            //allocating the array padded to 32 bytes like the compiler does now
                mstore(0x40, and(add(mc, 31), not(31)))
            }
            //if we want a zero-length slice let's just return a zero-length array
            default {
                tempBytes := mload(0x40)
            //zero out the 32 bytes slice we are about to return
            //we need to do it because Solidity does not garbage collect
                mstore(tempBytes, 0)

                mstore(0x40, add(tempBytes, 0x20))
            }
        }

        return tempBytes;
    }

    function toAddress(bytes memory _bytes, uint256 _start) internal pure returns (address) {
        require(_bytes.length >= _start + 20, "toAddress_outOfBounds");
        address tempAddress;

        assembly {
            tempAddress := div(mload(add(add(_bytes, 0x20), _start)), 0x1000000000000000000000000)
        }

        return tempAddress;
    }

    function toUint8(bytes memory _bytes, uint256 _start) internal pure returns (uint8) {
        require(_bytes.length >= _start + 1 , "toUint8_outOfBounds");
        uint8 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0x1), _start))
        }

        return tempUint;
    }

    function toUint16(bytes memory _bytes, uint256 _start) internal pure returns (uint16) {
        require(_bytes.length >= _start + 2, "toUint16_outOfBounds");
        uint16 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0x2), _start))
        }

        return tempUint;
    }

    function toUint32(bytes memory _bytes, uint256 _start) internal pure returns (uint32) {
        require(_bytes.length >= _start + 4, "toUint32_outOfBounds");
        uint32 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0x4), _start))
        }

        return tempUint;
    }

    function toUint64(bytes memory _bytes, uint256 _start) internal pure returns (uint64) {
        require(_bytes.length >= _start + 8, "toUint64_outOfBounds");
        uint64 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0x8), _start))
        }

        return tempUint;
    }

    function toUint96(bytes memory _bytes, uint256 _start) internal pure returns (uint96) {
        require(_bytes.length >= _start + 12, "toUint96_outOfBounds");
        uint96 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0xc), _start))
        }

        return tempUint;
    }

    function toUint128(bytes memory _bytes, uint256 _start) internal pure returns (uint128) {
        require(_bytes.length >= _start + 16, "toUint128_outOfBounds");
        uint128 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0x10), _start))
        }

        return tempUint;
    }

    function toUint256(bytes memory _bytes, uint256 _start) internal pure returns (uint256) {
        require(_bytes.length >= _start + 32, "toUint256_outOfBounds");
        uint256 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0x20), _start))
        }

        return tempUint;
    }

    function toBytes32(bytes memory _bytes, uint256 _start) internal pure returns (bytes32) {
        require(_bytes.length >= _start + 32, "toBytes32_outOfBounds");
        bytes32 tempBytes32;

        assembly {
            tempBytes32 := mload(add(add(_bytes, 0x20), _start))
        }

        return tempBytes32;
    }

    function equal(bytes memory _preBytes, bytes memory _postBytes) internal pure returns (bool) {
        bool success = true;

        assembly {
            let length := mload(_preBytes)

        // if lengths don't match the arrays are not equal
            switch eq(length, mload(_postBytes))
            case 1 {
            // cb is a circuit breaker in the for loop since there's
            //  no said feature for inline assembly loops
            // cb = 1 - don't breaker
            // cb = 0 - break
                let cb := 1

                let mc := add(_preBytes, 0x20)
                let end := add(mc, length)

                for {
                    let cc := add(_postBytes, 0x20)
                // the next line is the loop condition:
                // while(uint256(mc < end) + cb == 2)
                } eq(add(lt(mc, end), cb), 2) {
                    mc := add(mc, 0x20)
                    cc := add(cc, 0x20)
                } {
                // if any of these checks fails then arrays are not equal
                    if iszero(eq(mload(mc), mload(cc))) {
                    // unsuccess:
                        success := 0
                        cb := 0
                    }
                }
            }
            default {
            // unsuccess:
                success := 0
            }
        }

        return success;
    }

    function equalStorage(
        bytes storage _preBytes,
        bytes memory _postBytes
    )
    internal
    view
    returns (bool)
    {
        bool success = true;

        assembly {
        // we know _preBytes_offset is 0
            let fslot := sload(_preBytes.slot)
        // Decode the length of the stored array like in concatStorage().
            let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2)
            let mlength := mload(_postBytes)

        // if lengths don't match the arrays are not equal
            switch eq(slength, mlength)
            case 1 {
            // slength can contain both the length and contents of the array
            // if length < 32 bytes so let's prepare for that
            // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage
                if iszero(iszero(slength)) {
                    switch lt(slength, 32)
                    case 1 {
                    // blank the last byte which is the length
                        fslot := mul(div(fslot, 0x100), 0x100)

                        if iszero(eq(fslot, mload(add(_postBytes, 0x20)))) {
                        // unsuccess:
                            success := 0
                        }
                    }
                    default {
                    // cb is a circuit breaker in the for loop since there's
                    //  no said feature for inline assembly loops
                    // cb = 1 - don't breaker
                    // cb = 0 - break
                        let cb := 1

                    // get the keccak hash to get the contents of the array
                        mstore(0x0, _preBytes.slot)
                        let sc := keccak256(0x0, 0x20)

                        let mc := add(_postBytes, 0x20)
                        let end := add(mc, mlength)

                    // the next line is the loop condition:
                    // while(uint256(mc < end) + cb == 2)
                        for {} eq(add(lt(mc, end), cb), 2) {
                            sc := add(sc, 1)
                            mc := add(mc, 0x20)
                        } {
                            if iszero(eq(sload(sc), mload(mc))) {
                            // unsuccess:
                                success := 0
                                cb := 0
                            }
                        }
                    }
                }
            }
            default {
            // unsuccess:
                success := 0
            }
        }

        return success;
    }
}


// File @openzeppelin/contracts/utils/[email protected]

// 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/[email protected]

// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 @layerzerolabs/solidity-examples/contracts/lzApp/[email protected]

pragma solidity ^0.8.0;





/*
 * a generic LzReceiver implementation
 */
abstract contract LzApp is Ownable, ILayerZeroReceiver, ILayerZeroUserApplicationConfig {
    using BytesLib for bytes;

    // ua can not send payload larger than this by default, but it can be changed by the ua owner
    uint constant public DEFAULT_PAYLOAD_SIZE_LIMIT = 10000;

    ILayerZeroEndpoint public immutable lzEndpoint;
    mapping(uint16 => bytes) public trustedRemoteLookup;
    mapping(uint16 => mapping(uint16 => uint)) public minDstGasLookup;
    mapping(uint16 => uint) public payloadSizeLimitLookup;
    address public precrime;

    event SetPrecrime(address precrime);
    event SetTrustedRemote(uint16 _remoteChainId, bytes _path);
    event SetTrustedRemoteAddress(uint16 _remoteChainId, bytes _remoteAddress);
    event SetMinDstGas(uint16 _dstChainId, uint16 _type, uint _minDstGas);

    constructor(address _endpoint) {
        lzEndpoint = ILayerZeroEndpoint(_endpoint);
    }

    function lzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) public virtual override {
        // lzReceive must be called by the endpoint for security
        require(_msgSender() == address(lzEndpoint), "LzApp: invalid endpoint caller");

        bytes memory trustedRemote = trustedRemoteLookup[_srcChainId];
        // if will still block the message pathway from (srcChainId, srcAddress). should not receive message from untrusted remote.
        require(_srcAddress.length == trustedRemote.length && trustedRemote.length > 0 && keccak256(_srcAddress) == keccak256(trustedRemote), "LzApp: invalid source sending contract");

        _blockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload);
    }

    // abstract function - the default behaviour of LayerZero is blocking. See: NonblockingLzApp if you dont need to enforce ordered messaging
    function _blockingLzReceive(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 _adapterParams, uint _nativeFee) internal virtual {
        bytes memory trustedRemote = trustedRemoteLookup[_dstChainId];
        require(trustedRemote.length != 0, "LzApp: destination chain is not a trusted source");
        _checkPayloadSize(_dstChainId, _payload.length);
        lzEndpoint.send{value: _nativeFee}(_dstChainId, trustedRemote, _payload, _refundAddress, _zroPaymentAddress, _adapterParams);
    }

    function _checkGasLimit(uint16 _dstChainId, uint16 _type, bytes memory _adapterParams, uint _extraGas) internal view virtual {
        uint providedGasLimit = _getGasLimit(_adapterParams);
        uint minGasLimit = minDstGasLookup[_dstChainId][_type] + _extraGas;
        require(minGasLimit > 0, "LzApp: minGasLimit not set");
        require(providedGasLimit >= minGasLimit, "LzApp: gas limit is too low");
    }

    function _getGasLimit(bytes memory _adapterParams) internal pure virtual returns (uint gasLimit) {
        require(_adapterParams.length >= 34, "LzApp: invalid adapterParams");
        assembly {
            gasLimit := mload(add(_adapterParams, 34))
        }
    }

    function _checkPayloadSize(uint16 _dstChainId, uint _payloadSize) internal view virtual {
        uint payloadSizeLimit = payloadSizeLimitLookup[_dstChainId];
        if (payloadSizeLimit == 0) { // use default if not set
            payloadSizeLimit = DEFAULT_PAYLOAD_SIZE_LIMIT;
        }
        require(_payloadSize <= payloadSizeLimit, "LzApp: payload size is too large");
    }

    //---------------------------UserApplication config----------------------------------------
    function getConfig(uint16 _version, uint16 _chainId, address, uint _configType) external view returns (bytes memory) {
        return lzEndpoint.getConfig(_version, _chainId, address(this), _configType);
    }

    // generic config for LayerZero user Application
    function setConfig(uint16 _version, uint16 _chainId, uint _configType, bytes calldata _config) external override onlyOwner {
        lzEndpoint.setConfig(_version, _chainId, _configType, _config);
    }

    function setSendVersion(uint16 _version) external override onlyOwner {
        lzEndpoint.setSendVersion(_version);
    }

    function setReceiveVersion(uint16 _version) external override onlyOwner {
        lzEndpoint.setReceiveVersion(_version);
    }

    function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external override onlyOwner {
        lzEndpoint.forceResumeReceive(_srcChainId, _srcAddress);
    }

    // _path = abi.encodePacked(remoteAddress, localAddress)
    // this function set the trusted path for the cross-chain communication
    function setTrustedRemote(uint16 _remoteChainId, bytes calldata _path) external onlyOwner {
        trustedRemoteLookup[_remoteChainId] = _path;
        emit SetTrustedRemote(_remoteChainId, _path);
    }

    function setTrustedRemoteAddress(uint16 _remoteChainId, bytes calldata _remoteAddress) external onlyOwner {
        trustedRemoteLookup[_remoteChainId] = abi.encodePacked(_remoteAddress, address(this));
        emit SetTrustedRemoteAddress(_remoteChainId, _remoteAddress);
    }

    function getTrustedRemoteAddress(uint16 _remoteChainId) external view returns (bytes memory) {
        bytes memory path = trustedRemoteLookup[_remoteChainId];
        require(path.length != 0, "LzApp: no trusted path record");
        return path.slice(0, path.length - 20); // the last 20 bytes should be address(this)
    }

    function setPrecrime(address _precrime) external onlyOwner {
        precrime = _precrime;
        emit SetPrecrime(_precrime);
    }

    function setMinDstGas(uint16 _dstChainId, uint16 _packetType, uint _minGas) external onlyOwner {
        require(_minGas > 0, "LzApp: invalid minGas");
        minDstGasLookup[_dstChainId][_packetType] = _minGas;
        emit SetMinDstGas(_dstChainId, _packetType, _minGas);
    }

    // if the size is 0, it means default size limit
    function setPayloadSizeLimit(uint16 _dstChainId, uint _size) external onlyOwner {
        payloadSizeLimitLookup[_dstChainId] = _size;
    }

    //--------------------------- VIEW FUNCTION ----------------------------------------
    function isTrustedRemote(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool) {
        bytes memory trustedSource = trustedRemoteLookup[_srcChainId];
        return keccak256(trustedSource) == keccak256(_srcAddress);
    }
}


// File @layerzerolabs/solidity-examples/contracts/util/[email protected]

pragma solidity >=0.7.6;

library ExcessivelySafeCall {
    uint256 constant LOW_28_MASK =
    0x00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff;

    /// @notice Use when you _really_ really _really_ don't trust the called
    /// contract. This prevents the called contract from causing reversion of
    /// the caller in as many ways as we can.
    /// @dev The main difference between this and a solidity low-level call is
    /// that we limit the number of bytes that the callee can cause to be
    /// copied to caller memory. This prevents stupid things like malicious
    /// contracts returning 10,000,000 bytes causing a local OOG when copying
    /// to memory.
    /// @param _target The address to call
    /// @param _gas The amount of gas to forward to the remote contract
    /// @param _maxCopy The maximum number of bytes of returndata to copy
    /// to memory.
    /// @param _calldata The data to send to the remote contract
    /// @return success and returndata, as `.call()`. Returndata is capped to
    /// `_maxCopy` bytes.
    function excessivelySafeCall(
        address _target,
        uint256 _gas,
        uint16 _maxCopy,
        bytes memory _calldata
    ) internal returns (bool, bytes memory) {
        // set up for assembly call
        uint256 _toCopy;
        bool _success;
        bytes memory _returnData = new bytes(_maxCopy);
        // dispatch message to recipient
        // by assembly calling "handle" function
        // we call via assembly to avoid memcopying a very large returndata
        // returned by a malicious contract
        assembly {
            _success := call(
            _gas, // gas
            _target, // recipient
            0, // ether value
            add(_calldata, 0x20), // inloc
            mload(_calldata), // inlen
            0, // outloc
            0 // outlen
            )
        // limit our copy to 256 bytes
            _toCopy := returndatasize()
            if gt(_toCopy, _maxCopy) {
                _toCopy := _maxCopy
            }
        // Store the length of the copied bytes
            mstore(_returnData, _toCopy)
        // copy the bytes from returndata[0:_toCopy]
            returndatacopy(add(_returnData, 0x20), 0, _toCopy)
        }
        return (_success, _returnData);
    }

    /// @notice Use when you _really_ really _really_ don't trust the called
    /// contract. This prevents the called contract from causing reversion of
    /// the caller in as many ways as we can.
    /// @dev The main difference between this and a solidity low-level call is
    /// that we limit the number of bytes that the callee can cause to be
    /// copied to caller memory. This prevents stupid things like malicious
    /// contracts returning 10,000,000 bytes causing a local OOG when copying
    /// to memory.
    /// @param _target The address to call
    /// @param _gas The amount of gas to forward to the remote contract
    /// @param _maxCopy The maximum number of bytes of returndata to copy
    /// to memory.
    /// @param _calldata The data to send to the remote contract
    /// @return success and returndata, as `.call()`. Returndata is capped to
    /// `_maxCopy` bytes.
    function excessivelySafeStaticCall(
        address _target,
        uint256 _gas,
        uint16 _maxCopy,
        bytes memory _calldata
    ) internal view returns (bool, bytes memory) {
        // set up for assembly call
        uint256 _toCopy;
        bool _success;
        bytes memory _returnData = new bytes(_maxCopy);
        // dispatch message to recipient
        // by assembly calling "handle" function
        // we call via assembly to avoid memcopying a very large returndata
        // returned by a malicious contract
        assembly {
            _success := staticcall(
            _gas, // gas
            _target, // recipient
            add(_calldata, 0x20), // inloc
            mload(_calldata), // inlen
            0, // outloc
            0 // outlen
            )
        // limit our copy to 256 bytes
            _toCopy := returndatasize()
            if gt(_toCopy, _maxCopy) {
                _toCopy := _maxCopy
            }
        // Store the length of the copied bytes
            mstore(_returnData, _toCopy)
        // copy the bytes from returndata[0:_toCopy]
            returndatacopy(add(_returnData, 0x20), 0, _toCopy)
        }
        return (_success, _returnData);
    }

    /**
     * @notice Swaps function selectors in encoded contract calls
     * @dev Allows reuse of encoded calldata for functions with identical
     * argument types but different names. It simply swaps out the first 4 bytes
     * for the new selector. This function modifies memory in place, and should
     * only be used with caution.
     * @param _newSelector The new 4-byte selector
     * @param _buf The encoded contract args
     */
    function swapSelector(bytes4 _newSelector, bytes memory _buf)
    internal
    pure
    {
        require(_buf.length >= 4);
        uint256 _mask = LOW_28_MASK;
        assembly {
        // load the first word of
            let _word := mload(add(_buf, 0x20))
        // mask out the top 4 bytes
        // /x
            _word := and(_word, _mask)
            _word := or(_newSelector, _word)
            mstore(add(_buf, 0x20), _word)
        }
    }
}


// File @layerzerolabs/solidity-examples/contracts/lzApp/[email protected]

pragma solidity ^0.8.0;


/*
 * the default LayerZero messaging behaviour is blocking, i.e. any failed message will block the channel
 * this abstract class try-catch all fail messages and store locally for future retry. hence, non-blocking
 * NOTE: if the srcAddress is not configured properly, it will still block the message pathway from (srcChainId, srcAddress)
 */
abstract contract NonblockingLzApp is LzApp {
    using ExcessivelySafeCall for address;

    constructor(address _endpoint) LzApp(_endpoint) {}

    mapping(uint16 => mapping(bytes => mapping(uint64 => bytes32))) public failedMessages;

    event MessageFailed(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes _payload, bytes _reason);
    event RetryMessageSuccess(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes32 _payloadHash);

    // overriding the virtual function in LzReceiver
    function _blockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual override {
        (bool success, bytes memory reason) = address(this).excessivelySafeCall(gasleft(), 150, abi.encodeWithSelector(this.nonblockingLzReceive.selector, _srcChainId, _srcAddress, _nonce, _payload));
        // try-catch all errors/exceptions
        if (!success) {
            _storeFailedMessage(_srcChainId, _srcAddress, _nonce, _payload, reason);
        }
    }

    function _storeFailedMessage(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload, bytes memory _reason) internal virtual {
        failedMessages[_srcChainId][_srcAddress][_nonce] = keccak256(_payload);
        emit MessageFailed(_srcChainId, _srcAddress, _nonce, _payload, _reason);
    }

    function nonblockingLzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) public virtual {
        // only internal transaction
        require(_msgSender() == address(this), "NonblockingLzApp: caller must be LzApp");
        _nonblockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload);
    }

    //@notice override this function
    function _nonblockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual;

    function retryMessage(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) public payable virtual {
        // assert there is message to retry
        bytes32 payloadHash = failedMessages[_srcChainId][_srcAddress][_nonce];
        require(payloadHash != bytes32(0), "NonblockingLzApp: no stored message");
        require(keccak256(_payload) == payloadHash, "NonblockingLzApp: invalid payload");
        // clear the stored message
        failedMessages[_srcChainId][_srcAddress][_nonce] = bytes32(0);
        // execute the message. revert if it fails again
        _nonblockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload);
        emit RetryMessageSuccess(_srcChainId, _srcAddress, _nonce, payloadHash);
    }
}


// File @openzeppelin/contracts/utils/introspection/[email protected]

// 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 @layerzerolabs/solidity-examples/contracts/token/oft/v2/[email protected]

pragma solidity >=0.5.0;

/**
 * @dev Interface of the IOFT core standard
 */
interface ICommonOFT is IERC165 {

    struct LzCallParams {
        address payable refundAddress;
        address zroPaymentAddress;
        bytes adapterParams;
    }

    /**
     * @dev estimate send token `_tokenId` to (`_dstChainId`, `_toAddress`)
     * _dstChainId - L0 defined chain id to send tokens too
     * _toAddress - dynamic bytes array which contains the address to whom you are sending tokens to on the dstChain
     * _amount - amount of the tokens to transfer
     * _useZro - indicates to use zro to pay L0 fees
     * _adapterParam - flexible bytes array to indicate messaging adapter services in L0
     */
    function estimateSendFee(uint16 _dstChainId, bytes32 _toAddress, uint _amount, bool _useZro, bytes calldata _adapterParams) external view returns (uint nativeFee, uint zroFee);

    function estimateSendAndCallFee(uint16 _dstChainId, bytes32 _toAddress, uint _amount, bytes calldata _payload, uint64 _dstGasForCall, bool _useZro, bytes calldata _adapterParams) external view returns (uint nativeFee, uint zroFee);

    /**
     * @dev returns the circulating amount of tokens on current chain
     */
    function circulatingSupply() external view returns (uint);

    /**
     * @dev returns the address of the ERC20 token
     */
    function token() external view returns (address);
}


// File @layerzerolabs/solidity-examples/contracts/token/oft/v2/[email protected]

pragma solidity >=0.5.0;

/**
 * @dev Interface of the IOFT core standard
 */
interface IOFTV2 is ICommonOFT {

    /**
     * @dev send `_amount` amount of token to (`_dstChainId`, `_toAddress`) from `_from`
     * `_from` the owner of token
     * `_dstChainId` the destination chain identifier
     * `_toAddress` can be any size depending on the `dstChainId`.
     * `_amount` the quantity of tokens in wei
     * `_refundAddress` the address LayerZero refunds if too much message fee is sent
     * `_zroPaymentAddress` set to address(0x0) if not paying in ZRO (LayerZero Token)
     * `_adapterParams` is a flexible bytes array to indicate messaging adapter services
     */
    function sendFrom(address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, LzCallParams calldata _callParams) external payable;

    function sendAndCall(address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, bytes calldata _payload, uint64 _dstGasForCall, LzCallParams calldata _callParams) external payable;
}


// File @layerzerolabs/solidity-examples/contracts/token/oft/v2/[email protected]

pragma solidity >=0.5.0;

interface IOFTReceiverV2 {
    /**
     * @dev Called by the OFT contract when tokens are received from source chain.
     * @param _srcChainId The chain id of the source chain.
     * @param _srcAddress The address of the OFT token contract on the source chain.
     * @param _nonce The nonce of the transaction on the source chain.
     * @param _from The address of the account who calls the sendAndCall() on the source chain.
     * @param _amount The amount of tokens to transfer.
     * @param _payload Additional data with no specified format.
     */
    function onOFTReceived(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes32 _from, uint _amount, bytes calldata _payload) external;
}


// File @layerzerolabs/solidity-examples/contracts/token/oft/v2/[email protected]

pragma solidity ^0.8.0;




abstract contract OFTCoreV2 is NonblockingLzApp {
    using BytesLib for bytes;
    using ExcessivelySafeCall for address;

    uint public constant NO_EXTRA_GAS = 0;

    // packet type
    uint8 public constant PT_SEND = 0;
    uint8 public constant PT_SEND_AND_CALL = 1;

    uint8 public immutable sharedDecimals;

    bool public useCustomAdapterParams;
    mapping(uint16 => mapping(bytes => mapping(uint64 => bool))) public creditedPackets;

    /**
     * @dev Emitted when `_amount` tokens are moved from the `_sender` to (`_dstChainId`, `_toAddress`)
     * `_nonce` is the outbound nonce
     */
    event SendToChain(uint16 indexed _dstChainId, address indexed _from, bytes32 indexed _toAddress, uint _amount);

    /**
     * @dev Emitted when `_amount` tokens are received from `_srcChainId` into the `_toAddress` on the local chain.
     * `_nonce` is the inbound nonce.
     */
    event ReceiveFromChain(uint16 indexed _srcChainId, address indexed _to, uint _amount);

    event SetUseCustomAdapterParams(bool _useCustomAdapterParams);

    event CallOFTReceivedSuccess(uint16 indexed _srcChainId, bytes _srcAddress, uint64 _nonce, bytes32 _hash);

    event NonContractAddress(address _address);

    // _sharedDecimals should be the minimum decimals on all chains
    constructor(uint8 _sharedDecimals, address _lzEndpoint) NonblockingLzApp(_lzEndpoint) {
        sharedDecimals = _sharedDecimals;
    }

    /************************************************************************
    * public functions
    ************************************************************************/
    function callOnOFTReceived(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes32 _from, address _to, uint _amount, bytes calldata _payload, uint _gasForCall) public virtual {
        require(_msgSender() == address(this), "OFTCore: caller must be OFTCore");

        // send
        _amount = _transferFrom(address(this), _to, _amount);
        emit ReceiveFromChain(_srcChainId, _to, _amount);

        // call
        IOFTReceiverV2(_to).onOFTReceived{gas: _gasForCall}(_srcChainId, _srcAddress, _nonce, _from, _amount, _payload);
    }

    function setUseCustomAdapterParams(bool _useCustomAdapterParams) public virtual onlyOwner {
        useCustomAdapterParams = _useCustomAdapterParams;
        emit SetUseCustomAdapterParams(_useCustomAdapterParams);
    }

    /************************************************************************
    * internal functions
    ************************************************************************/
    function _estimateSendFee(uint16 _dstChainId, bytes32 _toAddress, uint _amount, bool _useZro, bytes memory _adapterParams) internal view virtual returns (uint nativeFee, uint zroFee) {
        // mock the payload for sendFrom()
        bytes memory payload = _encodeSendPayload(_toAddress, _ld2sd(_amount));
        return lzEndpoint.estimateFees(_dstChainId, address(this), payload, _useZro, _adapterParams);
    }

    function _estimateSendAndCallFee(uint16 _dstChainId, bytes32 _toAddress, uint _amount, bytes memory _payload, uint64 _dstGasForCall, bool _useZro, bytes memory _adapterParams) internal view virtual returns (uint nativeFee, uint zroFee) {
        // mock the payload for sendAndCall()
        bytes memory payload = _encodeSendAndCallPayload(msg.sender, _toAddress, _ld2sd(_amount), _payload, _dstGasForCall);
        return lzEndpoint.estimateFees(_dstChainId, address(this), payload, _useZro, _adapterParams);
    }

    function _nonblockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual override {
        uint8 packetType = _payload.toUint8(0);

        if (packetType == PT_SEND) {
            _sendAck(_srcChainId, _srcAddress, _nonce, _payload);
        } else if (packetType == PT_SEND_AND_CALL) {
            _sendAndCallAck(_srcChainId, _srcAddress, _nonce, _payload);
        } else {
            revert("OFTCore: unknown packet type");
        }
    }

    function _send(address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, address payable _refundAddress, address _zroPaymentAddress, bytes memory _adapterParams) internal virtual returns (uint amount) {
        _checkAdapterParams(_dstChainId, PT_SEND, _adapterParams, NO_EXTRA_GAS);

        (amount,) = _removeDust(_amount);
        amount = _debitFrom(_from, _dstChainId, _toAddress, amount); // amount returned should not have dust
        require(amount > 0, "OFTCore: amount too small");

        bytes memory lzPayload = _encodeSendPayload(_toAddress, _ld2sd(amount));
        _lzSend(_dstChainId, lzPayload, _refundAddress, _zroPaymentAddress, _adapterParams, msg.value);

        emit SendToChain(_dstChainId, _from, _toAddress, amount);
    }

    function _sendAck(uint16 _srcChainId, bytes memory, uint64, bytes memory _payload) internal virtual {
        (address to, uint64 amountSD) = _decodeSendPayload(_payload);
        if (to == address(0)) {
            to = address(0xdead);
        }

        uint amount = _sd2ld(amountSD);
        amount = _creditTo(_srcChainId, to, amount);

        emit ReceiveFromChain(_srcChainId, to, amount);
    }

    function _sendAndCall(address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, bytes memory _payload, uint64 _dstGasForCall, address payable _refundAddress, address _zroPaymentAddress, bytes memory _adapterParams) internal virtual returns (uint amount) {
        _checkAdapterParams(_dstChainId, PT_SEND_AND_CALL, _adapterParams, _dstGasForCall);

        (amount,) = _removeDust(_amount);
        amount = _debitFrom(_from, _dstChainId, _toAddress, amount);
        require(amount > 0, "OFTCore: amount too small");

        // encode the msg.sender into the payload instead of _from
        bytes memory lzPayload = _encodeSendAndCallPayload(msg.sender, _toAddress, _ld2sd(amount), _payload, _dstGasForCall);
        _lzSend(_dstChainId, lzPayload, _refundAddress, _zroPaymentAddress, _adapterParams, msg.value);

        emit SendToChain(_dstChainId, _from, _toAddress, amount);
    }

    function _sendAndCallAck(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual {
        (bytes32 from, address to, uint64 amountSD, bytes memory payloadForCall, uint64 gasForCall) = _decodeSendAndCallPayload(_payload);

        bool credited = creditedPackets[_srcChainId][_srcAddress][_nonce];
        uint amount = _sd2ld(amountSD);

        // credit to this contract first, and then transfer to receiver only if callOnOFTReceived() succeeds
        if (!credited) {
            amount = _creditTo(_srcChainId, address(this), amount);
            creditedPackets[_srcChainId][_srcAddress][_nonce] = true;
        }

        if (!_isContract(to)) {
            emit NonContractAddress(to);
            return;
        }

        // workaround for stack too deep
        uint16 srcChainId = _srcChainId;
        bytes memory srcAddress = _srcAddress;
        uint64 nonce = _nonce;
        bytes memory payload = _payload;
        bytes32 from_ = from;
        address to_ = to;
        uint amount_ = amount;
        bytes memory payloadForCall_ = payloadForCall;

        // no gas limit for the call if retry
        uint gas = credited ? gasleft() : gasForCall;
        (bool success, bytes memory reason) = address(this).excessivelySafeCall(gasleft(), 150, abi.encodeWithSelector(this.callOnOFTReceived.selector, srcChainId, srcAddress, nonce, from_, to_, amount_, payloadForCall_, gas));

        if (success) {
            bytes32 hash = keccak256(payload);
            emit CallOFTReceivedSuccess(srcChainId, srcAddress, nonce, hash);
        } else {
            // store the failed message into the nonblockingLzApp
            _storeFailedMessage(srcChainId, srcAddress, nonce, payload, reason);
        }
    }

    function _isContract(address _account) internal view returns (bool) {
        return _account.code.length > 0;
    }

    function _checkAdapterParams(uint16 _dstChainId, uint16 _pkType, bytes memory _adapterParams, uint _extraGas) internal virtual {
        if (useCustomAdapterParams) {
            _checkGasLimit(_dstChainId, _pkType, _adapterParams, _extraGas);
        } else {
            require(_adapterParams.length == 0, "OFTCore: _adapterParams must be empty.");
        }
    }

    function _ld2sd(uint _amount) internal virtual view returns (uint64) {
        uint amountSD = _amount / _ld2sdRate();
        require(amountSD <= type(uint64).max, "OFTCore: amountSD overflow");
        return uint64(amountSD);
    }

    function _sd2ld(uint64 _amountSD) internal virtual view returns (uint) {
        return _amountSD * _ld2sdRate();
    }

    function _removeDust(uint _amount) internal virtual view returns (uint amountAfter, uint dust) {
        dust = _amount % _ld2sdRate();
        amountAfter = _amount - dust;
    }

    function _encodeSendPayload(bytes32 _toAddress, uint64 _amountSD) internal virtual view returns (bytes memory) {
        return abi.encodePacked(PT_SEND, _toAddress, _amountSD);
    }

    function _decodeSendPayload(bytes memory _payload) internal virtual view returns (address to, uint64 amountSD) {
        require(_payload.toUint8(0) == PT_SEND && _payload.length == 41, "OFTCore: invalid payload");

        to = _payload.toAddress(13); // drop the first 12 bytes of bytes32
        amountSD = _payload.toUint64(33);
    }

    function _encodeSendAndCallPayload(address _from, bytes32 _toAddress, uint64 _amountSD, bytes memory _payload, uint64 _dstGasForCall) internal virtual view returns (bytes memory) {
        return abi.encodePacked(
            PT_SEND_AND_CALL,
            _toAddress,
            _amountSD,
            _addressToBytes32(_from),
            _dstGasForCall,
            _payload
        );
    }

    function _decodeSendAndCallPayload(bytes memory _payload) internal virtual view returns (bytes32 from, address to, uint64 amountSD, bytes memory payload, uint64 dstGasForCall) {
        require(_payload.toUint8(0) == PT_SEND_AND_CALL, "OFTCore: invalid payload");

        to = _payload.toAddress(13); // drop the first 12 bytes of bytes32
        amountSD = _payload.toUint64(33);
        from = _payload.toBytes32(41);
        dstGasForCall = _payload.toUint64(73);
        payload = _payload.slice(81, _payload.length - 81);
    }

    function _addressToBytes32(address _address) internal pure virtual returns (bytes32) {
        return bytes32(uint(uint160(_address)));
    }

    function _debitFrom(address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount) internal virtual returns (uint);

    function _creditTo(uint16 _srcChainId, address _toAddress, uint _amount) internal virtual returns (uint);

    function _transferFrom(address _from, address _to, uint _amount) internal virtual returns (uint);

    function _ld2sdRate() internal view virtual returns (uint);
}


// File @openzeppelin/contracts/utils/introspection/[email protected]

// 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 @layerzerolabs/solidity-examples/contracts/token/oft/v2/[email protected]

pragma solidity ^0.8.0;



abstract contract BaseOFTV2 is OFTCoreV2, ERC165, IOFTV2 {

    constructor(uint8 _sharedDecimals, address _lzEndpoint) OFTCoreV2(_sharedDecimals, _lzEndpoint) {
    }

    /************************************************************************
    * public functions
    ************************************************************************/
    function sendFrom(address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, LzCallParams calldata _callParams) public payable virtual override {
        _send(_from, _dstChainId, _toAddress, _amount, _callParams.refundAddress, _callParams.zroPaymentAddress, _callParams.adapterParams);
    }

    function sendAndCall(address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, bytes calldata _payload, uint64 _dstGasForCall, LzCallParams calldata _callParams) public payable virtual override {
        _sendAndCall(_from, _dstChainId, _toAddress, _amount, _payload, _dstGasForCall, _callParams.refundAddress, _callParams.zroPaymentAddress, _callParams.adapterParams);
    }

    /************************************************************************
    * public view functions
    ************************************************************************/
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return interfaceId == type(IOFTV2).interfaceId || super.supportsInterface(interfaceId);
    }

    function estimateSendFee(uint16 _dstChainId, bytes32 _toAddress, uint _amount, bool _useZro, bytes calldata _adapterParams) public view virtual override returns (uint nativeFee, uint zroFee) {
        return _estimateSendFee(_dstChainId, _toAddress, _amount, _useZro, _adapterParams);
    }

    function estimateSendAndCallFee(uint16 _dstChainId, bytes32 _toAddress, uint _amount, bytes calldata _payload, uint64 _dstGasForCall, bool _useZro, bytes calldata _adapterParams) public view virtual override returns (uint nativeFee, uint zroFee) {
        return _estimateSendAndCallFee(_dstChainId, _toAddress, _amount, _payload, _dstGasForCall, _useZro, _adapterParams);
    }

    function circulatingSupply() public view virtual override returns (uint);

    function token() public view virtual override returns (address);
}


// File @openzeppelin/contracts/token/ERC20/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

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

pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}


// File @openzeppelin/contracts/token/ERC20/[email protected]

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

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
    unchecked {
        _approve(owner, spender, currentAllowance - subtractedValue);
    }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
    unchecked {
        _balances[from] = fromBalance - amount;
        // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
        // decrementing then incrementing.
        _balances[to] += amount;
    }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
    unchecked {
        // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
        _balances[account] += amount;
    }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
    unchecked {
        _balances[account] = accountBalance - amount;
        // Overflow not possible: amount <= accountBalance <= totalSupply.
        _totalSupply -= amount;
    }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
        unchecked {
            _approve(owner, spender, currentAllowance - amount);
        }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens 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 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}


// File @layerzerolabs/solidity-examples/contracts/token/oft/v2/[email protected]

pragma solidity ^0.8.0;


contract OFTV2 is BaseOFTV2, ERC20 {

    uint internal immutable ld2sdRate;

    constructor(string memory _name, string memory _symbol, uint8 _sharedDecimals, address _lzEndpoint) ERC20(_name, _symbol) BaseOFTV2(_sharedDecimals, _lzEndpoint) {
        uint8 decimals = decimals();
        require(_sharedDecimals <= decimals, "OFT: sharedDecimals must be <= decimals");
        ld2sdRate = 10 ** (decimals - _sharedDecimals);
    }

    /************************************************************************
    * public functions
    ************************************************************************/
    function circulatingSupply() public view virtual override returns (uint) {
        return totalSupply();
    }

    function token() public view virtual override returns (address) {
        return address(this);
    }

    /************************************************************************
    * internal functions
    ************************************************************************/
    function _debitFrom(address _from, uint16, bytes32, uint _amount) internal virtual override returns (uint) {
        address spender = _msgSender();
        if (_from != spender) _spendAllowance(_from, spender, _amount);
        _burn(_from, _amount);
        return _amount;
    }

    function _creditTo(uint16, address _toAddress, uint _amount) internal virtual override returns (uint) {
        _mint(_toAddress, _amount);
        return _amount;
    }

    function _transferFrom(address _from, address _to, uint _amount) internal virtual override returns (uint) {
        address spender = _msgSender();
        // if transfer from this contract, no need to check allowance
        if (_from != address(this) && _from != spender) _spendAllowance(_from, spender, _amount);
        _transfer(_from, _to, _amount);
        return _amount;
    }

    function _ld2sdRate() internal view virtual override returns (uint) {
        return ld2sdRate;
    }
}


// File contracts/SystemVersionId.sol

pragma solidity 0.8.19;

/**
 * @title SystemVersionId
 * @notice Base contract providing the system version identifier
 */
abstract contract SystemVersionId {
    /**
     * @dev The system version identifier
     */
    uint256 public constant SYSTEM_VERSION_ID = uint256(keccak256('Initial'));
}


// File contracts/interport-oft/InterportTokenOFT.sol

pragma solidity 0.8.19;


/**
 * @title InterportTokenOFT
 * @notice The Interport token OFT contract
 */
contract InterportTokenOFT is OFTV2, SystemVersionId {
    /**
     * @notice Deploys the InterportTokenOFT contract
     * @param _lzEndpoint The address of the LayerZero endpoint
     */
    constructor(address _lzEndpoint) OFTV2('Interport Token', 'ITP', 8, _lzEndpoint) {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_lzEndpoint","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"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":"bytes32","name":"_hash","type":"bytes32"}],"name":"CallOFTReceivedSuccess","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"},{"indexed":false,"internalType":"bytes","name":"_reason","type":"bytes"}],"name":"MessageFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"}],"name":"NonContractAddress","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":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ReceiveFromChain","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":"bytes32","name":"_payloadHash","type":"bytes32"}],"name":"RetryMessageSuccess","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"SendToChain","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"_type","type":"uint16"},{"indexed":false,"internalType":"uint256","name":"_minDstGas","type":"uint256"}],"name":"SetMinDstGas","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"precrime","type":"address"}],"name":"SetPrecrime","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_path","type":"bytes"}],"name":"SetTrustedRemote","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_remoteAddress","type":"bytes"}],"name":"SetTrustedRemoteAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_useCustomAdapterParams","type":"bool"}],"name":"SetUseCustomAdapterParams","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_PAYLOAD_SIZE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NO_EXTRA_GAS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PT_SEND","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PT_SEND_AND_CALL","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SYSTEM_VERSION_ID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes32","name":"_from","type":"bytes32"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_payload","type":"bytes"},{"internalType":"uint256","name":"_gasForCall","type":"uint256"}],"name":"callOnOFTReceived","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"circulatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint64","name":"","type":"uint64"}],"name":"creditedPackets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_payload","type":"bytes"},{"internalType":"uint64","name":"_dstGasForCall","type":"uint64"},{"internalType":"bool","name":"_useZro","type":"bool"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"estimateSendAndCallFee","outputs":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"zroFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bool","name":"_useZro","type":"bool"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"estimateSendFee","outputs":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"zroFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint64","name":"","type":"uint64"}],"name":"failedMessages","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"}],"name":"forceResumeReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"_configType","type":"uint256"}],"name":"getConfig","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"}],"name":"getTrustedRemoteAddress","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"}],"name":"isTrustedRemote","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lzEndpoint","outputs":[{"internalType":"contract ILayerZeroEndpoint","name":"","type":"address"}],"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":"uint16","name":"","type":"uint16"},{"internalType":"uint16","name":"","type":"uint16"}],"name":"minDstGasLookup","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"nonblockingLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"payloadSizeLimitLookup","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"precrime","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":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_payload","type":"bytes"},{"internalType":"uint64","name":"_dstGasForCall","type":"uint64"},{"components":[{"internalType":"address payable","name":"refundAddress","type":"address"},{"internalType":"address","name":"zroPaymentAddress","type":"address"},{"internalType":"bytes","name":"adapterParams","type":"bytes"}],"internalType":"struct ICommonOFT.LzCallParams","name":"_callParams","type":"tuple"}],"name":"sendAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"components":[{"internalType":"address payable","name":"refundAddress","type":"address"},{"internalType":"address","name":"zroPaymentAddress","type":"address"},{"internalType":"bytes","name":"adapterParams","type":"bytes"}],"internalType":"struct ICommonOFT.LzCallParams","name":"_callParams","type":"tuple"}],"name":"sendFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"_configType","type":"uint256"},{"internalType":"bytes","name":"_config","type":"bytes"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"uint16","name":"_packetType","type":"uint16"},{"internalType":"uint256","name":"_minGas","type":"uint256"}],"name":"setMinDstGas","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"uint256","name":"_size","type":"uint256"}],"name":"setPayloadSizeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_precrime","type":"address"}],"name":"setPrecrime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setReceiveVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setSendVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"internalType":"bytes","name":"_path","type":"bytes"}],"name":"setTrustedRemote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"internalType":"bytes","name":"_remoteAddress","type":"bytes"}],"name":"setTrustedRemoteAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_useCustomAdapterParams","type":"bool"}],"name":"setUseCustomAdapterParams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sharedDecimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedRemoteLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"useCustomAdapterParams","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60e06040523480156200001157600080fd5b5060405162004904380380620049048339810160408190526200003491620001d5565b6040518060400160405280600f81526020016e24b73a32b93837b93a102a37b5b2b760891b8152506040518060400160405280600381526020016204954560ec1b81525060088383838383818180806200009d620000976200017c60201b60201c565b62000180565b6001600160a01b0316608052505060ff1660a05250600b9050620000c28382620002ac565b50600c620000d18282620002ac565b5050506000620000e6620001d060201b60201c565b90508060ff168360ff161115620001535760405162461bcd60e51b815260206004820152602760248201527f4f46543a20736861726564446563696d616c73206d757374206265203c3d20646044820152666563696d616c7360c81b606482015260840160405180910390fd5b6200015f83826200038e565b6200016c90600a620004ad565b60c05250620004be945050505050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b601290565b600060208284031215620001e857600080fd5b81516001600160a01b03811681146200020057600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200023257607f821691505b6020821081036200025357634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002a757600081815260208120601f850160051c81016020861015620002825750805b601f850160051c820191505b81811015620002a3578281556001016200028e565b5050505b505050565b81516001600160401b03811115620002c857620002c862000207565b620002e081620002d984546200021d565b8462000259565b602080601f831160018114620003185760008415620002ff5750858301515b600019600386901b1c1916600185901b178555620002a3565b600085815260208120601f198616915b82811015620003495788860151825594840194600190910190840162000328565b5085821015620003685787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b60ff8281168282160390811115620003aa57620003aa62000378565b92915050565b600181815b80851115620003f1578160001904821115620003d557620003d562000378565b80851615620003e357918102915b93841c9390800290620003b5565b509250929050565b6000826200040a57506001620003aa565b816200041957506000620003aa565b81600181146200043257600281146200043d576200045d565b6001915050620003aa565b60ff84111562000451576200045162000378565b50506001821b620003aa565b5060208310610133831016604e8410600b841016171562000482575081810a620003aa565b6200048e8383620003b0565b8060001904821115620004a557620004a562000378565b029392505050565b60006200020060ff841683620003f9565b60805160a05160c0516143c96200053b6000396000818161277201528181612b6c0152612e480152600061069301526000818161086d01528181610a1d01528181610d3501528181610df501528181610fb20152818161160f01528181611bd9015281816120dd0152818161255e0152612cff01526143c96000f3fe6080604052600436106102fe5760003560e01c80638cfd8f5c11610190578063c4461834116100dc578063eab45d9c11610095578063ed629c5c1161006f578063ed629c5c146109ad578063f2fde38b146109c7578063f5ecbdbc146109e7578063fc0c546a14610a0757600080fd5b8063eab45d9c1461094d578063eaffd49a1461096d578063eb8d72b71461098d57600080fd5b8063c4461834146108af578063cbed8b9c146108c5578063d1deba1f146108e5578063dd62ed3e146108f8578063df2a5b3b14610918578063e6a20ae61461093857600080fd5b80639f38369a11610149578063a6c3d16511610123578063a6c3d1651461081b578063a9059cbb1461083b578063b353aaa71461085b578063baf3292d1461088f57600080fd5b80639f38369a146107bb578063a457c2d7146107db578063a4c51df5146107fb57600080fd5b80638cfd8f5c146106b55780638da5cb5b146106ed5780639358928b1461071f578063950c8a741461073457806395d89b41146107545780639bdb98121461076957600080fd5b80633d8b38f61161024f57806366ad5c8a11610208578063715018a6116101e2578063715018a6146106395780637533d7881461064e57806376203b481461066e578063857749b01461068157600080fd5b806366ad5c8a146105d0578063695ef6bf146105f057806370a082311461060357600080fd5b80633d8b38f6146104ea5780633f1f4fa41461050a57806342d65a8d1461053757806344770515146105575780634c42899a1461056c5780635b8c41e61461058157600080fd5b80630df37483116102bc57806323b872dd1161029657806323b872dd14610453578063313ce56714610473578063365260b41461049557806339509351146104ca57600080fd5b80630df37483146103fe57806310ddb1371461041e57806318160ddd1461043e57600080fd5b80621d35671461030357806301ffc9a71461032557806306fdde031461035a57806307e0db171461037c578063093f0e271461039c578063095ea7b3146103de575b600080fd5b34801561030f57600080fd5b5061032361031e366004613477565b610a1a565b005b34801561033157600080fd5b5061034561034036600461350a565b610c4b565b60405190151581526020015b60405180910390f35b34801561036657600080fd5b5061036f610c82565b6040516103519190613584565b34801561038857600080fd5b50610323610397366004613597565b610d14565b3480156103a857600080fd5b506103d07f22ad9585a395edc8067b50da4778cafbb7fa2c4bbd7619fad6aeba403857fd7481565b604051908152602001610351565b3480156103ea57600080fd5b506103456103f93660046135c7565b610d9d565b34801561040a57600080fd5b506103236104193660046135f3565b610db5565b34801561042a57600080fd5b50610323610439366004613597565b610dd4565b34801561044a57600080fd5b50600a546103d0565b34801561045f57600080fd5b5061034561046e36600461360f565b610e2c565b34801561047f57600080fd5b5060125b60405160ff9091168152602001610351565b3480156104a157600080fd5b506104b56104b0366004613660565b610e50565b60408051928352602083019190915201610351565b3480156104d657600080fd5b506103456104e53660046135c7565b610ea5565b3480156104f657600080fd5b506103456105053660046136c5565b610ec7565b34801561051657600080fd5b506103d0610525366004613597565b60036020526000908152604090205481565b34801561054357600080fd5b506103236105523660046136c5565b610f93565b34801561056357600080fd5b506103d0600081565b34801561057857600080fd5b50610483600081565b34801561058d57600080fd5b506103d061059c366004613784565b6005602090815260009384526040808520845180860184018051928152908401958401959095209452929052825290205481565b3480156105dc57600080fd5b506103236105eb366004613477565b611019565b6103236105fe36600461383c565b6110f5565b34801561060f57600080fd5b506103d061061e3660046138af565b6001600160a01b031660009081526008602052604090205490565b34801561064557600080fd5b50610323611160565b34801561065a57600080fd5b5061036f610669366004613597565b611174565b61032361067c3660046138cc565b61120e565b34801561068d57600080fd5b506104837f000000000000000000000000000000000000000000000000000000000000000081565b3480156106c157600080fd5b506103d06106d036600461397e565b600260209081526000928352604080842090915290825290205481565b3480156106f957600080fd5b506000546001600160a01b03165b6040516001600160a01b039091168152602001610351565b34801561072b57600080fd5b506103d06112bd565b34801561074057600080fd5b50600454610707906001600160a01b031681565b34801561076057600080fd5b5061036f6112cd565b34801561077557600080fd5b50610345610784366004613784565b6007602090815260009384526040808520845180860184018051928152908401958401959095209452929052825290205460ff1681565b3480156107c757600080fd5b5061036f6107d6366004613597565b6112dc565b3480156107e757600080fd5b506103456107f63660046135c7565b6113f2565b34801561080757600080fd5b506104b56108163660046139b1565b61146d565b34801561082757600080fd5b506103236108363660046136c5565b6114fc565b34801561084757600080fd5b506103456108563660046135c7565b611585565b34801561086757600080fd5b506107077f000000000000000000000000000000000000000000000000000000000000000081565b34801561089b57600080fd5b506103236108aa3660046138af565b611593565b3480156108bb57600080fd5b506103d061271081565b3480156108d157600080fd5b506103236108e0366004613a6a565b6115f0565b6103236108f3366004613477565b61167a565b34801561090457600080fd5b506103d0610913366004613ad8565b611890565b34801561092457600080fd5b50610323610933366004613b11565b6118bb565b34801561094457600080fd5b50610483600181565b34801561095957600080fd5b50610323610968366004613b4d565b61196d565b34801561097957600080fd5b50610323610988366004613b68565b6119b6565b34801561099957600080fd5b506103236109a83660046136c5565b611ad5565b3480156109b957600080fd5b506006546103459060ff1681565b3480156109d357600080fd5b506103236109e23660046138af565b611b2f565b3480156109f357600080fd5b5061036f610a02366004613c30565b611ba8565b348015610a1357600080fd5b5030610707565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614610a975760405162461bcd60e51b815260206004820152601e60248201527f4c7a4170703a20696e76616c696420656e64706f696e742063616c6c6572000060448201526064015b60405180910390fd5b61ffff861660009081526001602052604081208054610ab590613c7d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae190613c7d565b8015610b2e5780601f10610b0357610100808354040283529160200191610b2e565b820191906000526020600020905b815481529060010190602001808311610b1157829003601f168201915b50505050509050805186869050148015610b49575060008151115b8015610b71575080516020820120604051610b679088908890613cb1565b6040518091039020145b610bcc5760405162461bcd60e51b815260206004820152602660248201527f4c7a4170703a20696e76616c696420736f757263652073656e64696e6720636f6044820152651b9d1c9858dd60d21b6064820152608401610a8e565b610c428787878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8a018190048102820181019092528881528a935091508890889081908401838280828437600092019190915250611c5992505050565b50505050505050565b60006001600160e01b03198216631f7ecdf760e01b1480610c7c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600b8054610c9190613c7d565b80601f0160208091040260200160405190810160405280929190818152602001828054610cbd90613c7d565b8015610d0a5780601f10610cdf57610100808354040283529160200191610d0a565b820191906000526020600020905b815481529060010190602001808311610ced57829003601f168201915b5050505050905090565b610d1c611cd2565b6040516307e0db1760e01b815261ffff821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906307e0db17906024015b600060405180830381600087803b158015610d8257600080fd5b505af1158015610d96573d6000803e3d6000fd5b5050505050565b600033610dab818585611d2c565b5060019392505050565b610dbd611cd2565b61ffff909116600090815260036020526040902055565b610ddc611cd2565b6040516310ddb13760e01b815261ffff821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906310ddb13790602401610d68565b600033610e3a858285611e50565b610e45858585611eca565b506001949350505050565b600080610e968888888888888080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061207592505050565b91509150965096945050505050565b600033610dab818585610eb88383611890565b610ec29190613cd7565b611d2c565b61ffff831660009081526001602052604081208054829190610ee890613c7d565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1490613c7d565b8015610f615780601f10610f3657610100808354040283529160200191610f61565b820191906000526020600020905b815481529060010190602001808311610f4457829003601f168201915b505050505090508383604051610f78929190613cb1565b60405180910390208180519060200120149150509392505050565b610f9b611cd2565b6040516342d65a8d60e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906342d65a8d90610feb90869086908690600401613d13565b600060405180830381600087803b15801561100557600080fd5b505af1158015610c42573d6000803e3d6000fd5b3330146110775760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d7573742062656044820152650204c7a4170760d41b6064820152608401610a8e565b6110ed8686868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f89018190048102820181019092528781528993509150879087908190840183828082843760009201919091525061216992505050565b505050505050565b6110ed8585858561110960208701876138af565b61111960408801602089016138af565b6111266040890189613d31565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506121f092505050565b611168611cd2565b61117260006122d8565b565b6001602052600090815260409020805461118d90613c7d565b80601f01602080910402602001604051908101604052809291908181526020018280546111b990613c7d565b80156112065780601f106111db57610100808354040283529160200191611206565b820191906000526020600020905b8154815290600101906020018083116111e957829003601f168201915b505050505081565b6112b28888888888888080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508a925061125b91505060208901896138af565b61126b60408a0160208b016138af565b61127860408b018b613d31565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061232892505050565b505050505050505050565b60006112c8600a5490565b905090565b6060600c8054610c9190613c7d565b61ffff81166000908152600160205260408120805460609291906112ff90613c7d565b80601f016020809104026020016040519081016040528092919081815260200182805461132b90613c7d565b80156113785780601f1061134d57610100808354040283529160200191611378565b820191906000526020600020905b81548152906001019060200180831161135b57829003601f168201915b5050505050905080516000036113d05760405162461bcd60e51b815260206004820152601d60248201527f4c7a4170703a206e6f20747275737465642070617468207265636f72640000006044820152606401610a8e565b6113eb6000601483516113e39190613d77565b839190612424565b9392505050565b600033816114008286611890565b9050838110156114605760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a8e565b610e458286868403611d2c565b6000806114ea8b8b8b8b8b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8d018190048102820181019092528b81528e93508d9250908c908c908190840183828082843760009201919091525061253192505050565b91509150995099975050505050505050565b611504611cd2565b81813060405160200161151993929190613d8a565b60408051601f1981840301815291815261ffff85166000908152600160205220906115449082613df6565b507f8c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572ce83838360405161157893929190613d13565b60405180910390a1505050565b600033610dab818585611eca565b61159b611cd2565b600480546001600160a01b0319166001600160a01b0383169081179091556040519081527f5db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b906020015b60405180910390a150565b6115f8611cd2565b6040516332fb62e760e21b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063cbed8b9c9061164c9088908890889088908890600401613eb5565b600060405180830381600087803b15801561166657600080fd5b505af11580156112b2573d6000803e3d6000fd5b61ffff8616600090815260056020526040808220905161169d9088908890613cb1565b90815260408051602092819003830190206001600160401b0387166000908152925290205490508061171d5760405162461bcd60e51b815260206004820152602360248201527f4e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d65737360448201526261676560e81b6064820152608401610a8e565b80838360405161172e929190613cb1565b60405180910390201461178d5760405162461bcd60e51b815260206004820152602160248201527f4e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f616044820152601960fa1b6064820152608401610a8e565b61ffff871660009081526005602052604080822090516117b09089908990613cb1565b90815260408051602092819003830181206001600160401b038916600090815290845282902093909355601f88018290048202830182019052868252611848918991899089908190840183828082843760009201919091525050604080516020601f8a018190048102820181019092528881528a93509150889088908190840183828082843760009201919091525061216992505050565b7fc264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e5878787878560405161187f959493929190613eee565b60405180910390a150505050505050565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205490565b6118c3611cd2565b6000811161190b5760405162461bcd60e51b81526020600482015260156024820152744c7a4170703a20696e76616c6964206d696e47617360581b6044820152606401610a8e565b61ffff83811660008181526002602090815260408083209487168084529482529182902085905581519283528201929092529081018290527f9d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac090606001611578565b611975611cd2565b6006805460ff19168215159081179091556040519081527f1584ad594a70cbe1e6515592e1272a987d922b097ead875069cebe8b40c004a4906020016115e5565b333014611a055760405162461bcd60e51b815260206004820152601f60248201527f4f4654436f72653a2063616c6c6572206d757374206265204f4654436f7265006044820152606401610a8e565b611a103086866125ec565b9350846001600160a01b03168a61ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf86604051611a5291815260200190565b60405180910390a3604051633fe79aed60e11b81526001600160a01b03861690637fcf35da908390611a96908e908e908e908e908e908d908d908d90600401613f29565b600060405180830381600088803b158015611ab057600080fd5b5087f1158015611ac4573d6000803e3d6000fd5b505050505050505050505050505050565b611add611cd2565b61ffff83166000908152600160205260409020611afb828483613f84565b507ffa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dab83838360405161157893929190613d13565b611b37611cd2565b6001600160a01b038116611b9c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a8e565b611ba5816122d8565b50565b604051633d7b2f6f60e21b815261ffff808616600483015284166024820152306044820152606481018290526060907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f5ecbdbc90608401600060405180830381865afa158015611c28573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611c509190810190614043565b95945050505050565b600080611cbc5a60966366ad5c8a60e01b89898989604051602401611c8194939291906140b0565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091523092919061263e565b91509150816110ed576110ed86868686856126c8565b6000546001600160a01b031633146111725760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a8e565b6001600160a01b038316611d8e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a8e565b6001600160a01b038216611def5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a8e565b6001600160a01b0383811660008181526009602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000611e5c8484611890565b90506000198114611ec45781811015611eb75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a8e565b611ec48484848403611d2c565b50505050565b6001600160a01b038316611f2e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a8e565b6001600160a01b038216611f905760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a8e565b6001600160a01b038316600090815260086020526040902054818110156120085760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a8e565b6001600160a01b0380851660008181526008602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906120689086815260200190565b60405180910390a3611ec4565b60008060006120c3876120878861276a565b6040805160006020820152602181019390935260c09190911b6001600160c01b0319166041830152805160298184030181526049909201905290565b60405163040a7bb160e41b81529091506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906340a7bb109061211a908b90309086908b908b906004016140ee565b6040805180830381865afa158015612136573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061215a9190614142565b92509250509550959350505050565b600061217582826127f0565b905060ff81166121905761218b8585858561284c565b610d96565b60001960ff8216016121a85761218b858585856128dc565b60405162461bcd60e51b815260206004820152601c60248201527f4f4654436f72653a20756e6b6e6f776e207061636b65742074797065000000006044820152606401610a8e565b60006121fe87828481612aea565b61220785612b64565b50905061221688888884612ba4565b9050600081116122645760405162461bcd60e51b815260206004820152601960248201527813d19510dbdc994e88185b5bdd5b9d081d1bdbc81cdb585b1b603a1b6044820152606401610a8e565b6000612273876120878461276a565b9050612283888287878734612bd6565b86896001600160a01b03168961ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a856040516122c491815260200190565b60405180910390a450979650505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000612340896001846001600160401b038916612aea565b61234987612b64565b5090506123588a8a8a84612ba4565b9050600081116123a65760405162461bcd60e51b815260206004820152601960248201527813d19510dbdc994e88185b5bdd5b9d081d1bdbc81cdb585b1b603a1b6044820152606401610a8e565b60006123bd338a6123b68561276a565b8a8a612d7b565b90506123cd8a8287878734612bd6565b888b6001600160a01b03168b61ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a8560405161240e91815260200190565b60405180910390a4509998505050505050505050565b60608161243281601f613cd7565b10156124715760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b6044820152606401610a8e565b61247b8284613cd7565b845110156124bf5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b6044820152606401610a8e565b6060821580156124de5760405191506000825260208201604052612528565b6040519150601f8416801560200281840101858101878315602002848b0101015b818310156125175780518352602092830192016124ff565b5050858452601f01601f1916604052505b50949350505050565b6000806000612544338a6123b68b61276a565b60405163040a7bb160e41b81529091506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906340a7bb109061259b908d90309086908b908b906004016140ee565b6040805180830381865afa1580156125b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125db9190614142565b925092505097509795505050505050565b600033306001600160a01b0386161480159061261a5750806001600160a01b0316856001600160a01b031614155b1561262a5761262a858285611e50565b612635858585611eca565b50909392505050565b6000606060008060008661ffff166001600160401b0381111561266357612663613717565b6040519080825280601f01601f19166020018201604052801561268d576020820181803683370190505b50905060008087516020890160008d8df191503d9250868311156126af578692505b828152826000602083013e909890975095505050505050565b8180519060200120600560008761ffff1661ffff168152602001908152602001600020856040516126f99190614166565b9081526040805191829003602090810183206001600160401b0388166000908152915220919091557fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c906127569087908790879087908790614182565b60405180910390a15050505050565b505050565b6000806127977f0000000000000000000000000000000000000000000000000000000000000000846141ea565b90506001600160401b03811115610c7c5760405162461bcd60e51b815260206004820152601a60248201527f4f4654436f72653a20616d6f756e745344206f766572666c6f770000000000006044820152606401610a8e565b60006127fd826001613cd7565b835110156128435760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b6044820152606401610a8e565b50016001015190565b60008061285883612dbc565b90925090506001600160a01b0382166128715761dead91505b600061287c82612e41565b9050612889878483612e76565b9050826001600160a01b03168761ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf836040516128cb91815260200190565b60405180910390a350505050505050565b60008060008060006128ed86612e89565b945094509450945094506000600760008b61ffff1661ffff168152602001908152602001600020896040516129229190614166565b90815260408051602092819003830190206001600160401b038b166000908152925281205460ff16915061295585612e41565b9050816129c3576129678b3083612e76565b61ffff8c1660009081526007602052604090819020905191925060019161298f908d90614166565b90815260408051602092819003830190206001600160401b038d16600090815292529020805460ff19169115159190911790555b6001600160a01b0386163b612a1a576040516001600160a01b03871681527f9aedf5fdba8716db3b6705ca00150643309995d4f818a249ed6dde6677e7792d9060200160405180910390a150505050505050611ec4565b8a8a8a8a8a8a868a60008a612a38578b6001600160401b0316612a3a565b5a5b9050600080612a6c5a609663eaffd49a60e01b8e8e8e8d8d8d8d8d604051602401611c819897969594939291906141fe565b915091508115612ac5578751602089012060405161ffff8d16907fb8890edbfc1c74692f527444645f95489c3703cc2df42e4a366f5d06fa6cd88490612ab7908e908e908690614272565b60405180910390a250612ad2565b612ad28b8b8b8b856126c8565b50505050505050505050505050505050505050505050565b60065460ff1615612b0657612b0184848484612f40565b611ec4565b815115611ec45760405162461bcd60e51b815260206004820152602660248201527f4f4654436f72653a205f61646170746572506172616d73206d7573742062652060448201526532b6b83a3c9760d11b6064820152608401610a8e565b600080612b917f0000000000000000000000000000000000000000000000000000000000000000846142a0565b9050612b9d8184613d77565b9150915091565b6000336001600160a01b0386168114612bc257612bc2868285611e50565b612bcc868461301f565b5090949350505050565b61ffff861660009081526001602052604081208054612bf490613c7d565b80601f0160208091040260200160405190810160405280929190818152602001828054612c2090613c7d565b8015612c6d5780601f10612c4257610100808354040283529160200191612c6d565b820191906000526020600020905b815481529060010190602001808311612c5057829003601f168201915b505050505090508051600003612cde5760405162461bcd60e51b815260206004820152603060248201527f4c7a4170703a2064657374696e6174696f6e20636861696e206973206e6f742060448201526f61207472757374656420736f7572636560801b6064820152608401610a8e565b612ce9878751613153565b60405162c5803160e81b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063c5803100908490612d40908b9086908c908c908c908c906004016142b4565b6000604051808303818588803b158015612d5957600080fd5b505af1158015612d6d573d6000803e3d6000fd5b505050505050505050505050565b6060600185856001600160a01b0389168587604051602001612da29695949392919061431b565b604051602081830303815290604052905095945050505050565b60008080612dca84826127f0565b60ff16148015612ddb575082516029145b612e225760405162461bcd60e51b815260206004820152601860248201527713d19510dbdc994e881a5b9d985b1a59081c185e5b1bd85960421b6044820152606401610a8e565b612e2d83600d6131c4565b9150612e3a836021613229565b9050915091565b6000610c7c7f00000000000000000000000000000000000000000000000000000000000000006001600160401b03841661437c565b6000612e828383613286565b5092915050565b600080806060816001612e9c87836127f0565b60ff1614612ee75760405162461bcd60e51b815260206004820152601860248201527713d19510dbdc994e881a5b9d985b1a59081c185e5b1bd85960421b6044820152606401610a8e565b612ef286600d6131c4565b9350612eff866021613229565b9250612f0c866029613347565b9450612f19866049613229565b9050612f356051808851612f2d9190613d77565b889190612424565b915091939590929450565b6000612f4b836133a5565b61ffff808716600090815260026020908152604080832093891683529290529081205491925090612f7d908490613cd7565b905060008111612fcf5760405162461bcd60e51b815260206004820152601a60248201527f4c7a4170703a206d696e4761734c696d6974206e6f74207365740000000000006044820152606401610a8e565b808210156110ed5760405162461bcd60e51b815260206004820152601b60248201527f4c7a4170703a20676173206c696d697420697320746f6f206c6f7700000000006044820152606401610a8e565b6001600160a01b03821661307f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610a8e565b6001600160a01b038216600090815260086020526040902054818110156130f35760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610a8e565b6001600160a01b03831660008181526008602090815260408083208686039055600a80548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b61ffff82166000908152600360205260408120549081900361317457506127105b808211156127655760405162461bcd60e51b815260206004820181905260248201527f4c7a4170703a207061796c6f61642073697a6520697320746f6f206c617267656044820152606401610a8e565b60006131d1826014613cd7565b835110156132195760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b6044820152606401610a8e565b500160200151600160601b900490565b6000613236826008613cd7565b8351101561327d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b6044820152606401610a8e565b50016008015190565b6001600160a01b0382166132dc5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610a8e565b80600a60008282546132ee9190613cd7565b90915550506001600160a01b0382166000818152600860209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6000613354826020613cd7565b8351101561339c5760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b6044820152606401610a8e565b50016020015190565b60006022825110156133f95760405162461bcd60e51b815260206004820152601c60248201527f4c7a4170703a20696e76616c69642061646170746572506172616d73000000006044820152606401610a8e565b506022015190565b803561ffff8116811461341357600080fd5b919050565b60008083601f84011261342a57600080fd5b5081356001600160401b0381111561344157600080fd5b60208301915083602082850101111561345957600080fd5b9250929050565b80356001600160401b038116811461341357600080fd5b6000806000806000806080878903121561349057600080fd5b61349987613401565b955060208701356001600160401b03808211156134b557600080fd5b6134c18a838b01613418565b90975095508591506134d560408a01613460565b945060608901359150808211156134eb57600080fd5b506134f889828a01613418565b979a9699509497509295939492505050565b60006020828403121561351c57600080fd5b81356001600160e01b0319811681146113eb57600080fd5b60005b8381101561354f578181015183820152602001613537565b50506000910152565b60008151808452613570816020860160208601613534565b601f01601f19169290920160200192915050565b6020815260006113eb6020830184613558565b6000602082840312156135a957600080fd5b6113eb82613401565b6001600160a01b0381168114611ba557600080fd5b600080604083850312156135da57600080fd5b82356135e5816135b2565b946020939093013593505050565b6000806040838503121561360657600080fd5b6135e583613401565b60008060006060848603121561362457600080fd5b833561362f816135b2565b9250602084013561363f816135b2565b929592945050506040919091013590565b8035801515811461341357600080fd5b60008060008060008060a0878903121561367957600080fd5b61368287613401565b9550602087013594506040870135935061369e60608801613650565b925060808701356001600160401b038111156136b957600080fd5b6134f889828a01613418565b6000806000604084860312156136da57600080fd5b6136e384613401565b925060208401356001600160401b038111156136fe57600080fd5b61370a86828701613418565b9497909650939450505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561375557613755613717565b604052919050565b60006001600160401b0382111561377657613776613717565b50601f01601f191660200190565b60008060006060848603121561379957600080fd5b6137a284613401565b925060208401356001600160401b038111156137bd57600080fd5b8401601f810186136137ce57600080fd5b80356137e16137dc8261375d565b61372d565b8181528760208385010111156137f657600080fd5b8160208401602083013760006020838301015280945050505061381b60408501613460565b90509250925092565b60006060828403121561383657600080fd5b50919050565b600080600080600060a0868803121561385457600080fd5b853561385f816135b2565b945061386d60208701613401565b9350604086013592506060860135915060808601356001600160401b0381111561389657600080fd5b6138a288828901613824565b9150509295509295909350565b6000602082840312156138c157600080fd5b81356113eb816135b2565b60008060008060008060008060e0898b0312156138e857600080fd5b88356138f3816135b2565b975061390160208a01613401565b9650604089013595506060890135945060808901356001600160401b038082111561392b57600080fd5b6139378c838d01613418565b909650945084915061394b60a08c01613460565b935060c08b013591508082111561396157600080fd5b5061396e8b828c01613824565b9150509295985092959890939650565b6000806040838503121561399157600080fd5b61399a83613401565b91506139a860208401613401565b90509250929050565b600080600080600080600080600060e08a8c0312156139cf57600080fd5b6139d88a613401565b985060208a0135975060408a0135965060608a01356001600160401b0380821115613a0257600080fd5b613a0e8d838e01613418565b9098509650869150613a2260808d01613460565b9550613a3060a08d01613650565b945060c08c0135915080821115613a4657600080fd5b50613a538c828d01613418565b915080935050809150509295985092959850929598565b600080600080600060808688031215613a8257600080fd5b613a8b86613401565b9450613a9960208701613401565b93506040860135925060608601356001600160401b03811115613abb57600080fd5b613ac788828901613418565b969995985093965092949392505050565b60008060408385031215613aeb57600080fd5b8235613af6816135b2565b91506020830135613b06816135b2565b809150509250929050565b600080600060608486031215613b2657600080fd5b613b2f84613401565b9250613b3d60208501613401565b9150604084013590509250925092565b600060208284031215613b5f57600080fd5b6113eb82613650565b6000806000806000806000806000806101008b8d031215613b8857600080fd5b613b918b613401565b995060208b01356001600160401b0380821115613bad57600080fd5b613bb98e838f01613418565b909b509950899150613bcd60408e01613460565b985060608d0135975060808d01359150613be6826135b2565b90955060a08c0135945060c08c01359080821115613c0357600080fd5b50613c108d828e01613418565b9150809450508092505060e08b013590509295989b9194979a5092959850565b60008060008060808587031215613c4657600080fd5b613c4f85613401565b9350613c5d60208601613401565b92506040850135613c6d816135b2565b9396929550929360600135925050565b600181811c90821680613c9157607f821691505b60208210810361383657634e487b7160e01b600052602260045260246000fd5b8183823760009101908152919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610c7c57610c7c613cc1565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b61ffff84168152604060208201526000611c50604083018486613cea565b6000808335601e19843603018112613d4857600080fd5b8301803591506001600160401b03821115613d6257600080fd5b60200191503681900382131561345957600080fd5b81810381811115610c7c57610c7c613cc1565b8284823760609190911b6bffffffffffffffffffffffff19169101908152601401919050565b601f82111561276557600081815260208120601f850160051c81016020861015613dd75750805b601f850160051c820191505b818110156110ed57828155600101613de3565b81516001600160401b03811115613e0f57613e0f613717565b613e2381613e1d8454613c7d565b84613db0565b602080601f831160018114613e585760008415613e405750858301515b600019600386901b1c1916600185901b1785556110ed565b600085815260208120601f198616915b82811015613e8757888601518255948401946001909101908401613e68565b5085821015613ea55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600061ffff808816835280871660208401525084604083015260806060830152613ee3608083018486613cea565b979650505050505050565b61ffff86168152608060208201526000613f0c608083018688613cea565b6001600160401b0394909416604083015250606001529392505050565b61ffff8916815260c060208201526000613f4760c08301898b613cea565b6001600160401b038816604084015286606084015285608084015282810360a0840152613f75818587613cea565b9b9a5050505050505050505050565b6001600160401b03831115613f9b57613f9b613717565b613faf83613fa98354613c7d565b83613db0565b6000601f841160018114613fe35760008515613fcb5750838201355b600019600387901b1c1916600186901b178355610d96565b600083815260209020601f19861690835b828110156140145786850135825560209485019460019092019101613ff4565b50868210156140315760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b60006020828403121561405557600080fd5b81516001600160401b0381111561406b57600080fd5b8201601f8101841361407c57600080fd5b805161408a6137dc8261375d565b81815285602083850101111561409f57600080fd5b611c50826020830160208601613534565b61ffff851681526080602082015260006140cd6080830186613558565b6001600160401b03851660408401528281036060840152613ee38185613558565b61ffff861681526001600160a01b038516602082015260a06040820181905260009061411c90830186613558565b841515606084015282810360808401526141368185613558565b98975050505050505050565b6000806040838503121561415557600080fd5b505080516020909101519092909150565b60008251614178818460208701613534565b9190910192915050565b61ffff8616815260a06020820152600061419f60a0830187613558565b6001600160401b038616604084015282810360608401526141c08186613558565b905082810360808401526141368185613558565b634e487b7160e01b600052601260045260246000fd5b6000826141f9576141f96141d4565b500490565b600061010061ffff8b16835280602084015261421c8184018b613558565b6001600160401b038a166040850152606084018990526001600160a01b038816608085015260a0840187905283810360c0850152905061425c8186613558565b9150508260e08301529998505050505050505050565b6060815260006142856060830186613558565b6001600160401b039490941660208301525060400152919050565b6000826142af576142af6141d4565b500690565b61ffff8716815260c0602082015260006142d160c0830188613558565b82810360408401526142e38188613558565b6001600160a01b0387811660608601528616608085015283810360a0850152905061430e8185613558565b9998505050505050505050565b60ff60f81b8760f81b16815285600182015260006001600160401b0360c01b808760c01b166021840152856029840152808560c01b16604984015250825161436a816051850160208701613534565b91909101605101979650505050505050565b8082028115828204841417610c7c57610c7c613cc156fea2646970667358221220fa7d686a776bf0a7ac14a4aff5dbfb0cc7c355662dc466b0b0669b3913aadd1564736f6c634300081300330000000000000000000000009740ff91f1985d8d2b71494ae1a2f723bb3ed9e4

Deployed Bytecode

0x6080604052600436106102fe5760003560e01c80638cfd8f5c11610190578063c4461834116100dc578063eab45d9c11610095578063ed629c5c1161006f578063ed629c5c146109ad578063f2fde38b146109c7578063f5ecbdbc146109e7578063fc0c546a14610a0757600080fd5b8063eab45d9c1461094d578063eaffd49a1461096d578063eb8d72b71461098d57600080fd5b8063c4461834146108af578063cbed8b9c146108c5578063d1deba1f146108e5578063dd62ed3e146108f8578063df2a5b3b14610918578063e6a20ae61461093857600080fd5b80639f38369a11610149578063a6c3d16511610123578063a6c3d1651461081b578063a9059cbb1461083b578063b353aaa71461085b578063baf3292d1461088f57600080fd5b80639f38369a146107bb578063a457c2d7146107db578063a4c51df5146107fb57600080fd5b80638cfd8f5c146106b55780638da5cb5b146106ed5780639358928b1461071f578063950c8a741461073457806395d89b41146107545780639bdb98121461076957600080fd5b80633d8b38f61161024f57806366ad5c8a11610208578063715018a6116101e2578063715018a6146106395780637533d7881461064e57806376203b481461066e578063857749b01461068157600080fd5b806366ad5c8a146105d0578063695ef6bf146105f057806370a082311461060357600080fd5b80633d8b38f6146104ea5780633f1f4fa41461050a57806342d65a8d1461053757806344770515146105575780634c42899a1461056c5780635b8c41e61461058157600080fd5b80630df37483116102bc57806323b872dd1161029657806323b872dd14610453578063313ce56714610473578063365260b41461049557806339509351146104ca57600080fd5b80630df37483146103fe57806310ddb1371461041e57806318160ddd1461043e57600080fd5b80621d35671461030357806301ffc9a71461032557806306fdde031461035a57806307e0db171461037c578063093f0e271461039c578063095ea7b3146103de575b600080fd5b34801561030f57600080fd5b5061032361031e366004613477565b610a1a565b005b34801561033157600080fd5b5061034561034036600461350a565b610c4b565b60405190151581526020015b60405180910390f35b34801561036657600080fd5b5061036f610c82565b6040516103519190613584565b34801561038857600080fd5b50610323610397366004613597565b610d14565b3480156103a857600080fd5b506103d07f22ad9585a395edc8067b50da4778cafbb7fa2c4bbd7619fad6aeba403857fd7481565b604051908152602001610351565b3480156103ea57600080fd5b506103456103f93660046135c7565b610d9d565b34801561040a57600080fd5b506103236104193660046135f3565b610db5565b34801561042a57600080fd5b50610323610439366004613597565b610dd4565b34801561044a57600080fd5b50600a546103d0565b34801561045f57600080fd5b5061034561046e36600461360f565b610e2c565b34801561047f57600080fd5b5060125b60405160ff9091168152602001610351565b3480156104a157600080fd5b506104b56104b0366004613660565b610e50565b60408051928352602083019190915201610351565b3480156104d657600080fd5b506103456104e53660046135c7565b610ea5565b3480156104f657600080fd5b506103456105053660046136c5565b610ec7565b34801561051657600080fd5b506103d0610525366004613597565b60036020526000908152604090205481565b34801561054357600080fd5b506103236105523660046136c5565b610f93565b34801561056357600080fd5b506103d0600081565b34801561057857600080fd5b50610483600081565b34801561058d57600080fd5b506103d061059c366004613784565b6005602090815260009384526040808520845180860184018051928152908401958401959095209452929052825290205481565b3480156105dc57600080fd5b506103236105eb366004613477565b611019565b6103236105fe36600461383c565b6110f5565b34801561060f57600080fd5b506103d061061e3660046138af565b6001600160a01b031660009081526008602052604090205490565b34801561064557600080fd5b50610323611160565b34801561065a57600080fd5b5061036f610669366004613597565b611174565b61032361067c3660046138cc565b61120e565b34801561068d57600080fd5b506104837f000000000000000000000000000000000000000000000000000000000000000881565b3480156106c157600080fd5b506103d06106d036600461397e565b600260209081526000928352604080842090915290825290205481565b3480156106f957600080fd5b506000546001600160a01b03165b6040516001600160a01b039091168152602001610351565b34801561072b57600080fd5b506103d06112bd565b34801561074057600080fd5b50600454610707906001600160a01b031681565b34801561076057600080fd5b5061036f6112cd565b34801561077557600080fd5b50610345610784366004613784565b6007602090815260009384526040808520845180860184018051928152908401958401959095209452929052825290205460ff1681565b3480156107c757600080fd5b5061036f6107d6366004613597565b6112dc565b3480156107e757600080fd5b506103456107f63660046135c7565b6113f2565b34801561080757600080fd5b506104b56108163660046139b1565b61146d565b34801561082757600080fd5b506103236108363660046136c5565b6114fc565b34801561084757600080fd5b506103456108563660046135c7565b611585565b34801561086757600080fd5b506107077f0000000000000000000000009740ff91f1985d8d2b71494ae1a2f723bb3ed9e481565b34801561089b57600080fd5b506103236108aa3660046138af565b611593565b3480156108bb57600080fd5b506103d061271081565b3480156108d157600080fd5b506103236108e0366004613a6a565b6115f0565b6103236108f3366004613477565b61167a565b34801561090457600080fd5b506103d0610913366004613ad8565b611890565b34801561092457600080fd5b50610323610933366004613b11565b6118bb565b34801561094457600080fd5b50610483600181565b34801561095957600080fd5b50610323610968366004613b4d565b61196d565b34801561097957600080fd5b50610323610988366004613b68565b6119b6565b34801561099957600080fd5b506103236109a83660046136c5565b611ad5565b3480156109b957600080fd5b506006546103459060ff1681565b3480156109d357600080fd5b506103236109e23660046138af565b611b2f565b3480156109f357600080fd5b5061036f610a02366004613c30565b611ba8565b348015610a1357600080fd5b5030610707565b337f0000000000000000000000009740ff91f1985d8d2b71494ae1a2f723bb3ed9e46001600160a01b031614610a975760405162461bcd60e51b815260206004820152601e60248201527f4c7a4170703a20696e76616c696420656e64706f696e742063616c6c6572000060448201526064015b60405180910390fd5b61ffff861660009081526001602052604081208054610ab590613c7d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae190613c7d565b8015610b2e5780601f10610b0357610100808354040283529160200191610b2e565b820191906000526020600020905b815481529060010190602001808311610b1157829003601f168201915b50505050509050805186869050148015610b49575060008151115b8015610b71575080516020820120604051610b679088908890613cb1565b6040518091039020145b610bcc5760405162461bcd60e51b815260206004820152602660248201527f4c7a4170703a20696e76616c696420736f757263652073656e64696e6720636f6044820152651b9d1c9858dd60d21b6064820152608401610a8e565b610c428787878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8a018190048102820181019092528881528a935091508890889081908401838280828437600092019190915250611c5992505050565b50505050505050565b60006001600160e01b03198216631f7ecdf760e01b1480610c7c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600b8054610c9190613c7d565b80601f0160208091040260200160405190810160405280929190818152602001828054610cbd90613c7d565b8015610d0a5780601f10610cdf57610100808354040283529160200191610d0a565b820191906000526020600020905b815481529060010190602001808311610ced57829003601f168201915b5050505050905090565b610d1c611cd2565b6040516307e0db1760e01b815261ffff821660048201527f0000000000000000000000009740ff91f1985d8d2b71494ae1a2f723bb3ed9e46001600160a01b0316906307e0db17906024015b600060405180830381600087803b158015610d8257600080fd5b505af1158015610d96573d6000803e3d6000fd5b5050505050565b600033610dab818585611d2c565b5060019392505050565b610dbd611cd2565b61ffff909116600090815260036020526040902055565b610ddc611cd2565b6040516310ddb13760e01b815261ffff821660048201527f0000000000000000000000009740ff91f1985d8d2b71494ae1a2f723bb3ed9e46001600160a01b0316906310ddb13790602401610d68565b600033610e3a858285611e50565b610e45858585611eca565b506001949350505050565b600080610e968888888888888080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061207592505050565b91509150965096945050505050565b600033610dab818585610eb88383611890565b610ec29190613cd7565b611d2c565b61ffff831660009081526001602052604081208054829190610ee890613c7d565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1490613c7d565b8015610f615780601f10610f3657610100808354040283529160200191610f61565b820191906000526020600020905b815481529060010190602001808311610f4457829003601f168201915b505050505090508383604051610f78929190613cb1565b60405180910390208180519060200120149150509392505050565b610f9b611cd2565b6040516342d65a8d60e01b81526001600160a01b037f0000000000000000000000009740ff91f1985d8d2b71494ae1a2f723bb3ed9e416906342d65a8d90610feb90869086908690600401613d13565b600060405180830381600087803b15801561100557600080fd5b505af1158015610c42573d6000803e3d6000fd5b3330146110775760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d7573742062656044820152650204c7a4170760d41b6064820152608401610a8e565b6110ed8686868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f89018190048102820181019092528781528993509150879087908190840183828082843760009201919091525061216992505050565b505050505050565b6110ed8585858561110960208701876138af565b61111960408801602089016138af565b6111266040890189613d31565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506121f092505050565b611168611cd2565b61117260006122d8565b565b6001602052600090815260409020805461118d90613c7d565b80601f01602080910402602001604051908101604052809291908181526020018280546111b990613c7d565b80156112065780601f106111db57610100808354040283529160200191611206565b820191906000526020600020905b8154815290600101906020018083116111e957829003601f168201915b505050505081565b6112b28888888888888080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508a925061125b91505060208901896138af565b61126b60408a0160208b016138af565b61127860408b018b613d31565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061232892505050565b505050505050505050565b60006112c8600a5490565b905090565b6060600c8054610c9190613c7d565b61ffff81166000908152600160205260408120805460609291906112ff90613c7d565b80601f016020809104026020016040519081016040528092919081815260200182805461132b90613c7d565b80156113785780601f1061134d57610100808354040283529160200191611378565b820191906000526020600020905b81548152906001019060200180831161135b57829003601f168201915b5050505050905080516000036113d05760405162461bcd60e51b815260206004820152601d60248201527f4c7a4170703a206e6f20747275737465642070617468207265636f72640000006044820152606401610a8e565b6113eb6000601483516113e39190613d77565b839190612424565b9392505050565b600033816114008286611890565b9050838110156114605760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a8e565b610e458286868403611d2c565b6000806114ea8b8b8b8b8b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8d018190048102820181019092528b81528e93508d9250908c908c908190840183828082843760009201919091525061253192505050565b91509150995099975050505050505050565b611504611cd2565b81813060405160200161151993929190613d8a565b60408051601f1981840301815291815261ffff85166000908152600160205220906115449082613df6565b507f8c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572ce83838360405161157893929190613d13565b60405180910390a1505050565b600033610dab818585611eca565b61159b611cd2565b600480546001600160a01b0319166001600160a01b0383169081179091556040519081527f5db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b906020015b60405180910390a150565b6115f8611cd2565b6040516332fb62e760e21b81526001600160a01b037f0000000000000000000000009740ff91f1985d8d2b71494ae1a2f723bb3ed9e4169063cbed8b9c9061164c9088908890889088908890600401613eb5565b600060405180830381600087803b15801561166657600080fd5b505af11580156112b2573d6000803e3d6000fd5b61ffff8616600090815260056020526040808220905161169d9088908890613cb1565b90815260408051602092819003830190206001600160401b0387166000908152925290205490508061171d5760405162461bcd60e51b815260206004820152602360248201527f4e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d65737360448201526261676560e81b6064820152608401610a8e565b80838360405161172e929190613cb1565b60405180910390201461178d5760405162461bcd60e51b815260206004820152602160248201527f4e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f616044820152601960fa1b6064820152608401610a8e565b61ffff871660009081526005602052604080822090516117b09089908990613cb1565b90815260408051602092819003830181206001600160401b038916600090815290845282902093909355601f88018290048202830182019052868252611848918991899089908190840183828082843760009201919091525050604080516020601f8a018190048102820181019092528881528a93509150889088908190840183828082843760009201919091525061216992505050565b7fc264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e5878787878560405161187f959493929190613eee565b60405180910390a150505050505050565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205490565b6118c3611cd2565b6000811161190b5760405162461bcd60e51b81526020600482015260156024820152744c7a4170703a20696e76616c6964206d696e47617360581b6044820152606401610a8e565b61ffff83811660008181526002602090815260408083209487168084529482529182902085905581519283528201929092529081018290527f9d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac090606001611578565b611975611cd2565b6006805460ff19168215159081179091556040519081527f1584ad594a70cbe1e6515592e1272a987d922b097ead875069cebe8b40c004a4906020016115e5565b333014611a055760405162461bcd60e51b815260206004820152601f60248201527f4f4654436f72653a2063616c6c6572206d757374206265204f4654436f7265006044820152606401610a8e565b611a103086866125ec565b9350846001600160a01b03168a61ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf86604051611a5291815260200190565b60405180910390a3604051633fe79aed60e11b81526001600160a01b03861690637fcf35da908390611a96908e908e908e908e908e908d908d908d90600401613f29565b600060405180830381600088803b158015611ab057600080fd5b5087f1158015611ac4573d6000803e3d6000fd5b505050505050505050505050505050565b611add611cd2565b61ffff83166000908152600160205260409020611afb828483613f84565b507ffa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dab83838360405161157893929190613d13565b611b37611cd2565b6001600160a01b038116611b9c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a8e565b611ba5816122d8565b50565b604051633d7b2f6f60e21b815261ffff808616600483015284166024820152306044820152606481018290526060907f0000000000000000000000009740ff91f1985d8d2b71494ae1a2f723bb3ed9e46001600160a01b03169063f5ecbdbc90608401600060405180830381865afa158015611c28573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611c509190810190614043565b95945050505050565b600080611cbc5a60966366ad5c8a60e01b89898989604051602401611c8194939291906140b0565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091523092919061263e565b91509150816110ed576110ed86868686856126c8565b6000546001600160a01b031633146111725760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a8e565b6001600160a01b038316611d8e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a8e565b6001600160a01b038216611def5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a8e565b6001600160a01b0383811660008181526009602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000611e5c8484611890565b90506000198114611ec45781811015611eb75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a8e565b611ec48484848403611d2c565b50505050565b6001600160a01b038316611f2e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a8e565b6001600160a01b038216611f905760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a8e565b6001600160a01b038316600090815260086020526040902054818110156120085760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a8e565b6001600160a01b0380851660008181526008602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906120689086815260200190565b60405180910390a3611ec4565b60008060006120c3876120878861276a565b6040805160006020820152602181019390935260c09190911b6001600160c01b0319166041830152805160298184030181526049909201905290565b60405163040a7bb160e41b81529091506001600160a01b037f0000000000000000000000009740ff91f1985d8d2b71494ae1a2f723bb3ed9e416906340a7bb109061211a908b90309086908b908b906004016140ee565b6040805180830381865afa158015612136573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061215a9190614142565b92509250509550959350505050565b600061217582826127f0565b905060ff81166121905761218b8585858561284c565b610d96565b60001960ff8216016121a85761218b858585856128dc565b60405162461bcd60e51b815260206004820152601c60248201527f4f4654436f72653a20756e6b6e6f776e207061636b65742074797065000000006044820152606401610a8e565b60006121fe87828481612aea565b61220785612b64565b50905061221688888884612ba4565b9050600081116122645760405162461bcd60e51b815260206004820152601960248201527813d19510dbdc994e88185b5bdd5b9d081d1bdbc81cdb585b1b603a1b6044820152606401610a8e565b6000612273876120878461276a565b9050612283888287878734612bd6565b86896001600160a01b03168961ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a856040516122c491815260200190565b60405180910390a450979650505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000612340896001846001600160401b038916612aea565b61234987612b64565b5090506123588a8a8a84612ba4565b9050600081116123a65760405162461bcd60e51b815260206004820152601960248201527813d19510dbdc994e88185b5bdd5b9d081d1bdbc81cdb585b1b603a1b6044820152606401610a8e565b60006123bd338a6123b68561276a565b8a8a612d7b565b90506123cd8a8287878734612bd6565b888b6001600160a01b03168b61ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a8560405161240e91815260200190565b60405180910390a4509998505050505050505050565b60608161243281601f613cd7565b10156124715760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b6044820152606401610a8e565b61247b8284613cd7565b845110156124bf5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b6044820152606401610a8e565b6060821580156124de5760405191506000825260208201604052612528565b6040519150601f8416801560200281840101858101878315602002848b0101015b818310156125175780518352602092830192016124ff565b5050858452601f01601f1916604052505b50949350505050565b6000806000612544338a6123b68b61276a565b60405163040a7bb160e41b81529091506001600160a01b037f0000000000000000000000009740ff91f1985d8d2b71494ae1a2f723bb3ed9e416906340a7bb109061259b908d90309086908b908b906004016140ee565b6040805180830381865afa1580156125b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125db9190614142565b925092505097509795505050505050565b600033306001600160a01b0386161480159061261a5750806001600160a01b0316856001600160a01b031614155b1561262a5761262a858285611e50565b612635858585611eca565b50909392505050565b6000606060008060008661ffff166001600160401b0381111561266357612663613717565b6040519080825280601f01601f19166020018201604052801561268d576020820181803683370190505b50905060008087516020890160008d8df191503d9250868311156126af578692505b828152826000602083013e909890975095505050505050565b8180519060200120600560008761ffff1661ffff168152602001908152602001600020856040516126f99190614166565b9081526040805191829003602090810183206001600160401b0388166000908152915220919091557fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c906127569087908790879087908790614182565b60405180910390a15050505050565b505050565b6000806127977f00000000000000000000000000000000000000000000000000000002540be400846141ea565b90506001600160401b03811115610c7c5760405162461bcd60e51b815260206004820152601a60248201527f4f4654436f72653a20616d6f756e745344206f766572666c6f770000000000006044820152606401610a8e565b60006127fd826001613cd7565b835110156128435760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b6044820152606401610a8e565b50016001015190565b60008061285883612dbc565b90925090506001600160a01b0382166128715761dead91505b600061287c82612e41565b9050612889878483612e76565b9050826001600160a01b03168761ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf836040516128cb91815260200190565b60405180910390a350505050505050565b60008060008060006128ed86612e89565b945094509450945094506000600760008b61ffff1661ffff168152602001908152602001600020896040516129229190614166565b90815260408051602092819003830190206001600160401b038b166000908152925281205460ff16915061295585612e41565b9050816129c3576129678b3083612e76565b61ffff8c1660009081526007602052604090819020905191925060019161298f908d90614166565b90815260408051602092819003830190206001600160401b038d16600090815292529020805460ff19169115159190911790555b6001600160a01b0386163b612a1a576040516001600160a01b03871681527f9aedf5fdba8716db3b6705ca00150643309995d4f818a249ed6dde6677e7792d9060200160405180910390a150505050505050611ec4565b8a8a8a8a8a8a868a60008a612a38578b6001600160401b0316612a3a565b5a5b9050600080612a6c5a609663eaffd49a60e01b8e8e8e8d8d8d8d8d604051602401611c819897969594939291906141fe565b915091508115612ac5578751602089012060405161ffff8d16907fb8890edbfc1c74692f527444645f95489c3703cc2df42e4a366f5d06fa6cd88490612ab7908e908e908690614272565b60405180910390a250612ad2565b612ad28b8b8b8b856126c8565b50505050505050505050505050505050505050505050565b60065460ff1615612b0657612b0184848484612f40565b611ec4565b815115611ec45760405162461bcd60e51b815260206004820152602660248201527f4f4654436f72653a205f61646170746572506172616d73206d7573742062652060448201526532b6b83a3c9760d11b6064820152608401610a8e565b600080612b917f00000000000000000000000000000000000000000000000000000002540be400846142a0565b9050612b9d8184613d77565b9150915091565b6000336001600160a01b0386168114612bc257612bc2868285611e50565b612bcc868461301f565b5090949350505050565b61ffff861660009081526001602052604081208054612bf490613c7d565b80601f0160208091040260200160405190810160405280929190818152602001828054612c2090613c7d565b8015612c6d5780601f10612c4257610100808354040283529160200191612c6d565b820191906000526020600020905b815481529060010190602001808311612c5057829003601f168201915b505050505090508051600003612cde5760405162461bcd60e51b815260206004820152603060248201527f4c7a4170703a2064657374696e6174696f6e20636861696e206973206e6f742060448201526f61207472757374656420736f7572636560801b6064820152608401610a8e565b612ce9878751613153565b60405162c5803160e81b81526001600160a01b037f0000000000000000000000009740ff91f1985d8d2b71494ae1a2f723bb3ed9e4169063c5803100908490612d40908b9086908c908c908c908c906004016142b4565b6000604051808303818588803b158015612d5957600080fd5b505af1158015612d6d573d6000803e3d6000fd5b505050505050505050505050565b6060600185856001600160a01b0389168587604051602001612da29695949392919061431b565b604051602081830303815290604052905095945050505050565b60008080612dca84826127f0565b60ff16148015612ddb575082516029145b612e225760405162461bcd60e51b815260206004820152601860248201527713d19510dbdc994e881a5b9d985b1a59081c185e5b1bd85960421b6044820152606401610a8e565b612e2d83600d6131c4565b9150612e3a836021613229565b9050915091565b6000610c7c7f00000000000000000000000000000000000000000000000000000002540be4006001600160401b03841661437c565b6000612e828383613286565b5092915050565b600080806060816001612e9c87836127f0565b60ff1614612ee75760405162461bcd60e51b815260206004820152601860248201527713d19510dbdc994e881a5b9d985b1a59081c185e5b1bd85960421b6044820152606401610a8e565b612ef286600d6131c4565b9350612eff866021613229565b9250612f0c866029613347565b9450612f19866049613229565b9050612f356051808851612f2d9190613d77565b889190612424565b915091939590929450565b6000612f4b836133a5565b61ffff808716600090815260026020908152604080832093891683529290529081205491925090612f7d908490613cd7565b905060008111612fcf5760405162461bcd60e51b815260206004820152601a60248201527f4c7a4170703a206d696e4761734c696d6974206e6f74207365740000000000006044820152606401610a8e565b808210156110ed5760405162461bcd60e51b815260206004820152601b60248201527f4c7a4170703a20676173206c696d697420697320746f6f206c6f7700000000006044820152606401610a8e565b6001600160a01b03821661307f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610a8e565b6001600160a01b038216600090815260086020526040902054818110156130f35760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610a8e565b6001600160a01b03831660008181526008602090815260408083208686039055600a80548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b61ffff82166000908152600360205260408120549081900361317457506127105b808211156127655760405162461bcd60e51b815260206004820181905260248201527f4c7a4170703a207061796c6f61642073697a6520697320746f6f206c617267656044820152606401610a8e565b60006131d1826014613cd7565b835110156132195760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b6044820152606401610a8e565b500160200151600160601b900490565b6000613236826008613cd7565b8351101561327d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b6044820152606401610a8e565b50016008015190565b6001600160a01b0382166132dc5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610a8e565b80600a60008282546132ee9190613cd7565b90915550506001600160a01b0382166000818152600860209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6000613354826020613cd7565b8351101561339c5760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b6044820152606401610a8e565b50016020015190565b60006022825110156133f95760405162461bcd60e51b815260206004820152601c60248201527f4c7a4170703a20696e76616c69642061646170746572506172616d73000000006044820152606401610a8e565b506022015190565b803561ffff8116811461341357600080fd5b919050565b60008083601f84011261342a57600080fd5b5081356001600160401b0381111561344157600080fd5b60208301915083602082850101111561345957600080fd5b9250929050565b80356001600160401b038116811461341357600080fd5b6000806000806000806080878903121561349057600080fd5b61349987613401565b955060208701356001600160401b03808211156134b557600080fd5b6134c18a838b01613418565b90975095508591506134d560408a01613460565b945060608901359150808211156134eb57600080fd5b506134f889828a01613418565b979a9699509497509295939492505050565b60006020828403121561351c57600080fd5b81356001600160e01b0319811681146113eb57600080fd5b60005b8381101561354f578181015183820152602001613537565b50506000910152565b60008151808452613570816020860160208601613534565b601f01601f19169290920160200192915050565b6020815260006113eb6020830184613558565b6000602082840312156135a957600080fd5b6113eb82613401565b6001600160a01b0381168114611ba557600080fd5b600080604083850312156135da57600080fd5b82356135e5816135b2565b946020939093013593505050565b6000806040838503121561360657600080fd5b6135e583613401565b60008060006060848603121561362457600080fd5b833561362f816135b2565b9250602084013561363f816135b2565b929592945050506040919091013590565b8035801515811461341357600080fd5b60008060008060008060a0878903121561367957600080fd5b61368287613401565b9550602087013594506040870135935061369e60608801613650565b925060808701356001600160401b038111156136b957600080fd5b6134f889828a01613418565b6000806000604084860312156136da57600080fd5b6136e384613401565b925060208401356001600160401b038111156136fe57600080fd5b61370a86828701613418565b9497909650939450505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561375557613755613717565b604052919050565b60006001600160401b0382111561377657613776613717565b50601f01601f191660200190565b60008060006060848603121561379957600080fd5b6137a284613401565b925060208401356001600160401b038111156137bd57600080fd5b8401601f810186136137ce57600080fd5b80356137e16137dc8261375d565b61372d565b8181528760208385010111156137f657600080fd5b8160208401602083013760006020838301015280945050505061381b60408501613460565b90509250925092565b60006060828403121561383657600080fd5b50919050565b600080600080600060a0868803121561385457600080fd5b853561385f816135b2565b945061386d60208701613401565b9350604086013592506060860135915060808601356001600160401b0381111561389657600080fd5b6138a288828901613824565b9150509295509295909350565b6000602082840312156138c157600080fd5b81356113eb816135b2565b60008060008060008060008060e0898b0312156138e857600080fd5b88356138f3816135b2565b975061390160208a01613401565b9650604089013595506060890135945060808901356001600160401b038082111561392b57600080fd5b6139378c838d01613418565b909650945084915061394b60a08c01613460565b935060c08b013591508082111561396157600080fd5b5061396e8b828c01613824565b9150509295985092959890939650565b6000806040838503121561399157600080fd5b61399a83613401565b91506139a860208401613401565b90509250929050565b600080600080600080600080600060e08a8c0312156139cf57600080fd5b6139d88a613401565b985060208a0135975060408a0135965060608a01356001600160401b0380821115613a0257600080fd5b613a0e8d838e01613418565b9098509650869150613a2260808d01613460565b9550613a3060a08d01613650565b945060c08c0135915080821115613a4657600080fd5b50613a538c828d01613418565b915080935050809150509295985092959850929598565b600080600080600060808688031215613a8257600080fd5b613a8b86613401565b9450613a9960208701613401565b93506040860135925060608601356001600160401b03811115613abb57600080fd5b613ac788828901613418565b969995985093965092949392505050565b60008060408385031215613aeb57600080fd5b8235613af6816135b2565b91506020830135613b06816135b2565b809150509250929050565b600080600060608486031215613b2657600080fd5b613b2f84613401565b9250613b3d60208501613401565b9150604084013590509250925092565b600060208284031215613b5f57600080fd5b6113eb82613650565b6000806000806000806000806000806101008b8d031215613b8857600080fd5b613b918b613401565b995060208b01356001600160401b0380821115613bad57600080fd5b613bb98e838f01613418565b909b509950899150613bcd60408e01613460565b985060608d0135975060808d01359150613be6826135b2565b90955060a08c0135945060c08c01359080821115613c0357600080fd5b50613c108d828e01613418565b9150809450508092505060e08b013590509295989b9194979a5092959850565b60008060008060808587031215613c4657600080fd5b613c4f85613401565b9350613c5d60208601613401565b92506040850135613c6d816135b2565b9396929550929360600135925050565b600181811c90821680613c9157607f821691505b60208210810361383657634e487b7160e01b600052602260045260246000fd5b8183823760009101908152919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610c7c57610c7c613cc1565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b61ffff84168152604060208201526000611c50604083018486613cea565b6000808335601e19843603018112613d4857600080fd5b8301803591506001600160401b03821115613d6257600080fd5b60200191503681900382131561345957600080fd5b81810381811115610c7c57610c7c613cc1565b8284823760609190911b6bffffffffffffffffffffffff19169101908152601401919050565b601f82111561276557600081815260208120601f850160051c81016020861015613dd75750805b601f850160051c820191505b818110156110ed57828155600101613de3565b81516001600160401b03811115613e0f57613e0f613717565b613e2381613e1d8454613c7d565b84613db0565b602080601f831160018114613e585760008415613e405750858301515b600019600386901b1c1916600185901b1785556110ed565b600085815260208120601f198616915b82811015613e8757888601518255948401946001909101908401613e68565b5085821015613ea55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600061ffff808816835280871660208401525084604083015260806060830152613ee3608083018486613cea565b979650505050505050565b61ffff86168152608060208201526000613f0c608083018688613cea565b6001600160401b0394909416604083015250606001529392505050565b61ffff8916815260c060208201526000613f4760c08301898b613cea565b6001600160401b038816604084015286606084015285608084015282810360a0840152613f75818587613cea565b9b9a5050505050505050505050565b6001600160401b03831115613f9b57613f9b613717565b613faf83613fa98354613c7d565b83613db0565b6000601f841160018114613fe35760008515613fcb5750838201355b600019600387901b1c1916600186901b178355610d96565b600083815260209020601f19861690835b828110156140145786850135825560209485019460019092019101613ff4565b50868210156140315760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b60006020828403121561405557600080fd5b81516001600160401b0381111561406b57600080fd5b8201601f8101841361407c57600080fd5b805161408a6137dc8261375d565b81815285602083850101111561409f57600080fd5b611c50826020830160208601613534565b61ffff851681526080602082015260006140cd6080830186613558565b6001600160401b03851660408401528281036060840152613ee38185613558565b61ffff861681526001600160a01b038516602082015260a06040820181905260009061411c90830186613558565b841515606084015282810360808401526141368185613558565b98975050505050505050565b6000806040838503121561415557600080fd5b505080516020909101519092909150565b60008251614178818460208701613534565b9190910192915050565b61ffff8616815260a06020820152600061419f60a0830187613558565b6001600160401b038616604084015282810360608401526141c08186613558565b905082810360808401526141368185613558565b634e487b7160e01b600052601260045260246000fd5b6000826141f9576141f96141d4565b500490565b600061010061ffff8b16835280602084015261421c8184018b613558565b6001600160401b038a166040850152606084018990526001600160a01b038816608085015260a0840187905283810360c0850152905061425c8186613558565b9150508260e08301529998505050505050505050565b6060815260006142856060830186613558565b6001600160401b039490941660208301525060400152919050565b6000826142af576142af6141d4565b500690565b61ffff8716815260c0602082015260006142d160c0830188613558565b82810360408401526142e38188613558565b6001600160a01b0387811660608601528616608085015283810360a0850152905061430e8185613558565b9998505050505050505050565b60ff60f81b8760f81b16815285600182015260006001600160401b0360c01b808760c01b166021840152856029840152808560c01b16604984015250825161436a816051850160208701613534565b91909101605101979650505050505050565b8082028115828204841417610c7c57610c7c613cc156fea2646970667358221220fa7d686a776bf0a7ac14a4aff5dbfb0cc7c355662dc466b0b0669b3913aadd1564736f6c63430008130033

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

0000000000000000000000009740ff91f1985d8d2b71494ae1a2f723bb3ed9e4

-----Decoded View---------------
Arg [0] : _lzEndpoint (address): 0x9740FF91F1985D8d2B71494aE1A2f723bb3Ed9E4

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000009740ff91f1985d8d2b71494ae1a2f723bb3ed9e4


Deployed Bytecode Sourcemap

85011:284:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31771:762;;;;;;;;;;-1:-1:-1;31771:762:0;;;;;:::i;:::-;;:::i;:::-;;64401:213;;;;;;;;;;-1:-1:-1;64401:213:0;;;;;:::i;:::-;;:::i;:::-;;;2029:14:1;;2022:22;2004:41;;1992:2;1977:18;64401:213:0;;;;;;;;71234:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35069:123::-;;;;;;;;;;-1:-1:-1;35069:123:0;;;;;:::i;:::-;;:::i;84758:73::-;;;;;;;;;;-1:-1:-1;84758:73:0;84810:20;84758:73;;;;;3147:25:1;;;3135:2;3120:18;84758:73:0;3001:177:1;73585:201:0;;;;;;;;;;-1:-1:-1;73585:201:0;;;;;:::i;:::-;;:::i;36994:142::-;;;;;;;;;;-1:-1:-1;36994:142:0;;;;;:::i;:::-;;:::i;35200:129::-;;;;;;;;;;-1:-1:-1;35200:129:0;;;;;:::i;:::-;;:::i;72354:108::-;;;;;;;;;;-1:-1:-1;72442:12:0;;72354:108;;74366:295;;;;;;;;;;-1:-1:-1;74366:295:0;;;;;:::i;:::-;;:::i;72196:93::-;;;;;;;;;;-1:-1:-1;72279:2:0;72196:93;;;4529:4:1;4517:17;;;4499:36;;4487:2;4472:18;72196:93:0;4357:184:1;64622:292:0;;;;;;;;;;-1:-1:-1;64622:292:0;;;;;:::i;:::-;;:::i;:::-;;;;5577:25:1;;;5633:2;5618:18;;5611:34;;;;5550:18;64622:292:0;5403:248:1;75070:238:0;;;;;;;;;;-1:-1:-1;75070:238:0;;;;;:::i;:::-;;:::i;37234:250::-;;;;;;;;;;-1:-1:-1;37234:250:0;;;;;:::i;:::-;;:::i;31313:53::-;;;;;;;;;;-1:-1:-1;31313:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;35337:178;;;;;;;;;;-1:-1:-1;35337:178:0;;;;;:::i;:::-;;:::i;50930:37::-;;;;;;;;;;;;50966:1;50930:37;;50996:33;;;;;;;;;;;;51028:1;50996:33;;43705:85;;;;;;;;;;-1:-1:-1;43705:85:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44927:346;;;;;;;;;;-1:-1:-1;44927:346:0;;;;;:::i;:::-;;:::i;63506:304::-;;;;;;:::i;:::-;;:::i;72525:127::-;;;;;;;;;;-1:-1:-1;72525:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;72626:18:0;72599:7;72626:18;;;:9;:18;;;;;;;72525:127;29858:103;;;;;;;;;;;;;:::i;31183:51::-;;;;;;;;;;-1:-1:-1;31183:51:0;;;;;:::i;:::-;;:::i;63818:388::-;;;;;;:::i;:::-;;:::i;51087:37::-;;;;;;;;;;;;;;;31241:65;;;;;;;;;;-1:-1:-1;31241:65:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;29210:87;;;;;;;;;;-1:-1:-1;29256:7:0;29283:6;-1:-1:-1;;;;;29283:6:0;29210:87;;;-1:-1:-1;;;;;10626:32:1;;;10608:51;;10596:2;10581:18;29210:87:0;10462:203:1;83085:112:0;;;;;;;;;;;;;:::i;31373:23::-;;;;;;;;;;-1:-1:-1;31373:23:0;;;;-1:-1:-1;;;;;31373:23:0;;;71453:104;;;;;;;;;;;;;:::i;51174:83::-;;;;;;;;;;-1:-1:-1;51174:83:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36166:330;;;;;;;;;;-1:-1:-1;36166:330:0;;;;;:::i;:::-;;:::i;75811:424::-;;;;;;;;;;-1:-1:-1;75811:424:0;;;;;:::i;:::-;;:::i;64922:380::-;;;;;;;;;;-1:-1:-1;64922:380:0;;;;;:::i;:::-;;:::i;35877:281::-;;;;;;;;;;-1:-1:-1;35877:281:0;;;;;:::i;:::-;;:::i;72858:193::-;;;;;;;;;;-1:-1:-1;72858:193:0;;;;;:::i;:::-;;:::i;31130:46::-;;;;;;;;;;;;;;;36504:136;;;;;;;;;;-1:-1:-1;36504:136:0;;;;;:::i;:::-;;:::i;31066:55::-;;;;;;;;;;;;31116:5;31066:55;;34857:204;;;;;;;;;;-1:-1:-1;34857:204:0;;;;;:::i;:::-;;:::i;45459:767::-;;;;;;:::i;:::-;;:::i;73114:151::-;;;;;;;;;;-1:-1:-1;73114:151:0;;;;;:::i;:::-;;:::i;36648:284::-;;;;;;;;;;-1:-1:-1;36648:284:0;;;;;:::i;:::-;;:::i;51036:42::-;;;;;;;;;;;;51077:1;51036:42;;53018:223;;;;;;;;;;-1:-1:-1;53018:223:0;;;;;:::i;:::-;;:::i;52446:564::-;;;;;;;;;;-1:-1:-1;52446:564:0;;;;;:::i;:::-;;:::i;35662:207::-;;;;;;;;;;-1:-1:-1;35662:207:0;;;;;:::i;:::-;;:::i;51133:34::-;;;;;;;;;;-1:-1:-1;51133:34:0;;;;;;;;30116:201;;;;;;;;;;-1:-1:-1;30116:201:0;;;;;:::i;:::-;;:::i;34584:211::-;;;;;;;;;;-1:-1:-1;34584:211:0;;;;;:::i;:::-;;:::i;83205:103::-;;;;;;;;;;-1:-1:-1;83295:4:0;83205:103;;31771:762;27837:10;32011;-1:-1:-1;;;;;31987:35:0;;31979:78;;;;-1:-1:-1;;;31979:78:0;;15389:2:1;31979:78:0;;;15371:21:1;15428:2;15408:18;;;15401:30;15467:32;15447:18;;;15440:60;15517:18;;31979:78:0;;;;;;;;;32099:32;;;32070:26;32099:32;;;:19;:32;;;;;32070:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32305:13;:20;32283:11;;:18;;:42;:70;;;;;32352:1;32329:13;:20;:24;32283:70;:124;;;;-1:-1:-1;32383:24:0;;;;;;32357:22;;;;32367:11;;;;32357:22;:::i;:::-;;;;;;;;:50;32283:124;32275:175;;;;-1:-1:-1;;;32275:175:0;;16409:2:1;32275:175:0;;;16391:21:1;16448:2;16428:18;;;16421:30;16487:34;16467:18;;;16460:62;-1:-1:-1;;;16538:18:1;;;16531:36;16584:19;;32275:175:0;16207:402:1;32275:175:0;32463:62;32482:11;32495;;32463:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;32463:62:0;;;;;;;;;;;;;;;;;;;;;;32508:6;;-1:-1:-1;32463:62:0;-1:-1:-1;32516:8:0;;;;;;32463:62;;32516:8;;;;32463:62;;;;;;;;;-1:-1:-1;32463:18:0;;-1:-1:-1;;;32463:62:0:i;:::-;31902:631;31771:762;;;;;;:::o;64401:213::-;64503:4;-1:-1:-1;;;;;;64527:39:0;;-1:-1:-1;;;64527:39:0;;:79;;-1:-1:-1;;;;;;;;;;62969:40:0;;;64570:36;64520:86;64401:213;-1:-1:-1;;64401:213:0:o;71234:100::-;71288:13;71321:5;71314:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71234:100;:::o;35069:123::-;29096:13;:11;:13::i;:::-;35149:35:::1;::::0;-1:-1:-1;;;35149:35:0;;16788:6:1;16776:19;;35149:35:0::1;::::0;::::1;16758:38:1::0;35149:10:0::1;-1:-1:-1::0;;;;;35149:25:0::1;::::0;::::1;::::0;16731:18:1;;35149:35:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;35069:123:::0;:::o;73585:201::-;73668:4;27837:10;73724:32;27837:10;73740:7;73749:6;73724:8;:32::i;:::-;-1:-1:-1;73774:4:0;;73585:201;-1:-1:-1;;;73585:201:0:o;36994:142::-;29096:13;:11;:13::i;:::-;37085:35:::1;::::0;;::::1;;::::0;;;:22:::1;:35;::::0;;;;:43;36994:142::o;35200:129::-;29096:13;:11;:13::i;:::-;35283:38:::1;::::0;-1:-1:-1;;;35283:38:0;;16788:6:1;16776:19;;35283:38:0::1;::::0;::::1;16758::1::0;35283:10:0::1;-1:-1:-1::0;;;;;35283:28:0::1;::::0;::::1;::::0;16731:18:1;;35283:38:0::1;16614:188:1::0;74366:295:0;74497:4;27837:10;74555:38;74571:4;27837:10;74586:6;74555:15;:38::i;:::-;74604:27;74614:4;74620:2;74624:6;74604:9;:27::i;:::-;-1:-1:-1;74649:4:0;;74366:295;-1:-1:-1;;;;74366:295:0:o;64622:292::-;64784:14;64800:11;64831:75;64848:11;64861:10;64873:7;64882;64891:14;;64831:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64831:16:0;;-1:-1:-1;;;64831:75:0:i;:::-;64824:82;;;;64622:292;;;;;;;;;:::o;75070:238::-;75158:4;27837:10;75214:64;27837:10;75230:7;75267:10;75239:25;27837:10;75230:7;75239:9;:25::i;:::-;:38;;;;:::i;:::-;75214:8;:64::i;37234:250::-;37376:32;;;37330:4;37376:32;;;:19;:32;;;;;37347:61;;37330:4;;37376:32;37347:61;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37464:11;;37454:22;;;;;;;:::i;:::-;;;;;;;;37436:13;37426:24;;;;;;:50;37419:57;;;37234:250;;;;;:::o;35337:178::-;29096:13;:11;:13::i;:::-;35452:55:::1;::::0;-1:-1:-1;;;35452:55:0;;-1:-1:-1;;;;;35452:10:0::1;:29;::::0;::::1;::::0;:55:::1;::::0;35482:11;;35495;;;;35452:55:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;44927:346:::0;27837:10;45141:4;45117:29;45109:80;;;;-1:-1:-1;;;45109:80:0;;17873:2:1;45109:80:0;;;17855:21:1;17912:2;17892:18;;;17885:30;17951:34;17931:18;;;17924:62;-1:-1:-1;;;18002:18:1;;;17995:36;18048:19;;45109:80:0;17671:402:1;45109:80:0;45200:65;45222:11;45235;;45200:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;45200:65:0;;;;;;;;;;;;;;;;;;;;;;45248:6;;-1:-1:-1;45200:65:0;-1:-1:-1;45256:8:0;;;;;;45200:65;;45256:8;;;;45200:65;;;;;;;;;-1:-1:-1;45200:21:0;;-1:-1:-1;;;45200:65:0:i;:::-;44927:346;;;;;;:::o;63506:304::-;63671:131;63677:5;63684:11;63697:10;63709:7;63718:25;;;;:11;:25;:::i;:::-;63745:29;;;;;;;;:::i;:::-;63776:25;;;;:11;:25;:::i;:::-;63671:131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63671:5:0;;-1:-1:-1;;;63671:131:0:i;29858:103::-;29096:13;:11;:13::i;:::-;29923:30:::1;29950:1;29923:18;:30::i;:::-;29858:103::o:0;31183:51::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;63818:388::-;64034:164;64047:5;64054:11;64067:10;64079:7;64088:8;;64034:164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64098:14:0;;-1:-1:-1;64114:25:0;;-1:-1:-1;;64114:25:0;;;:11;:25;:::i;:::-;64141:29;;;;;;;;:::i;:::-;64172:25;;;;:11;:25;:::i;:::-;64034:164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64034:12:0;;-1:-1:-1;;;64034:164:0:i;:::-;;63818:388;;;;;;;;:::o;83085:112::-;83152:4;83176:13;72442:12;;;72354:108;83176:13;83169:20;;83085:112;:::o;71453:104::-;71509:13;71542:7;71535:14;;;;;:::i;36166:330::-;36290:35;;;36270:17;36290:35;;;:19;:35;;;;;36270:55;;36245:12;;36270:17;36290:35;36270:55;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36344:4;:11;36359:1;36344:16;36336:58;;;;-1:-1:-1;;;36336:58:0;;19066:2:1;36336:58:0;;;19048:21:1;19105:2;19085:18;;;19078:30;19144:31;19124:18;;;19117:59;19193:18;;36336:58:0;18864:353:1;36336:58:0;36412:31;36423:1;36440:2;36426:4;:11;:16;;;;:::i;:::-;36412:4;;:31;:10;:31::i;:::-;36405:38;36166:330;-1:-1:-1;;;36166:330:0:o;75811:424::-;75904:4;27837:10;75904:4;75987:25;27837:10;76004:7;75987:9;:25::i;:::-;75960:52;;76051:15;76031:16;:35;;76023:85;;;;-1:-1:-1;;;76023:85:0;;19557:2:1;76023:85:0;;;19539:21:1;19596:2;19576:18;;;19569:30;19635:34;19615:18;;;19608:62;-1:-1:-1;;;19686:18:1;;;19679:35;19731:19;;76023:85:0;19355:401:1;76023:85:0;76136:60;76145:5;76152:7;76180:15;76161:16;:34;76136:8;:60::i;64922:380::-;65139:14;65155:11;65186:108;65210:11;65223:10;65235:7;65244:8;;65186:108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;65186:108:0;;;;;;;;;;;;;;;;;;;;;;65254:14;;-1:-1:-1;65270:7:0;;-1:-1:-1;65186:108:0;65279:14;;;;;;65186:108;;65279:14;;;;65186:108;;;;;;;;;-1:-1:-1;65186:23:0;;-1:-1:-1;;;65186:108:0:i;:::-;65179:115;;;;64922:380;;;;;;;;;;;;:::o;35877:281::-;29096:13;:11;:13::i;:::-;36049:14:::1;;36073:4;36032:47;;;;;;;;;;:::i;:::-;;::::0;;-1:-1:-1;;36032:47:0;;::::1;::::0;;;;;;35994:35:::1;::::0;::::1;;::::0;;;:19:::1;36032:47;35994:35:::0;;;:85:::1;::::0;:35;:85:::1;:::i;:::-;;36095:55;36119:14;36135;;36095:55;;;;;;;;:::i;:::-;;;;;;;;35877:281:::0;;;:::o;72858:193::-;72937:4;27837:10;72993:28;27837:10;73010:2;73014:6;72993:9;:28::i;36504:136::-;29096:13;:11;:13::i;:::-;36574:8:::1;:20:::0;;-1:-1:-1;;;;;;36574:20:0::1;-1:-1:-1::0;;;;;36574:20:0;::::1;::::0;;::::1;::::0;;;36610:22:::1;::::0;10608:51:1;;;36610:22:0::1;::::0;10596:2:1;10581:18;36610:22:0::1;;;;;;;;36504:136:::0;:::o;34857:204::-;29096:13;:11;:13::i;:::-;34991:62:::1;::::0;-1:-1:-1;;;34991:62:0;;-1:-1:-1;;;;;34991:10:0::1;:20;::::0;::::1;::::0;:62:::1;::::0;35012:8;;35022;;35032:11;;35045:7;;;;34991:62:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;45459:767:::0;45670:27;;;45648:19;45670:27;;;:14;:27;;;;;;:40;;;;45698:11;;;;45670:40;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45670:48:0;;;;;;;;;;;;-1:-1:-1;45670:48:0;45729:73;;;;-1:-1:-1;;;45729:73:0;;23029:2:1;45729:73:0;;;23011:21:1;23068:2;23048:18;;;23041:30;23107:34;23087:18;;;23080:62;-1:-1:-1;;;23158:18:1;;;23151:33;23201:19;;45729:73:0;22827:399:1;45729:73:0;45844:11;45831:8;;45821:19;;;;;;;:::i;:::-;;;;;;;;:34;45813:80;;;;-1:-1:-1;;;45813:80:0;;23433:2:1;45813:80:0;;;23415:21:1;23472:2;23452:18;;;23445:30;23511:34;23491:18;;;23484:62;-1:-1:-1;;;23562:18:1;;;23555:31;23603:19;;45813:80:0;23231:397:1;45813:80:0;45941:27;;;46000:1;45941:27;;;:14;:27;;;;;;:40;;;;45969:11;;;;45941:40;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45941:48:0;;;;;;;;;;;;:61;;;;46071:65;;;;;;;;;;;;;;;;;;;46093:11;;46106;;46071:65;;;;;;46106:11;46071:65;;46106:11;46071:65;;;;;;;;;-1:-1:-1;;46071:65:0;;;;;;;;;;;;;;;;;;;;;;46119:6;;-1:-1:-1;46071:65:0;-1:-1:-1;46127:8:0;;;;;;46071:65;;46127:8;;;;46071:65;;;;;;;;;-1:-1:-1;46071:21:0;;-1:-1:-1;;;46071:65:0:i;:::-;46152:66;46172:11;46185;;46198:6;46206:11;46152:66;;;;;;;;;;:::i;:::-;;;;;;;;45592:634;45459:767;;;;;;:::o;73114:151::-;-1:-1:-1;;;;;73230:18:0;;;73203:7;73230:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;73114:151::o;36648:284::-;29096:13;:11;:13::i;:::-;36772:1:::1;36762:7;:11;36754:45;;;::::0;-1:-1:-1;;;36754:45:0;;24333:2:1;36754:45:0::1;::::0;::::1;24315:21:1::0;24372:2;24352:18;;;24345:30;-1:-1:-1;;;24391:18:1;;;24384:51;24452:18;;36754:45:0::1;24131:345:1::0;36754:45:0::1;36810:28;::::0;;::::1;;::::0;;;:15:::1;:28;::::0;;;;;;;:41;;::::1;::::0;;;;;;;;;;:51;;;36877:47;;24704:34:1;;;24754:18;;24747:43;;;;24806:18;;;24799:34;;;36877:47:0::1;::::0;24667:2:1;24652:18;36877:47:0::1;24481:358:1::0;53018:223:0;29096:13;:11;:13::i;:::-;53119:22:::1;:48:::0;;-1:-1:-1;;53119:48:0::1;::::0;::::1;;::::0;;::::1;::::0;;;53183:50:::1;::::0;2004:41:1;;;53183:50:0::1;::::0;1992:2:1;1977:18;53183:50:0::1;1864:187:1::0;52446:564:0;27837:10;52679:4;52655:29;52647:73;;;;-1:-1:-1;;;52647:73:0;;25046:2:1;52647:73:0;;;25028:21:1;25085:2;25065:18;;;25058:30;25124:33;25104:18;;;25097:61;25175:18;;52647:73:0;24844:355:1;52647:73:0;52760:42;52782:4;52789:3;52794:7;52760:13;:42::i;:::-;52750:52;;52848:3;-1:-1:-1;;;;;52818:43:0;52835:11;52818:43;;;52853:7;52818:43;;;;3147:25:1;;3135:2;3120:18;;3001:177;52818:43:0;;;;;;;;52891:111;;-1:-1:-1;;;52891:111:0;;-1:-1:-1;;;;;52891:33:0;;;;;52930:11;;52891:111;;52943:11;;52956;;;;52969:6;;52977:5;;52984:7;;52993:8;;;;52891:111;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52446:564;;;;;;;;;;:::o;35662:207::-;29096:13;:11;:13::i;:::-;35763:35:::1;::::0;::::1;;::::0;;;:19:::1;:35;::::0;;;;:43:::1;35801:5:::0;;35763:35;:43:::1;:::i;:::-;;35822:39;35839:14;35855:5;;35822:39;;;;;;;;:::i;30116:201::-:0;29096:13;:11;:13::i;:::-;-1:-1:-1;;;;;30205:22:0;::::1;30197:73;;;::::0;-1:-1:-1;;;30197:73:0;;27371:2:1;30197:73:0::1;::::0;::::1;27353:21:1::0;27410:2;27390:18;;;27383:30;27449:34;27429:18;;;27422:62;-1:-1:-1;;;27500:18:1;;;27493:36;27546:19;;30197:73:0::1;27169:402:1::0;30197:73:0::1;30281:28;30300:8;30281:18;:28::i;:::-;30116:201:::0;:::o;34584:211::-;34719:68;;-1:-1:-1;;;34719:68:0;;27813:6:1;27846:15;;;34719:68:0;;;27828:34:1;27898:15;;27878:18;;;27871:43;34768:4:0;27930:18:1;;;27923:60;27999:18;;;27992:34;;;34687:12:0;;34719:10;-1:-1:-1;;;;;34719:20:0;;;;27775:19:1;;34719:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;34719:68:0;;;;;;;;;;;;:::i;:::-;34712:75;34584:211;-1:-1:-1;;;;;34584:211:0:o;44074:514::-;44224:12;44238:19;44261:153;44295:9;44306:3;44334:34;;;44370:11;44383;44396:6;44404:8;44311:102;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;44311:102:0;;;;;;;;;;;;;;-1:-1:-1;;;;;44311:102:0;-1:-1:-1;;;;;;44311:102:0;;;;;;;;;;44269:4;;44261:153;;:33;:153::i;:::-;44223:191;;;;44474:7;44469:112;;44498:71;44518:11;44531;44544:6;44552:8;44562:6;44498:19;:71::i;29375:132::-;29256:7;29283:6;-1:-1:-1;;;;;29283:6:0;27837:10;29439:23;29431:68;;;;-1:-1:-1;;;29431:68:0;;29453:2:1;29431:68:0;;;29435:21:1;;;29472:18;;;29465:30;29531:34;29511:18;;;29504:62;29583:18;;29431:68:0;29251:356:1;79766:380:0;-1:-1:-1;;;;;79902:19:0;;79894:68;;;;-1:-1:-1;;;79894:68:0;;29814:2:1;79894:68:0;;;29796:21:1;29853:2;29833:18;;;29826:30;29892:34;29872:18;;;29865:62;-1:-1:-1;;;29943:18:1;;;29936:34;29987:19;;79894:68:0;29612:400:1;79894:68:0;-1:-1:-1;;;;;79981:21:0;;79973:68;;;;-1:-1:-1;;;79973:68:0;;30219:2:1;79973:68:0;;;30201:21:1;30258:2;30238:18;;;30231:30;30297:34;30277:18;;;30270:62;-1:-1:-1;;;30348:18:1;;;30341:32;30390:19;;79973:68:0;30017:398:1;79973:68:0;-1:-1:-1;;;;;80054:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;80106:32;;3147:25:1;;;80106:32:0;;3120:18:1;80106:32:0;;;;;;;79766:380;;;:::o;80437:441::-;80572:24;80599:25;80609:5;80616:7;80599:9;:25::i;:::-;80572:52;;-1:-1:-1;;80639:16:0;:37;80635:236;;80721:6;80701:16;:26;;80693:68;;;;-1:-1:-1;;;80693:68:0;;30622:2:1;80693:68:0;;;30604:21:1;30661:2;30641:18;;;30634:30;30700:31;30680:18;;;30673:59;30749:18;;80693:68:0;30420:353:1;80693:68:0;80797:51;80806:5;80813:7;80841:6;80822:16;:25;80797:8;:51::i;:::-;80561:317;80437:441;;;:::o;76705:816::-;-1:-1:-1;;;;;76836:18:0;;76828:68;;;;-1:-1:-1;;;76828:68:0;;30980:2:1;76828:68:0;;;30962:21:1;31019:2;30999:18;;;30992:30;31058:34;31038:18;;;31031:62;-1:-1:-1;;;31109:18:1;;;31102:35;31154:19;;76828:68:0;30778:401:1;76828:68:0;-1:-1:-1;;;;;76915:16:0;;76907:64;;;;-1:-1:-1;;;76907:64:0;;31386:2:1;76907:64:0;;;31368:21:1;31425:2;31405:18;;;31398:30;31464:34;31444:18;;;31437:62;-1:-1:-1;;;31515:18:1;;;31508:33;31558:19;;76907:64:0;31184:399:1;76907:64:0;-1:-1:-1;;;;;77057:15:0;;77035:19;77057:15;;;:9;:15;;;;;;77091:21;;;;77083:72;;;;-1:-1:-1;;;77083:72:0;;31790:2:1;77083:72:0;;;31772:21:1;31829:2;31809:18;;;31802:30;31868:34;31848:18;;;31841:62;-1:-1:-1;;;31919:18:1;;;31912:36;31965:19;;77083:72:0;31588:402:1;77083:72:0;-1:-1:-1;;;;;77183:15:0;;;;;;;:9;:15;;;;;;77201:20;;;77183:38;;77389:13;;;;;;;;;;:23;;;;;;77437:26;;;;;;77215:6;3147:25:1;;3135:2;3120:18;;3001:177;77437:26:0;;;;;;;;77476:37;81478:125;53433:419;53587:14;53603:11;53671:20;53694:47;53713:10;53725:15;53732:7;53725:6;:15::i;:::-;60052:48;;;51028:1;60052:48;;;36099:49:1;36164:11;;;36157:27;;;;36240:3;36218:16;;;;-1:-1:-1;;;;;;36214:51:1;36200:12;;;36193:73;60052:48:0;;;;;;;;;36282:12:1;;;;60052:48:0;;;59923:185;53694:47;53759:85;;-1:-1:-1;;;53759:85:0;;53671:70;;-1:-1:-1;;;;;;53759:10:0;:23;;;;:85;;53783:11;;53804:4;;53671:70;;53820:7;;53829:14;;53759:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53752:92;;;;;53433:419;;;;;;;;:::o;54388:515::-;54540:16;54559:19;:8;54540:16;54559;:19::i;:::-;54540:38;-1:-1:-1;54595:21:0;;;54591:305;;54633:52;54642:11;54655;54668:6;54676:8;54633;:52::i;:::-;54591:305;;;-1:-1:-1;;54707:30:0;;;;54703:193;;54754:59;54770:11;54783;54796:6;54804:8;54754:15;:59::i;54703:193::-;54846:38;;-1:-1:-1;;;54846:38:0;;33094:2:1;54846:38:0;;;33076:21:1;33133:2;33113:18;;;33106:30;33172;33152:18;;;33145:58;33220:18;;54846:38:0;32892:352:1;54911:774:0;55110:11;55134:71;55154:11;55110;55176:14;55110:11;55134:19;:71::i;:::-;55230:20;55242:7;55230:11;:20::i;:::-;-1:-1:-1;55218:32:0;-1:-1:-1;55270:50:0;55281:5;55288:11;55301:10;55218:32;55270:10;:50::i;:::-;55261:59;;55388:1;55379:6;:10;55371:48;;;;-1:-1:-1;;;55371:48:0;;33451:2:1;55371:48:0;;;33433:21:1;33490:2;33470:18;;;33463:30;-1:-1:-1;;;33509:18:1;;;33502:55;33574:18;;55371:48:0;33249:349:1;55371:48:0;55432:22;55457:46;55476:10;55488:14;55495:6;55488;:14::i;55457:46::-;55432:71;;55514:94;55522:11;55535:9;55546:14;55562:18;55582:14;55598:9;55514:7;:94::i;:::-;55658:10;55651:5;-1:-1:-1;;;;;55626:51:0;55638:11;55626:51;;;55670:6;55626:51;;;;3147:25:1;;3135:2;3120:18;;3001:177;55626:51:0;;;;;;;;55123:562;54911:774;;;;;;;;;:::o;30477:191::-;30551:16;30570:6;;-1:-1:-1;;;;;30587:17:0;;;-1:-1:-1;;;;;;30587:17:0;;;;;;30620:40;;30570:6;;;;;;;30620:40;;30551:16;30620:40;30540:128;30477:191;:::o;56115:911::-;56367:11;56391:82;56411:11;51077:1;56442:14;-1:-1:-1;;;;;56391:82:0;;:19;:82::i;:::-;56498:20;56510:7;56498:11;:20::i;:::-;-1:-1:-1;56486:32:0;-1:-1:-1;56538:50:0;56549:5;56556:11;56569:10;56486:32;56538:10;:50::i;:::-;56529:59;;56616:1;56607:6;:10;56599:48;;;;-1:-1:-1;;;56599:48:0;;33451:2:1;56599:48:0;;;33433:21:1;33490:2;33470:18;;;33463:30;-1:-1:-1;;;33509:18:1;;;33502:55;33574:18;;56599:48:0;33249:349:1;56599:48:0;56728:22;56753:91;56779:10;56791;56803:14;56810:6;56803;:14::i;:::-;56819:8;56829:14;56753:25;:91::i;:::-;56728:116;;56855:94;56863:11;56876:9;56887:14;56903:18;56923:14;56939:9;56855:7;:94::i;:::-;56999:10;56992:5;-1:-1:-1;;;;;56967:51:0;56979:11;56967:51;;;57011:6;56967:51;;;;3147:25:1;;3135:2;3120:18;;3001:177;56967:51:0;;;;;;;;56380:646;56115:911;;;;;;;;;;;:::o;17173:2779::-;17314:12;17368:7;17352:12;17368:7;17362:2;17352:12;:::i;:::-;:23;;17344:50;;;;-1:-1:-1;;;17344:50:0;;33805:2:1;17344:50:0;;;33787:21:1;33844:2;33824:18;;;33817:30;-1:-1:-1;;;33863:18:1;;;33856:44;33917:18;;17344:50:0;33603:338:1;17344:50:0;17430:16;17439:7;17430:6;:16;:::i;:::-;17413:6;:13;:33;;17405:63;;;;-1:-1:-1;;;17405:63:0;;34148:2:1;17405:63:0;;;34130:21:1;34187:2;34167:18;;;34160:30;-1:-1:-1;;;34206:18:1;;;34199:47;34263:18;;17405:63:0;33946:341:1;17405:63:0;17481:22;17547:15;;17576:1933;;;;19653:4;19647:11;19634:24;;19834:1;19823:9;19816:20;19884:4;19873:9;19869:20;19863:4;19856:34;17540:2365;;17576:1933;17753:4;17747:11;17734:24;;18390:2;18381:7;18377:16;18762:9;18755:17;18749:4;18745:28;18733:9;18722;18718:25;18714:60;18811:7;18807:2;18803:16;19060:6;19046:9;19039:17;19033:4;19029:28;19017:9;19009:6;19005:22;19001:57;18997:70;18839:426;19094:3;19090:2;19087:11;18839:426;;;19236:9;;19225:21;;19136:4;19128:13;;;;19169;18839:426;;;-1:-1:-1;;19285:26:0;;;19489:2;19472:11;-1:-1:-1;;19468:25:0;19462:4;19455:39;-1:-1:-1;17540:2365:0;-1:-1:-1;19935:9:0;17173:2779;-1:-1:-1;;;;17173:2779:0:o;53860:520::-;54067:14;54083:11;54154:20;54177:92;54203:10;54215;54227:15;54234:7;54227:6;:15::i;54177:92::-;54287:85;;-1:-1:-1;;;54287:85:0;;54154:115;;-1:-1:-1;;;;;;54287:10:0;:23;;;;:85;;54311:11;;54332:4;;54154:115;;54348:7;;54357:14;;54287:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54280:92;;;;;53860:520;;;;;;;;;;:::o;83974:391::-;84074:4;27837:10;84224:4;-1:-1:-1;;;;;84207:22:0;;;;;;:42;;;84242:7;-1:-1:-1;;;;;84233:16:0;:5;-1:-1:-1;;;;;84233:16:0;;;84207:42;84203:88;;;84251:40;84267:5;84274:7;84283;84251:15;:40::i;:::-;84302:30;84312:5;84319:3;84324:7;84302:9;:30::i;:::-;-1:-1:-1;84350:7:0;;83974:391;-1:-1:-1;;;83974:391:0:o;38677:1275::-;38839:4;38845:12;38907:15;38933:13;38957:24;38994:8;38984:19;;-1:-1:-1;;;;;38984:19:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38984:19:0;;38957:46;;39485:1;39459;39425:9;39419:16;39390:4;39379:9;39375:20;39344:1;39309:7;39283:4;39264:247;39252:259;;39576:16;39565:27;;39621:8;39612:7;39609:21;39606:78;;;39661:8;39650:19;;39606:78;39767:7;39754:11;39747:28;39885:7;39882:1;39875:4;39862:11;39858:22;39843:50;39922:8;;;;-1:-1:-1;38677:1275:0;-1:-1:-1;;;;;;38677:1275:0:o;44596:323::-;44820:8;44810:19;;;;;;44759:14;:27;44774:11;44759:27;;;;;;;;;;;;;;;44787:11;44759:40;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44759:48:0;;;;;;;;;:70;;;;44845:66;;;;44859:11;;44872;;44800:6;;44893:8;;44903:7;;44845:66;:::i;:::-;;;;;;;;44596:323;;;;;:::o;81478:125::-;;;;:::o;59358:238::-;59419:6;;59454:22;84459:9;59454:7;:22;:::i;:::-;59438:38;-1:-1:-1;;;;;;59495:28:0;;;59487:67;;;;-1:-1:-1;;;59487:67:0;;35767:2:1;59487:67:0;;;35749:21:1;35806:2;35786:18;;;35779:30;35845:28;35825:18;;;35818:56;35891:18;;59487:67:0;35565:350:1;20331:311:0;20408:5;20451:10;:6;20460:1;20451:10;:::i;:::-;20434:6;:13;:27;;20426:60;;;;-1:-1:-1;;;20426:60:0;;36507:2:1;20426:60:0;;;36489:21:1;36546:2;36526:18;;;36519:30;-1:-1:-1;;;36565:18:1;;;36558:49;36624:18;;20426:60:0;36305:343:1;20426:60:0;-1:-1:-1;20566:29:0;20582:3;20566:29;20560:36;;20331:311::o;55693:414::-;55805:10;55817:15;55836:28;55855:8;55836:18;:28::i;:::-;55804:60;;-1:-1:-1;55804:60:0;-1:-1:-1;;;;;;55879:16:0;;55875:69;;55925:6;55912:20;;55875:69;55956:11;55970:16;55977:8;55970:6;:16::i;:::-;55956:30;;56006:34;56016:11;56029:2;56033:6;56006:9;:34::i;:::-;55997:43;;56088:2;-1:-1:-1;;;;;56058:41:0;56075:11;56058:41;;;56092:6;56058:41;;;;3147:25:1;;3135:2;3120:18;;3001:177;56058:41:0;;;;;;;;55793:314;;;55693:414;;;;:::o;57034:1809::-;57172:12;57186:10;57198:15;57215:27;57244:17;57265:35;57291:8;57265:25;:35::i;:::-;57171:129;;;;;;;;;;57313:13;57329:15;:28;57345:11;57329:28;;;;;;;;;;;;;;;57358:11;57329:41;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;57329:49:0;;;;;;;;;;;;;;-1:-1:-1;57403:16:0;57410:8;57403:6;:16::i;:::-;57389:30;;57547:8;57542:167;;57581:45;57591:11;57612:4;57619:6;57581:9;:45::i;:::-;57641:28;;;;;;;:15;:28;;;;;;;:41;;57572:54;;-1:-1:-1;57693:4:0;;57641:41;;57670:11;;57641:41;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;57641:49:0;;;;;;;;;;:56;;-1:-1:-1;;57641:56:0;;;;;;;;;;57542:167;-1:-1:-1;;;;;58937:20:0;;;57721:97;;57763:22;;-1:-1:-1;;;;;10626:32:1;;10608:51;;57763:22:0;;10596:2:1;10581:18;57763:22:0;;;;;;;57800:7;;;;;;;;;57721:97;57892:11;57940;57977:6;58017:8;58052:4;58081:2;58109:6;58157:14;57872:17;58242:8;:33;;58265:10;-1:-1:-1;;;;;58242:33:0;;;;58253:9;58242:33;58231:44;;58287:12;58301:19;58324:180;58358:9;58369:3;58397:31;;;58430:10;58442;58454:5;58461;58468:3;58473:7;58482:15;58499:3;58374:129;;;;;;;;;;;;;;;:::i;58324:180::-;58286:218;;;;58521:7;58517:319;;;58560:18;;;;;;58598:59;;;;;;;;;;58633:10;;58645:5;;58560:18;;58598:59;:::i;:::-;;;;;;;;58530:139;58517:319;;;58757:67;58777:10;58789;58801:5;58808:7;58817:6;58757:19;:67::i;:::-;57160:1683;;;;;;;;;;;;;;;;;;57034:1809;;;;:::o;58977:373::-;59119:22;;;;59115:228;;;59158:63;59173:11;59186:7;59195:14;59211:9;59158:14;:63::i;:::-;59115:228;;;59262:21;;:26;59254:77;;;;-1:-1:-1;;;59254:77:0;;38139:2:1;59254:77:0;;;38121:21:1;38178:2;38158:18;;;38151:30;38217:34;38197:18;;;38190:62;-1:-1:-1;;;38268:18:1;;;38261:36;38314:19;;59254:77:0;37937:402:1;59733:182:0;59799:16;;59846:22;84459:9;59846:7;:22;:::i;:::-;59839:29;-1:-1:-1;59893:14:0;59839:29;59893:7;:14;:::i;:::-;59879:28;;59733:182;;;:::o;83500:286::-;83601:4;27837:10;-1:-1:-1;;;;;83663:16:0;;;;83659:62;;83681:40;83697:5;83704:7;83713;83681:15;:40::i;:::-;83732:21;83738:5;83745:7;83732:5;:21::i;:::-;-1:-1:-1;83771:7:0;;83500:286;-1:-1:-1;;;;83500:286:0:o;32822:553::-;33045:32;;;33016:26;33045:32;;;:19;:32;;;;;33016:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33096:13;:20;33120:1;33096:25;33088:86;;;;-1:-1:-1;;;33088:86:0;;38663:2:1;33088:86:0;;;38645:21:1;38702:2;38682:18;;;38675:30;38741:34;38721:18;;;38714:62;-1:-1:-1;;;38792:18:1;;;38785:46;38848:19;;33088:86:0;38461:412:1;33088:86:0;33185:47;33203:11;33216:8;:15;33185:17;:47::i;:::-;33243:124;;-1:-1:-1;;;33243:124:0;;-1:-1:-1;;;;;33243:10:0;:15;;;;33266:10;;33243:124;;33278:11;;33291:13;;33306:8;;33316:14;;33332:18;;33352:14;;33243:124;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33005:370;32822:553;;;;;;:::o;60467:403::-;60632:12;51077:1;60726:10;60751:9;-1:-1:-1;;;;;61538:23:0;;60814:14;60843:8;60664:198;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60657:205;;60467:403;;;;;;;:::o;60116:343::-;60198:10;;;60246:19;:8;60198:10;60246:16;:19::i;:::-;:30;;;:55;;;;;60280:8;:15;60299:2;60280:21;60246:55;60238:92;;;;-1:-1:-1;;;60238:92:0;;40657:2:1;60238:92:0;;;40639:21:1;40696:2;40676:18;;;40669:30;-1:-1:-1;;;40715:18:1;;;40708:54;40779:18;;60238:92:0;40455:348:1;60238:92:0;60348:22;:8;60367:2;60348:18;:22::i;:::-;60343:27;-1:-1:-1;60430:21:0;:8;60448:2;60430:17;:21::i;:::-;60419:32;;60116:343;;;:::o;59604:121::-;59669:4;59693:24;84459:9;-1:-1:-1;;;;;59693:24:0;;;:::i;83794:172::-;83890:4;83907:26;83913:10;83925:7;83907:5;:26::i;:::-;-1:-1:-1;83951:7:0;83794:172;-1:-1:-1;;83794:172:0:o;60878:541::-;60967:12;;;61010:20;60967:12;51077:1;61073:19;:8;60967:12;61073:16;:19::i;:::-;:39;;;61065:76;;;;-1:-1:-1;;;61065:76:0;;40657:2:1;61065:76:0;;;40639:21:1;40696:2;40676:18;;;40669:30;-1:-1:-1;;;40715:18:1;;;40708:54;40779:18;;61065:76:0;40455:348:1;61065:76:0;61159:22;:8;61178:2;61159:18;:22::i;:::-;61154:27;-1:-1:-1;61241:21:0;:8;61259:2;61241:17;:21::i;:::-;61230:32;-1:-1:-1;61280:22:0;:8;61299:2;61280:18;:22::i;:::-;61273:29;-1:-1:-1;61329:21:0;:8;61347:2;61329:17;:21::i;:::-;61313:37;;61371:40;61386:2;61408;61390:8;:15;:20;;;;:::i;:::-;61371:8;;:40;:14;:40::i;:::-;61361:50;;60878:541;;;;;;;:::o;33383:420::-;33519:21;33543:28;33556:14;33543:12;:28::i;:::-;33601;;;;33582:16;33601:28;;;:15;:28;;;;;;;;:35;;;;;;;;;;;;33519:52;;-1:-1:-1;33582:16:0;33601:47;;33639:9;;33601:47;:::i;:::-;33582:66;;33681:1;33667:11;:15;33659:54;;;;-1:-1:-1;;;33659:54:0;;41183:2:1;33659:54:0;;;41165:21:1;41222:2;41202:18;;;41195:30;41261:28;41241:18;;;41234:56;41307:18;;33659:54:0;40981:350:1;33659:54:0;33752:11;33732:16;:31;;33724:71;;;;-1:-1:-1;;;33724:71:0;;41538:2:1;33724:71:0;;;41520:21:1;41577:2;41557:18;;;41550:30;41616:29;41596:18;;;41589:57;41663:18;;33724:71:0;41336:351:1;78673:655:0;-1:-1:-1;;;;;78757:21:0;;78749:67;;;;-1:-1:-1;;;78749:67:0;;41894:2:1;78749:67:0;;;41876:21:1;41933:2;41913:18;;;41906:30;41972:34;41952:18;;;41945:62;-1:-1:-1;;;42023:18:1;;;42016:31;42064:19;;78749:67:0;41692:397:1;78749:67:0;-1:-1:-1;;;;;78916:18:0;;78891:22;78916:18;;;:9;:18;;;;;;78953:24;;;;78945:71;;;;-1:-1:-1;;;78945:71:0;;42296:2:1;78945:71:0;;;42278:21:1;42335:2;42315:18;;;42308:30;42374:34;42354:18;;;42347:62;-1:-1:-1;;;42425:18:1;;;42418:32;42467:19;;78945:71:0;42094:398:1;78945:71:0;-1:-1:-1;;;;;79044:18:0;;;;;;:9;:18;;;;;;;;79065:23;;;79044:44;;79175:12;:22;;;;;;;79222:37;3147:25:1;;;79044:18:0;;;79222:37;;3120:18:1;79222:37:0;;;;;;;81478:125;;;:::o;34090:389::-;34213:35;;;34189:21;34213:35;;;:22;:35;;;;;;;34263:21;;;34259:125;;-1:-1:-1;31116:5:0;34259:125;34418:16;34402:12;:32;;34394:77;;;;-1:-1:-1;;;34394:77:0;;42699:2:1;34394:77:0;;;42681:21:1;;;42718:18;;;42711:30;42777:34;42757:18;;;42750:62;42829:18;;34394:77:0;42497:356:1;19960:363:0;20039:7;20084:11;:6;20093:2;20084:11;:::i;:::-;20067:6;:13;:28;;20059:62;;;;-1:-1:-1;;;20059:62:0;;43060:2:1;20059:62:0;;;43042:21:1;43099:2;43079:18;;;43072:30;-1:-1:-1;;;43118:18:1;;;43111:51;43179:18;;20059:62:0;42858:345:1;20059:62:0;-1:-1:-1;20213:30:0;20229:4;20213:30;20207:37;-1:-1:-1;;;20203:71:0;;;19960:363::o;21294:314::-;21372:6;21416:10;:6;21425:1;21416:10;:::i;:::-;21399:6;:13;:27;;21391:60;;;;-1:-1:-1;;;21391:60:0;;43410:2:1;21391:60:0;;;43392:21:1;43449:2;43429:18;;;43422:30;-1:-1:-1;;;43468:18:1;;;43461:50;43528:18;;21391:60:0;43208:344:1;21391:60:0;-1:-1:-1;21532:29:0;21548:3;21532:29;21526:36;;21294:314::o;77808:532::-;-1:-1:-1;;;;;77892:21:0;;77884:65;;;;-1:-1:-1;;;77884:65:0;;43759:2:1;77884:65:0;;;43741:21:1;43798:2;43778:18;;;43771:30;43837:33;43817:18;;;43810:61;43888:18;;77884:65:0;43557:355:1;77884:65:0;78040:6;78024:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;78183:18:0;;;;;;:9;:18;;;;;;;;:28;;;;;;78234:37;3147:25:1;;;78234:37:0;;3120:18:1;78234:37:0;;;;;;;77808:532;;:::o;22595:329::-;22674:7;22719:11;:6;22728:2;22719:11;:::i;:::-;22702:6;:13;:28;;22694:62;;;;-1:-1:-1;;;22694:62:0;;44119:2:1;22694:62:0;;;44101:21:1;44158:2;44138:18;;;44131:30;-1:-1:-1;;;44177:18:1;;;44170:51;44238:18;;22694:62:0;43917:345:1;22694:62:0;-1:-1:-1;22844:30:0;22860:4;22844:30;22838:37;;22595:329::o;33811:271::-;33893:13;33952:2;33927:14;:21;:27;;33919:68;;;;-1:-1:-1;;;33919:68:0;;44469:2:1;33919:68:0;;;44451:21:1;44508:2;44488:18;;;44481:30;44547;44527:18;;;44520:58;44595:18;;33919:68:0;44267:352:1;33919:68:0;-1:-1:-1;34060:2:0;34040:23;34034:30;;33811:271::o;14:159:1:-;81:20;;141:6;130:18;;120:29;;110:57;;163:1;160;153:12;110:57;14:159;;;:::o;178:347::-;229:8;239:6;293:3;286:4;278:6;274:17;270:27;260:55;;311:1;308;301:12;260:55;-1:-1:-1;334:20:1;;-1:-1:-1;;;;;366:30:1;;363:50;;;409:1;406;399:12;363:50;446:4;438:6;434:17;422:29;;498:3;491:4;482:6;474;470:19;466:30;463:39;460:59;;;515:1;512;505:12;460:59;178:347;;;;;:::o;530:171::-;597:20;;-1:-1:-1;;;;;646:30:1;;636:41;;626:69;;691:1;688;681:12;706:862;812:6;820;828;836;844;852;905:3;893:9;884:7;880:23;876:33;873:53;;;922:1;919;912:12;873:53;945:28;963:9;945:28;:::i;:::-;935:38;;1024:2;1013:9;1009:18;996:32;-1:-1:-1;;;;;1088:2:1;1080:6;1077:14;1074:34;;;1104:1;1101;1094:12;1074:34;1143:58;1193:7;1184:6;1173:9;1169:22;1143:58;:::i;:::-;1220:8;;-1:-1:-1;1117:84:1;-1:-1:-1;1117:84:1;;-1:-1:-1;1274:37:1;1307:2;1292:18;;1274:37;:::i;:::-;1264:47;;1364:2;1353:9;1349:18;1336:32;1320:48;;1393:2;1383:8;1380:16;1377:36;;;1409:1;1406;1399:12;1377:36;;1448:60;1500:7;1489:8;1478:9;1474:24;1448:60;:::i;:::-;706:862;;;;-1:-1:-1;706:862:1;;-1:-1:-1;706:862:1;;1527:8;;706:862;-1:-1:-1;;;706:862:1:o;1573:286::-;1631:6;1684:2;1672:9;1663:7;1659:23;1655:32;1652:52;;;1700:1;1697;1690:12;1652:52;1726:23;;-1:-1:-1;;;;;;1778:32:1;;1768:43;;1758:71;;1825:1;1822;1815:12;2056:250;2141:1;2151:113;2165:6;2162:1;2159:13;2151:113;;;2241:11;;;2235:18;2222:11;;;2215:39;2187:2;2180:10;2151:113;;;-1:-1:-1;;2298:1:1;2280:16;;2273:27;2056:250::o;2311:271::-;2353:3;2391:5;2385:12;2418:6;2413:3;2406:19;2434:76;2503:6;2496:4;2491:3;2487:14;2480:4;2473:5;2469:16;2434:76;:::i;:::-;2564:2;2543:15;-1:-1:-1;;2539:29:1;2530:39;;;;2571:4;2526:50;;2311:271;-1:-1:-1;;2311:271:1:o;2587:220::-;2736:2;2725:9;2718:21;2699:4;2756:45;2797:2;2786:9;2782:18;2774:6;2756:45;:::i;2812:184::-;2870:6;2923:2;2911:9;2902:7;2898:23;2894:32;2891:52;;;2939:1;2936;2929:12;2891:52;2962:28;2980:9;2962:28;:::i;3183:131::-;-1:-1:-1;;;;;3258:31:1;;3248:42;;3238:70;;3304:1;3301;3294:12;3319:315;3387:6;3395;3448:2;3436:9;3427:7;3423:23;3419:32;3416:52;;;3464:1;3461;3454:12;3416:52;3503:9;3490:23;3522:31;3547:5;3522:31;:::i;:::-;3572:5;3624:2;3609:18;;;;3596:32;;-1:-1:-1;;;3319:315:1:o;3639:252::-;3706:6;3714;3767:2;3755:9;3746:7;3742:23;3738:32;3735:52;;;3783:1;3780;3773:12;3735:52;3806:28;3824:9;3806:28;:::i;3896:456::-;3973:6;3981;3989;4042:2;4030:9;4021:7;4017:23;4013:32;4010:52;;;4058:1;4055;4048:12;4010:52;4097:9;4084:23;4116:31;4141:5;4116:31;:::i;:::-;4166:5;-1:-1:-1;4223:2:1;4208:18;;4195:32;4236:33;4195:32;4236:33;:::i;:::-;3896:456;;4288:7;;-1:-1:-1;;;4342:2:1;4327:18;;;;4314:32;;3896:456::o;4546:160::-;4611:20;;4667:13;;4660:21;4650:32;;4640:60;;4696:1;4693;4686:12;4711:687;4813:6;4821;4829;4837;4845;4853;4906:3;4894:9;4885:7;4881:23;4877:33;4874:53;;;4923:1;4920;4913:12;4874:53;4946:28;4964:9;4946:28;:::i;:::-;4936:38;;5021:2;5010:9;5006:18;4993:32;4983:42;;5072:2;5061:9;5057:18;5044:32;5034:42;;5095:35;5126:2;5115:9;5111:18;5095:35;:::i;:::-;5085:45;;5181:3;5170:9;5166:19;5153:33;-1:-1:-1;;;;;5201:6:1;5198:30;5195:50;;;5241:1;5238;5231:12;5195:50;5280:58;5330:7;5321:6;5310:9;5306:22;5280:58;:::i;5656:481::-;5734:6;5742;5750;5803:2;5791:9;5782:7;5778:23;5774:32;5771:52;;;5819:1;5816;5809:12;5771:52;5842:28;5860:9;5842:28;:::i;:::-;5832:38;;5921:2;5910:9;5906:18;5893:32;-1:-1:-1;;;;;5940:6:1;5937:30;5934:50;;;5980:1;5977;5970:12;5934:50;6019:58;6069:7;6060:6;6049:9;6045:22;6019:58;:::i;:::-;5656:481;;6096:8;;-1:-1:-1;5993:84:1;;-1:-1:-1;;;;5656:481:1:o;6142:127::-;6203:10;6198:3;6194:20;6191:1;6184:31;6234:4;6231:1;6224:15;6258:4;6255:1;6248:15;6274:275;6345:2;6339:9;6410:2;6391:13;;-1:-1:-1;;6387:27:1;6375:40;;-1:-1:-1;;;;;6430:34:1;;6466:22;;;6427:62;6424:88;;;6492:18;;:::i;:::-;6528:2;6521:22;6274:275;;-1:-1:-1;6274:275:1:o;6554:186::-;6602:4;-1:-1:-1;;;;;6627:6:1;6624:30;6621:56;;;6657:18;;:::i;:::-;-1:-1:-1;6723:2:1;6702:15;-1:-1:-1;;6698:29:1;6729:4;6694:40;;6554:186::o;6745:815::-;6829:6;6837;6845;6898:2;6886:9;6877:7;6873:23;6869:32;6866:52;;;6914:1;6911;6904:12;6866:52;6937:28;6955:9;6937:28;:::i;:::-;6927:38;;7016:2;7005:9;7001:18;6988:32;-1:-1:-1;;;;;7035:6:1;7032:30;7029:50;;;7075:1;7072;7065:12;7029:50;7098:22;;7151:4;7143:13;;7139:27;-1:-1:-1;7129:55:1;;7180:1;7177;7170:12;7129:55;7216:2;7203:16;7241:48;7257:31;7285:2;7257:31;:::i;:::-;7241:48;:::i;:::-;7312:2;7305:5;7298:17;7352:7;7347:2;7342;7338;7334:11;7330:20;7327:33;7324:53;;;7373:1;7370;7363:12;7324:53;7428:2;7423;7419;7415:11;7410:2;7403:5;7399:14;7386:45;7472:1;7467:2;7462;7455:5;7451:14;7447:23;7440:34;7493:5;7483:15;;;;;7517:37;7550:2;7539:9;7535:18;7517:37;:::i;:::-;7507:47;;6745:815;;;;;:::o;7747:160::-;7812:5;7857:2;7848:6;7843:3;7839:16;7835:25;7832:45;;;7873:1;7870;7863:12;7832:45;-1:-1:-1;7895:6:1;7747:160;-1:-1:-1;7747:160:1:o;7912:711::-;8038:6;8046;8054;8062;8070;8123:3;8111:9;8102:7;8098:23;8094:33;8091:53;;;8140:1;8137;8130:12;8091:53;8179:9;8166:23;8198:31;8223:5;8198:31;:::i;:::-;8248:5;-1:-1:-1;8272:37:1;8305:2;8290:18;;8272:37;:::i;:::-;8262:47;;8356:2;8345:9;8341:18;8328:32;8318:42;;8407:2;8396:9;8392:18;8379:32;8369:42;;8462:3;8451:9;8447:19;8434:33;-1:-1:-1;;;;;8482:6:1;8479:30;8476:50;;;8522:1;8519;8512:12;8476:50;8545:72;8609:7;8600:6;8589:9;8585:22;8545:72;:::i;:::-;8535:82;;;7912:711;;;;;;;;:::o;8628:247::-;8687:6;8740:2;8728:9;8719:7;8715:23;8711:32;8708:52;;;8756:1;8753;8746:12;8708:52;8795:9;8782:23;8814:31;8839:5;8814:31;:::i;9103:1093::-;9257:6;9265;9273;9281;9289;9297;9305;9313;9366:3;9354:9;9345:7;9341:23;9337:33;9334:53;;;9383:1;9380;9373:12;9334:53;9422:9;9409:23;9441:31;9466:5;9441:31;:::i;:::-;9491:5;-1:-1:-1;9515:37:1;9548:2;9533:18;;9515:37;:::i;:::-;9505:47;;9599:2;9588:9;9584:18;9571:32;9561:42;;9650:2;9639:9;9635:18;9622:32;9612:42;;9705:3;9694:9;9690:19;9677:33;-1:-1:-1;;;;;9770:2:1;9762:6;9759:14;9756:34;;;9786:1;9783;9776:12;9756:34;9825:58;9875:7;9866:6;9855:9;9851:22;9825:58;:::i;:::-;9902:8;;-1:-1:-1;9799:84:1;-1:-1:-1;9799:84:1;;-1:-1:-1;9956:38:1;9989:3;9974:19;;9956:38;:::i;:::-;9946:48;;10047:3;10036:9;10032:19;10019:33;10003:49;;10077:2;10067:8;10064:16;10061:36;;;10093:1;10090;10083:12;10061:36;;10116:74;10182:7;10171:8;10160:9;10156:24;10116:74;:::i;:::-;10106:84;;;9103:1093;;;;;;;;;;;:::o;10201:256::-;10267:6;10275;10328:2;10316:9;10307:7;10303:23;10299:32;10296:52;;;10344:1;10341;10334:12;10296:52;10367:28;10385:9;10367:28;:::i;:::-;10357:38;;10414:37;10447:2;10436:9;10432:18;10414:37;:::i;:::-;10404:47;;10201:256;;;;;:::o;10670:1069::-;10800:6;10808;10816;10824;10832;10840;10848;10856;10864;10917:3;10905:9;10896:7;10892:23;10888:33;10885:53;;;10934:1;10931;10924:12;10885:53;10957:28;10975:9;10957:28;:::i;:::-;10947:38;;11032:2;11021:9;11017:18;11004:32;10994:42;;11083:2;11072:9;11068:18;11055:32;11045:42;;11138:2;11127:9;11123:18;11110:32;-1:-1:-1;;;;;11202:2:1;11194:6;11191:14;11188:34;;;11218:1;11215;11208:12;11188:34;11257:58;11307:7;11298:6;11287:9;11283:22;11257:58;:::i;:::-;11334:8;;-1:-1:-1;11231:84:1;-1:-1:-1;11231:84:1;;-1:-1:-1;11388:38:1;11421:3;11406:19;;11388:38;:::i;:::-;11378:48;;11445:36;11476:3;11465:9;11461:19;11445:36;:::i;:::-;11435:46;;11534:3;11523:9;11519:19;11506:33;11490:49;;11564:2;11554:8;11551:16;11548:36;;;11580:1;11577;11570:12;11548:36;;11619:60;11671:7;11660:8;11649:9;11645:24;11619:60;:::i;:::-;11593:86;;11698:8;11688:18;;;11725:8;11715:18;;;10670:1069;;;;;;;;;;;:::o;11978:622::-;12073:6;12081;12089;12097;12105;12158:3;12146:9;12137:7;12133:23;12129:33;12126:53;;;12175:1;12172;12165:12;12126:53;12198:28;12216:9;12198:28;:::i;:::-;12188:38;;12245:37;12278:2;12267:9;12263:18;12245:37;:::i;:::-;12235:47;;12329:2;12318:9;12314:18;12301:32;12291:42;;12384:2;12373:9;12369:18;12356:32;-1:-1:-1;;;;;12403:6:1;12400:30;12397:50;;;12443:1;12440;12433:12;12397:50;12482:58;12532:7;12523:6;12512:9;12508:22;12482:58;:::i;:::-;11978:622;;;;-1:-1:-1;11978:622:1;;-1:-1:-1;12559:8:1;;12456:84;11978:622;-1:-1:-1;;;11978:622:1:o;12605:388::-;12673:6;12681;12734:2;12722:9;12713:7;12709:23;12705:32;12702:52;;;12750:1;12747;12740:12;12702:52;12789:9;12776:23;12808:31;12833:5;12808:31;:::i;:::-;12858:5;-1:-1:-1;12915:2:1;12900:18;;12887:32;12928:33;12887:32;12928:33;:::i;:::-;12980:7;12970:17;;;12605:388;;;;;:::o;12998:324::-;13073:6;13081;13089;13142:2;13130:9;13121:7;13117:23;13113:32;13110:52;;;13158:1;13155;13148:12;13110:52;13181:28;13199:9;13181:28;:::i;:::-;13171:38;;13228:37;13261:2;13250:9;13246:18;13228:37;:::i;:::-;13218:47;;13312:2;13301:9;13297:18;13284:32;13274:42;;12998:324;;;;;:::o;13327:180::-;13383:6;13436:2;13424:9;13415:7;13411:23;13407:32;13404:52;;;13452:1;13449;13442:12;13404:52;13475:26;13491:9;13475:26;:::i;13512:1205::-;13654:6;13662;13670;13678;13686;13694;13702;13710;13718;13726;13779:3;13767:9;13758:7;13754:23;13750:33;13747:53;;;13796:1;13793;13786:12;13747:53;13819:28;13837:9;13819:28;:::i;:::-;13809:38;;13898:2;13887:9;13883:18;13870:32;-1:-1:-1;;;;;13962:2:1;13954:6;13951:14;13948:34;;;13978:1;13975;13968:12;13948:34;14017:58;14067:7;14058:6;14047:9;14043:22;14017:58;:::i;:::-;14094:8;;-1:-1:-1;13991:84:1;-1:-1:-1;13991:84:1;;-1:-1:-1;14148:37:1;14181:2;14166:18;;14148:37;:::i;:::-;14138:47;;14232:2;14221:9;14217:18;14204:32;14194:42;;14286:3;14275:9;14271:19;14258:33;14245:46;;14300:31;14325:5;14300:31;:::i;:::-;14350:5;;-1:-1:-1;14402:3:1;14387:19;;14374:33;;-1:-1:-1;14460:3:1;14445:19;;14432:33;;14477:16;;;14474:36;;;14506:1;14503;14496:12;14474:36;;14545:60;14597:7;14586:8;14575:9;14571:24;14545:60;:::i;:::-;14519:86;;14624:8;14614:18;;;14651:8;14641:18;;;14706:3;14695:9;14691:19;14678:33;14668:43;;13512:1205;;;;;;;;;;;;;:::o;14722:460::-;14806:6;14814;14822;14830;14883:3;14871:9;14862:7;14858:23;14854:33;14851:53;;;14900:1;14897;14890:12;14851:53;14923:28;14941:9;14923:28;:::i;:::-;14913:38;;14970:37;15003:2;14992:9;14988:18;14970:37;:::i;:::-;14960:47;;15057:2;15046:9;15042:18;15029:32;15070:31;15095:5;15070:31;:::i;:::-;14722:460;;;;-1:-1:-1;15120:5:1;;15172:2;15157:18;15144:32;;-1:-1:-1;;14722:460:1:o;15546:380::-;15625:1;15621:12;;;;15668;;;15689:61;;15743:4;15735:6;15731:17;15721:27;;15689:61;15796:2;15788:6;15785:14;15765:18;15762:38;15759:161;;15842:10;15837:3;15833:20;15830:1;15823:31;15877:4;15874:1;15867:15;15905:4;15902:1;15895:15;15931:271;16114:6;16106;16101:3;16088:33;16070:3;16140:16;;16165:13;;;16140:16;15931:271;-1:-1:-1;15931:271:1:o;16807:127::-;16868:10;16863:3;16859:20;16856:1;16849:31;16899:4;16896:1;16889:15;16923:4;16920:1;16913:15;16939:125;17004:9;;;17025:10;;;17022:36;;;17038:18;;:::i;17069:266::-;17157:6;17152:3;17145:19;17209:6;17202:5;17195:4;17190:3;17186:14;17173:43;-1:-1:-1;17261:1:1;17236:16;;;17254:4;17232:27;;;17225:38;;;;17317:2;17296:15;;;-1:-1:-1;;17292:29:1;17283:39;;;17279:50;;17069:266::o;17340:326::-;17535:6;17527;17523:19;17512:9;17505:38;17579:2;17574;17563:9;17559:18;17552:30;17486:4;17599:61;17656:2;17645:9;17641:18;17633:6;17625;17599:61;:::i;18338:521::-;18415:4;18421:6;18481:11;18468:25;18575:2;18571:7;18560:8;18544:14;18540:29;18536:43;18516:18;18512:68;18502:96;;18594:1;18591;18584:12;18502:96;18621:33;;18673:20;;;-1:-1:-1;;;;;;18705:30:1;;18702:50;;;18748:1;18745;18738:12;18702:50;18781:4;18769:17;;-1:-1:-1;18812:14:1;18808:27;;;18798:38;;18795:58;;;18849:1;18846;18839:12;19222:128;19289:9;;;19310:11;;;19307:37;;;19324:18;;:::i;19761:360::-;19972:6;19964;19959:3;19946:33;20042:2;20038:15;;;;-1:-1:-1;;20034:53:1;19998:16;;20023:65;;;20112:2;20104:11;;19761:360;-1:-1:-1;19761:360:1:o;20251:544::-;20352:2;20347:3;20344:11;20341:448;;;20388:1;20413:5;20409:2;20402:17;20458:4;20454:2;20444:19;20528:2;20516:10;20512:19;20509:1;20505:27;20499:4;20495:38;20564:4;20552:10;20549:20;20546:47;;;-1:-1:-1;20587:4:1;20546:47;20642:2;20637:3;20633:12;20630:1;20626:20;20620:4;20616:31;20606:41;;20697:82;20715:2;20708:5;20705:13;20697:82;;;20760:17;;;20741:1;20730:13;20697:82;;20971:1348;21095:3;21089:10;-1:-1:-1;;;;;21114:6:1;21111:30;21108:56;;;21144:18;;:::i;:::-;21173:96;21262:6;21222:38;21254:4;21248:11;21222:38;:::i;:::-;21216:4;21173:96;:::i;:::-;21324:4;;21388:2;21377:14;;21405:1;21400:662;;;;22106:1;22123:6;22120:89;;;-1:-1:-1;22175:19:1;;;22169:26;22120:89;-1:-1:-1;;20928:1:1;20924:11;;;20920:24;20916:29;20906:40;20952:1;20948:11;;;20903:57;22222:81;;21370:943;;21400:662;20198:1;20191:14;;;20235:4;20222:18;;-1:-1:-1;;21436:20:1;;;21553:236;21567:7;21564:1;21561:14;21553:236;;;21656:19;;;21650:26;21635:42;;21748:27;;;;21716:1;21704:14;;;;21583:19;;21553:236;;;21557:3;21817:6;21808:7;21805:19;21802:201;;;21878:19;;;21872:26;-1:-1:-1;;21961:1:1;21957:14;;;21973:3;21953:24;21949:37;21945:42;21930:58;21915:74;;21802:201;-1:-1:-1;;;;;22049:1:1;22033:14;;;22029:22;22016:36;;-1:-1:-1;20971:1348:1:o;22324:498::-;22524:4;22553:6;22598:2;22590:6;22586:15;22575:9;22568:34;22650:2;22642:6;22638:15;22633:2;22622:9;22618:18;22611:43;;22690:6;22685:2;22674:9;22670:18;22663:34;22733:3;22728:2;22717:9;22713:18;22706:31;22754:62;22811:3;22800:9;22796:19;22788:6;22780;22754:62;:::i;:::-;22746:70;22324:498;-1:-1:-1;;;;;;;22324:498:1:o;23633:493::-;23882:6;23874;23870:19;23859:9;23852:38;23926:3;23921:2;23910:9;23906:18;23899:31;23833:4;23947:62;24004:3;23993:9;23989:19;23981:6;23973;23947:62;:::i;:::-;-1:-1:-1;;;;;24045:31:1;;;;24040:2;24025:18;;24018:59;-1:-1:-1;24108:2:1;24093:18;24086:34;23939:70;23633:493;-1:-1:-1;;;23633:493:1:o;25204:753::-;25537:6;25529;25525:19;25514:9;25507:38;25581:3;25576:2;25565:9;25561:18;25554:31;25488:4;25608:62;25665:3;25654:9;25650:19;25642:6;25634;25608:62;:::i;:::-;-1:-1:-1;;;;;25710:6:1;25706:31;25701:2;25690:9;25686:18;25679:59;25774:6;25769:2;25758:9;25754:18;25747:34;25818:6;25812:3;25801:9;25797:19;25790:35;25874:9;25866:6;25862:22;25856:3;25845:9;25841:19;25834:51;25902:49;25944:6;25936;25928;25902:49;:::i;:::-;25894:57;25204:753;-1:-1:-1;;;;;;;;;;;25204:753:1:o;25962:1202::-;-1:-1:-1;;;;;26079:3:1;26076:27;26073:53;;;26106:18;;:::i;:::-;26135:93;26224:3;26184:38;26216:4;26210:11;26184:38;:::i;:::-;26178:4;26135:93;:::i;:::-;26254:1;26279:2;26274:3;26271:11;26296:1;26291:615;;;;26950:1;26967:3;26964:93;;;-1:-1:-1;27023:19:1;;;27010:33;26964:93;-1:-1:-1;;20928:1:1;20924:11;;;20920:24;20916:29;20906:40;20952:1;20948:11;;;20903:57;27070:78;;26264:894;;26291:615;20198:1;20191:14;;;20235:4;20222:18;;-1:-1:-1;;26327:17:1;;;26427:9;26449:229;26463:7;26460:1;26457:14;26449:229;;;26552:19;;;26539:33;26524:49;;26659:4;26644:20;;;;26612:1;26600:14;;;;26479:12;26449:229;;;26453:3;26706;26697:7;26694:16;26691:159;;;26830:1;26826:6;26820:3;26814;26811:1;26807:11;26803:21;26799:34;26795:39;26782:9;26777:3;26773:19;26760:33;26756:79;26748:6;26741:95;26691:159;;;26893:1;26887:3;26884:1;26880:11;26876:19;26870:4;26863:33;26264:894;;25962:1202;;;:::o;28037:647::-;28116:6;28169:2;28157:9;28148:7;28144:23;28140:32;28137:52;;;28185:1;28182;28175:12;28137:52;28218:9;28212:16;-1:-1:-1;;;;;28243:6:1;28240:30;28237:50;;;28283:1;28280;28273:12;28237:50;28306:22;;28359:4;28351:13;;28347:27;-1:-1:-1;28337:55:1;;28388:1;28385;28378:12;28337:55;28417:2;28411:9;28442:48;28458:31;28486:2;28458:31;:::i;28442:48::-;28513:2;28506:5;28499:17;28553:7;28548:2;28543;28539;28535:11;28531:20;28528:33;28525:53;;;28574:1;28571;28564:12;28525:53;28587:67;28651:2;28646;28639:5;28635:14;28630:2;28626;28622:11;28587:67;:::i;28689:557::-;28946:6;28938;28934:19;28923:9;28916:38;28990:3;28985:2;28974:9;28970:18;28963:31;28897:4;29017:46;29058:3;29047:9;29043:19;29035:6;29017:46;:::i;:::-;-1:-1:-1;;;;;29103:6:1;29099:31;29094:2;29083:9;29079:18;29072:59;29179:9;29171:6;29167:22;29162:2;29151:9;29147:18;29140:50;29207:33;29233:6;29225;29207:33;:::i;31995:642::-;32276:6;32264:19;;32246:38;;-1:-1:-1;;;;;32320:32:1;;32315:2;32300:18;;32293:60;32340:3;32384:2;32369:18;;32362:31;;;-1:-1:-1;;32416:46:1;;32442:19;;32434:6;32416:46;:::i;:::-;32512:6;32505:14;32498:22;32493:2;32482:9;32478:18;32471:50;32570:9;32562:6;32558:22;32552:3;32541:9;32537:19;32530:51;32598:33;32624:6;32616;32598:33;:::i;:::-;32590:41;31995:642;-1:-1:-1;;;;;;;;31995:642:1:o;32642:245::-;32721:6;32729;32782:2;32770:9;32761:7;32757:23;32753:32;32750:52;;;32798:1;32795;32788:12;32750:52;-1:-1:-1;;32821:16:1;;32877:2;32862:18;;;32856:25;32821:16;;32856:25;;-1:-1:-1;32642:245:1:o;34292:287::-;34421:3;34459:6;34453:13;34475:66;34534:6;34529:3;34522:4;34514:6;34510:17;34475:66;:::i;:::-;34557:16;;;;;34292:287;-1:-1:-1;;34292:287:1:o;34584:719::-;34887:6;34879;34875:19;34864:9;34857:38;34931:3;34926:2;34915:9;34911:18;34904:31;34838:4;34958:46;34999:3;34988:9;34984:19;34976:6;34958:46;:::i;:::-;-1:-1:-1;;;;;35044:6:1;35040:31;35035:2;35024:9;35020:18;35013:59;35120:9;35112:6;35108:22;35103:2;35092:9;35088:18;35081:50;35154:33;35180:6;35172;35154:33;:::i;:::-;35140:47;;35236:9;35228:6;35224:22;35218:3;35207:9;35203:19;35196:51;35264:33;35290:6;35282;35264:33;:::i;35308:127::-;35369:10;35364:3;35360:20;35357:1;35350:31;35400:4;35397:1;35390:15;35424:4;35421:1;35414:15;35440:120;35480:1;35506;35496:35;;35511:18;;:::i;:::-;-1:-1:-1;35545:9:1;;35440:120::o;36653:891::-;36973:4;37002:3;37044:6;37036;37032:19;37021:9;37014:38;37088:2;37083;37072:9;37068:18;37061:30;37114:45;37155:2;37144:9;37140:18;37132:6;37114:45;:::i;:::-;-1:-1:-1;;;;;37195:31:1;;37190:2;37175:18;;37168:59;37258:2;37243:18;;37236:34;;;-1:-1:-1;;;;;37307:32:1;;37301:3;37286:19;;37279:61;37327:3;37356:19;;37349:35;;;37421:22;;;37415:3;37400:19;;37393:51;37100:59;-1:-1:-1;37461:33:1;37100:59;37479:6;37461:33;:::i;:::-;37453:41;;;37531:6;37525:3;37514:9;37510:19;37503:35;36653:891;;;;;;;;;;;:::o;37549:383::-;37750:2;37739:9;37732:21;37713:4;37770:45;37811:2;37800:9;37796:18;37788:6;37770:45;:::i;:::-;-1:-1:-1;;;;;37851:31:1;;;;37846:2;37831:18;;37824:59;-1:-1:-1;37914:2:1;37899:18;37892:34;37762:53;37549:383;-1:-1:-1;37549:383:1:o;38344:112::-;38376:1;38402;38392:35;;38407:18;;:::i;:::-;-1:-1:-1;38441:9:1;;38344:112::o;38878:840::-;39227:6;39219;39215:19;39204:9;39197:38;39271:3;39266:2;39255:9;39251:18;39244:31;39178:4;39298:46;39339:3;39328:9;39324:19;39316:6;39298:46;:::i;:::-;39392:9;39384:6;39380:22;39375:2;39364:9;39360:18;39353:50;39426:33;39452:6;39444;39426:33;:::i;:::-;-1:-1:-1;;;;;39533:15:1;;;39528:2;39513:18;;39506:43;39586:15;;39580:3;39565:19;;39558:44;39639:22;;;39486:3;39618:19;;39611:51;39412:47;-1:-1:-1;39679:33:1;39412:47;39697:6;39679:33;:::i;:::-;39671:41;38878:840;-1:-1:-1;;;;;;;;;38878:840:1:o;39723:727::-;40045:3;40040;40036:13;40027:6;40022:3;40018:16;40014:36;40009:3;40002:49;40080:6;40076:1;40071:3;40067:11;40060:27;39984:3;-1:-1:-1;;;;;40110:3:1;40106:28;40186:2;40177:6;40172:3;40168:16;40164:25;40159:2;40154:3;40150:12;40143:47;40220:6;40215:2;40210:3;40206:12;40199:28;40279:2;40270:6;40265:3;40261:16;40257:25;40252:2;40247:3;40243:12;40236:47;;40312:6;40306:13;40328:75;40396:6;40391:2;40386:3;40382:12;40375:4;40367:6;40363:17;40328:75;:::i;:::-;40423:16;;;;40441:2;40419:25;;39723:727;-1:-1:-1;;;;;;;39723:727:1:o;40808:168::-;40881:9;;;40912;;40929:15;;;40923:22;;40909:37;40899:71;;40950:18;;:::i

Swarm Source

ipfs://fa7d686a776bf0a7ac14a4aff5dbfb0cc7c355662dc466b0b0669b3913aadd15
[ 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.