ETH Price: $3,517.12 (+0.50%)
Gas: 5 Gwei

Contract

0xcDa8C9991f725fF4fa6369FBC0A4F1Ab51Eae354
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Transaction Hash
Method
Block
From
To
Deposit189002012023-12-30 18:45:59205 days ago1703961959IN
0xcDa8C999...b51Eae354
0 ETH0.0004374419.01940159
Deposit188963172023-12-30 5:39:47206 days ago1703914787IN
0xcDa8C999...b51Eae354
0 ETH0.0011002327.53816431
Deposit188959812023-12-30 4:30:47206 days ago1703910647IN
0xcDa8C999...b51Eae354
0 ETH0.0006279713.39647742
Deposit178826422023-08-10 6:15:35348 days ago1691648135IN
0xcDa8C999...b51Eae354
0 ETH0.0008599912.95607674
Finalize178122302023-07-31 9:55:23358 days ago1690797323IN
0xcDa8C999...b51Eae354
0 ETH0.0022465516.48106567
Deposit178121562023-07-31 9:40:35358 days ago1690796435IN
0xcDa8C999...b51Eae354
0 ETH0.0009829414.8082585
Finalize178121422023-07-31 9:37:47358 days ago1690796267IN
0xcDa8C999...b51Eae354
0 ETH0.002064614.82310377
Add Verified Sig...173671142023-05-29 20:48:47420 days ago1685393327IN
0xcDa8C999...b51Eae354
0 ETH0.0022216148.04118427
Deposit170904302023-04-20 21:47:59459 days ago1682027279IN
0xcDa8C999...b51Eae354
0 ETH0.0025589554.57579833
Deposit170516612023-04-15 9:55:59465 days ago1681552559IN
0xcDa8C999...b51Eae354
0 ETH0.0012308226.25039281
Deposit170487942023-04-15 0:04:35465 days ago1681517075IN
0xcDa8C999...b51Eae354
0 ETH0.0011744425.04152664
Deposit170417912023-04-14 0:05:11466 days ago1681430711IN
0xcDa8C999...b51Eae354
0 ETH0.001173725.03212031
Deposit170417732023-04-14 0:01:35466 days ago1681430495IN
0xcDa8C999...b51Eae354
0 ETH0.0011777225.11777969
Deposit170417612023-04-13 23:58:59466 days ago1681430339IN
0xcDa8C999...b51Eae354
0 ETH0.0010371722.11465617
Finalize170375472023-04-13 8:45:23467 days ago1681375523IN
0xcDa8C999...b51Eae354
0 ETH0.0050295236.11630327
Deposit168194032023-03-13 13:35:47497 days ago1678714547IN
0xcDa8C999...b51Eae354
0 ETH0.0018323627.60503014
Finalize168125582023-03-12 14:32:11498 days ago1678631531IN
0xcDa8C999...b51Eae354
0 ETH0.0030933819.77778984
Deposit167416332023-03-02 15:01:35508 days ago1677769295IN
0xcDa8C999...b51Eae354
0 ETH0.0017313936.92622687
Deposit166638182023-02-19 16:27:11519 days ago1676824031IN
0xcDa8C999...b51Eae354
0 ETH0.0015018732.03101606
Deposit165539772023-02-04 7:37:11535 days ago1675496231IN
0xcDa8C999...b51Eae354
0 ETH0.0013273228.30836881
Deposit158432302022-10-28 1:16:59634 days ago1666919819IN
0xcDa8C999...b51Eae354
0 ETH0.000415768.86489519
Deposit157740132022-10-18 9:10:59644 days ago1666084259IN
0xcDa8C999...b51Eae354
0 ETH0.0007244615.45091382
Deposit156956682022-10-07 10:35:47655 days ago1665138947IN
0xcDa8C999...b51Eae354
0 ETH0.000241625.15191165
Deposit155488302022-09-16 21:24:59675 days ago1663363499IN
0xcDa8C999...b51Eae354
0 ETH0.000376278.02301236
Deposit155488302022-09-16 21:24:59675 days ago1663363499IN
0xcDa8C999...b51Eae354
0 ETH0.000443416
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
OmLink

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU AGPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-29
*/

// SPDX-License-Identifier: AGPL-3.0
// File: contracts\core\SignVerifier.sol

pragma solidity ^0.8.7;

contract SignVerifier {

    struct Message {
        uint256 networkId;
        address token;
        address from;
        address to;
        uint256 amount;
        uint256 nonce;
        bytes signature;
        address signer;
    }

    struct NativeMessage {
        uint256 networkId;
        address from;
        address to;
        uint256 amount;
        uint256 nonce;
        bytes signature;
        address signer;
    }

    /**
     * @dev function that returns the hash of the encoded message
     * @param networkId ID of the network
     * @param token the address of the token's contract
     * @param from the address of the sender
     * @param to the address of the receiver
     * @param amount the amount of tokens
     * @param nonce the nonce of the message
     *
     * @return bytes32 message hash
     */
    function getMessageHash(
        uint256 networkId, 
        address token, 
        address from, 
        address to, 
        uint256 amount, 
        uint256 nonce
    )
        public pure returns (bytes32)
    {
        return keccak256(abi.encodePacked(networkId,token,from,to,amount,nonce));
    }

    function getNativeMessageHash(
        uint256 networkId,
        address from,
        address to,
        uint256 amount,
        uint256 nonce
    )
        public pure returns (bytes32)
    {
        return keccak256(abi.encodePacked(networkId,from,to,amount,nonce));
    }

    /**
     * @dev converts the signed message to the ETH signed message format
     * by appending \x19Ethereum Signed Message:\n32
     * 
     * @param messageHash the hash of the message
     * @return bytes32
     */
    function getEthSignedMessageHash(bytes32 messageHash) public pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", messageHash));
    }
    
    /**
     * @dev the function that verifys that a message is indeed signed by the passed signer
     * 
     * @param finalizeMessage a struct that has the message data
     * 
     * @return bool, true if signer is correct, false if not
     *
     */
    function verify(
        Message memory finalizeMessage
    )
        public pure returns (bool)
    {
        bytes32 messageHash_ = getMessageHash(
            finalizeMessage.networkId,
            finalizeMessage.token,
            finalizeMessage.from,
            finalizeMessage.to,
            finalizeMessage.amount,
            finalizeMessage.nonce);
        bytes32 ethSignedMessageHash_ = getEthSignedMessageHash(messageHash_);

        return recoverSigner(ethSignedMessageHash_, finalizeMessage.signature) == finalizeMessage.signer;
    }

    function verifyNative(
        NativeMessage memory finalizeMessage
    )
        public pure returns (bool)
    {
        bytes32 messageHash_ = getNativeMessageHash(
            finalizeMessage.networkId,
            finalizeMessage.from,
            finalizeMessage.to,
            finalizeMessage.amount,
            finalizeMessage.nonce
        );
        bytes32 ethSignedMessageHash_ = getEthSignedMessageHash(messageHash_);

        return recoverSigner(ethSignedMessageHash_,finalizeMessage.signature) == finalizeMessage.signer;
    }

    /**
     * @dev function that recovers the signer of an eth signed message hash from signature
     * 
     * @param ethSignedMessageHash signed message hash
     * @param signature signature
     *
     * @return address of the signer
     */
    function recoverSigner(bytes32 ethSignedMessageHash, bytes memory signature)
        public pure returns (address)
    {
        (bytes32 r, bytes32 s, uint8 v) = splitSignature(signature);

        return ecrecover(ethSignedMessageHash, v, r, s);
    }



    /**
     * @dev function that splits the signature
     * 
     * @param sig signature
     * 
     * @return r bytes32
     * @return s bytes32
     * @return v uint8
     */

    function splitSignature(bytes memory sig)
        public pure returns (bytes32 r, bytes32 s, uint8 v)
    {
        require(sig.length == 65, "SignVerifier: invalid signature length");

        assembly {
            r := mload(add(sig, 32))
            s := mload(add(sig, 64))
            v := byte(0, mload(add(sig, 96)))
        }

    }

}

// File: node_modules\@openzeppelin\contracts\access\IAccessControl.sol



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: node_modules\@openzeppelin\contracts\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: node_modules\@openzeppelin\contracts\utils\Strings.sol



pragma solidity ^0.8.0;

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

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

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

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

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

// File: node_modules\@openzeppelin\contracts\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: node_modules\@openzeppelin\contracts\utils\introspection\ERC165.sol



pragma solidity ^0.8.0;


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

// File: @openzeppelin\contracts\access\AccessControl.sol



pragma solidity ^0.8.0;





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

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

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

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

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

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

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

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

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

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

        _revokeRole(role, account);
    }

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

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

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

// File: contracts\abstract\Guarded.sol



pragma solidity ^0.8.7;


/**
 * @dev Guard contract that adds extra functionality to the {AccessControl} contract
 * 
 * Defines `ADMIN_ROLE`, `MINTER_ROLE`, `BURNER_ROLE`
 * adds `onlyOwner`, `onlyAdmin`, `onlyMinter`, `onlyBurner`, `nonPaused`, `paused` modifiers
 * 
 *  */

abstract contract Guarded is AccessControl{

    bytes32 public constant ADMIN_ROLE = keccak256("ADMIN_ROLE");
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    
    address private _owner;
    bool private _paused;

    modifier onlyOwner ()
    {
        require(_owner == _msgSender(), "Guard: not owner");
        _;
    }

    modifier onlyAdmin ()
    {
        require(hasRole(ADMIN_ROLE, _msgSender()), "Guard: not admin");
        _;
    }

    modifier onlyMinter () {
        require(hasRole(MINTER_ROLE, _msgSender()), "Guard: not minter");
        _;
    }

    modifier nonPaused () {
        require(!_paused, "Guard: contract paused");
        _;
    }

    modifier paused () {
        require(_paused, "Guard: contract is not paused");
        _;
    }

    constructor()
    {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
        _setupRole(ADMIN_ROLE, _msgSender());
        _owner = _msgSender();
        _paused = false;
    }

    function pause() public onlyAdmin nonPaused returns (bool) {
        _paused = true;
        emit ContractPaused(block.number,_msgSender());
        return true;
    }

    function unpause() public onlyAdmin paused returns (bool) {
        _paused = false;
        emit ContractUnpaused(block.number,_msgSender());
        return true;
    }

    function isPaused() public view returns (bool) {
        return _paused;
    }

    function transferOwner (address owner) public onlyOwner returns (bool) {
        grantRole(DEFAULT_ADMIN_ROLE, owner);
        grantRole(ADMIN_ROLE, owner);

        revokeRole(DEFAULT_ADMIN_ROLE,_owner);
        revokeRole(ADMIN_ROLE,_owner);

        emit OwnerChanged(_owner,owner);

        _owner = owner;

        return true;
    }

    function setRoleAdmin(bytes32 role, bytes32 adminRole) public onlyOwner {
        _setRoleAdmin(role,adminRole);
    }
    
    event ContractPaused(uint256 blockHeight, address admin);
    event ContractUnpaused(uint256 blockHeight, address admin);
    event OwnerChanged(address previousOwner, address currentOwner);

}

// File: contracts\abstract\Blacklistable.sol



pragma solidity ^0.8.7;


/**
 * @dev Blacklist module that allows receivers or transaction senders 
 * to be blacklisted.
 */

abstract contract Blacklistable is Guarded {

    address public _blacklister;

    mapping(address => bool) internal _blacklisted;

    /**
     * @dev Modifier that checks the msg.sender for blacklisting related operations
     */
    modifier onlyBlacklister() {
        require(_blacklister == _msgSender(),"Blacklistable: account is not blacklister");
        _;
    }

    /**
     * @dev Modifier that checks the account is not blacklisted
     * @param account The address to be checked
     */
    modifier notBlacklisted(address account) {
        require(!_blacklisted[account],"Blacklistable: account is blacklisted");
        _;
    }

    /**
     * @dev Function that checks if an address is blacklisted
     * @param account The address to be checked
     * @return bool, true if account is blacklisted, false if not
     */
    function isBlacklisted(address account) public view returns (bool) {
        return _blacklisted[account];
    }

    /**
     * @dev Function that blacklists an account
     * Emits {Blacklisted} event.
     * 
     * @notice can only be called by blacklister
     * @param account The address to be blacklisted
     */
    function blacklist(address account) public onlyBlacklister {
        _blacklisted[account] = true;
        emit Blacklisted(account);
    }

    /**
     * @dev Function that removes an address from blacklist
     * Emits {UnBlacklisted} event
     * 
     * @notice can only be called by blacklister
     * @param account to be unblacklisted
     */
    function unBlacklist(address account) public onlyBlacklister {
        _blacklisted[account] = false;
        emit UnBlacklisted(account);
    }

    /**
     * @dev Function that updates the current blacklister account
     * Emits {BlacklisterChanged} event
     * 
     * @notice can only be called by the owner of the contract
     * @param newBlacklister address that will be the new blacklister
     */
    function updateBlacklister(address newBlacklister) external onlyOwner {
        require(
            newBlacklister != address(0),
            "Blacklistable: new blacklister is the zero address"
        );
        _blacklister = newBlacklister;
        emit BlacklisterChanged(newBlacklister);
    }

    event Blacklisted(address indexed account);
    event UnBlacklisted(address indexed account);
    event BlacklisterChanged(address indexed newBlacklister);
}

// File: node_modules\@openzeppelin\contracts\token\ERC20\IERC20.sol



pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin\contracts\token\ERC20\utils\SafeERC20.sol



pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

// File: contracts\abstract\TokenRecover.sol


pragma solidity ^0.8.7;



abstract contract TokenRecover is Guarded {

    using SafeERC20 for IERC20;

    function recoverERC20(address token, address recipient, uint256 amount) public onlyOwner() returns (bool)
    {
        IERC20(token).safeTransfer(recipient,amount);
        emit ERC20Recovered(token,recipient,amount);
        return true;
    }

    event ERC20Recovered(address token, address recipient, uint256 amount);
}

// File: contracts\includes\Fiber.sol


pragma solidity ^0.8.7;

// Author: Osman Kuzucu
// https://github.com/open-money
// [email protected]




contract Fiber is Guarded, Blacklistable, TokenRecover {

    mapping(address => bool) public _supportedTokens;
    mapping(address => bool) public _isLinkToken;

    mapping (address => bool) internal _verifiedSigners;

    bool private _isSupportedNative = false;

    /**
     * @dev modifier that checks whether the link token is supported or not
     */
    modifier onlySupportedToken(address contractAddress) {
        require(isSupportedToken(contractAddress),"Fiber: token not supported");
        _;
    }

    /** 
     * @dev modifier that checks the signature is from a verified signer
     */
    modifier onlyVerifiedSigner(address signer) {
        require(_verifiedSigners[signer] == true,"Tracked:signer is not verified");
        _;
    }

    modifier isSupportedNative() {
        require(_isSupportedNative,"Fiber: Native not supported");
        _;
    }

    function isVerifiedSigner (address signer) public view returns (bool){
        return _verifiedSigners[signer];
    }

    function isSupportedToken (address contractAddress) public view returns (bool)
    {
        return _supportedTokens[contractAddress];
    }

    /** 
     * @dev function tat adds a new verified signer
     * called only by the owner
     */
    function addVerifiedSigner (address signer) public onlyOwner() returns (bool)
    {
        _verifiedSigners[signer] = true;
        return true;
    }

    /** 
     * @dev function that removes a verified signer
     * called only by the owner
     */
    function removeVerifiedSigner (address signer) public onlyOwner() returns (bool) {
        _verifiedSigners[signer] = false;
        return true;
    }

    /** 
     * @dev function that checks whether the token is LinkToken or not
     */
    function isLinkToken (address contractAddress) public view returns (bool) {
        return _isLinkToken[contractAddress];
    }

    /**
     * @dev function that adds supported token
     */
    function addSupportedToken (address contractAddress, bool isLToken) public onlyOwner returns (bool)
    {
        emit SupportedTokenAdded(contractAddress,isLToken, msg.sender);
        return _addSupportedToken(contractAddress,isLToken);
    }

    /**
     * @dev function that removes supported token
     */
    function removeSupportedToken (address contractAddress) public onlyOwner returns (bool)
    {
        emit SupportedTokenRemoved(contractAddress, msg.sender);
        return _removeSupportedToken (contractAddress);
    }

    /**
     * @dev internal function that adds supported token
     */
    function _addSupportedToken (address contractAddress,bool isLToken) internal virtual returns (bool)
    {
        _supportedTokens[contractAddress] = true;
        _isLinkToken[contractAddress] = isLToken;
        return true;
    }

    /**
     * @dev internal function that removes supported token
     */
    function _removeSupportedToken (address contractAddress) internal virtual returns (bool)
    {
        _supportedTokens[contractAddress] = false;
        _isLinkToken[contractAddress] = false;
        return true;
    }

    function changeNativeSupport(bool newValue) public onlyOwner() returns (bool)
    {
        _isSupportedNative = newValue;
        return true;
    }

    event SupportedTokenAdded(address contractAddress, bool isLToken, address admin);
    event SupportedTokenRemoved(address contractAddress, address admin);

}

// File: contracts\includes\Tracked.sol



pragma solidity ^0.8.7;

/**
 * @title omLink tracking contract 
 *
 * @author Osman Kuzucu - [email protected]
 * https://github.com/nithronium
 * 
 * @dev this contract tracks the nonces and eliminates duplicate minting
 */
contract Tracked {

    /** 
     * 
     * @dev struct for a given nonce with `token` and `nonce`
     *
     */
    struct nonceDataStruct {
        bool _isUsed;
        uint256 _inBlock;
    }

    /** 
     * 
     * @dev struct for the nonces per token address
     *
     */
    struct contractTrackerStruct {
        uint256 _biggestWithdrawNonce;
        uint256 _depositNonce;
        mapping (uint256 => nonceDataStruct) _nonces;
    }

    mapping (address => contractTrackerStruct) internal _tracker;

    contractTrackerStruct _nativeTracker;


    /**
     * @dev modifier that checks whethether a nonce is used or not 
     * 
     * @param token token contract address
     * @param nonce nonce to query
     *
     */
    modifier nonUsedNonce(address token, uint nonce) {
        require(_tracker[token]._nonces[nonce]._isUsed == false, "Tracker: nonce already used");
        _;
    }

    modifier nonUsedNativeNonce(uint nonce) {
        require(_nativeTracker._nonces[nonce]._isUsed == false,"Tracker: native nonce already used");
        _;
    }

    /**
     * @dev function that marks a nonce as used
     *
     * emits {NonceUsed} event
     * 
     * @param token token contract address
     * @param nonce the nonce to be marked as used
     * 
     */
    function useNonce(address token, uint nonce) internal nonUsedNonce(token,nonce) {
        _tracker[token]._nonces[nonce]._isUsed = true;
        _tracker[token]._nonces[nonce]._inBlock = block.number;

        /**
         * Sets the contract's biggest withdraw nonce 
         * if current withdraw nonce is the known biggest one
         * 
         * this is for information purposes only
         */
        if(nonce > _tracker[token]._biggestWithdrawNonce) {
            _tracker[token]._biggestWithdrawNonce = nonce;
        }

        emit NonceUsed(token,nonce,block.number);
    }

    /**
     * @dev gets information about the given withdrawal nonce 
     * of the any given token
     *
     * @param token token contract address
     * @param nonce nonce to be queried
     * 
     * @return (bool,uint256) 
     * 
     */
    function getNonceData(address token, uint256 nonce) public view returns (bool,uint256) {
        return(_tracker[token]._nonces[nonce]._isUsed,_tracker[token]._nonces[nonce]._inBlock);
    }

    /**
     * @dev checks if a withdraw nonce has been used before
     * 
     * @param token token contract address
     * @param nonce nonce to be queried
     * 
     * @return bool
     *
     */
    function isUsedNonce(address token, uint256 nonce) public view returns (bool) {
        return(_tracker[token]._nonces[nonce]._isUsed);
    }

    /**
     * 
     * @dev increments the deposit nonce of the given token
     * 
     * @param token token contract address
     * 
     */
    function depositNonce(address token) internal {
        _tracker[token]._depositNonce+=1;
    }

    /**
     * 
     * @dev gets the current deposit nonce of the given token
     *
     * @param token token contract address
     * 
     * @return uint256
     */
    function getDepositNonce (address token) public view returns (uint256) {
        return _tracker[token]._depositNonce;
    }

    function nativeDepositNonce() internal {
        _nativeTracker._depositNonce+=1;
    }

    function getNativeDepositNonce() public view returns (uint256) {
        return _nativeTracker._depositNonce;
    }

    function isUsedNativeNonce(uint256 nonce) public view returns (bool) {
        return(_nativeTracker._nonces[nonce]._isUsed);
    }

    function useNativeNonce(uint nonce) internal nonUsedNativeNonce(nonce) {
        _nativeTracker._nonces[nonce]._isUsed = true;
        _nativeTracker._nonces[nonce]._inBlock = block.number;

        /**
         * Sets the contract's biggest withdraw nonce 
         * if current withdraw nonce is the known biggest one
         * 
         * this is for information purposes only
         */
        if(nonce > _nativeTracker._biggestWithdrawNonce) {
            _nativeTracker._biggestWithdrawNonce = nonce;
        }

        emit NativeNonceUsed(nonce,block.number);
    }

    event NonceUsed(address token, uint256 nonce, uint256 blockNumber);
    event NativeNonceUsed(uint256 nonce, uint256 blockNumber);
}

// File: contracts\omLink.sol


pragma solidity ^0.8.7;

// Author: Osman Kuzucu
// https://github.com/open-money
// [email protected]






/**
 * @dev required interface for ERC20 compatible tokens
 * @notice the ERC20 is not fully implemented as omLink just requires 4 methods
 *
 */

interface ERC20Tokens {
    function burnFrom(address account, uint256 amount) external returns (bool);
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
    function mintTo(address account, uint256 amount) external returns (bool);
    function transfer(address recipient, uint256 amount) external returns (bool);
}

contract OmLink is Fiber, SignVerifier, Tracked
{

    using SafeERC20 for IERC20;

    /**
     * @dev chain ID of the contract where it is deployed
     *
     */
    uint256 public _chainId;

    /**
     * @dev finalizer struct because of the compiler error
     * this struct is used for finalizing the transaction on the target chain
     * 
     */
    struct finalizer {
        uint256 toChain;
        address from;
        address to;
        uint256 amount;
        address tokenAddress;
        uint256 nonce;
        address signer;
        bytes signature;
    }

    /** 
     * @dev set chainId
     * 
     */
    constructor(uint256 chainId) {
        _chainId = chainId;
    }


    /** 
     * @dev deposit function
     * 
     * emits {LinkStarted} event
     * 
     * @param toChain target chain id
     * @param token token contract address
     * @param to receiver address
     * @param amount amount of tokens to be transferred
     *
     * @return bool 
     */
    function deposit(
        uint256 toChain,
        address token,
        address to,
        uint256 amount
    ) public 
        onlySupportedToken(token) 
        notBlacklisted(msg.sender)
        notBlacklisted(to)
        nonPaused()
        returns (bool) {

            /** 
             *
             * @dev Checks whether a token is LinkToken or not,
             * if the token is not LinkToken, it tansfers tokens from the user to the omLink contract
             * 
             */
            if(isLinkToken(token)) {
                require(ERC20Tokens(token).burnFrom(msg.sender,amount),"omLink: cannot burn tokens");
            } else {
                IERC20(token).safeTransferFrom(msg.sender,address(this),amount);
            }

            /**
             * 
             * @dev increment the deposit nonce of the said token so that 
             * backend servers won't reprocess the same events
             * this is required for event handling
             *
             */
            depositNonce(token);


            emit LinkStarted(toChain,token,msg.sender,to,amount,getDepositNonce(token));

            //in case contract is called by another contract later
            return true;
    }

    /**
     * @dev deposit function for native tokens
     * 
     * emits {LinkStarted} event with address(0) as contract address
     * 
     * @param toChain target chain id
     * @param to receiving address
     * @param amount receiving amount
     *
     * @return bool
     *
     */
    function depositNative(
        uint256 toChain,
        address to,
        uint256 amount
    ) payable public 
        isSupportedNative()
        notBlacklisted(msg.sender)
        notBlacklisted(to)
        nonPaused()
        returns (bool) {
            /**
             * @dev checks whether the amount calling the function 
             * is equal with the actual transacted native token
             * reverts if not
             *
             * @notice because the native token deposit is already 
             * credited with the transaction, we don't require 
             * any transfer event
             */
            require(msg.value == amount,"omLink: wrong native amount");

            /**
             * @dev increments the native deposit nonce
             *
             */
            nativeDepositNonce();

            emit LinkStarted(toChain,address(0),msg.sender,to,amount,getNativeDepositNonce());

            return true;
    }

    /**
     *
     * @dev implementation of the link finalizer, this function processes 
     * the coupon provided by the verified signer backend and mints & transfers 
     * the signed amount to the receiving address
     * 
     * Checks for whether the token is supported with `onlySupportedToken` modifier
     * Checks for blacklis with `notBlacklisted` modifier
     * Checks for whether contract is paused with `nonPaused` modifier
     * Checks whether the signature is from a verified signer with `onlyVerifiedSigner` modifier
     * 
     * @param toChain the chainId of the receiving chain
     * @param token the contract address of the token
     * @param from the sender
     * @param to the receiver
     * @param amount the amount of tokens to be minted & transferred from
     * @param nonce the nonce of the transaction coupon
     * @param signature the signed message from the server
     * @param signer the address of the coupon signer
     * 
     * @return bool 
     */
    function finalize(
        uint256 toChain,
        address token,
        address from,
        address to,
        uint256 amount,
        uint256 nonce,
        bytes memory signature,
        address signer
    ) public 
        onlySupportedToken(token) 
        notBlacklisted(msg.sender)
        notBlacklisted(to)
        nonPaused()
        onlyVerifiedSigner(signer)
        returns (bool) {


            /** 
             * 
             * @dev makes sure that the coupon is being processed by the correct chain
             * and the nonce is not used before
             */
            require(_chainId == toChain,"omLink:incorrect chain");
            require(!isUsedNonce(token,nonce),"Tracked:used nonce");

            /** 
             * 
             * @dev passing function parameters to the `messageStruct_` element 
             * to solve the Stack too deep error and verifies whether the message is real or not
             *
             * 
             */
            
            Message memory messageStruct_;

            messageStruct_.networkId = toChain;
            messageStruct_.token = token;
            messageStruct_.from = from;
            messageStruct_.to = to;
            messageStruct_.amount = amount;
            messageStruct_.nonce = nonce;
            messageStruct_.signature = signature;
            messageStruct_.signer = signer;

            require(verify(messageStruct_),"omLink: signature cant be verified");

            /** 
             * 
             * @dev uses the nonce on the current token address
             * and mints the token if it's mintable, transfers if not.
             */

            useNonce(token,nonce);

            if( isLinkToken(token) ) {
                ERC20Tokens(token).mintTo(to,amount);
            } else {
                IERC20(token).safeTransfer(to,amount);
            }

            /** 
             * 
             * @dev emits {LinkFinalized} event to make sure the backend 
             * server also processes the coupon as used
             * 
             */
            emit LinkFinalized(
                messageStruct_.networkId,
                messageStruct_.token,
                messageStruct_.from,
                messageStruct_.to,
                messageStruct_.amount,
                messageStruct_.nonce,
                messageStruct_.signer);

            return true;
    }

    /**
     * 
     * @dev implementation of the link finalizer on receiving native currency
     * this function processes the coupon provided by the verified signer and 
     * transfers the amount of native tokens to the receiving address
     *
     * Checks for whether native token bridging is supported on deployed network
     * Checks whether the sending or receiving address is blacklisted
     * Checks for signature provided and signer
     *
     * @param toChain the chainId of the receiving chain
     * @param from the sender
     * @param to the receiver
     * @param amount the amount of tokens to be minted & transferred from
     * @param nonce the nonce of the transaction coupon
     * @param signature the signed message from the server
     * @param signer the address of the coupon signer
     * 
     * @return bool
     * */
    function finalizeNative(
        uint256 toChain,
        address from,
        address to,
        uint256 amount,
        uint256 nonce,
        bytes memory signature,
        address signer
    ) public 
        isSupportedNative()
        notBlacklisted(msg.sender)
        notBlacklisted(to)
        nonPaused()
        onlyVerifiedSigner(signer)
        returns (bool) {
            require(_chainId == toChain,"omLink:incorrect chain");
            require(!isUsedNativeNonce(nonce),"Tracked:used nonce");

            NativeMessage memory messageStruct_;

            messageStruct_.networkId = toChain;
            messageStruct_.from = from;
            messageStruct_.to = to;
            messageStruct_.amount = amount;
            messageStruct_.nonce = nonce;
            messageStruct_.signature = signature;
            messageStruct_.signer = signer;

            require(verifyNative(messageStruct_),"omLink: message cant be verified");
            require(address(this).balance >= amount,"omLink: not enough native");

            useNativeNonce(nonce);

            address payable receiver = payable(to);
            receiver.transfer(amount);

            emit LinkFinalized(
                messageStruct_.networkId,
                address(0),
                messageStruct_.from,
                messageStruct_.to,
                messageStruct_.amount,
                messageStruct_.nonce,
                messageStruct_.signer
            );

            return true;

        }

    function invalidateNonce(address token, uint256 nonce) public onlyOwner returns (bool) {
        
        require(!isUsedNonce(token,nonce),"Tracked:used nonce");
        useNonce(token,nonce);

        emit NonceInvalidated(_chainId,token,msg.sender,nonce,block.number);
        return true;
    }

    function invalidateNative(uint256 nonce) public onlyOwner returns (bool) {
        require(!isUsedNativeNonce(nonce),"Tracked:used nonce");
        useNativeNonce(nonce);

        emit NativeNonceInvalidated(_chainId,msg.sender,nonce,block.number);
        return true;
    }


    event LinkStarted(uint256 toChain, address tokenAddress, address from, address to, uint256 amount, uint256 indexed depositNonce);
    event LinkFinalized(uint256 chainId, address tokenAddress, address from, address to, uint256 amount, uint256 indexed nonce, address signer);
    
    event NonceInvalidated(uint256 chainId, address tokenAddress, address owner, uint256 indexed nonce, uint atBlock);
    event NativeNonceInvalidated(uint256 chainId, address owner, uint256 indexed nonce, uint atBlock);

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"chainId","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"Blacklisted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newBlacklister","type":"address"}],"name":"BlacklisterChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"blockHeight","type":"uint256"},{"indexed":false,"internalType":"address","name":"admin","type":"address"}],"name":"ContractPaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"blockHeight","type":"uint256"},{"indexed":false,"internalType":"address","name":"admin","type":"address"}],"name":"ContractUnpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20Recovered","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"chainId","type":"uint256"},{"indexed":false,"internalType":"address","name":"tokenAddress","type":"address"},{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"nonce","type":"uint256"},{"indexed":false,"internalType":"address","name":"signer","type":"address"}],"name":"LinkFinalized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"toChain","type":"uint256"},{"indexed":false,"internalType":"address","name":"tokenAddress","type":"address"},{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"depositNonce","type":"uint256"}],"name":"LinkStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"chainId","type":"uint256"},{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"nonce","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"atBlock","type":"uint256"}],"name":"NativeNonceInvalidated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"nonce","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"NativeNonceUsed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"chainId","type":"uint256"},{"indexed":false,"internalType":"address","name":"tokenAddress","type":"address"},{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"nonce","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"atBlock","type":"uint256"}],"name":"NonceInvalidated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"nonce","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"NonceUsed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":false,"internalType":"address","name":"currentOwner","type":"address"}],"name":"OwnerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"contractAddress","type":"address"},{"indexed":false,"internalType":"bool","name":"isLToken","type":"bool"},{"indexed":false,"internalType":"address","name":"admin","type":"address"}],"name":"SupportedTokenAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"contractAddress","type":"address"},{"indexed":false,"internalType":"address","name":"admin","type":"address"}],"name":"SupportedTokenRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"UnBlacklisted","type":"event"},{"inputs":[],"name":"ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_blacklister","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_chainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isLinkToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_supportedTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"},{"internalType":"bool","name":"isLToken","type":"bool"}],"name":"addSupportedToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"signer","type":"address"}],"name":"addVerifiedSigner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newValue","type":"bool"}],"name":"changeNativeSupport","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"toChain","type":"uint256"},{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"deposit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"toChain","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"depositNative","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"toChain","type":"uint256"},{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"address","name":"signer","type":"address"}],"name":"finalize","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"toChain","type":"uint256"},{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"address","name":"signer","type":"address"}],"name":"finalizeNative","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"getDepositNonce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"messageHash","type":"bytes32"}],"name":"getEthSignedMessageHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"networkId","type":"uint256"},{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"}],"name":"getMessageHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getNativeDepositNonce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"networkId","type":"uint256"},{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"}],"name":"getNativeMessageHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"}],"name":"getNonceData","outputs":[{"internalType":"bool","name":"","type":"bool"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"name":"invalidateNative","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"}],"name":"invalidateNonce","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"}],"name":"isLinkToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"}],"name":"isSupportedToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"name":"isUsedNativeNonce","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"}],"name":"isUsedNonce","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"signer","type":"address"}],"name":"isVerifiedSigner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"recoverERC20","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"ethSignedMessageHash","type":"bytes32"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"recoverSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"}],"name":"removeSupportedToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"signer","type":"address"}],"name":"removeVerifiedSigner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"bytes32","name":"adminRole","type":"bytes32"}],"name":"setRoleAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"splitSignature","outputs":[{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"transferOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"unBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newBlacklister","type":"address"}],"name":"updateBlacklister","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"networkId","type":"uint256"},{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"address","name":"signer","type":"address"}],"internalType":"struct SignVerifier.Message","name":"finalizeMessage","type":"tuple"}],"name":"verify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"networkId","type":"uint256"},{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"address","name":"signer","type":"address"}],"internalType":"struct SignVerifier.NativeMessage","name":"finalizeMessage","type":"tuple"}],"name":"verifyNative","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"}]

60806040526007805460ff191690553480156200001b57600080fd5b50604051620036a4380380620036a48339810160408190526200003e9162000142565b6200004b60003362000092565b620000777fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217753362000092565b600180546001600160a81b03191633179055600c556200015c565b6200009e8282620000a2565b5050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff166200009e576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620000fe3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000602082840312156200015557600080fd5b5051919050565b613538806200016c6000396000f3fe6080604052600436106102ae5760003560e01c806391d1485411610175578063c2e17cb3116100dc578063e4c566f911610095578063f0d914091161006f578063f0d9140914610924578063f9f92be41461098e578063fa540801146109ae578063fe575a87146109ce57600080fd5b8063e4c566f9146108c4578063e4cca4b0146108e4578063e5d077561461090457600080fd5b8063c2e17cb3146107d4578063c562e6ae1461080d578063d53913931461083d578063d547741f14610871578063dd86d61014610891578063e3f33c22146108b157600080fd5b8063a7bb58031161012e578063a7bb5803146106e7578063ad38bf2214610725578063b187bd2614610745578063b65c69a314610764578063ba6a984814610784578063bdf39cd8146107a457600080fd5b806391d148541461060957806397aba7f9146106295780639915efac146106495780639ae2c352146106695780639eb0db14146106a2578063a217fddf146106d257600080fd5b80634fb2e45d1161021957806375b238fc116101d257806375b238fc1461054557806376319190146105675780638323d9da146105875780638456cb591461059c5780638d71f84b146105b157806391b4af05146105d157600080fd5b80634fb2e45d1461048f57806367d535eb146104af578063714711d9146104cf57806373f026aa146104ef578063747734121461050f57806374a393621461052557600080fd5b8063240028e81161026b578063240028e81461038a578063248a9ca3146103c35780632f2ff15d1461040157806336568abe146104215780633f4ba83a146104415780634b50303c1461045657600080fd5b806301ffc9a7146102b35780630d3762b5146102e85780630ee60fa7146103085780631171bda9146103285780631a895266146103485780631e4e00911461036a575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612dc4565b610a07565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b506102d3610303366004612cb2565b610a3e565b34801561031457600080fd5b506102d3610323366004612cb2565b610b01565b34801561033457600080fd5b506102d3610343366004612c3f565b610b30565b34801561035457600080fd5b50610368610363366004612c24565b610bc7565b005b34801561037657600080fd5b50610368610385366004612d5b565b610c3a565b34801561039657600080fd5b506102d36103a5366004612c24565b6001600160a01b031660009081526004602052604090205460ff1690565b3480156103cf57600080fd5b506103f36103de366004612d16565b60009081526020819052604090206001015490565b6040519081526020016102df565b34801561040d57600080fd5b5061036861041c366004612d2f565b610c72565b34801561042d57600080fd5b5061036861043c366004612d2f565b610c9d565b34801561044d57600080fd5b506102d3610d17565b34801561046257600080fd5b506102d3610471366004612c24565b6001600160a01b031660009081526006602052604090205460ff1690565b34801561049b57600080fd5b506102d36104aa366004612c24565b610e20565b3480156104bb57600080fd5b506102d36104ca36600461313f565b610f16565b3480156104db57600080fd5b506102d36104ea366004612ef3565b6112b0565b3480156104fb57600080fd5b506103f361050a3660046130f1565b611311565b34801561051b57600080fd5b506103f3600c5481565b34801561053157600080fd5b506102d3610540366004612c24565b61136d565b34801561055157600080fd5b506103f36000805160206134e383398151915281565b34801561057357600080fd5b506102d3610582366004612c24565b6113bf565b34801561059357600080fd5b50600a546103f3565b3480156105a857600080fd5b506102d3611469565b3480156105bd57600080fd5b506102d36105cc366004612cdc565b611528565b3480156105dd57600080fd5b506002546105f1906001600160a01b031681565b6040516001600160a01b0390911681526020016102df565b34801561061557600080fd5b506102d3610624366004612d2f565b61156c565b34801561063557600080fd5b506105f1610644366004612d7d565b611595565b34801561065557600080fd5b506102d3610664366004612c24565b611614565b34801561067557600080fd5b506103f3610684366004612c24565b6001600160a01b031660009081526008602052604090206001015490565b3480156106ae57600080fd5b506102d36106bd366004612c24565b60046020526000908152604090205460ff1681565b3480156106de57600080fd5b506103f3600081565b3480156106f357600080fd5b50610707610702366004612dee565b61166a565b60408051938452602084019290925260ff16908201526060016102df565b34801561073157600080fd5b50610368610740366004612c24565b6116ed565b34801561075157600080fd5b50600154600160a01b900460ff166102d3565b34801561077057600080fd5b506102d361077f366004613010565b6117d2565b34801561079057600080fd5b506103f361079f366004612fb1565b611bc6565b3480156107b057600080fd5b506102d36107bf366004612d16565b6000908152600b602052604090205460ff1690565b3480156107e057600080fd5b506102d36107ef366004612c24565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561081957600080fd5b506102d3610828366004612c24565b60056020526000908152604090205460ff1681565b34801561084957600080fd5b506103f37f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b34801561087d57600080fd5b5061036861088c366004612d2f565b611c28565b34801561089d57600080fd5b506102d36108ac366004612e23565b611c4e565b6102d36108bf3660046131cb565b611ca2565b3480156108d057600080fd5b506102d36108df366004612d16565b611e47565b3480156108f057600080fd5b506102d36108ff3660046130ad565b611ef8565b34801561091057600080fd5b506102d361091f366004612c7b565b61218c565b34801561093057600080fd5b5061097761093f366004612cb2565b6001600160a01b039190911660009081526008602090815260408083209383526002909301905220805460019091015460ff90911691565b6040805192151583526020830191909152016102df565b34801561099a57600080fd5b506103686109a9366004612c24565b612243565b3480156109ba57600080fd5b506103f36109c9366004612d16565b6122b9565b3480156109da57600080fd5b506102d36109e9366004612c24565b6001600160a01b031660009081526003602052604090205460ff1690565b60006001600160e01b03198216637965db0b60e01b1480610a3857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6001546000906001600160a01b03163314610a745760405162461bcd60e51b8152600401610a6b90613359565b60405180910390fd5b610a7e8383610b01565b15610a9b5760405162461bcd60e51b8152600401610a6b9061332d565b610aa5838361230c565b600c54604080519182526001600160a01b0385166020830152339082015243606082015282907f3d99cb4d4df166e5735ab15de0033e5cf4fddd1846bd77f9f4eec007ff6a64a99060800160405180910390a250600192915050565b6001600160a01b0391909116600090815260086020908152604080832093835260029093019052205460ff1690565b6001546000906001600160a01b03163314610b5d5760405162461bcd60e51b8152600401610a6b90613359565b610b716001600160a01b0385168484612437565b604080516001600160a01b038087168252851660208201529081018390527faca8fb252cde442184e5f10e0f2e6e4029e8cd7717cae63559079610702436aa9060600160405180910390a15060015b9392505050565b6002546001600160a01b03163314610bf15760405162461bcd60e51b8152600401610a6b906132e4565b6001600160a01b038116600081815260036020526040808220805460ff19169055517f117e3210bb9aa7d9baff172026820255c6f6c30ba8999d1c2fd88e2848137c4e9190a250565b6001546001600160a01b03163314610c645760405162461bcd60e51b8152600401610a6b90613359565b610c6e828261249a565b5050565b600082815260208190526040902060010154610c8e81336124e5565b610c988383612549565b505050565b6001600160a01b0381163314610d0d5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610a6b565b610c6e82826125cd565b6000610d316000805160206134e38339815191523361156c565b610d705760405162461bcd60e51b815260206004820152601060248201526f23bab0b9321d103737ba1030b236b4b760811b6044820152606401610a6b565b600154600160a01b900460ff16610dc95760405162461bcd60e51b815260206004820152601d60248201527f47756172643a20636f6e7472616374206973206e6f74207061757365640000006044820152606401610a6b565b6001805460ff60a01b191690557f1e7a7234ad01ed7353bf129217f5c162773639a6cb22773e84bcd5a2b0ef362e43335b604080519283526001600160a01b0390911660208301520160405180910390a150600190565b6001546000906001600160a01b03163314610e4d5760405162461bcd60e51b8152600401610a6b90613359565b610e58600083610c72565b610e706000805160206134e383398151915283610c72565b600154610e88906000906001600160a01b0316611c28565b600154610ead906000805160206134e3833981519152906001600160a01b0316611c28565b600154604080516001600160a01b03928316815291841660208301527fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c910160405180910390a150600180546001600160a01b0319166001600160a01b0383161781555b919050565b60075460009060ff16610f6b5760405162461bcd60e51b815260206004820152601b60248201527f46696265723a204e6174697665206e6f7420737570706f7274656400000000006044820152606401610a6b565b3360008181526003602052604090205460ff1615610f9b5760405162461bcd60e51b8152600401610a6b90613383565b6001600160a01b038716600090815260036020526040902054879060ff1615610fd65760405162461bcd60e51b8152600401610a6b90613383565b600154600160a01b900460ff16156110005760405162461bcd60e51b8152600401610a6b906132b4565b6001600160a01b038416600090815260066020526040902054849060ff16151560011461106f5760405162461bcd60e51b815260206004820152601e60248201527f547261636b65643a7369676e6572206973206e6f7420766572696669656400006044820152606401610a6b565b8a600c54146110b95760405162461bcd60e51b815260206004820152601660248201527537b6a634b7359d34b731b7b93932b1ba1031b430b4b760511b6044820152606401610a6b565b6000878152600b602052604090205460ff16156110e85760405162461bcd60e51b8152600401610a6b9061332d565b6040805160e0810182528c81526001600160a01b038c811660208301528b811692820192909252606081018a90526080810189905260a0810188905290861660c0820152611135816112b0565b6111815760405162461bcd60e51b815260206004820181905260248201527f6f6d4c696e6b3a206d6573736167652063616e742062652076657269666965646044820152606401610a6b565b884710156111d15760405162461bcd60e51b815260206004820152601960248201527f6f6d4c696e6b3a206e6f7420656e6f756768206e6174697665000000000000006044820152606401610a6b565b6111da88612632565b6040518a906001600160a01b038216908b156108fc02908c906000818181858888f19350505050158015611212573d6000803e3d6000fd5b5081608001517ff7d39c81b147bd7e92114dc4963629acf35e130502ca5f86861eed13990d34e7836000015160008560200151866040015187606001518860c00151604051611295969594939291909586526001600160a01b0394851660208701529284166040860152908316606085015260808401521660a082015260c00190565b60405180910390a25060019c9b505050505050505050505050565b6000806112d483600001518460200151856040015186606001518760800151611311565b905060006112e1826122b9565b90508360c001516001600160a01b03166112ff828660a00151611595565b6001600160a01b031614949350505050565b604080516020808201979097526bffffffffffffffffffffffff19606096871b8116828401529490951b909316605485015260688401919091526088808401919091528151808403909101815260a89092019052805191012090565b6001546000906001600160a01b0316331461139a5760405162461bcd60e51b8152600401610a6b90613359565b506001600160a01b03166000908152600660205260409020805460ff19169055600190565b6001546000906001600160a01b031633146113ec5760405162461bcd60e51b8152600401610a6b90613359565b604080516001600160a01b03841681523360208201527f62ced09eccd8bfb8039b5a849bd3c5f0f64a904e0a66843c93380268c3c9440a910160405180910390a16001600160a01b0382166000908152600460209081526040808320805460ff199081169091556005909252909120805490911690556001610a38565b60006114836000805160206134e38339815191523361156c565b6114c25760405162461bcd60e51b815260206004820152601060248201526f23bab0b9321d103737ba1030b236b4b760811b6044820152606401610a6b565b600154600160a01b900460ff16156114ec5760405162461bcd60e51b8152600401610a6b906132b4565b6001805460ff60a01b1916600160a01b1790557fd8c9c5623123df8e137854c59a08f9084b75609fe24584228d44ffdce5ab920a43610dfa3390565b6001546000906001600160a01b031633146115555760405162461bcd60e51b8152600401610a6b90613359565b506007805460ff1916911515919091179055600190565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6000806000806115a48561166a565b6040805160008152602081018083528b905260ff8316918101919091526060810184905260808101839052929550909350915060019060a0016020604051602081039080840390855afa1580156115ff573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b6001546000906001600160a01b031633146116415760405162461bcd60e51b8152600401610a6b90613359565b506001600160a01b03166000908152600660205260409020805460ff1916600190811790915590565b600080600083516041146116cf5760405162461bcd60e51b815260206004820152602660248201527f5369676e56657269666965723a20696e76616c6964207369676e6174757265206044820152650d8cadccee8d60d31b6064820152608401610a6b565b50505060208101516040820151606090920151909260009190911a90565b6001546001600160a01b031633146117175760405162461bcd60e51b8152600401610a6b90613359565b6001600160a01b0381166117885760405162461bcd60e51b815260206004820152603260248201527f426c61636b6c69737461626c653a206e657720626c61636b6c697374657220696044820152717320746865207a65726f206164647265737360701b6064820152608401610a6b565b600280546001600160a01b0319166001600160a01b0383169081179091556040517fc67398012c111ce95ecb7429b933096c977380ee6c421175a71a4a4c6c88c06e90600090a250565b6001600160a01b038716600090815260046020526040812054889060ff1661183c5760405162461bcd60e51b815260206004820152601a60248201527f46696265723a20746f6b656e206e6f7420737570706f727465640000000000006044820152606401610a6b565b3360008181526003602052604090205460ff161561186c5760405162461bcd60e51b8152600401610a6b90613383565b6001600160a01b038816600090815260036020526040902054889060ff16156118a75760405162461bcd60e51b8152600401610a6b90613383565b600154600160a01b900460ff16156118d15760405162461bcd60e51b8152600401610a6b906132b4565b6001600160a01b038516600090815260066020526040902054859060ff1615156001146119405760405162461bcd60e51b815260206004820152601e60248201527f547261636b65643a7369676e6572206973206e6f7420766572696669656400006044820152606401610a6b565b8c600c541461198a5760405162461bcd60e51b815260206004820152601660248201527537b6a634b7359d34b731b7b93932b1ba1031b430b4b760511b6044820152606401610a6b565b6119948c89610b01565b156119b15760405162461bcd60e51b8152600401610a6b9061332d565b60408051610100810182528e81526001600160a01b038e811660208301528d8116928201929092528b82166060820152608081018b905260a081018a905260c0810189905290871660e0820152611a0781611c4e565b611a5e5760405162461bcd60e51b815260206004820152602260248201527f6f6d4c696e6b3a207369676e61747572652063616e7420626520766572696669604482015261195960f21b6064820152608401610a6b565b611a688d8a61230c565b6001600160a01b038d1660009081526005602052604090205460ff1615611b11576040516308934a5f60e31b81526001600160a01b038c81166004830152602482018c90528e169063449a52f890604401602060405180830381600087803b158015611ad357600080fd5b505af1158015611ae7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b0b9190612cf9565b50611b25565b611b256001600160a01b038e168c8c612437565b8060a001517ff7d39c81b147bd7e92114dc4963629acf35e130502ca5f86861eed13990d34e7826000015183602001518460400151856060015186608001518760e00151604051611baa969594939291909586526001600160a01b0394851660208701529284166040860152908316606085015260808401521660a082015260c00190565b60405180910390a25060019d9c50505050505050505050505050565b604080516020808201989098526bffffffffffffffffffffffff19606097881b81168284015295871b861660548201529390951b9093166068830152607c820152609c808201929092528251808203909201825260bc01909152805191012090565b600082815260208190526040902060010154611c4481336124e5565b610c9883836125cd565b600080611c77836000015184602001518560400151866060015187608001518860a00151611bc6565b90506000611c84826122b9565b90508360e001516001600160a01b03166112ff828660c00151611595565b60075460009060ff16611cf75760405162461bcd60e51b815260206004820152601b60248201527f46696265723a204e6174697665206e6f7420737570706f7274656400000000006044820152606401610a6b565b3360008181526003602052604090205460ff1615611d275760405162461bcd60e51b8152600401610a6b90613383565b6001600160a01b038416600090815260036020526040902054849060ff1615611d625760405162461bcd60e51b8152600401610a6b90613383565b600154600160a01b900460ff1615611d8c5760405162461bcd60e51b8152600401610a6b906132b4565b833414611ddb5760405162461bcd60e51b815260206004820152601b60248201527f6f6d4c696e6b3a2077726f6e67206e617469766520616d6f756e7400000000006044820152606401610a6b565b611de3612709565b600a54604080518881526000602082015233818301526001600160a01b03881660608201526080810187905290517fa9f314fc16d8633cc0eb4ddfa1abb2d2c11cfaffbd21d19f00f56de32ed347019181900360a00190a250600195945050505050565b6001546000906001600160a01b03163314611e745760405162461bcd60e51b8152600401610a6b90613359565b6000828152600b602052604090205460ff1615611ea35760405162461bcd60e51b8152600401610a6b9061332d565b611eac82612632565b600c5460408051918252336020830152439082015282907fd019f3c2813252e839deefeb91ea5e8220166d14dfe27b3114d2f97fa9e931959060600160405180910390a2506001919050565b6001600160a01b038316600090815260046020526040812054849060ff16611f625760405162461bcd60e51b815260206004820152601a60248201527f46696265723a20746f6b656e206e6f7420737570706f727465640000000000006044820152606401610a6b565b3360008181526003602052604090205460ff1615611f925760405162461bcd60e51b8152600401610a6b90613383565b6001600160a01b038516600090815260036020526040902054859060ff1615611fcd5760405162461bcd60e51b8152600401610a6b90613383565b600154600160a01b900460ff1615611ff75760405162461bcd60e51b8152600401610a6b906132b4565b6001600160a01b03871660009081526005602052604090205460ff16156120e95760405163079cc67960e41b8152336004820152602481018690526001600160a01b038816906379cc679090604401602060405180830381600087803b15801561206057600080fd5b505af1158015612074573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120989190612cf9565b6120e45760405162461bcd60e51b815260206004820152601a60248201527f6f6d4c696e6b3a2063616e6e6f74206275726e20746f6b656e730000000000006044820152606401610a6b565b6120fe565b6120fe6001600160a01b038816333088612726565b61210787612764565b6001600160a01b038716600090815260086020526040902060010154604080518a81526001600160a01b03808b16602083015233928201929092529088166060820152608081018790527fa9f314fc16d8633cc0eb4ddfa1abb2d2c11cfaffbd21d19f00f56de32ed347019060a00160405180910390a2506001979650505050505050565b6001546000906001600160a01b031633146121b95760405162461bcd60e51b8152600401610a6b90613359565b604080516001600160a01b03851681528315156020820152338183015290517f15c4300173541e306c93c018432fe444cf3c9b6a663fd7a51e984fdb2290b9899181900360600190a16001600160a01b03831660009081526004602090815260408083208054600160ff199182168117909255600590935292208054909116841515179055610bc0565b6002546001600160a01b0316331461226d5760405162461bcd60e51b8152600401610a6b906132e4565b6001600160a01b038116600081815260036020526040808220805460ff19166001179055517fffa4e6181777692565cf28528fc88fd1516ea86b56da075235fa575af6a4b8559190a250565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b6001600160a01b03821660009081526008602090815260408083208484526002019091529020548290829060ff16156123875760405162461bcd60e51b815260206004820152601b60248201527f547261636b65723a206e6f6e636520616c7265616479207573656400000000006044820152606401610a6b565b6001600160a01b0384166000818152600860208181526040808420888552600281018352908420805460ff19166001908117825543910155939092529052548311156123e9576001600160a01b03841660009081526008602052604090208390555b604080516001600160a01b038616815260208101859052438183015290517f3fde1edb52bbe023081a01c60e06e15396e067be4699a5044fdfa793f67bfc289181900360600190a150505050565b6040516001600160a01b038316602482015260448101829052610c9890849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915261279a565b600082815260208190526040808220600101805490849055905190918391839186917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a4505050565b6124ef828261156c565b610c6e57612507816001600160a01b0316601461286c565b61251283602061286c565b60405160200161252392919061320c565b60408051601f198184030181529082905262461bcd60e51b8252610a6b91600401613281565b612553828261156c565b610c6e576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556125893390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6125d7828261156c565b15610c6e576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000818152600b6020526040902054819060ff161561269e5760405162461bcd60e51b815260206004820152602260248201527f547261636b65723a206e6174697665206e6f6e636520616c7265616479207573604482015261195960f21b6064820152608401610a6b565b6000828152600b60205260409020805460ff191660019081178255439101556009548211156126cd5760098290555b604080518381524360208201527f6cc30413b1730506e474bf0a2d4cfc39d72d06388ad5c6a00decefc4ac6dd205910160405180910390a15050565b60016009600101600082825461271f9190613415565b9091555050565b6040516001600160a01b038085166024830152831660448201526064810182905261275e9085906323b872dd60e01b90608401612463565b50505050565b6001600160a01b03811660009081526008602052604081206001908101805491929091612792908490613415565b909155505050565b60006127ef826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612a089092919063ffffffff16565b805190915015610c98578080602001905181019061280d9190612cf9565b610c985760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610a6b565b6060600061287b83600261342d565b612886906002613415565b67ffffffffffffffff81111561289e5761289e6134bb565b6040519080825280601f01601f1916602001820160405280156128c8576020820181803683370190505b509050600360fc1b816000815181106128e3576128e36134a5565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110612912576129126134a5565b60200101906001600160f81b031916908160001a905350600061293684600261342d565b612941906001613415565b90505b60018111156129b9576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110612975576129756134a5565b1a60f81b82828151811061298b5761298b6134a5565b60200101906001600160f81b031916908160001a90535060049490941c936129b281613478565b9050612944565b508315610bc05760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610a6b565b6060612a178484600085612a1f565b949350505050565b606082471015612a805760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610a6b565b843b612ace5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610a6b565b600080866001600160a01b03168587604051612aea91906131f0565b60006040518083038185875af1925050503d8060008114612b27576040519150601f19603f3d011682016040523d82523d6000602084013e612b2c565b606091505b5091509150612b3c828286612b47565b979650505050505050565b60608315612b56575081610bc0565b825115612b665782518084602001fd5b8160405162461bcd60e51b8152600401610a6b9190613281565b80356001600160a01b0381168114610f1157600080fd5b600082601f830112612ba857600080fd5b813567ffffffffffffffff80821115612bc357612bc36134bb565b604051601f8301601f19908116603f01168101908282118183101715612beb57612beb6134bb565b81604052838152866020858801011115612c0457600080fd5b836020870160208301376000602085830101528094505050505092915050565b600060208284031215612c3657600080fd5b610bc082612b80565b600080600060608486031215612c5457600080fd5b612c5d84612b80565b9250612c6b60208501612b80565b9150604084013590509250925092565b60008060408385031215612c8e57600080fd5b612c9783612b80565b91506020830135612ca7816134d1565b809150509250929050565b60008060408385031215612cc557600080fd5b612cce83612b80565b946020939093013593505050565b600060208284031215612cee57600080fd5b8135610bc0816134d1565b600060208284031215612d0b57600080fd5b8151610bc0816134d1565b600060208284031215612d2857600080fd5b5035919050565b60008060408385031215612d4257600080fd5b82359150612d5260208401612b80565b90509250929050565b60008060408385031215612d6e57600080fd5b50508035926020909101359150565b60008060408385031215612d9057600080fd5b82359150602083013567ffffffffffffffff811115612dae57600080fd5b612dba85828601612b97565b9150509250929050565b600060208284031215612dd657600080fd5b81356001600160e01b031981168114610bc057600080fd5b600060208284031215612e0057600080fd5b813567ffffffffffffffff811115612e1757600080fd5b612a1784828501612b97565b600060208284031215612e3557600080fd5b813567ffffffffffffffff80821115612e4d57600080fd5b908301906101008286031215612e6257600080fd5b612e6a6133c8565b82358152612e7a60208401612b80565b6020820152612e8b60408401612b80565b6040820152612e9c60608401612b80565b60608201526080830135608082015260a083013560a082015260c083013582811115612ec757600080fd5b612ed387828601612b97565b60c083015250612ee560e08401612b80565b60e082015295945050505050565b600060208284031215612f0557600080fd5b813567ffffffffffffffff80821115612f1d57600080fd5b9083019060e08286031215612f3157600080fd5b612f396133f2565b82358152612f4960208401612b80565b6020820152612f5a60408401612b80565b6040820152606083013560608201526080830135608082015260a083013582811115612f8557600080fd5b612f9187828601612b97565b60a083015250612fa360c08401612b80565b60c082015295945050505050565b60008060008060008060c08789031215612fca57600080fd5b86359550612fda60208801612b80565b9450612fe860408801612b80565b9350612ff660608801612b80565b92506080870135915060a087013590509295509295509295565b600080600080600080600080610100898b03121561302d57600080fd5b8835975061303d60208a01612b80565b965061304b60408a01612b80565b955061305960608a01612b80565b94506080890135935060a0890135925060c089013567ffffffffffffffff81111561308357600080fd5b61308f8b828c01612b97565b92505061309e60e08a01612b80565b90509295985092959890939650565b600080600080608085870312156130c357600080fd5b843593506130d360208601612b80565b92506130e160408601612b80565b9396929550929360600135925050565b600080600080600060a0868803121561310957600080fd5b8535945061311960208701612b80565b935061312760408701612b80565b94979396509394606081013594506080013592915050565b600080600080600080600060e0888a03121561315a57600080fd5b8735965061316a60208901612b80565b955061317860408901612b80565b9450606088013593506080880135925060a088013567ffffffffffffffff8111156131a257600080fd5b6131ae8a828b01612b97565b9250506131bd60c08901612b80565b905092959891949750929550565b6000806000606084860312156131e057600080fd5b83359250612c6b60208501612b80565b6000825161320281846020870161344c565b9190910192915050565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161324481601785016020880161344c565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835161327581602884016020880161344c565b01602801949350505050565b60208152600082518060208401526132a081604085016020870161344c565b601f01601f19169190910160400192915050565b60208082526016908201527511dd585c990e8818dbdb9d1c9858dd081c185d5cd95960521b604082015260600190565b60208082526029908201527f426c61636b6c69737461626c653a206163636f756e74206973206e6f7420626c60408201526830b1b5b634b9ba32b960b91b606082015260800190565b602080825260129082015271547261636b65643a75736564206e6f6e636560701b604082015260600190565b60208082526010908201526f23bab0b9321d103737ba1037bbb732b960811b604082015260600190565b60208082526025908201527f426c61636b6c69737461626c653a206163636f756e7420697320626c61636b6c6040820152641a5cdd195960da1b606082015260800190565b604051610100810167ffffffffffffffff811182821017156133ec576133ec6134bb565b60405290565b60405160e0810167ffffffffffffffff811182821017156133ec576133ec6134bb565b600082198211156134285761342861348f565b500190565b60008160001904831182151516156134475761344761348f565b500290565b60005b8381101561346757818101518382015260200161344f565b8381111561275e5750506000910152565b6000816134875761348761348f565b506000190190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b80151581146134df57600080fd5b5056fea49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775a2646970667358221220fed5aaaf41dd4d62ba5bb8d4af02b73523fa3cf8eac2aafe986a37e788d59ab764736f6c634300080700330000000000000000000000000000000000000000000000000000000000000001

Deployed Bytecode

0x6080604052600436106102ae5760003560e01c806391d1485411610175578063c2e17cb3116100dc578063e4c566f911610095578063f0d914091161006f578063f0d9140914610924578063f9f92be41461098e578063fa540801146109ae578063fe575a87146109ce57600080fd5b8063e4c566f9146108c4578063e4cca4b0146108e4578063e5d077561461090457600080fd5b8063c2e17cb3146107d4578063c562e6ae1461080d578063d53913931461083d578063d547741f14610871578063dd86d61014610891578063e3f33c22146108b157600080fd5b8063a7bb58031161012e578063a7bb5803146106e7578063ad38bf2214610725578063b187bd2614610745578063b65c69a314610764578063ba6a984814610784578063bdf39cd8146107a457600080fd5b806391d148541461060957806397aba7f9146106295780639915efac146106495780639ae2c352146106695780639eb0db14146106a2578063a217fddf146106d257600080fd5b80634fb2e45d1161021957806375b238fc116101d257806375b238fc1461054557806376319190146105675780638323d9da146105875780638456cb591461059c5780638d71f84b146105b157806391b4af05146105d157600080fd5b80634fb2e45d1461048f57806367d535eb146104af578063714711d9146104cf57806373f026aa146104ef578063747734121461050f57806374a393621461052557600080fd5b8063240028e81161026b578063240028e81461038a578063248a9ca3146103c35780632f2ff15d1461040157806336568abe146104215780633f4ba83a146104415780634b50303c1461045657600080fd5b806301ffc9a7146102b35780630d3762b5146102e85780630ee60fa7146103085780631171bda9146103285780631a895266146103485780631e4e00911461036a575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612dc4565b610a07565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b506102d3610303366004612cb2565b610a3e565b34801561031457600080fd5b506102d3610323366004612cb2565b610b01565b34801561033457600080fd5b506102d3610343366004612c3f565b610b30565b34801561035457600080fd5b50610368610363366004612c24565b610bc7565b005b34801561037657600080fd5b50610368610385366004612d5b565b610c3a565b34801561039657600080fd5b506102d36103a5366004612c24565b6001600160a01b031660009081526004602052604090205460ff1690565b3480156103cf57600080fd5b506103f36103de366004612d16565b60009081526020819052604090206001015490565b6040519081526020016102df565b34801561040d57600080fd5b5061036861041c366004612d2f565b610c72565b34801561042d57600080fd5b5061036861043c366004612d2f565b610c9d565b34801561044d57600080fd5b506102d3610d17565b34801561046257600080fd5b506102d3610471366004612c24565b6001600160a01b031660009081526006602052604090205460ff1690565b34801561049b57600080fd5b506102d36104aa366004612c24565b610e20565b3480156104bb57600080fd5b506102d36104ca36600461313f565b610f16565b3480156104db57600080fd5b506102d36104ea366004612ef3565b6112b0565b3480156104fb57600080fd5b506103f361050a3660046130f1565b611311565b34801561051b57600080fd5b506103f3600c5481565b34801561053157600080fd5b506102d3610540366004612c24565b61136d565b34801561055157600080fd5b506103f36000805160206134e383398151915281565b34801561057357600080fd5b506102d3610582366004612c24565b6113bf565b34801561059357600080fd5b50600a546103f3565b3480156105a857600080fd5b506102d3611469565b3480156105bd57600080fd5b506102d36105cc366004612cdc565b611528565b3480156105dd57600080fd5b506002546105f1906001600160a01b031681565b6040516001600160a01b0390911681526020016102df565b34801561061557600080fd5b506102d3610624366004612d2f565b61156c565b34801561063557600080fd5b506105f1610644366004612d7d565b611595565b34801561065557600080fd5b506102d3610664366004612c24565b611614565b34801561067557600080fd5b506103f3610684366004612c24565b6001600160a01b031660009081526008602052604090206001015490565b3480156106ae57600080fd5b506102d36106bd366004612c24565b60046020526000908152604090205460ff1681565b3480156106de57600080fd5b506103f3600081565b3480156106f357600080fd5b50610707610702366004612dee565b61166a565b60408051938452602084019290925260ff16908201526060016102df565b34801561073157600080fd5b50610368610740366004612c24565b6116ed565b34801561075157600080fd5b50600154600160a01b900460ff166102d3565b34801561077057600080fd5b506102d361077f366004613010565b6117d2565b34801561079057600080fd5b506103f361079f366004612fb1565b611bc6565b3480156107b057600080fd5b506102d36107bf366004612d16565b6000908152600b602052604090205460ff1690565b3480156107e057600080fd5b506102d36107ef366004612c24565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561081957600080fd5b506102d3610828366004612c24565b60056020526000908152604090205460ff1681565b34801561084957600080fd5b506103f37f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b34801561087d57600080fd5b5061036861088c366004612d2f565b611c28565b34801561089d57600080fd5b506102d36108ac366004612e23565b611c4e565b6102d36108bf3660046131cb565b611ca2565b3480156108d057600080fd5b506102d36108df366004612d16565b611e47565b3480156108f057600080fd5b506102d36108ff3660046130ad565b611ef8565b34801561091057600080fd5b506102d361091f366004612c7b565b61218c565b34801561093057600080fd5b5061097761093f366004612cb2565b6001600160a01b039190911660009081526008602090815260408083209383526002909301905220805460019091015460ff90911691565b6040805192151583526020830191909152016102df565b34801561099a57600080fd5b506103686109a9366004612c24565b612243565b3480156109ba57600080fd5b506103f36109c9366004612d16565b6122b9565b3480156109da57600080fd5b506102d36109e9366004612c24565b6001600160a01b031660009081526003602052604090205460ff1690565b60006001600160e01b03198216637965db0b60e01b1480610a3857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6001546000906001600160a01b03163314610a745760405162461bcd60e51b8152600401610a6b90613359565b60405180910390fd5b610a7e8383610b01565b15610a9b5760405162461bcd60e51b8152600401610a6b9061332d565b610aa5838361230c565b600c54604080519182526001600160a01b0385166020830152339082015243606082015282907f3d99cb4d4df166e5735ab15de0033e5cf4fddd1846bd77f9f4eec007ff6a64a99060800160405180910390a250600192915050565b6001600160a01b0391909116600090815260086020908152604080832093835260029093019052205460ff1690565b6001546000906001600160a01b03163314610b5d5760405162461bcd60e51b8152600401610a6b90613359565b610b716001600160a01b0385168484612437565b604080516001600160a01b038087168252851660208201529081018390527faca8fb252cde442184e5f10e0f2e6e4029e8cd7717cae63559079610702436aa9060600160405180910390a15060015b9392505050565b6002546001600160a01b03163314610bf15760405162461bcd60e51b8152600401610a6b906132e4565b6001600160a01b038116600081815260036020526040808220805460ff19169055517f117e3210bb9aa7d9baff172026820255c6f6c30ba8999d1c2fd88e2848137c4e9190a250565b6001546001600160a01b03163314610c645760405162461bcd60e51b8152600401610a6b90613359565b610c6e828261249a565b5050565b600082815260208190526040902060010154610c8e81336124e5565b610c988383612549565b505050565b6001600160a01b0381163314610d0d5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610a6b565b610c6e82826125cd565b6000610d316000805160206134e38339815191523361156c565b610d705760405162461bcd60e51b815260206004820152601060248201526f23bab0b9321d103737ba1030b236b4b760811b6044820152606401610a6b565b600154600160a01b900460ff16610dc95760405162461bcd60e51b815260206004820152601d60248201527f47756172643a20636f6e7472616374206973206e6f74207061757365640000006044820152606401610a6b565b6001805460ff60a01b191690557f1e7a7234ad01ed7353bf129217f5c162773639a6cb22773e84bcd5a2b0ef362e43335b604080519283526001600160a01b0390911660208301520160405180910390a150600190565b6001546000906001600160a01b03163314610e4d5760405162461bcd60e51b8152600401610a6b90613359565b610e58600083610c72565b610e706000805160206134e383398151915283610c72565b600154610e88906000906001600160a01b0316611c28565b600154610ead906000805160206134e3833981519152906001600160a01b0316611c28565b600154604080516001600160a01b03928316815291841660208301527fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c910160405180910390a150600180546001600160a01b0319166001600160a01b0383161781555b919050565b60075460009060ff16610f6b5760405162461bcd60e51b815260206004820152601b60248201527f46696265723a204e6174697665206e6f7420737570706f7274656400000000006044820152606401610a6b565b3360008181526003602052604090205460ff1615610f9b5760405162461bcd60e51b8152600401610a6b90613383565b6001600160a01b038716600090815260036020526040902054879060ff1615610fd65760405162461bcd60e51b8152600401610a6b90613383565b600154600160a01b900460ff16156110005760405162461bcd60e51b8152600401610a6b906132b4565b6001600160a01b038416600090815260066020526040902054849060ff16151560011461106f5760405162461bcd60e51b815260206004820152601e60248201527f547261636b65643a7369676e6572206973206e6f7420766572696669656400006044820152606401610a6b565b8a600c54146110b95760405162461bcd60e51b815260206004820152601660248201527537b6a634b7359d34b731b7b93932b1ba1031b430b4b760511b6044820152606401610a6b565b6000878152600b602052604090205460ff16156110e85760405162461bcd60e51b8152600401610a6b9061332d565b6040805160e0810182528c81526001600160a01b038c811660208301528b811692820192909252606081018a90526080810189905260a0810188905290861660c0820152611135816112b0565b6111815760405162461bcd60e51b815260206004820181905260248201527f6f6d4c696e6b3a206d6573736167652063616e742062652076657269666965646044820152606401610a6b565b884710156111d15760405162461bcd60e51b815260206004820152601960248201527f6f6d4c696e6b3a206e6f7420656e6f756768206e6174697665000000000000006044820152606401610a6b565b6111da88612632565b6040518a906001600160a01b038216908b156108fc02908c906000818181858888f19350505050158015611212573d6000803e3d6000fd5b5081608001517ff7d39c81b147bd7e92114dc4963629acf35e130502ca5f86861eed13990d34e7836000015160008560200151866040015187606001518860c00151604051611295969594939291909586526001600160a01b0394851660208701529284166040860152908316606085015260808401521660a082015260c00190565b60405180910390a25060019c9b505050505050505050505050565b6000806112d483600001518460200151856040015186606001518760800151611311565b905060006112e1826122b9565b90508360c001516001600160a01b03166112ff828660a00151611595565b6001600160a01b031614949350505050565b604080516020808201979097526bffffffffffffffffffffffff19606096871b8116828401529490951b909316605485015260688401919091526088808401919091528151808403909101815260a89092019052805191012090565b6001546000906001600160a01b0316331461139a5760405162461bcd60e51b8152600401610a6b90613359565b506001600160a01b03166000908152600660205260409020805460ff19169055600190565b6001546000906001600160a01b031633146113ec5760405162461bcd60e51b8152600401610a6b90613359565b604080516001600160a01b03841681523360208201527f62ced09eccd8bfb8039b5a849bd3c5f0f64a904e0a66843c93380268c3c9440a910160405180910390a16001600160a01b0382166000908152600460209081526040808320805460ff199081169091556005909252909120805490911690556001610a38565b60006114836000805160206134e38339815191523361156c565b6114c25760405162461bcd60e51b815260206004820152601060248201526f23bab0b9321d103737ba1030b236b4b760811b6044820152606401610a6b565b600154600160a01b900460ff16156114ec5760405162461bcd60e51b8152600401610a6b906132b4565b6001805460ff60a01b1916600160a01b1790557fd8c9c5623123df8e137854c59a08f9084b75609fe24584228d44ffdce5ab920a43610dfa3390565b6001546000906001600160a01b031633146115555760405162461bcd60e51b8152600401610a6b90613359565b506007805460ff1916911515919091179055600190565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6000806000806115a48561166a565b6040805160008152602081018083528b905260ff8316918101919091526060810184905260808101839052929550909350915060019060a0016020604051602081039080840390855afa1580156115ff573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b6001546000906001600160a01b031633146116415760405162461bcd60e51b8152600401610a6b90613359565b506001600160a01b03166000908152600660205260409020805460ff1916600190811790915590565b600080600083516041146116cf5760405162461bcd60e51b815260206004820152602660248201527f5369676e56657269666965723a20696e76616c6964207369676e6174757265206044820152650d8cadccee8d60d31b6064820152608401610a6b565b50505060208101516040820151606090920151909260009190911a90565b6001546001600160a01b031633146117175760405162461bcd60e51b8152600401610a6b90613359565b6001600160a01b0381166117885760405162461bcd60e51b815260206004820152603260248201527f426c61636b6c69737461626c653a206e657720626c61636b6c697374657220696044820152717320746865207a65726f206164647265737360701b6064820152608401610a6b565b600280546001600160a01b0319166001600160a01b0383169081179091556040517fc67398012c111ce95ecb7429b933096c977380ee6c421175a71a4a4c6c88c06e90600090a250565b6001600160a01b038716600090815260046020526040812054889060ff1661183c5760405162461bcd60e51b815260206004820152601a60248201527f46696265723a20746f6b656e206e6f7420737570706f727465640000000000006044820152606401610a6b565b3360008181526003602052604090205460ff161561186c5760405162461bcd60e51b8152600401610a6b90613383565b6001600160a01b038816600090815260036020526040902054889060ff16156118a75760405162461bcd60e51b8152600401610a6b90613383565b600154600160a01b900460ff16156118d15760405162461bcd60e51b8152600401610a6b906132b4565b6001600160a01b038516600090815260066020526040902054859060ff1615156001146119405760405162461bcd60e51b815260206004820152601e60248201527f547261636b65643a7369676e6572206973206e6f7420766572696669656400006044820152606401610a6b565b8c600c541461198a5760405162461bcd60e51b815260206004820152601660248201527537b6a634b7359d34b731b7b93932b1ba1031b430b4b760511b6044820152606401610a6b565b6119948c89610b01565b156119b15760405162461bcd60e51b8152600401610a6b9061332d565b60408051610100810182528e81526001600160a01b038e811660208301528d8116928201929092528b82166060820152608081018b905260a081018a905260c0810189905290871660e0820152611a0781611c4e565b611a5e5760405162461bcd60e51b815260206004820152602260248201527f6f6d4c696e6b3a207369676e61747572652063616e7420626520766572696669604482015261195960f21b6064820152608401610a6b565b611a688d8a61230c565b6001600160a01b038d1660009081526005602052604090205460ff1615611b11576040516308934a5f60e31b81526001600160a01b038c81166004830152602482018c90528e169063449a52f890604401602060405180830381600087803b158015611ad357600080fd5b505af1158015611ae7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b0b9190612cf9565b50611b25565b611b256001600160a01b038e168c8c612437565b8060a001517ff7d39c81b147bd7e92114dc4963629acf35e130502ca5f86861eed13990d34e7826000015183602001518460400151856060015186608001518760e00151604051611baa969594939291909586526001600160a01b0394851660208701529284166040860152908316606085015260808401521660a082015260c00190565b60405180910390a25060019d9c50505050505050505050505050565b604080516020808201989098526bffffffffffffffffffffffff19606097881b81168284015295871b861660548201529390951b9093166068830152607c820152609c808201929092528251808203909201825260bc01909152805191012090565b600082815260208190526040902060010154611c4481336124e5565b610c9883836125cd565b600080611c77836000015184602001518560400151866060015187608001518860a00151611bc6565b90506000611c84826122b9565b90508360e001516001600160a01b03166112ff828660c00151611595565b60075460009060ff16611cf75760405162461bcd60e51b815260206004820152601b60248201527f46696265723a204e6174697665206e6f7420737570706f7274656400000000006044820152606401610a6b565b3360008181526003602052604090205460ff1615611d275760405162461bcd60e51b8152600401610a6b90613383565b6001600160a01b038416600090815260036020526040902054849060ff1615611d625760405162461bcd60e51b8152600401610a6b90613383565b600154600160a01b900460ff1615611d8c5760405162461bcd60e51b8152600401610a6b906132b4565b833414611ddb5760405162461bcd60e51b815260206004820152601b60248201527f6f6d4c696e6b3a2077726f6e67206e617469766520616d6f756e7400000000006044820152606401610a6b565b611de3612709565b600a54604080518881526000602082015233818301526001600160a01b03881660608201526080810187905290517fa9f314fc16d8633cc0eb4ddfa1abb2d2c11cfaffbd21d19f00f56de32ed347019181900360a00190a250600195945050505050565b6001546000906001600160a01b03163314611e745760405162461bcd60e51b8152600401610a6b90613359565b6000828152600b602052604090205460ff1615611ea35760405162461bcd60e51b8152600401610a6b9061332d565b611eac82612632565b600c5460408051918252336020830152439082015282907fd019f3c2813252e839deefeb91ea5e8220166d14dfe27b3114d2f97fa9e931959060600160405180910390a2506001919050565b6001600160a01b038316600090815260046020526040812054849060ff16611f625760405162461bcd60e51b815260206004820152601a60248201527f46696265723a20746f6b656e206e6f7420737570706f727465640000000000006044820152606401610a6b565b3360008181526003602052604090205460ff1615611f925760405162461bcd60e51b8152600401610a6b90613383565b6001600160a01b038516600090815260036020526040902054859060ff1615611fcd5760405162461bcd60e51b8152600401610a6b90613383565b600154600160a01b900460ff1615611ff75760405162461bcd60e51b8152600401610a6b906132b4565b6001600160a01b03871660009081526005602052604090205460ff16156120e95760405163079cc67960e41b8152336004820152602481018690526001600160a01b038816906379cc679090604401602060405180830381600087803b15801561206057600080fd5b505af1158015612074573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120989190612cf9565b6120e45760405162461bcd60e51b815260206004820152601a60248201527f6f6d4c696e6b3a2063616e6e6f74206275726e20746f6b656e730000000000006044820152606401610a6b565b6120fe565b6120fe6001600160a01b038816333088612726565b61210787612764565b6001600160a01b038716600090815260086020526040902060010154604080518a81526001600160a01b03808b16602083015233928201929092529088166060820152608081018790527fa9f314fc16d8633cc0eb4ddfa1abb2d2c11cfaffbd21d19f00f56de32ed347019060a00160405180910390a2506001979650505050505050565b6001546000906001600160a01b031633146121b95760405162461bcd60e51b8152600401610a6b90613359565b604080516001600160a01b03851681528315156020820152338183015290517f15c4300173541e306c93c018432fe444cf3c9b6a663fd7a51e984fdb2290b9899181900360600190a16001600160a01b03831660009081526004602090815260408083208054600160ff199182168117909255600590935292208054909116841515179055610bc0565b6002546001600160a01b0316331461226d5760405162461bcd60e51b8152600401610a6b906132e4565b6001600160a01b038116600081815260036020526040808220805460ff19166001179055517fffa4e6181777692565cf28528fc88fd1516ea86b56da075235fa575af6a4b8559190a250565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b6001600160a01b03821660009081526008602090815260408083208484526002019091529020548290829060ff16156123875760405162461bcd60e51b815260206004820152601b60248201527f547261636b65723a206e6f6e636520616c7265616479207573656400000000006044820152606401610a6b565b6001600160a01b0384166000818152600860208181526040808420888552600281018352908420805460ff19166001908117825543910155939092529052548311156123e9576001600160a01b03841660009081526008602052604090208390555b604080516001600160a01b038616815260208101859052438183015290517f3fde1edb52bbe023081a01c60e06e15396e067be4699a5044fdfa793f67bfc289181900360600190a150505050565b6040516001600160a01b038316602482015260448101829052610c9890849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915261279a565b600082815260208190526040808220600101805490849055905190918391839186917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a4505050565b6124ef828261156c565b610c6e57612507816001600160a01b0316601461286c565b61251283602061286c565b60405160200161252392919061320c565b60408051601f198184030181529082905262461bcd60e51b8252610a6b91600401613281565b612553828261156c565b610c6e576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556125893390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6125d7828261156c565b15610c6e576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000818152600b6020526040902054819060ff161561269e5760405162461bcd60e51b815260206004820152602260248201527f547261636b65723a206e6174697665206e6f6e636520616c7265616479207573604482015261195960f21b6064820152608401610a6b565b6000828152600b60205260409020805460ff191660019081178255439101556009548211156126cd5760098290555b604080518381524360208201527f6cc30413b1730506e474bf0a2d4cfc39d72d06388ad5c6a00decefc4ac6dd205910160405180910390a15050565b60016009600101600082825461271f9190613415565b9091555050565b6040516001600160a01b038085166024830152831660448201526064810182905261275e9085906323b872dd60e01b90608401612463565b50505050565b6001600160a01b03811660009081526008602052604081206001908101805491929091612792908490613415565b909155505050565b60006127ef826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612a089092919063ffffffff16565b805190915015610c98578080602001905181019061280d9190612cf9565b610c985760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610a6b565b6060600061287b83600261342d565b612886906002613415565b67ffffffffffffffff81111561289e5761289e6134bb565b6040519080825280601f01601f1916602001820160405280156128c8576020820181803683370190505b509050600360fc1b816000815181106128e3576128e36134a5565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110612912576129126134a5565b60200101906001600160f81b031916908160001a905350600061293684600261342d565b612941906001613415565b90505b60018111156129b9576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110612975576129756134a5565b1a60f81b82828151811061298b5761298b6134a5565b60200101906001600160f81b031916908160001a90535060049490941c936129b281613478565b9050612944565b508315610bc05760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610a6b565b6060612a178484600085612a1f565b949350505050565b606082471015612a805760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610a6b565b843b612ace5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610a6b565b600080866001600160a01b03168587604051612aea91906131f0565b60006040518083038185875af1925050503d8060008114612b27576040519150601f19603f3d011682016040523d82523d6000602084013e612b2c565b606091505b5091509150612b3c828286612b47565b979650505050505050565b60608315612b56575081610bc0565b825115612b665782518084602001fd5b8160405162461bcd60e51b8152600401610a6b9190613281565b80356001600160a01b0381168114610f1157600080fd5b600082601f830112612ba857600080fd5b813567ffffffffffffffff80821115612bc357612bc36134bb565b604051601f8301601f19908116603f01168101908282118183101715612beb57612beb6134bb565b81604052838152866020858801011115612c0457600080fd5b836020870160208301376000602085830101528094505050505092915050565b600060208284031215612c3657600080fd5b610bc082612b80565b600080600060608486031215612c5457600080fd5b612c5d84612b80565b9250612c6b60208501612b80565b9150604084013590509250925092565b60008060408385031215612c8e57600080fd5b612c9783612b80565b91506020830135612ca7816134d1565b809150509250929050565b60008060408385031215612cc557600080fd5b612cce83612b80565b946020939093013593505050565b600060208284031215612cee57600080fd5b8135610bc0816134d1565b600060208284031215612d0b57600080fd5b8151610bc0816134d1565b600060208284031215612d2857600080fd5b5035919050565b60008060408385031215612d4257600080fd5b82359150612d5260208401612b80565b90509250929050565b60008060408385031215612d6e57600080fd5b50508035926020909101359150565b60008060408385031215612d9057600080fd5b82359150602083013567ffffffffffffffff811115612dae57600080fd5b612dba85828601612b97565b9150509250929050565b600060208284031215612dd657600080fd5b81356001600160e01b031981168114610bc057600080fd5b600060208284031215612e0057600080fd5b813567ffffffffffffffff811115612e1757600080fd5b612a1784828501612b97565b600060208284031215612e3557600080fd5b813567ffffffffffffffff80821115612e4d57600080fd5b908301906101008286031215612e6257600080fd5b612e6a6133c8565b82358152612e7a60208401612b80565b6020820152612e8b60408401612b80565b6040820152612e9c60608401612b80565b60608201526080830135608082015260a083013560a082015260c083013582811115612ec757600080fd5b612ed387828601612b97565b60c083015250612ee560e08401612b80565b60e082015295945050505050565b600060208284031215612f0557600080fd5b813567ffffffffffffffff80821115612f1d57600080fd5b9083019060e08286031215612f3157600080fd5b612f396133f2565b82358152612f4960208401612b80565b6020820152612f5a60408401612b80565b6040820152606083013560608201526080830135608082015260a083013582811115612f8557600080fd5b612f9187828601612b97565b60a083015250612fa360c08401612b80565b60c082015295945050505050565b60008060008060008060c08789031215612fca57600080fd5b86359550612fda60208801612b80565b9450612fe860408801612b80565b9350612ff660608801612b80565b92506080870135915060a087013590509295509295509295565b600080600080600080600080610100898b03121561302d57600080fd5b8835975061303d60208a01612b80565b965061304b60408a01612b80565b955061305960608a01612b80565b94506080890135935060a0890135925060c089013567ffffffffffffffff81111561308357600080fd5b61308f8b828c01612b97565b92505061309e60e08a01612b80565b90509295985092959890939650565b600080600080608085870312156130c357600080fd5b843593506130d360208601612b80565b92506130e160408601612b80565b9396929550929360600135925050565b600080600080600060a0868803121561310957600080fd5b8535945061311960208701612b80565b935061312760408701612b80565b94979396509394606081013594506080013592915050565b600080600080600080600060e0888a03121561315a57600080fd5b8735965061316a60208901612b80565b955061317860408901612b80565b9450606088013593506080880135925060a088013567ffffffffffffffff8111156131a257600080fd5b6131ae8a828b01612b97565b9250506131bd60c08901612b80565b905092959891949750929550565b6000806000606084860312156131e057600080fd5b83359250612c6b60208501612b80565b6000825161320281846020870161344c565b9190910192915050565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161324481601785016020880161344c565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835161327581602884016020880161344c565b01602801949350505050565b60208152600082518060208401526132a081604085016020870161344c565b601f01601f19169190910160400192915050565b60208082526016908201527511dd585c990e8818dbdb9d1c9858dd081c185d5cd95960521b604082015260600190565b60208082526029908201527f426c61636b6c69737461626c653a206163636f756e74206973206e6f7420626c60408201526830b1b5b634b9ba32b960b91b606082015260800190565b602080825260129082015271547261636b65643a75736564206e6f6e636560701b604082015260600190565b60208082526010908201526f23bab0b9321d103737ba1037bbb732b960811b604082015260600190565b60208082526025908201527f426c61636b6c69737461626c653a206163636f756e7420697320626c61636b6c6040820152641a5cdd195960da1b606082015260800190565b604051610100810167ffffffffffffffff811182821017156133ec576133ec6134bb565b60405290565b60405160e0810167ffffffffffffffff811182821017156133ec576133ec6134bb565b600082198211156134285761342861348f565b500190565b60008160001904831182151516156134475761344761348f565b500290565b60005b8381101561346757818101518382015260200161344f565b8381111561275e5750506000910152565b6000816134875761348761348f565b506000190190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b80151581146134df57600080fd5b5056fea49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775a2646970667358221220fed5aaaf41dd4d62ba5bb8d4af02b73523fa3cf8eac2aafe986a37e788d59ab764736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000001

-----Decoded View---------------
Arg [0] : chainId (uint256): 1

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


Deployed Bytecode Sourcemap

49095:10679:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14799:204;;;;;;;;;;-1:-1:-1;14799:204:0;;;;;:::i;:::-;;:::i;:::-;;;14460:14:1;;14453:22;14435:41;;14423:2;14408:18;14799:204:0;;;;;;;;58660:305;;;;;;;;;;-1:-1:-1;58660:305:0;;;;;:::i;:::-;;:::i;46591:143::-;;;;;;;;;;-1:-1:-1;46591:143:0;;;;;:::i;:::-;;:::i;39650:250::-;;;;;;;;;;-1:-1:-1;39650:250:0;;;;;:::i;:::-;;:::i;23690:147::-;;;;;;;;;;-1:-1:-1;23690:147:0;;;;;:::i;:::-;;:::i;:::-;;21592:120;;;;;;;;;;-1:-1:-1;21592:120:0;;;;;:::i;:::-;;:::i;41190:143::-;;;;;;;;;;-1:-1:-1;41190:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;41292:33:0;41263:4;41292:33;;;:16;:33;;;;;;;;;41190:143;16210:123;;;;;;;;;;-1:-1:-1;16210:123:0;;;;;:::i;:::-;16276:7;16303:12;;;;;;;;;;:22;;;;16210:123;;;;14896:25:1;;;14884:2;14869:18;16210:123:0;14750:177:1;16595:147:0;;;;;;;;;;-1:-1:-1;16595:147:0;;;;;:::i;:::-;;:::i;17643:218::-;;;;;;;;;;-1:-1:-1;17643:218:0;;;;;:::i;:::-;;:::i;20965:173::-;;;;;;;;;;;;;:::i;41063:119::-;;;;;;;;;;-1:-1:-1;41063:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;41150:24:0;41127:4;41150:24;;;:16;:24;;;;;;;;;41063:119;21234:350;;;;;;;;;;-1:-1:-1;21234:350:0;;;;;:::i;:::-;;:::i;57097:1555::-;;;;;;;;;;-1:-1:-1;57097:1555:0;;;;;:::i;:::-;;:::i;2874:559::-;;;;;;;;;;-1:-1:-1;2874:559:0;;;;;:::i;:::-;;:::i;1311:287::-;;;;;;;;;;-1:-1:-1;1311:287:0;;;;;:::i;:::-;;:::i;49273:23::-;;;;;;;;;;;;;;;;41714:154;;;;;;;;;;-1:-1:-1;41714:154:0;;;;;:::i;:::-;;:::i;19809:60::-;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19809:60:0;;42495:224;;;;;;;;;;-1:-1:-1;42495:224:0;;;;;:::i;:::-;;:::i;47403:117::-;;;;;;;;;;-1:-1:-1;47484:28:0;;47403:117;;20786:171;;;;;;;;;;;;;:::i;43357:153::-;;;;;;;;;;-1:-1:-1;43357:153:0;;;;;:::i;:::-;;:::i;22166:27::-;;;;;;;;;;-1:-1:-1;22166:27:0;;;;-1:-1:-1;;;;;22166:27:0;;;;;;-1:-1:-1;;;;;12543:32:1;;;12525:51;;12513:2;12498:18;22166:27:0;12379:203:1;15095:139:0;;;;;;;;;;-1:-1:-1;15095:139:0;;;;;:::i;:::-;;:::i;3697:259::-;;;;;;;;;;-1:-1:-1;3697:259:0;;;;;:::i;:::-;;:::i;41446:155::-;;;;;;;;;;-1:-1:-1;41446:155:0;;;;;:::i;:::-;;:::i;47172:126::-;;;;;;;;;;-1:-1:-1;47172:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;47261:15:0;47234:7;47261:15;;;:8;:15;;;;;:29;;;;47172:126;40214:48;;;;;;;;;;-1:-1:-1;40214:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;14186:49;;;;;;;;;;-1:-1:-1;14186:49:0;14231:4;14186:49;;4159:352;;;;;;;;;;-1:-1:-1;4159:352:0;;;;;:::i;:::-;;:::i;:::-;;;;15130:25:1;;;15186:2;15171:18;;15164:34;;;;15246:4;15234:17;15214:18;;;15207:45;15118:2;15103:18;4159:352:0;14932:326:1;24115:307:0;;;;;;;;;;-1:-1:-1;24115:307:0;;;;;:::i;:::-;;:::i;21146:80::-;;;;;;;;;;-1:-1:-1;21211:7:0;;-1:-1:-1;;;21211:7:0;;;;21146:80;;53736:2479;;;;;;;;;;-1:-1:-1;53736:2479:0;;;;;:::i;:::-;;:::i;987:316::-;;;;;;;;;;-1:-1:-1;987:316:0;;;;;:::i;:::-;;:::i;47528:133::-;;;;;;;;;;-1:-1:-1;47528:133:0;;;;;:::i;:::-;47591:4;47615:29;;;:22;:29;;;;;:37;;;;47528:133;41967:129;;;;;;;;;;-1:-1:-1;41967:129:0;;;;;:::i;:::-;-1:-1:-1;;;;;42059:29:0;42035:4;42059:29;;;:12;:29;;;;;;;;;41967:129;40269:44;;;;;;;;;;-1:-1:-1;40269:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;19876:62;;;;;;;;;;;;19914:24;19876:62;;16987:149;;;;;;;;;;-1:-1:-1;16987:149:0;;;;;:::i;:::-;;:::i;2298:568::-;;;;;;;;;;-1:-1:-1;2298:568:0;;;;;:::i;:::-;;:::i;51717:991::-;;;;;;:::i;:::-;;:::i;58973:281::-;;;;;;;;;;-1:-1:-1;58973:281:0;;;;;:::i;:::-;;:::i;50140:1264::-;;;;;;;;;;-1:-1:-1;50140:1264:0;;;;;:::i;:::-;;:::i;42170:248::-;;;;;;;;;;-1:-1:-1;42170:248:0;;;;;:::i;:::-;;:::i;46180:192::-;;;;;;;;;;-1:-1:-1;46180:192:0;;;;;:::i;:::-;-1:-1:-1;;;;;46285:15:0;;;;46253:4;46285:15;;;:8;:15;;;;;;;;:30;;;:23;;;;:30;;;:38;;;46324:39;;;;46285:38;;;;;46180:192;;;;;14680:14:1;;14673:22;14655:41;;14727:2;14712:18;;14705:34;;;;14628:18;46180:192:0;14487:258:1;23323:142:0;;;;;;;;;;-1:-1:-1;23323:142:0;;;;;:::i;:::-;;:::i;1836:186::-;;;;;;;;;;-1:-1:-1;1836:186:0;;;;;:::i;:::-;;:::i;22987:114::-;;;;;;;;;;-1:-1:-1;22987:114:0;;;;;:::i;:::-;-1:-1:-1;;;;;23072:21:0;23048:4;23072:21;;;:12;:21;;;;;;;;;22987:114;14799:204;14884:4;-1:-1:-1;;;;;;14908:47:0;;-1:-1:-1;;;14908:47:0;;:87;;-1:-1:-1;;;;;;;;;;12229:40:0;;;14959:36;14901:94;14799:204;-1:-1:-1;;14799:204:0:o;58660:305::-;20055:6;;58741:4;;-1:-1:-1;;;;;20055:6:0;8230:10;20055:22;20047:51;;;;-1:-1:-1;;;20047:51:0;;;;;;;:::i;:::-;;;;;;;;;58777:24:::1;58789:5;58795;58777:11;:24::i;:::-;58776:25;58768:55;;;;-1:-1:-1::0;;;58768:55:0::1;;;;;;;:::i;:::-;58834:21;58843:5;58849;58834:8;:21::i;:::-;58890:8;::::0;58873:62:::1;::::0;;27243:25:1;;;-1:-1:-1;;;;;27342:15:1;;27337:2;27322:18;;27315:43;58905:10:0::1;27374:18:1::0;;;27367:43;58922:12:0::1;27441:2:1::0;27426:18;;27419:34;58916:5:0;;58873:62:::1;::::0;27230:3:1;27215:19;58873:62:0::1;;;;;;;-1:-1:-1::0;58953:4:0::1;58660:305:::0;;;;:::o;46591:143::-;-1:-1:-1;;;;;46687:15:0;;;;46663:4;46687:15;;;:8;:15;;;;;;;;:30;;;:23;;;;:30;;;:38;;;;46591:143::o;39650:250::-;20055:6;;39750:4;;-1:-1:-1;;;;;20055:6:0;8230:10;20055:22;20047:51;;;;-1:-1:-1;;;20047:51:0;;;;;;;:::i;:::-;39772:44:::1;-1:-1:-1::0;;;;;39772:26:0;::::1;39799:9:::0;39809:6;39772:26:::1;:44::i;:::-;39832:38;::::0;;-1:-1:-1;;;;;13154:15:1;;;13136:34;;13206:15;;13201:2;13186:18;;13179:43;13238:18;;;13231:34;;;39832:38:0::1;::::0;13086:2:1;13071:18;39832:38:0::1;;;;;;;-1:-1:-1::0;39888:4:0::1;20109:1;39650:250:::0;;;;;:::o;23690:147::-;22406:12;;-1:-1:-1;;;;;22406:12:0;8230:10;22406:28;22398:81;;;;-1:-1:-1;;;22398:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23762:21:0;::::1;23786:5;23762:21:::0;;;:12:::1;:21;::::0;;;;;:29;;-1:-1:-1;;23762:29:0::1;::::0;;23807:22;::::1;::::0;23786:5;23807:22:::1;23690:147:::0;:::o;21592:120::-;20055:6;;-1:-1:-1;;;;;20055:6:0;8230:10;20055:22;20047:51;;;;-1:-1:-1;;;20047:51:0;;;;;;;:::i;:::-;21675:29:::1;21689:4;21694:9;21675:13;:29::i;:::-;21592:120:::0;;:::o;16595:147::-;16276:7;16303:12;;;;;;;;;;:22;;;14677:30;14688:4;8230:10;14677;:30::i;:::-;16709:25:::1;16720:4;16726:7;16709:10;:25::i;:::-;16595:147:::0;;;:::o;17643:218::-;-1:-1:-1;;;;;17739:23:0;;8230:10;17739:23;17731:83;;;;-1:-1:-1;;;17731:83:0;;24835:2:1;17731:83:0;;;24817:21:1;24874:2;24854:18;;;24847:30;24913:34;24893:18;;;24886:62;-1:-1:-1;;;24964:18:1;;;24957:45;25019:19;;17731:83:0;24633:411:1;17731:83:0;17827:26;17839:4;17845:7;17827:11;:26::i;20965:173::-;21017:4;20172:33;-1:-1:-1;;;;;;;;;;;8230:10:0;15095:139;:::i;20172:33::-;20164:62;;;;-1:-1:-1;;;20164:62:0;;18546:2:1;20164:62:0;;;18528:21:1;18585:2;18565:18;;;18558:30;-1:-1:-1;;;18604:18:1;;;18597:46;18660:18;;20164:62:0;18344:340:1;20164:62:0;20522:7:::1;::::0;-1:-1:-1;;;20522:7:0;::::1;;;20514:49;;;::::0;-1:-1:-1;;;20514:49:0;;16256:2:1;20514:49:0::1;::::0;::::1;16238:21:1::0;16295:2;16275:18;;;16268:30;16334:31;16314:18;;;16307:59;16383:18;;20514:49:0::1;16054:353:1::0;20514:49:0::1;21034:7:::2;:15:::0;;-1:-1:-1;;;;21034:15:0::2;::::0;;21065:43:::2;21082:12;8230:10:::0;21095:12:::2;21065:43;::::0;;25760:25:1;;;-1:-1:-1;;;;;25821:32:1;;;25816:2;25801:18;;25794:60;25733:18;21065:43:0::2;;;;;;;-1:-1:-1::0;21126:4:0::2;20965:173:::0;:::o;21234:350::-;20055:6;;21299:4;;-1:-1:-1;;;;;20055:6:0;8230:10;20055:22;20047:51;;;;-1:-1:-1;;;20047:51:0;;;;;;;:::i;:::-;21316:36:::1;14231:4;21346:5:::0;21316:9:::1;:36::i;:::-;21363:28;-1:-1:-1::0;;;;;;;;;;;21385:5:0::1;21363:9;:28::i;:::-;21434:6;::::0;21404:37:::1;::::0;14231:4:::1;::::0;-1:-1:-1;;;;;21434:6:0::1;21404:10;:37::i;:::-;21474:6;::::0;21452:29:::1;::::0;-1:-1:-1;;;;;;;;;;;19846:23:0;-1:-1:-1;;;;;21474:6:0::1;21452:10;:29::i;:::-;21512:6;::::0;21499:26:::1;::::0;;-1:-1:-1;;;;;21512:6:0;;::::1;12799:34:1::0;;12869:15;;;12864:2;12849:18;;12842:43;21499:26:0::1;::::0;12734:18:1;21499:26:0::1;;;;;;;-1:-1:-1::0;21538:6:0::1;:14:::0;;-1:-1:-1;;;;;;21538:14:0::1;-1:-1:-1::0;;;;;21538:14:0;::::1;;::::0;;20109:1:::1;21234:350:::0;;;:::o;57097:1555::-;40986:18;;57481:4;;40986:18;;40978:57;;;;-1:-1:-1;;;40978:57:0;;23714:2:1;40978:57:0;;;23696:21:1;23753:2;23733:18;;;23726:30;23792:29;23772:18;;;23765:57;23839:18;;40978:57:0;23512:351:1;40978:57:0;57366:10:::1;22700:21;::::0;;;:12:::1;:21;::::0;;;;;::::1;;22699:22;22691:71;;;;-1:-1:-1::0;;;22691:71:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;22700:21:0;::::2;;::::0;;;:12:::2;:21;::::0;;;;;57402:2;;22700:21:::2;;22699:22;22691:71;;;;-1:-1:-1::0;;;22691:71:0::2;;;;;;;:::i;:::-;20422:7:::3;::::0;-1:-1:-1;;;20422:7:0;::::3;;;20421:8;20413:43;;;;-1:-1:-1::0;;;20413:43:0::3;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;40844:24:0;::::4;;::::0;;;:16:::4;:24;::::0;;;;;57455:6;;40844:24:::4;;:32;;:24:::0;:32:::4;40836:74;;;::::0;-1:-1:-1;;;40836:74:0;;24476:2:1;40836:74:0::4;::::0;::::4;24458:21:1::0;24515:2;24495:18;;;24488:30;24554:32;24534:18;;;24527:60;24604:18;;40836:74:0::4;24274:354:1::0;40836:74:0::4;57522:7:::5;57510:8;;:19;57502:53;;;::::0;-1:-1:-1;;;57502:53:0;;20361:2:1;57502:53:0::5;::::0;::::5;20343:21:1::0;20400:2;20380:18;;;20373:30;-1:-1:-1;;;20419:18:1;;;20412:52;20481:18;;57502:53:0::5;20159:346:1::0;57502:53:0::5;47591:4:::0;47615:29;;;:22;:29;;;;;:37;;;57578:25:::5;57570:55;;;;-1:-1:-1::0;;;57570:55:0::5;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;;;;57694:34:0;;;-1:-1:-1;;;;;57743:26:0;;::::5;-1:-1:-1::0;;;57743:26:0;57784:22;;::::5;-1:-1:-1::0;;;57784:22:0;;;;-1:-1:-1;;;57821:30:0;;;-1:-1:-1;;;57866:28:0;;;-1:-1:-1;;;57909:36:0;;;57960:30;;::::5;-1:-1:-1::0;;;57960:30:0;58015:28:::5;-1:-1:-1::0;58015:12:0::5;:28::i;:::-;58007:72;;;::::0;-1:-1:-1;;;58007:72:0;;19593:2:1;58007:72:0::5;::::0;::::5;19575:21:1::0;;;19612:18;;;19605:30;19671:34;19651:18;;;19644:62;19723:18;;58007:72:0::5;19391:356:1::0;58007:72:0::5;58127:6;58102:21;:31;;58094:68;;;::::0;-1:-1:-1;;;58094:68:0;;21471:2:1;58094:68:0::5;::::0;::::5;21453:21:1::0;21510:2;21490:18;;;21483:30;21549:27;21529:18;;;21522:55;21594:18;;58094:68:0::5;21269:349:1::0;58094:68:0::5;58179:21;58194:5;58179:14;:21::i;:::-;58270:25;::::0;58252:2;;-1:-1:-1;;;;;58270:17:0;::::5;::::0;:25;::::5;;;::::0;58288:6;;58217:24:::5;58270:25:::0;58217:24;58270:25;58288:6;58270:17;:25;::::5;;;;;;;;;;;;;::::0;::::5;;;;;;58535:14;:20;;;58317:293;58349:14;:24;;;58400:1;58421:14;:19;;;58459:14;:17;;;58495:14;:21;;;58574:14;:21;;;58317:293;;;;;;;;;;26685:25:1::0;;;-1:-1:-1;;;;;26784:15:1;;;26779:2;26764:18;;26757:43;26836:15;;;26831:2;26816:18;;26809:43;26888:15;;;26883:2;26868:18;;26861:43;26935:3;26920:19;;26913:35;26985:15;26737:3;26964:19;;26957:44;26672:3;26657:19;;26398:609;58317:293:0::5;;;;;;;;-1:-1:-1::0;58634:4:0::5;::::0;57097:1555;-1:-1:-1;;;;;;;;;;;;57097:1555:0:o;2874:559::-;2980:4;3002:20;3025:212;3060:15;:25;;;3100:15;:20;;;3135:15;:18;;;3168:15;:22;;;3205:15;:21;;;3025:20;:212::i;:::-;3002:235;;3248:29;3280:37;3304:12;3280:23;:37::i;:::-;3248:69;;3403:15;:22;;;-1:-1:-1;;;;;3337:88:0;:62;3351:21;3373:15;:25;;;3337:13;:62::i;:::-;-1:-1:-1;;;;;3337:88:0;;;2874:559;-1:-1:-1;;;;2874:559:0:o;1311:287::-;1541:48;;;;;;;12085:19:1;;;;-1:-1:-1;;12192:2:1;12188:15;;;12184:24;;12170:12;;;12163:46;12243:15;;;;12239:24;;;12225:12;;;12218:46;12280:12;;;12273:28;;;;12317:13;;;;12310:29;;;;1541:48:0;;;;;;;;;;12355:13:1;;;;1541:48:0;;1531:59;;;;;;1311:287::o;41714:154::-;20055:6;;41789:4;;-1:-1:-1;;;;;20055:6:0;8230:10;20055:22;20047:51;;;;-1:-1:-1;;;20047:51:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;41806:24:0::1;41833:5;41806:24:::0;;;:16:::1;:24;::::0;;;;:32;;-1:-1:-1;;41806:32:0::1;::::0;;-1:-1:-1;;41714:154:0:o;42495:224::-;20055:6;;42577:4;;-1:-1:-1;;;;;20055:6:0;8230:10;20055:22;20047:51;;;;-1:-1:-1;;;20047:51:0;;;;;;;:::i;:::-;42604:50:::1;::::0;;-1:-1:-1;;;;;12817:15:1;;12799:34;;42643:10:0::1;12864:2:1::0;12849:18;;12842:43;42604:50:0::1;::::0;12734:18:1;42604:50:0::1;;;;;;;-1:-1:-1::0;;;;;43230:33:0;;43208:4;43230:33;;;:16;:33;;;;;;;;:41;;-1:-1:-1;;43230:41:0;;;;;;43282:12;:29;;;;;;:37;;;;;;;-1:-1:-1;42672:39:0::1;43125:224:::0;20786:171;20839:4;20172:33;-1:-1:-1;;;;;;;;;;;8230:10:0;15095:139;:::i;20172:33::-;20164:62;;;;-1:-1:-1;;;20164:62:0;;18546:2:1;20164:62:0;;;18528:21:1;18585:2;18565:18;;;18558:30;-1:-1:-1;;;18604:18:1;;;18597:46;18660:18;;20164:62:0;18344:340:1;20164:62:0;20422:7:::1;::::0;-1:-1:-1;;;20422:7:0;::::1;;;20421:8;20413:43;;;;-1:-1:-1::0;;;20413:43:0::1;;;;;;;:::i;:::-;20866:4:::2;20856:14:::0;;-1:-1:-1;;;;20856:14:0::2;-1:-1:-1::0;;;20856:14:0::2;::::0;;20886:41:::2;20901:12;20914;8230:10:::0;;8150:98;43357:153;20055:6;;43429:4;;-1:-1:-1;;;;;20055:6:0;8230:10;20055:22;20047:51;;;;-1:-1:-1;;;20047:51:0;;;;;;;:::i;:::-;-1:-1:-1;43451:18:0::1;:29:::0;;-1:-1:-1;;43451:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;;43357:153:0:o;15095:139::-;15173:4;15197:12;;;;;;;;;;;-1:-1:-1;;;;;15197:29:0;;;;;;;;;;;;;;;15095:139::o;3697:259::-;3804:7;3830:9;3841;3852:7;3863:25;3878:9;3863:14;:25::i;:::-;3908:40;;;;;;;;;;;;15490:25:1;;;15563:4;15551:17;;15531:18;;;15524:45;;;;15585:18;;;15578:34;;;15628:18;;;15621:34;;;3829:59:0;;-1:-1:-1;3829:59:0;;-1:-1:-1;3829:59:0;-1:-1:-1;3908:40:0;;15462:19:1;;3908:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;3908:40:0;;-1:-1:-1;;3908:40:0;;;3697:259;-1:-1:-1;;;;;;;3697:259:0:o;41446:155::-;20055:6;;41518:4;;-1:-1:-1;;;;;20055:6:0;8230:10;20055:22;20047:51;;;;-1:-1:-1;;;20047:51:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;41540:24:0::1;;::::0;;;:16:::1;:24;::::0;;;;:31;;-1:-1:-1;;41540:31:0::1;41567:4;41540:31:::0;;::::1;::::0;;;41567:4;41446:155::o;4159:352::-;4231:9;4242;4253:7;4286:3;:10;4300:2;4286:16;4278:67;;;;-1:-1:-1;;;4278:67:0;;18139:2:1;4278:67:0;;;18121:21:1;18178:2;18158:18;;;18151:30;18217:34;18197:18;;;18190:62;-1:-1:-1;;;18268:18:1;;;18261:36;18314:19;;4278:67:0;17937:402:1;4278:67:0;-1:-1:-1;;;4402:2:0;4393:12;;4387:19;4440:2;4431:12;;4425:19;4486:2;4477:12;;;4471:19;4387;;4468:1;4463:28;;;;;4159:352::o;24115:307::-;20055:6;;-1:-1:-1;;;;;20055:6:0;8230:10;20055:22;20047:51;;;;-1:-1:-1;;;20047:51:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24218:28:0;::::1;24196:128;;;::::0;-1:-1:-1;;;24196:128:0;;23295:2:1;24196:128:0::1;::::0;::::1;23277:21:1::0;23334:2;23314:18;;;23307:30;23373:34;23353:18;;;23346:62;-1:-1:-1;;;23424:18:1;;;23417:48;23482:19;;24196:128:0::1;23093:414:1::0;24196:128:0::1;24335:12;:29:::0;;-1:-1:-1;;;;;;24335:29:0::1;-1:-1:-1::0;;;;;24335:29:0;::::1;::::0;;::::1;::::0;;;24380:34:::1;::::0;::::1;::::0;-1:-1:-1;;24380:34:0::1;24115:307:::0;:::o;53736:2479::-;-1:-1:-1;;;;;41292:33:0;;54145:4;41292:33;;;:16;:33;;;;;;53998:5;;41292:33;;40589:71;;;;-1:-1:-1;;;40589:71:0;;18891:2:1;40589:71:0;;;18873:21:1;18930:2;18910:18;;;18903:30;18969:28;18949:18;;;18942:56;19015:18;;40589:71:0;18689:350:1;40589:71:0;54030:10:::1;22700:21;::::0;;;:12:::1;:21;::::0;;;;;::::1;;22699:22;22691:71;;;;-1:-1:-1::0;;;22691:71:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;22700:21:0;::::2;;::::0;;;:12:::2;:21;::::0;;;;;54066:2;;22700:21:::2;;22699:22;22691:71;;;;-1:-1:-1::0;;;22691:71:0::2;;;;;;;:::i;:::-;20422:7:::3;::::0;-1:-1:-1;;;20422:7:0;::::3;;;20421:8;20413:43;;;;-1:-1:-1::0;;;20413:43:0::3;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;40844:24:0;::::4;;::::0;;;:16:::4;:24;::::0;;;;;54119:6;;40844:24:::4;;:32;;:24:::0;:32:::4;40836:74;;;::::0;-1:-1:-1;;;40836:74:0;;24476:2:1;40836:74:0::4;::::0;::::4;24458:21:1::0;24515:2;24495:18;;;24488:30;24554:32;24534:18;;;24527:60;24604:18;;40836:74:0::4;24274:354:1::0;40836:74:0::4;54379:7:::5;54367:8;;:19;54359:53;;;::::0;-1:-1:-1;;;54359:53:0;;20361:2:1;54359:53:0::5;::::0;::::5;20343:21:1::0;20400:2;20380:18;;;20373:30;-1:-1:-1;;;20419:18:1;;;20412:52;20481:18;;54359:53:0::5;20159:346:1::0;54359:53:0::5;54436:24;54448:5;54454;54436:11;:24::i;:::-;54435:25;54427:55;;;;-1:-1:-1::0;;;54427:55:0::5;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;;;;54824:34:0;;;-1:-1:-1;;;;;54873:28:0;;::::5;-1:-1:-1::0;;;54873:28:0;54916:26;;::::5;-1:-1:-1::0;;;54916:26:0;;;;54957:22;;::::5;-1:-1:-1::0;;;54957:22:0;-1:-1:-1;;;54994:30:0;;;-1:-1:-1;;;55039:28:0;;;-1:-1:-1;;;55082:36:0;;;55133:30;;::::5;-1:-1:-1::0;;;55133:30:0;55188:22:::5;-1:-1:-1::0;55188:6:0::5;:22::i;:::-;55180:68;;;::::0;-1:-1:-1;;;55180:68:0;;16975:2:1;55180:68:0::5;::::0;::::5;16957:21:1::0;17014:2;16994:18;;;16987:30;17053:34;17033:18;;;17026:62;-1:-1:-1;;;17104:18:1;;;17097:32;17146:19;;55180:68:0::5;16773:398:1::0;55180:68:0::5;55456:21;55465:5;55471;55456:8;:21::i;:::-;-1:-1:-1::0;;;;;42059:29:0;;42035:4;42059:29;;;:12;:29;;;;;;;;55494:174:::5;;;55538:36;::::0;-1:-1:-1;;;55538:36:0;;-1:-1:-1;;;;;13858:32:1;;;55538:36:0::5;::::0;::::5;13840:51:1::0;13907:18;;;13900:34;;;55538:25:0;::::5;::::0;::::5;::::0;13813:18:1;;55538:36:0::5;;;;;;;;;;;;;;;;;::::0;::::5;;;;;;;;;;;;::::0;::::5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;55494:174;;;55615:37;-1:-1:-1::0;;;;;55615:26:0;::::5;55642:2:::0;55645:6;55615:26:::5;:37::i;:::-;56118:14;:20;;;55890:289;55922:14;:24;;;55965:14;:20;;;56004:14;:19;;;56042:14;:17;;;56078:14;:21;;;56157:14;:21;;;55890:289;;;;;;;;;;26685:25:1::0;;;-1:-1:-1;;;;;26784:15:1;;;26779:2;26764:18;;26757:43;26836:15;;;26831:2;26816:18;;26809:43;26888:15;;;26883:2;26868:18;;26861:43;26935:3;26920:19;;26913:35;26985:15;26737:3;26964:19;;26957:44;26672:3;26657:19;;26398:609;55890:289:0::5;;;;;;;;-1:-1:-1::0;56203:4:0::5;::::0;53736:2479;-1:-1:-1;;;;;;;;;;;;;53736:2479:0:o;987:316::-;1240:54;;;;;;;11495:19:1;;;;-1:-1:-1;;11602:2:1;11598:15;;;11594:24;;11580:12;;;11573:46;11653:15;;;11649:24;;11635:12;;;11628:46;11708:15;;;;11704:24;;;11690:12;;;11683:46;11745:12;;;11738:28;11782:13;;;;11775:29;;;;1240:54:0;;;;;;;;;;11820:13:1;;1240:54:0;;;1230:65;;;;;;987:316::o;16987:149::-;16276:7;16303:12;;;;;;;;;;:22;;;14677:30;14688:4;8230:10;14677;:30::i;:::-;17102:26:::1;17114:4;17120:7;17102:11;:26::i;2298:568::-:0;2392:4;2414:20;2437:232;2466:15;:25;;;2506:15;:21;;;2542:15;:20;;;2577:15;:18;;;2610:15;:22;;;2647:15;:21;;;2437:14;:232::i;:::-;2414:255;;2680:29;2712:37;2736:12;2712:23;:37::i;:::-;2680:69;;2836:15;:22;;;-1:-1:-1;;;;;2769:89:0;:63;2783:21;2806:15;:25;;;2769:13;:63::i;51717:991::-;40986:18;;51967:4;;40986:18;;40978:57;;;;-1:-1:-1;;;40978:57:0;;23714:2:1;40978:57:0;;;23696:21:1;23753:2;23733:18;;;23726:30;23792:29;23772:18;;;23765:57;23839:18;;40978:57:0;23512:351:1;40978:57:0;51888:10:::1;22700:21;::::0;;;:12:::1;:21;::::0;;;;;::::1;;22699:22;22691:71;;;;-1:-1:-1::0;;;22691:71:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;22700:21:0;::::2;;::::0;;;:12:::2;:21;::::0;;;;;51924:2;;22700:21:::2;;22699:22;22691:71;;;;-1:-1:-1::0;;;22691:71:0::2;;;;;;;:::i;:::-;20422:7:::3;::::0;-1:-1:-1;;;20422:7:0;::::3;;;20421:8;20413:43;;;;-1:-1:-1::0;;;20413:43:0::3;;;;;;;:::i;:::-;52393:6:::4;52380:9;:19;52372:58;;;::::0;-1:-1:-1;;;52372:58:0;;20712:2:1;52372:58:0::4;::::0;::::4;20694:21:1::0;20751:2;20731:18;;;20724:30;20790:29;20770:18;;;20763:57;20837:18;;52372:58:0::4;20510:351:1::0;52372:58:0::4;52554:20;:18;:20::i;:::-;47484:28:::0;;52596:76:::4;::::0;;26124:25:1;;;52624:1:0::4;26218:2:1::0;26203:18;;26196:43;52627:10:0::4;26255:18:1::0;;;26248:43;-1:-1:-1;;;;;26327:15:1;;26322:2;26307:18;;26300:43;26374:3;26359:19;;26352:35;;;52596:76:0;;::::4;::::0;;;;26111:3:1;52596:76:0;;::::4;-1:-1:-1::0;52696:4:0::4;::::0;51717:991;-1:-1:-1;;;;;51717:991:0:o;58973:281::-;20055:6;;59040:4;;-1:-1:-1;;;;;20055:6:0;8230:10;20055:22;20047:51;;;;-1:-1:-1;;;20047:51:0;;;;;;;:::i;:::-;47591:4;47615:29;;;:22;:29;;;;;:37;;;59065:25:::1;59057:55;;;;-1:-1:-1::0;;;59057:55:0::1;;;;;;;:::i;:::-;59123:21;59138:5;59123:14;:21::i;:::-;59185:8;::::0;59162:62:::1;::::0;;27666:25:1;;;59194:10:0::1;27722:2:1::0;27707:18;;27700:60;59211:12:0::1;27776:18:1::0;;;27769:34;59205:5:0;;59162:62:::1;::::0;27654:2:1;27639:18;59162:62:0::1;;;;;;;-1:-1:-1::0;59242:4:0::1;58973:281:::0;;;:::o;50140:1264::-;-1:-1:-1;;;;;41292:33:0;;50407:4;41292:33;;;:16;:33;;;;;;50296:5;;41292:33;;40589:71;;;;-1:-1:-1;;;40589:71:0;;18891:2:1;40589:71:0;;;18873:21:1;18930:2;18910:18;;;18903:30;18969:28;18949:18;;;18942:56;19015:18;;40589:71:0;18689:350:1;40589:71:0;50328:10:::1;22700:21;::::0;;;:12:::1;:21;::::0;;;;;::::1;;22699:22;22691:71;;;;-1:-1:-1::0;;;22691:71:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;22700:21:0;::::2;;::::0;;;:12:::2;:21;::::0;;;;;50364:2;;22700:21:::2;;22699:22;22691:71;;;;-1:-1:-1::0;;;22691:71:0::2;;;;;;;:::i;:::-;20422:7:::3;::::0;-1:-1:-1;;;20422:7:0;::::3;;;20421:8;20413:43;;;;-1:-1:-1::0;;;20413:43:0::3;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;42059:29:0;;42035:4;42059:29;;;:12;:29;;;;;;;;50666:246:::4;;;50716:46;::::0;-1:-1:-1;;;50716:46:0;;50744:10:::4;50716:46;::::0;::::4;13840:51:1::0;13907:18;;;13900:34;;;-1:-1:-1;;;;;50716:27:0;::::4;::::0;::::4;::::0;13813:18:1;;50716:46:0::4;;;;;;;;;;;;;;;;;::::0;::::4;;;;;;;;;;;;::::0;::::4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50708:84;;;::::0;-1:-1:-1;;;50708:84:0;;25251:2:1;50708:84:0::4;::::0;::::4;25233:21:1::0;25290:2;25270:18;;;25263:30;25329:28;25309:18;;;25302:56;25375:18;;50708:84:0::4;25049:350:1::0;50708:84:0::4;50666:246;;;50833:63;-1:-1:-1::0;;;;;50833:30:0;::::4;50864:10;50883:4;50889:6:::0;50833:30:::4;:63::i;:::-;51187:19;51200:5;51187:12;:19::i;:::-;-1:-1:-1::0;;;;;47261:15:0;;47234:7;47261:15;;;:8;:15;;;;;:29;;;51230:70:::4;::::0;;26124:25:1;;;-1:-1:-1;;;;;26223:15:1;;;26218:2;26203:18;;26196:43;51256:10:0::4;26255:18:1::0;;;26248:43;;;;26327:15;;;26322:2;26307:18;;26300:43;26374:3;26359:19;;26352:35;;;51230:70:0::4;::::0;26111:3:1;26096:19;51230:70:0::4;;;;;;;-1:-1:-1::0;51392:4:0::4;::::0;50140:1264;-1:-1:-1;;;;;;;50140:1264:0:o;42170:248::-;20055:6;;42264:4;;-1:-1:-1;;;;;20055:6:0;8230:10;20055:22;20047:51;;;;-1:-1:-1;;;20047:51:0;;;;;;;:::i;:::-;42291:57:::1;::::0;;-1:-1:-1;;;;;13528:15:1;;13510:34;;13587:14;;13580:22;13575:2;13560:18;;13553:50;42337:10:0::1;13619:18:1::0;;;13612:43;42291:57:0;;::::1;::::0;;;;13460:2:1;42291:57:0;;::::1;-1:-1:-1::0;;;;;42918:33:0;;42896:4;42918:33;;;:16;:33;;;;;;;;:40;;42954:4;-1:-1:-1;;42918:40:0;;;;;;;;42969:12;:29;;;;;:40;;;;;;;;;;;42366:44:::1;42802:237:::0;23323:142;22406:12;;-1:-1:-1;;;;;22406:12:0;8230:10;22406:28;22398:81;;;;-1:-1:-1;;;22398:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23393:21:0;::::1;;::::0;;;:12:::1;:21;::::0;;;;;:28;;-1:-1:-1;;23393:28:0::1;23417:4;23393:28;::::0;;23437:20;::::1;::::0;23393:21;23437:20:::1;23323:142:::0;:::o;1836:186::-;1948:65;;10292:66:1;1948:65:0;;;10280:79:1;10375:12;;;10368:28;;;1911:7:0;;10412:12:1;;1948:65:0;;;;;;;;;;;;1938:76;;;;;;1931:83;;1836:186;;;:::o;45312:604::-;-1:-1:-1;;;;;44813:15:0;;;;;;:8;:15;;;;;;;;:30;;;:23;;:30;;;;;:38;45379:5;;45385;;44813:38;;:47;44805:87;;;;-1:-1:-1;;;44805:87:0;;22170:2:1;44805:87:0;;;22152:21:1;22209:2;22189:18;;;22182:30;22248:29;22228:18;;;22221:57;22295:18;;44805:87:0;21968:351:1;44805:87:0;-1:-1:-1;;;;;45403:15:0;::::1;;::::0;;;:8:::1;:15;::::0;;;;;;;:30;;;:23:::1;::::0;::::1;:30:::0;;;;;:45;;-1:-1:-1;;45403:45:0::1;45444:4;45403:45:::0;;::::1;::::0;;45501:12:::1;45459:39:::0;::::1;:54:::0;45745:15;;;;;;:37;45737:45;::::1;45734:122;;;-1:-1:-1::0;;;;;45799:15:0;::::1;;::::0;;;:8:::1;:15;::::0;;;;:45;;;45734:122:::1;45873:35;::::0;;-1:-1:-1;;;;;14165:32:1;;14147:51;;14229:2;14214:18;;14207:34;;;45895:12:0::1;14257:18:1::0;;;14250:34;45873:35:0;;::::1;::::0;;;;14135:2:1;45873:35:0;;::::1;45312:604:::0;;;;:::o;36183:211::-;36327:58;;-1:-1:-1;;;;;13858:32:1;;36327:58:0;;;13840:51:1;13907:18;;;13900:34;;;36300:86:0;;36320:5;;-1:-1:-1;;;36350:23:0;13813:18:1;;36327:58:0;;;;-1:-1:-1;;36327:58:0;;;;;;;;;;;;;;-1:-1:-1;;;;;36327:58:0;-1:-1:-1;;;;;;36327:58:0;;;;;;;;;;36300:19;:86::i;18688:251::-;18772:25;16303:12;;;;;;;;;;;:22;;;;18829:34;;;;18879:52;;16303:22;;18829:34;;16303:22;;:12;;18879:52;;18772:25;18879:52;18761:178;18688:251;;:::o;15524:497::-;15605:22;15613:4;15619:7;15605;:22::i;:::-;15600:414;;15793:41;15821:7;-1:-1:-1;;;;;15793:41:0;15831:2;15793:19;:41::i;:::-;15907:38;15935:4;15942:2;15907:19;:38::i;:::-;15698:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;15698:270:0;;;;;;;;;;-1:-1:-1;;;15644:358:0;;;;;;;:::i;18947:229::-;19022:22;19030:4;19036:7;19022;:22::i;:::-;19017:152;;19061:6;:12;;;;;;;;;;;-1:-1:-1;;;;;19061:29:0;;;;;;;;;:36;;-1:-1:-1;;19061:36:0;19093:4;19061:36;;;19144:12;8230:10;;8150:98;19144:12;-1:-1:-1;;;;;19117:40:0;19135:7;-1:-1:-1;;;;;19117:40:0;19129:4;19117:40;;;;;;;;;;18947:229;;:::o;19184:230::-;19259:22;19267:4;19273:7;19259;:22::i;:::-;19255:152;;;19330:5;19298:12;;;;;;;;;;;-1:-1:-1;;;;;19298:29:0;;;;;;;;;;:37;;-1:-1:-1;;19298:37:0;;;19355:40;8230:10;;19298:12;;19355:40;;19330:5;19355:40;19184:230;;:::o;47669:591::-;44979:29;;;;:22;:29;;;;;:37;47733:5;;44979:37;;:46;44971:92;;;;-1:-1:-1;;;44971:92:0;;21068:2:1;44971:92:0;;;21050:21:1;21107:2;21087:18;;;21080:30;21146:34;21126:18;;;21119:62;-1:-1:-1;;;21197:18:1;;;21190:32;21239:19;;44971:92:0;20866:398:1;44971:92:0;47751:29:::1;::::0;;;:22;:29:::1;::::0;;;;:44;;-1:-1:-1;;47751:44:0::1;47791:4;47751:44:::0;;::::1;::::0;;47847:12:::1;47806:38:::0;::::1;:53:::0;47751:14:::1;48091:36:::0;48083:44;::::1;48080:120;;;48144:14;:44:::0;;;48080:120:::1;48217:35;::::0;;27988:25:1;;;48239:12:0::1;28044:2:1::0;28029:18;;28022:34;48217:35:0::1;::::0;27961:18:1;48217:35:0::1;;;;;;;47669:591:::0;;:::o;47306:89::-;47386:1;47356:14;:28;;;:31;;;;;;;:::i;:::-;;;;-1:-1:-1;;47306:89:0:o;36402:248::-;36573:68;;-1:-1:-1;;;;;13154:15:1;;;36573:68:0;;;13136:34:1;13206:15;;13186:18;;;13179:43;13238:18;;;13231:34;;;36546:96:0;;36566:5;;-1:-1:-1;;;36596:27:0;13071:18:1;;36573:68:0;12896:375:1;36546:96:0;36402:248;;;;:::o;46892:97::-;-1:-1:-1;;;;;46949:15:0;;;;;;:8;:15;;;;;46980:1;46949:29;;;:32;;46980:1;;46949:29;;:32;;46980:1;;46949:32;:::i;:::-;;;;-1:-1:-1;;;46892:97:0:o;38760:716::-;39184:23;39210:69;39238:4;39210:69;;;;;;;;;;;;;;;;;39218:5;-1:-1:-1;;;;;39210:27:0;;;:69;;;;;:::i;:::-;39294:17;;39184:95;;-1:-1:-1;39294:21:0;39290:179;;39391:10;39380:30;;;;;;;;;;;;:::i;:::-;39372:85;;;;-1:-1:-1;;;39372:85:0;;22884:2:1;39372:85:0;;;22866:21:1;22923:2;22903:18;;;22896:30;22962:34;22942:18;;;22935:62;-1:-1:-1;;;23013:18:1;;;23006:40;23063:19;;39372:85:0;22682:406:1;9989:451:0;10064:13;10090:19;10122:10;10126:6;10122:1;:10;:::i;:::-;:14;;10135:1;10122:14;:::i;:::-;10112:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10112:25:0;;10090:47;;-1:-1:-1;;;10148:6:0;10155:1;10148:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;10148:15:0;;;;;;;;;-1:-1:-1;;;10174:6:0;10181:1;10174:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;10174:15:0;;;;;;;;-1:-1:-1;10205:9:0;10217:10;10221:6;10217:1;:10;:::i;:::-;:14;;10230:1;10217:14;:::i;:::-;10205:26;;10200:135;10237:1;10233;:5;10200:135;;;-1:-1:-1;;;10285:5:0;10293:3;10285:11;10272:25;;;;;;;:::i;:::-;;;;10260:6;10267:1;10260:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;10260:37:0;;;;;;;;-1:-1:-1;10322:1:0;10312:11;;;;;10240:3;;;:::i;:::-;;;10200:135;;;-1:-1:-1;10353:10:0;;10345:55;;;;-1:-1:-1;;;10345:55:0;;16614:2:1;10345:55:0;;;16596:21:1;;;16633:18;;;16626:30;16692:34;16672:18;;;16665:62;16744:18;;10345:55:0;16412:356:1;31029:229:0;31166:12;31198:52;31220:6;31228:4;31234:1;31237:12;31198:21;:52::i;:::-;31191:59;31029:229;-1:-1:-1;;;;31029:229:0:o;32149:510::-;32319:12;32377:5;32352:21;:30;;32344:81;;;;-1:-1:-1;;;32344:81:0;;19954:2:1;32344:81:0;;;19936:21:1;19993:2;19973:18;;;19966:30;20032:34;20012:18;;;20005:62;-1:-1:-1;;;20083:18:1;;;20076:36;20129:19;;32344:81:0;19752:402:1;32344:81:0;28546:20;;32436:60;;;;-1:-1:-1;;;32436:60:0;;22526:2:1;32436:60:0;;;22508:21:1;22565:2;22545:18;;;22538:30;22604:31;22584:18;;;22577:59;22653:18;;32436:60:0;22324:353:1;32436:60:0;32510:12;32524:23;32551:6;-1:-1:-1;;;;;32551:11:0;32570:5;32577:4;32551:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32509:73;;;;32600:51;32617:7;32626:10;32638:12;32600:16;:51::i;:::-;32593:58;32149:510;-1:-1:-1;;;;;;;32149:510:0:o;34835:712::-;34985:12;35014:7;35010:530;;;-1:-1:-1;35045:10:0;35038:17;;35010:530;35159:17;;:21;35155:374;;35357:10;35351:17;35418:15;35405:10;35401:2;35397:19;35390:44;35155:374;35500:12;35493:20;;-1:-1:-1;;;35493:20:0;;;;;;;;:::i;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;192:718;234:5;287:3;280:4;272:6;268:17;264:27;254:55;;305:1;302;295:12;254:55;341:6;328:20;367:18;404:2;400;397:10;394:36;;;410:18;;:::i;:::-;485:2;479:9;453:2;539:13;;-1:-1:-1;;535:22:1;;;559:2;531:31;527:40;515:53;;;583:18;;;603:22;;;580:46;577:72;;;629:18;;:::i;:::-;669:10;665:2;658:22;704:2;696:6;689:18;750:3;743:4;738:2;730:6;726:15;722:26;719:35;716:55;;;767:1;764;757:12;716:55;831:2;824:4;816:6;812:17;805:4;797:6;793:17;780:54;878:1;871:4;866:2;858:6;854:15;850:26;843:37;898:6;889:15;;;;;;192:718;;;;:::o;915:186::-;974:6;1027:2;1015:9;1006:7;1002:23;998:32;995:52;;;1043:1;1040;1033:12;995:52;1066:29;1085:9;1066:29;:::i;1106:328::-;1183:6;1191;1199;1252:2;1240:9;1231:7;1227:23;1223:32;1220:52;;;1268:1;1265;1258:12;1220:52;1291:29;1310:9;1291:29;:::i;:::-;1281:39;;1339:38;1373:2;1362:9;1358:18;1339:38;:::i;:::-;1329:48;;1424:2;1413:9;1409:18;1396:32;1386:42;;1106:328;;;;;:::o;1439:315::-;1504:6;1512;1565:2;1553:9;1544:7;1540:23;1536:32;1533:52;;;1581:1;1578;1571:12;1533:52;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1683:2;1672:9;1668:18;1655:32;1696:28;1718:5;1696:28;:::i;:::-;1743:5;1733:15;;;1439:315;;;;;:::o;1759:254::-;1827:6;1835;1888:2;1876:9;1867:7;1863:23;1859:32;1856:52;;;1904:1;1901;1894:12;1856:52;1927:29;1946:9;1927:29;:::i;:::-;1917:39;2003:2;1988:18;;;;1975:32;;-1:-1:-1;;;1759:254:1:o;2018:241::-;2074:6;2127:2;2115:9;2106:7;2102:23;2098:32;2095:52;;;2143:1;2140;2133:12;2095:52;2182:9;2169:23;2201:28;2223:5;2201:28;:::i;2264:245::-;2331:6;2384:2;2372:9;2363:7;2359:23;2355:32;2352:52;;;2400:1;2397;2390:12;2352:52;2432:9;2426:16;2451:28;2473:5;2451:28;:::i;2514:180::-;2573:6;2626:2;2614:9;2605:7;2601:23;2597:32;2594:52;;;2642:1;2639;2632:12;2594:52;-1:-1:-1;2665:23:1;;2514:180;-1:-1:-1;2514:180:1:o;2699:254::-;2767:6;2775;2828:2;2816:9;2807:7;2803:23;2799:32;2796:52;;;2844:1;2841;2834:12;2796:52;2880:9;2867:23;2857:33;;2909:38;2943:2;2932:9;2928:18;2909:38;:::i;:::-;2899:48;;2699:254;;;;;:::o;2958:248::-;3026:6;3034;3087:2;3075:9;3066:7;3062:23;3058:32;3055:52;;;3103:1;3100;3093:12;3055:52;-1:-1:-1;;3126:23:1;;;3196:2;3181:18;;;3168:32;;-1:-1:-1;2958:248:1:o;3211:388::-;3288:6;3296;3349:2;3337:9;3328:7;3324:23;3320:32;3317:52;;;3365:1;3362;3355:12;3317:52;3401:9;3388:23;3378:33;;3462:2;3451:9;3447:18;3434:32;3489:18;3481:6;3478:30;3475:50;;;3521:1;3518;3511:12;3475:50;3544:49;3585:7;3576:6;3565:9;3561:22;3544:49;:::i;:::-;3534:59;;;3211:388;;;;;:::o;3604:286::-;3662:6;3715:2;3703:9;3694:7;3690:23;3686:32;3683:52;;;3731:1;3728;3721:12;3683:52;3757:23;;-1:-1:-1;;;;;;3809:32:1;;3799:43;;3789:71;;3856:1;3853;3846:12;3895:320;3963:6;4016:2;4004:9;3995:7;3991:23;3987:32;3984:52;;;4032:1;4029;4022:12;3984:52;4072:9;4059:23;4105:18;4097:6;4094:30;4091:50;;;4137:1;4134;4127:12;4091:50;4160:49;4201:7;4192:6;4181:9;4177:22;4160:49;:::i;4220:1041::-;4302:6;4355:2;4343:9;4334:7;4330:23;4326:32;4323:52;;;4371:1;4368;4361:12;4323:52;4411:9;4398:23;4440:18;4481:2;4473:6;4470:14;4467:34;;;4497:1;4494;4487:12;4467:34;4520:22;;;;4576:6;4558:16;;;4554:29;4551:49;;;4596:1;4593;4586:12;4551:49;4622:17;;:::i;:::-;4675:2;4662:16;4655:5;4648:31;4711;4738:2;4734;4730:11;4711:31;:::i;:::-;4706:2;4699:5;4695:14;4688:55;4775:31;4802:2;4798;4794:11;4775:31;:::i;:::-;4770:2;4763:5;4759:14;4752:55;4839:31;4866:2;4862;4858:11;4839:31;:::i;:::-;4834:2;4827:5;4823:14;4816:55;4925:3;4921:2;4917:12;4904:26;4898:3;4891:5;4887:15;4880:51;4985:3;4981:2;4977:12;4964:26;4958:3;4951:5;4947:15;4940:51;5037:3;5033:2;5029:12;5016:26;5067:2;5057:8;5054:16;5051:36;;;5083:1;5080;5073:12;5051:36;5120:44;5156:7;5145:8;5141:2;5137:17;5120:44;:::i;:::-;5114:3;5107:5;5103:15;5096:69;;5198:32;5225:3;5221:2;5217:12;5198:32;:::i;:::-;5192:3;5181:15;;5174:57;5185:5;4220:1041;-1:-1:-1;;;;;4220:1041:1:o;5266:984::-;5354:6;5407:2;5395:9;5386:7;5382:23;5378:32;5375:52;;;5423:1;5420;5413:12;5375:52;5463:9;5450:23;5492:18;5533:2;5525:6;5522:14;5519:34;;;5549:1;5546;5539:12;5519:34;5572:22;;;;5628:4;5610:16;;;5606:27;5603:47;;;5646:1;5643;5636:12;5603:47;5672:22;;:::i;:::-;5730:2;5717:16;5710:5;5703:31;5766;5793:2;5789;5785:11;5766:31;:::i;:::-;5761:2;5754:5;5750:14;5743:55;5830:31;5857:2;5853;5849:11;5830:31;:::i;:::-;5825:2;5818:5;5814:14;5807:55;5915:2;5911;5907:11;5894:25;5889:2;5882:5;5878:14;5871:49;5974:3;5970:2;5966:12;5953:26;5947:3;5940:5;5936:15;5929:51;6026:3;6022:2;6018:12;6005:26;6056:2;6046:8;6043:16;6040:36;;;6072:1;6069;6062:12;6040:36;6109:44;6145:7;6134:8;6130:2;6126:17;6109:44;:::i;:::-;6103:3;6096:5;6092:15;6085:69;;6187:32;6214:3;6210:2;6206:12;6187:32;:::i;:::-;6181:3;6170:15;;6163:57;6174:5;5266:984;-1:-1:-1;;;;;5266:984:1:o;6440:541::-;6544:6;6552;6560;6568;6576;6584;6637:3;6625:9;6616:7;6612:23;6608:33;6605:53;;;6654:1;6651;6644:12;6605:53;6690:9;6677:23;6667:33;;6719:38;6753:2;6742:9;6738:18;6719:38;:::i;:::-;6709:48;;6776:38;6810:2;6799:9;6795:18;6776:38;:::i;:::-;6766:48;;6833:38;6867:2;6856:9;6852:18;6833:38;:::i;:::-;6823:48;;6918:3;6907:9;6903:19;6890:33;6880:43;;6970:3;6959:9;6955:19;6942:33;6932:43;;6440:541;;;;;;;;:::o;6986:825::-;7117:6;7125;7133;7141;7149;7157;7165;7173;7226:3;7214:9;7205:7;7201:23;7197:33;7194:53;;;7243:1;7240;7233:12;7194:53;7279:9;7266:23;7256:33;;7308:38;7342:2;7331:9;7327:18;7308:38;:::i;:::-;7298:48;;7365:38;7399:2;7388:9;7384:18;7365:38;:::i;:::-;7355:48;;7422:38;7456:2;7445:9;7441:18;7422:38;:::i;:::-;7412:48;;7507:3;7496:9;7492:19;7479:33;7469:43;;7559:3;7548:9;7544:19;7531:33;7521:43;;7615:3;7604:9;7600:19;7587:33;7643:18;7635:6;7632:30;7629:50;;;7675:1;7672;7665:12;7629:50;7698:49;7739:7;7730:6;7719:9;7715:22;7698:49;:::i;:::-;7688:59;;;7766:39;7800:3;7789:9;7785:19;7766:39;:::i;:::-;7756:49;;6986:825;;;;;;;;;;;:::o;7816:397::-;7902:6;7910;7918;7926;7979:3;7967:9;7958:7;7954:23;7950:33;7947:53;;;7996:1;7993;7986:12;7947:53;8032:9;8019:23;8009:33;;8061:38;8095:2;8084:9;8080:18;8061:38;:::i;:::-;8051:48;;8118:38;8152:2;8141:9;8137:18;8118:38;:::i;:::-;7816:397;;;;-1:-1:-1;8108:48:1;;8203:2;8188:18;8175:32;;-1:-1:-1;;7816:397:1:o;8218:466::-;8313:6;8321;8329;8337;8345;8398:3;8386:9;8377:7;8373:23;8369:33;8366:53;;;8415:1;8412;8405:12;8366:53;8451:9;8438:23;8428:33;;8480:38;8514:2;8503:9;8499:18;8480:38;:::i;:::-;8470:48;;8537:38;8571:2;8560:9;8556:18;8537:38;:::i;:::-;8218:466;;;;-1:-1:-1;8527:48:1;;8622:2;8607:18;;8594:32;;-1:-1:-1;8673:3:1;8658:19;8645:33;;8218:466;-1:-1:-1;;8218:466:1:o;8689:750::-;8811:6;8819;8827;8835;8843;8851;8859;8912:3;8900:9;8891:7;8887:23;8883:33;8880:53;;;8929:1;8926;8919:12;8880:53;8965:9;8952:23;8942:33;;8994:38;9028:2;9017:9;9013:18;8994:38;:::i;:::-;8984:48;;9051:38;9085:2;9074:9;9070:18;9051:38;:::i;:::-;9041:48;;9136:2;9125:9;9121:18;9108:32;9098:42;;9187:3;9176:9;9172:19;9159:33;9149:43;;9243:3;9232:9;9228:19;9215:33;9271:18;9263:6;9260:30;9257:50;;;9303:1;9300;9293:12;9257:50;9326:49;9367:7;9358:6;9347:9;9343:22;9326:49;:::i;:::-;9316:59;;;9394:39;9428:3;9417:9;9413:19;9394:39;:::i;:::-;9384:49;;8689:750;;;;;;;;;;:::o;9444:322::-;9521:6;9529;9537;9590:2;9578:9;9569:7;9565:23;9561:32;9558:52;;;9606:1;9603;9596:12;9558:52;9642:9;9629:23;9619:33;;9671:38;9705:2;9694:9;9690:18;9671:38;:::i;9771:274::-;9900:3;9938:6;9932:13;9954:53;10000:6;9995:3;9988:4;9980:6;9976:17;9954:53;:::i;:::-;10023:16;;;;;9771:274;-1:-1:-1;;9771:274:1:o;10435:786::-;10846:25;10841:3;10834:38;10816:3;10901:6;10895:13;10917:62;10972:6;10967:2;10962:3;10958:12;10951:4;10943:6;10939:17;10917:62;:::i;:::-;-1:-1:-1;;;11038:2:1;10998:16;;;11030:11;;;11023:40;11088:13;;11110:63;11088:13;11159:2;11151:11;;11144:4;11132:17;;11110:63;:::i;:::-;11193:17;11212:2;11189:26;;10435:786;-1:-1:-1;;;;10435:786:1:o;15666:383::-;15815:2;15804:9;15797:21;15778:4;15847:6;15841:13;15890:6;15885:2;15874:9;15870:18;15863:34;15906:66;15965:6;15960:2;15949:9;15945:18;15940:2;15932:6;15928:15;15906:66;:::i;:::-;16033:2;16012:15;-1:-1:-1;;16008:29:1;15993:45;;;;16040:2;15989:54;;15666:383;-1:-1:-1;;15666:383:1:o;17176:346::-;17378:2;17360:21;;;17417:2;17397:18;;;17390:30;-1:-1:-1;;;17451:2:1;17436:18;;17429:52;17513:2;17498:18;;17176:346::o;17527:405::-;17729:2;17711:21;;;17768:2;17748:18;;;17741:30;17807:34;17802:2;17787:18;;17780:62;-1:-1:-1;;;17873:2:1;17858:18;;17851:39;17922:3;17907:19;;17527:405::o;19044:342::-;19246:2;19228:21;;;19285:2;19265:18;;;19258:30;-1:-1:-1;;;19319:2:1;19304:18;;19297:48;19377:2;19362:18;;19044:342::o;21623:340::-;21825:2;21807:21;;;21864:2;21844:18;;;21837:30;-1:-1:-1;;;21898:2:1;21883:18;;21876:46;21954:2;21939:18;;21623:340::o;23868:401::-;24070:2;24052:21;;;24109:2;24089:18;;;24082:30;24148:34;24143:2;24128:18;;24121:62;-1:-1:-1;;;24214:2:1;24199:18;;24192:35;24259:3;24244:19;;23868:401::o;28067:250::-;28134:2;28128:9;28176:6;28164:19;;28213:18;28198:34;;28234:22;;;28195:62;28192:88;;;28260:18;;:::i;:::-;28296:2;28289:22;28067:250;:::o;28322:253::-;28394:2;28388:9;28436:4;28424:17;;28471:18;28456:34;;28492:22;;;28453:62;28450:88;;;28518:18;;:::i;28580:128::-;28620:3;28651:1;28647:6;28644:1;28641:13;28638:39;;;28657:18;;:::i;:::-;-1:-1:-1;28693:9:1;;28580:128::o;28713:168::-;28753:7;28819:1;28815;28811:6;28807:14;28804:1;28801:21;28796:1;28789:9;28782:17;28778:45;28775:71;;;28826:18;;:::i;:::-;-1:-1:-1;28866:9:1;;28713:168::o;28886:258::-;28958:1;28968:113;28982:6;28979:1;28976:13;28968:113;;;29058:11;;;29052:18;29039:11;;;29032:39;29004:2;28997:10;28968:113;;;29099:6;29096:1;29093:13;29090:48;;;-1:-1:-1;;29134:1:1;29116:16;;29109:27;28886:258::o;29149:136::-;29188:3;29216:5;29206:39;;29225:18;;:::i;:::-;-1:-1:-1;;;29261:18:1;;29149:136::o;29290:127::-;29351:10;29346:3;29342:20;29339:1;29332:31;29382:4;29379:1;29372:15;29406:4;29403:1;29396:15;29422:127;29483:10;29478:3;29474:20;29471:1;29464:31;29514:4;29511:1;29504:15;29538:4;29535:1;29528:15;29554:127;29615:10;29610:3;29606:20;29603:1;29596:31;29646:4;29643:1;29636:15;29670:4;29667:1;29660:15;29686:118;29772:5;29765:13;29758:21;29751:5;29748:32;29738:60;;29794:1;29791;29784:12;29738:60;29686:118;:::o

Swarm Source

ipfs://fed5aaaf41dd4d62ba5bb8d4af02b73523fa3cf8eac2aafe986a37e788d59ab7

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.