AVAX Price: $22.88 (+12.16%)
Gas: 1 nAVAX
 

Overview

AVAX Balance

Avalanche C-Chain LogoAvalanche C-Chain LogoAvalanche C-Chain Logo0 AVAX

AVAX Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Set Approval For...607657692025-04-23 0:58:4710 hrs ago1745369927IN
Avvy: AVVY Token
0 AVAX0.000047631.02
Set Approval For...607369902025-04-22 14:06:3821 hrs ago1745330798IN
Avvy: AVVY Token
0 AVAX0.000142924.83
Set Approval For...607369822025-04-22 14:06:2821 hrs ago1745330788IN
Avvy: AVVY Token
0 AVAX0.000169965.76
Set Approval For...607369772025-04-22 14:06:2221 hrs ago1745330782IN
Avvy: AVVY Token
0 AVAX0.000170445.76
Set Approval For...606273342025-04-20 17:40:512 days ago1745170851IN
Avvy: AVVY Token
0 AVAX0.000029881.01
Safe Transfer Fr...604950752025-04-18 10:02:125 days ago1744970532IN
Avvy: AVVY Token
0 AVAX0.000229831.59797287
Set Approval For...602702822025-04-14 14:53:428 days ago1744642422IN
Avvy: AVVY Token
0 AVAX0.000074331.59161296
Safe Transfer Fr...602239332025-04-13 19:41:569 days ago1744573316IN
Avvy: AVVY Token
0 AVAX0.000268363.56395258
Set Approval For...601939212025-04-13 7:45:1310 days ago1744530313IN
Avvy: AVVY Token
0 AVAX0.000074581.59985967
Set Approval For...600345132025-04-10 17:40:1712 days ago1744306817IN
Avvy: AVVY Token
0 AVAX0.000002680.0574565
Set Approval For...599215972025-04-08 23:23:0014 days ago1744154580IN
Avvy: AVVY Token
0 AVAX0.000118062.52799189
Set Approval For...597072772025-04-04 14:16:5618 days ago1743776216IN
Avvy: AVVY Token
0 AVAX0.000116542.5
Set Approval For...597062122025-04-04 13:49:5618 days ago1743774596IN
Avvy: AVVY Token
0 AVAX0.000116542.5
Set Approval For...596687972025-04-03 18:46:0419 days ago1743705964IN
Avvy: AVVY Token
0 AVAX0.000116752.5
Safe Transfer Fr...595336072025-03-31 22:29:1522 days ago1743460155IN
Avvy: AVVY Token
0 AVAX0.000366512.5
Set Approval For...593171962025-03-27 7:47:0327 days ago1743061623IN
Avvy: AVVY Token
0 AVAX0.000163463.5
Set Approval For...592191322025-03-25 11:13:4028 days ago1742901220IN
Avvy: AVVY Token
0 AVAX0.000051841.11
Set Approval For...591765082025-03-24 14:03:5229 days ago1742825032IN
Avvy: AVVY Token
0 AVAX0.000066982.27
Set Approval For...590039352025-03-20 18:58:0333 days ago1742497083IN
Avvy: AVVY Token
0 AVAX0.000031361.06
Set Approval For...589250372025-03-19 2:29:2035 days ago1742351360IN
Avvy: AVVY Token
0 AVAX0.00003581.21
Safe Transfer Fr...589073272025-03-18 17:23:0035 days ago1742318580IN
Avvy: AVVY Token
0 AVAX0.000183771.37799496
Set Approval For...588127242025-03-16 16:56:1137 days ago1742144171IN
Avvy: AVVY Token
0 AVAX0.000036691.24
Set Approval For...588118552025-03-16 16:32:3937 days ago1742142759IN
Avvy: AVVY Token
0 AVAX0.000036981.25
Safe Transfer Fr...587886262025-03-16 4:27:2838 days ago1742099248IN
Avvy: AVVY Token
0 AVAX0.000340442.5
Safe Transfer Fr...587883492025-03-16 4:18:3538 days ago1742098715IN
Avvy: AVVY Token
0 AVAX0.000136171
View all transactions

Parent Transaction Hash Block From To
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Domain

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at snowscan.xyz on 2022-06-15
*/

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

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

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 @openzeppelin/contracts/utils/[email protected]

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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


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

pragma solidity ^0.8.0;

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


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

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

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 @openzeppelin/contracts/token/ERC721/[email protected]

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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


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

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;







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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}


// File contracts/ContractRegistryInterface.sol

pragma solidity ^0.8.0;

interface ContractRegistryInterface {
  function get(string memory contractName) external view returns (address);
}


// File contracts/NamespaceInterface.sol

pragma solidity ^0.8.0;

/*
Casing is not enforced here. Users must be careful not to
implement duplicates by casing errors, e.g. by adding
AVAX and aVaX and avax as namespaces.

Casing rules are to be enforced by the MANAGER role.
*/

interface NamespaceInterface {
  function getGracePeriodLength(uint256 id) external view returns (uint256 gracePeriodLength);
  function getRecyclePeriodLength(uint256 id) external view returns (uint256 recyclePeriodLength);
  function checkName(uint256 id, uint256 name, bytes memory constraintsData) external view;
}


// File contracts/Domain.sol

//
// .MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM.
// MMMMMMMMMMMMMMMWNKOdolc:::cclodk0NWMMMMMMMMMMMMMMM
// MMMMMMMMMMMMNOd:'....,;;::;;,....':oONMMMMMMMMMMMM
// MMMMMMMMMW0o,..,cdOKNWWWMMWWWNKOxc,..'l0WMMMMMMMMM
// MMMMMMMWOc..,o0NMMMMMMMMMMMMMMMMMMN0d,..:OWMMMMMMM
// MMMMMMKl. ;kNMMMMMMMMMMMMMMMMMMMMMMMMNk;..cKWMMMMM
// MMMMWO, .dNMMMMMMMMMMMMMNXNMMMMMMMMMMMMNx' 'kWMMMM
// MMMWO' ,0WMMMMMMMMMMMMXx;.,dXMMMMMMMMMMMMK; .kWMMM
// MMM0, ,0MMMMMMMMMMMMXx, ... 'dXMMMMMMMMMMMK; 'OMMM
// MMNl .xWMMMMMMMMMMXd' .l0X0l. 'dXMMMMMMMMMMO. :XMM
// MM0' :XMMMXdlkNMXd' .l0WMMMWKl. 'dXMNxcxNMMNc .OMM
// MMk. oWMMMKc..:l' .lKWWKdokNMWKl. 'c, .oNMMWd..dMM
// MMx. dWMMMMNo.   ;0WWKl.   ;kNMWO,   .xWMMMMx. dWM
// MMO. lNMMWXd' .. .oko. 'lo:..;xk:..'. 'dXMMWo .xMM
// MMK; ,0MXd' .oKXd.   .dXMMWO:   .;kNKl. 'dXK; ,0MM
// MMWx. :l' .oKWMMMKl. .xNMMWKc. ,kNMMMWKl. ',..oWMM
// MMMNl   .oKWMMMMMMW0c..;dkl. 'xNMMMMMMMWKc.  :XMMM
// MMMMXc  :XMMMMMMMMMMWO:.   .dXMMMMMMMMMMNo. :KMMMM
// MMMMMNo. ,kNMMMMMMMMMMX:  .kWMMMMMMMMMWO; .lXMMMMM
// MMMMMMW0:..;kXMMMMMMMMNc  .OMMMMMMMMNk:..;OWMMMMMM
// MMMMMMMMNO:..'ckKNMMMMNc  .OMMMMWKkl'..:kNMMMMMMMM
// MMMMMMMMMMWKd:...,:odkk,  .okxoc,...;o0WMMMMMMMMMM
// MMMMMMMMMMMMMWXkoc,.....   ....,:okKWMMMMMMMMMMMMM
// 'MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM'
//
//                    AVVY DOMAINS.
//

pragma solidity ^0.8.0;




contract Domain is ERC721, ERC721Enumerable, AccessControl {

  event Register(address agent, address indexed registrant, uint256 indexed name, uint256 leaseLength);
  event Suspend(address agent, uint256 indexed name, bool suspended);
  event Recycle(address agent, address indexed registrant, uint256 indexed name, uint256 leaseLength);
  event Revoke(address agent, address indexed holder, uint256 indexed name);
  event TokenBaseURISet(string uri);
  event ContractURISet(string uri);

  // =====
  // ROLES
  // =====

  // can update metadata
  bytes32 public constant ADMIN_AGENT = keccak256("1");

  // can mark domains as suspended.
  bytes32 public constant SUSPENSION_AGENT = keccak256("2");

  // can lease domains that are currently available or within the grace period
  bytes32 public constant LEASING_AGENT = keccak256("3");

  // can lease domains that are in the recycle period
  bytes32 public constant RECYCLING_AGENT = keccak256("4");

  // can transfer domains at any time
  bytes32 public constant REVOCATION_AGENT = keccak256("5");

  // ====
  // DATA
  // ====

  ContractRegistryInterface public immutable _contractRegistry;

  // which namespace does the domain belong to?
  mapping(uint256 => uint256) _domainToNamespace;

  // at what exact second does the lease expire? (i.e. at that second and after, the domain is no longer leased)
  mapping(uint256 => uint256) _leaseExpiresAt;

  // which domains are suspended?
  // users of the system should disregard suspended domains
  mapping(uint256 => bool) _suspensions;

  function exists(uint256 name) external view returns (bool) {
    return _exists(name);
  }

  // ===============
  // ERC721 Metadata
  // ===============

  string _baseTokenURI;
  string _contractURI;

  function setBaseTokenURI(string memory uri) external onlyRole(ADMIN_AGENT) {
    _baseTokenURI = uri;
    emit TokenBaseURISet(uri);
  }

  function setContractURI(string memory uri) external onlyRole(ADMIN_AGENT) {
    _contractURI = uri;
    emit ContractURISet(uri);
  }

  // tokenURI() implemented in ERC721, uses _baseURI below to
  // get the prefix for the URL.
  // _baseURI override from ERC721
  function _baseURI() internal view virtual override returns (string memory) {
    return _baseTokenURI;
  }

  function contractURI() external view returns (string memory) {
    return _contractURI;
  }

  // ==================
  // Core functionality
  // ==================

  function _isGracePeriod(
    uint256 leaseExpiresAt,
    uint256 namespaceId,
    NamespaceInterface namespace
  ) internal view returns (bool) {
    uint256 gracePeriodLength = namespace.getGracePeriodLength(namespaceId);
    return block.timestamp >= leaseExpiresAt && block.timestamp < leaseExpiresAt + gracePeriodLength;
  }

  function _isRecyclePeriod(
    uint256 leaseExpiresAt,
    uint256 namespaceId,
    NamespaceInterface namespace
  ) internal view returns (bool) {
    uint256 gracePeriodLength = namespace.getGracePeriodLength(namespaceId);
    uint256 recyclePeriodLength = namespace.getRecyclePeriodLength(namespaceId);
    uint256 gracePeriodEndsAt = leaseExpiresAt + gracePeriodLength;
    return block.timestamp >= gracePeriodEndsAt && block.timestamp < gracePeriodEndsAt + recyclePeriodLength;
  }
  
  function _isExpired(
    uint256 leaseExpiresAt,
    uint256 namespaceId,
    NamespaceInterface namespace
  ) internal view returns (bool) {
    uint256 gracePeriodLength = namespace.getGracePeriodLength(namespaceId);
    uint256 recyclePeriodLength = namespace.getRecyclePeriodLength(namespaceId);
    return block.timestamp >= leaseExpiresAt + gracePeriodLength + recyclePeriodLength;
  }

  function getRoleForNamespace(bytes32 role, uint256 namespaceId) public pure returns (bytes32) {
    bytes32 _role = keccak256(abi.encodePacked(role, namespaceId));
    return _role;
  }

  function _hasRoleForNamespace(bytes32 role, uint256 namespaceId) internal view returns (bool) {
    return hasRole(getRoleForNamespace(role, namespaceId), msg.sender);
  }

  function _checkNameMatchesNamespace(uint256 name, uint256 namespaceId) internal view {
    require(_domainToNamespace[name] == namespaceId, "Domain: Namespace mismatch");
  }

  function getNamespaceId(
    uint256 domainId
  ) external view returns (uint256) {
    return _domainToNamespace[domainId];
  }

  function getDomainExpiry(
    uint256 name 
  ) external view returns (uint256) {
    return _leaseExpiresAt[name];
  }

  function suspend(
    uint256 namespaceId,
    uint256 name,
    bool suspended
  ) external {
    require(_hasRoleForNamespace(SUSPENSION_AGENT, namespaceId), "Domain: Invalid permissions");
    _checkNameMatchesNamespace(name, namespaceId);
    _suspensions[name] = suspended;
    emit Suspend(msg.sender, name, suspended);
  }

  function isSuspended(
    uint256 name
  ) external view returns (bool suspended) {
    return _suspensions[name];
  }

  // used by the leasing agent to register domains
  function register(
    address registrant,
    uint256 namespaceId,
    uint256 name,
    uint256 leaseLength,
    bytes memory constraintsData
  ) external {

    require(
      _hasRoleForNamespace(LEASING_AGENT, namespaceId),
      "Domain: Invalid permissions"
    );

    address owner;
    require(!_suspensions[name], "Domain: Cannot register suspended domain");

    NamespaceInterface namespace = NamespaceInterface(_contractRegistry.get('Namespace'));
    bool tokenExists = _exists(name);
    if (tokenExists) {
      _checkNameMatchesNamespace(name, namespaceId);
    } else {
      namespace.checkName(
        namespaceId,
        name,
        constraintsData
      );
    }

    uint256 leaseExpiresAt = _leaseExpiresAt[name];
    _leaseExpiresAt[name] = block.timestamp + leaseLength;
    emit Register(msg.sender, registrant, name, leaseLength);

    // if the domain hasn't been minted already,
    // let's proceed with minting 
    if (!tokenExists) {
      _domainToNamespace[name] = namespaceId;
      _safeMint(registrant, name);
    } 
    
    // if the domain has been minted, but it's
    // available for immediate transfer
    else if (_isExpired(leaseExpiresAt, namespaceId, namespace)) {
      owner = ownerOf(name);
      if (owner != registrant) {
        _safeTransfer(owner, registrant, name, '');
      }
    } 
    
    // if the domain has been minted, expired,
    // but is currently in the grace period
    else if (_isGracePeriod(leaseExpiresAt, namespaceId, namespace)) {
      owner = ownerOf(name);
      require(owner == registrant, "Domain: Can only register to owner during grace period");
    }

    // otherwise, it's currently registered & we only allow it to be modified by
    // the owner, for the purpose of increasing the lease period
    else {
      owner = ownerOf(name);
      require(!_isRecyclePeriod(leaseExpiresAt, namespaceId, namespace), "Domain: Cannot register during recycle period");
      require(owner == registrant, "Domain: Only owner can modify registration if leased");
    }
  }

  function recycle(
    address to,
    uint256 namespaceId,
    uint256 name,
    uint256 leaseLength
  ) external {
    require(
      _hasRoleForNamespace(RECYCLING_AGENT, namespaceId),
      "Domain: Invalid permissions"
    );

    address owner = ownerOf(name);
    NamespaceInterface namespace = NamespaceInterface(_contractRegistry.get('Namespace'));

    require(!_suspensions[name], "Domain: Cannot recycle suspended domain");
    uint256 leaseExpiresAt = _leaseExpiresAt[name];

    require(
      _isRecyclePeriod(leaseExpiresAt, namespaceId, namespace),
      "Domain: Not recycling period"
    );

    _checkNameMatchesNamespace(name, namespaceId);
    _leaseExpiresAt[name] = block.timestamp + leaseLength;
    emit Recycle(msg.sender, to, name, leaseLength);
    _safeTransfer(owner, to, name, '');
  }

  function revoke(
    address to, 
    uint256 namespaceId,
    uint256 name
  ) external {
    require(
      _hasRoleForNamespace(REVOCATION_AGENT, namespaceId),
      "Domain: Invalid permissions"
    );
    _checkNameMatchesNamespace(name, namespaceId);
    address owner = ownerOf(name);
    _safeTransfer(owner, to, name, '');
    emit Revoke(msg.sender, to, name);
  }

  function _beforeTokenTransfer(
    address from,
    address to,
    uint256 name
  ) override(ERC721, ERC721Enumerable) internal virtual {
    uint256 namespaceId = _domainToNamespace[name];
    if (_hasRoleForNamespace(REVOCATION_AGENT, namespaceId)) {
      return super._beforeTokenTransfer(from, to, name);
    }
    require(!_suspensions[name], "Domain: Cannot transfer suspended domain");
    NamespaceInterface namespace = NamespaceInterface(_contractRegistry.get('Namespace'));
    uint256 leaseExpiresAt = _leaseExpiresAt[name];
    require(!_isGracePeriod(leaseExpiresAt, namespaceId, namespace), "Domain: Cannot transfer expired domain");
    if (_isRecyclePeriod(leaseExpiresAt, namespaceId, namespace)) {
      require(_hasRoleForNamespace(RECYCLING_AGENT, namespaceId), "Domain: Cannot transfer expired domain");
    } else if (_isExpired(leaseExpiresAt, namespaceId, namespace)) {
      require(_hasRoleForNamespace(LEASING_AGENT, namespaceId), "Domain: Cannot transfer expired domain");
    }
    super._beforeTokenTransfer(from, to, name);
  }

  function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable, AccessControl) returns (bool) {
    return (
      ERC721.supportsInterface(interfaceId)
      || ERC721Enumerable.supportsInterface(interfaceId)
      || AccessControl.supportsInterface(interfaceId)
    );
  }

  constructor(string memory name, string memory symbol, ContractRegistryInterface contractRegistry) ERC721(name, symbol) {
    _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
    _contractRegistry = contractRegistry;
  }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"contract ContractRegistryInterface","name":"contractRegistry","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"uri","type":"string"}],"name":"ContractURISet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"agent","type":"address"},{"indexed":true,"internalType":"address","name":"registrant","type":"address"},{"indexed":true,"internalType":"uint256","name":"name","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"leaseLength","type":"uint256"}],"name":"Recycle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"agent","type":"address"},{"indexed":true,"internalType":"address","name":"registrant","type":"address"},{"indexed":true,"internalType":"uint256","name":"name","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"leaseLength","type":"uint256"}],"name":"Register","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"agent","type":"address"},{"indexed":true,"internalType":"address","name":"holder","type":"address"},{"indexed":true,"internalType":"uint256","name":"name","type":"uint256"}],"name":"Revoke","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":"agent","type":"address"},{"indexed":true,"internalType":"uint256","name":"name","type":"uint256"},{"indexed":false,"internalType":"bool","name":"suspended","type":"bool"}],"name":"Suspend","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"uri","type":"string"}],"name":"TokenBaseURISet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ADMIN_AGENT","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":"LEASING_AGENT","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RECYCLING_AGENT","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REVOCATION_AGENT","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SUSPENSION_AGENT","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_contractRegistry","outputs":[{"internalType":"contract ContractRegistryInterface","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"name","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"name","type":"uint256"}],"name":"getDomainExpiry","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"domainId","type":"uint256"}],"name":"getNamespaceId","outputs":[{"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":"uint256","name":"namespaceId","type":"uint256"}],"name":"getRoleForNamespace","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","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":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"name","type":"uint256"}],"name":"isSuspended","outputs":[{"internalType":"bool","name":"suspended","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"namespaceId","type":"uint256"},{"internalType":"uint256","name":"name","type":"uint256"},{"internalType":"uint256","name":"leaseLength","type":"uint256"}],"name":"recycle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"registrant","type":"address"},{"internalType":"uint256","name":"namespaceId","type":"uint256"},{"internalType":"uint256","name":"name","type":"uint256"},{"internalType":"uint256","name":"leaseLength","type":"uint256"},{"internalType":"bytes","name":"constraintsData","type":"bytes"}],"name":"register","outputs":[],"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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"namespaceId","type":"uint256"},{"internalType":"uint256","name":"name","type":"uint256"}],"name":"revoke","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":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"namespaceId","type":"uint256"},{"internalType":"uint256","name":"name","type":"uint256"},{"internalType":"bool","name":"suspended","type":"bool"}],"name":"suspend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040523480156200001157600080fd5b5060405162005fe238038062005fe2833981810160405281019062000037919062000376565b82828160009080519060200190620000519291906200023d565b5080600190805190602001906200006a9291906200023d565b505050620000826000801b33620000c260201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b8152505050505062000591565b620000d48282620000d860201b60201c565b5050565b620000ea8282620001ca60201b60201c565b620001c6576001600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200016b6200023560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b8280546200024b90620004e3565b90600052602060002090601f0160209004810192826200026f5760008555620002bb565b82601f106200028a57805160ff1916838001178555620002bb565b82800160010185558215620002bb579182015b82811115620002ba5782518255916020019190600101906200029d565b5b509050620002ca9190620002ce565b5090565b5b80821115620002e9576000816000905550600101620002cf565b5090565b600062000304620002fe8462000432565b620003fe565b9050828152602081018484840111156200031d57600080fd5b6200032a848285620004ad565b509392505050565b600081519050620003438162000577565b92915050565b600082601f8301126200035b57600080fd5b81516200036d848260208601620002ed565b91505092915050565b6000806000606084860312156200038c57600080fd5b600084015167ffffffffffffffff811115620003a757600080fd5b620003b58682870162000349565b935050602084015167ffffffffffffffff811115620003d357600080fd5b620003e18682870162000349565b9250506040620003f48682870162000332565b9150509250925092565b6000604051905081810181811067ffffffffffffffff8211171562000428576200042762000548565b5b8060405250919050565b600067ffffffffffffffff82111562000450576200044f62000548565b5b601f19601f8301169050602081019050919050565b600062000472826200048d565b9050919050565b6000620004868262000465565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620004cd578082015181840152602081019050620004b0565b83811115620004dd576000848401525b50505050565b60006002820490506001821680620004fc57607f821691505b6020821081141562000513576200051262000519565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620005828162000479565b81146200058e57600080fd5b50565b60805160601c615a1d620005c5600039600081816115610152818161183d01528181611c5f0152612ed10152615a1d6000f3fe608060405234801561001057600080fd5b50600436106102485760003560e01c8063831ff4621161013b578063a22cb465116100b8578063c87b56dd1161007c578063c87b56dd14610737578063d547741f14610767578063e5bdd1a814610783578063e8a3d485146107a1578063e985e9c5146107bf57610248565b8063a22cb465146106a9578063b012290b146106c5578063b3e482fa146106e1578063b88d4fde146106fd578063c1058b8f1461071957610248565b806395d89b41116100ff57806395d89b4114610603578063990e4c511461062157806399d786ec1461063d5780639c9e36981461065b578063a217fddf1461068b57610248565b8063831ff46214610539578063881ea9d11461056957806391d1485414610599578063938e3d7b146105c957806394b629fb146105e557610248565b80632f2ff15d116101c9578063441c0ca31161018d578063441c0ca31461045b5780634f558e79146104795780634f6ccce7146104a95780636352211e146104d957806370a082311461050957610248565b80632f2ff15d146103bb5780632f745c59146103d757806330176e131461040757806336568abe1461042357806342842e0e1461043f57610248565b80630bae1bd0116102105780630bae1bd01461030557806318160ddd1461033557806323b872dd14610353578063248a9ca31461036f5780632d8fbcad1461039f57610248565b80630138b3bf1461024d57806301ffc9a71461026b57806306fdde031461029b578063081812fc146102b9578063095ea7b3146102e9575b600080fd5b6102556107ef565b604051610262919061509f565b60405180910390f35b61028560048036038101906102809190614213565b610813565b6040516102929190615084565b60405180910390f35b6102a3610845565b6040516102b091906150d5565b60405180910390f35b6102d360048036038101906102ce91906142a6565b6108d7565b6040516102e09190614fcb565b60405180910390f35b61030360048036038101906102fe9190613ff5565b61095c565b005b61031f600480360381019061031a91906142a6565b610a74565b60405161032c9190615084565b60405180910390f35b61033d610a9e565b60405161034a9190615497565b60405180910390f35b61036d60048036038101906103689190613eef565b610aab565b005b61038960048036038101906103849190614172565b610b0b565b604051610396919061509f565b60405180910390f35b6103b960048036038101906103b491906142f8565b610b2b565b005b6103d560048036038101906103d0919061419b565b610c08565b005b6103f160048036038101906103ec9190613ff5565b610c31565b6040516103fe9190615497565b60405180910390f35b610421600480360381019061041c9190614265565b610cd6565b005b61043d6004803603810190610438919061419b565b610d5a565b005b61045960048036038101906104549190613eef565b610ddd565b005b610463610dfd565b604051610470919061509f565b60405180910390f35b610493600480360381019061048e91906142a6565b610e21565b6040516104a09190615084565b60405180910390f35b6104c360048036038101906104be91906142a6565b610e33565b6040516104d09190615497565b60405180910390f35b6104f360048036038101906104ee91906142a6565b610eca565b6040516105009190614fcb565b60405180910390f35b610523600480360381019061051e9190613e61565b610f7c565b6040516105309190615497565b60405180910390f35b610553600480360381019061054e91906141d7565b611034565b604051610560919061509f565b60405180910390f35b610583600480360381019061057e91906142a6565b61106c565b6040516105909190615497565b60405180910390f35b6105b360048036038101906105ae919061419b565b611089565b6040516105c09190615084565b60405180910390f35b6105e360048036038101906105de9190614265565b6110f4565b005b6105ed611178565b6040516105fa919061509f565b60405180910390f35b61060b61119c565b60405161061891906150d5565b60405180910390f35b61063b60048036038101906106369190614031565b61122e565b005b61064561131e565b604051610652919061509f565b60405180910390f35b610675600480360381019061067091906142a6565b611342565b6040516106829190615497565b60405180910390f35b61069361135f565b6040516106a0919061509f565b60405180910390f35b6106c360048036038101906106be9190613fb9565b611366565b005b6106df60048036038101906106da9190614080565b6114e7565b005b6106fb60048036038101906106f691906140e3565b61176d565b005b61071760048036038101906107129190613f3e565b611bfb565b005b610721611c5d565b60405161072e91906150ba565b60405180910390f35b610751600480360381019061074c91906142a6565b611c81565b60405161075e91906150d5565b60405180910390f35b610781600480360381019061077c919061419b565b611d28565b005b61078b611d51565b604051610798919061509f565b60405180910390f35b6107a9611d75565b6040516107b691906150d5565b60405180910390f35b6107d960048036038101906107d49190613eb3565b611e07565b6040516107e69190615084565b60405180910390f35b7fceebf77a833b30520287ddd9478ff51abbdffa30aa90a8d655dba0e8a79ce0c181565b600061081e82611e9b565b8061082e575061082d82611f7d565b5b8061083e575061083d82611ff7565b5b9050919050565b606060008054610854906157e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610880906157e7565b80156108cd5780601f106108a2576101008083540402835291602001916108cd565b820191906000526020600020905b8154815290600101906020018083116108b057829003601f168201915b5050505050905090565b60006108e282612071565b610921576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610918906152d7565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096782610eca565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cf90615397565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109f76120dd565b73ffffffffffffffffffffffffffffffffffffffff161480610a265750610a2581610a206120dd565b611e07565b5b610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c90615217565b60405180910390fd5b610a6f83836120e5565b505050565b6000600d600083815260200190815260200160002060009054906101000a900460ff169050919050565b6000600880549050905090565b610abc610ab66120dd565b8261219e565b610afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af2906153d7565b60405180910390fd5b610b0683838361227c565b505050565b6000600a6000838152602001908152602001600020600101549050919050565b610b557fad7c5bef027816a800da1736444fb58a807ef4c9603b7848673f7e3a68eb14a5846124d8565b610b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8b906153b7565b60405180910390fd5b610b9e82846124f5565b80600d600084815260200190815260200160002060006101000a81548160ff021916908315150217905550817fcd26ab8516a4725be7b2ea7ae931dfb377ac5cf653a5cecafe7b030e4007dbae3383604051610bfb929190615032565b60405180910390a2505050565b610c1182610b0b565b610c2281610c1d6120dd565b61254e565b610c2c83836125eb565b505050565b6000610c3c83610f7c565b8210610c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7490615117565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b7fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6610d0881610d036120dd565b61254e565b81600e9080519060200190610d1e929190613c46565b507f6ae07e2a08f067a8d5ece04d32173e8ecaac9a2273ca0e3db850c5460a5d616082604051610d4e91906150d5565b60405180910390a15050565b610d626120dd565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc690615477565b60405180910390fd5b610dd982826126cc565b5050565b610df883838360405180602001604052806000815250611bfb565b505050565b7f13600b294191fc92924bb3ce4b969c1e7e2bab8f4c93c3fc6d0a51733df3c06081565b6000610e2c82612071565b9050919050565b6000610e3d610a9e565b8210610e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e75906153f7565b60405180910390fd5b60088281548110610eb8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6a90615257565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe490615237565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600080838360405160200161104a929190614f41565b6040516020818303038152906040528051906020012090508091505092915050565b6000600b6000838152602001908152602001600020549050919050565b6000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b7fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6611126816111216120dd565b61254e565b81600f908051906020019061113c929190613c46565b507faf497693a87db12ca89131a31edbb3db4bb5702dfb284e8ae7427d185f09112d8260405161116c91906150d5565b60405180910390a15050565b7f2a80e1ef1d7842f27f2e6be0972bb708b9a135c38860dbe73c27c3486c34f4de81565b6060600180546111ab906157e7565b80601f01602080910402602001604051908101604052809291908181526020018280546111d7906157e7565b80156112245780601f106111f957610100808354040283529160200191611224565b820191906000526020600020905b81548152906001019060200180831161120757829003601f168201915b5050505050905090565b6112587fceebf77a833b30520287ddd9478ff51abbdffa30aa90a8d655dba0e8a79ce0c1836124d8565b611297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128e906153b7565b60405180910390fd5b6112a181836124f5565b60006112ac82610eca565b90506112c9818584604051806020016040528060008152506127ae565b818473ffffffffffffffffffffffffffffffffffffffff167fb698e31a2abee5824d0d7bcfd2339aead7f9e9ae413fba50bf554ff3fa470b7b336040516113109190614fcb565b60405180910390a350505050565b7fad7c5bef027816a800da1736444fb58a807ef4c9603b7848673f7e3a68eb14a581565b6000600c6000838152602001908152602001600020549050919050565b6000801b81565b61136e6120dd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d390615197565b60405180910390fd5b80600560006113e96120dd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114966120dd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114db9190615084565b60405180910390a35050565b6115117f13600b294191fc92924bb3ce4b969c1e7e2bab8f4c93c3fc6d0a51733df3c060846124d8565b611550576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611547906153b7565b60405180910390fd5b600061155b83610eca565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663693ec85e6040518163ffffffff1660e01b81526004016115b6906152b7565b60206040518083038186803b1580156115ce57600080fd5b505afa1580156115e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116069190613e8a565b9050600d600085815260200190815260200160002060009054906101000a900460ff1615611669576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166090615357565b60405180910390fd5b6000600c600086815260200190815260200160002054905061168c81878461280a565b6116cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c2906152f7565b60405180910390fd5b6116d585876124f5565b83426116e191906155c4565b600c600087815260200190815260200160002081905550848773ffffffffffffffffffffffffffffffffffffffff167f14295458e7a580d6a197fb2ba945cb8e733fa6a9642a29909cdef9301bc3fa3e338760405161174192919061505b565b60405180910390a3611764838887604051806020016040528060008152506127ae565b50505050505050565b6117977f2a80e1ef1d7842f27f2e6be0972bb708b9a135c38860dbe73c27c3486c34f4de856124d8565b6117d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cd906153b7565b60405180910390fd5b6000600d600085815260200190815260200160002060009054906101000a900460ff1615611839576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611830906151d7565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663693ec85e6040518163ffffffff1660e01b8152600401611892906152b7565b60206040518083038186803b1580156118aa57600080fd5b505afa1580156118be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118e29190613e8a565b905060006118ef86612071565b905080156119065761190186886124f5565b611974565b8173ffffffffffffffffffffffffffffffffffffffff16633b5667078888876040518463ffffffff1660e01b8152600401611943939291906154b2565b60006040518083038186803b15801561195b57600080fd5b505afa15801561196f573d6000803e3d6000fd5b505050505b6000600c6000888152602001908152602001600020549050854261199891906155c4565b600c600089815260200190815260200160002081905550868973ffffffffffffffffffffffffffffffffffffffff167f2e99fd66dad9611ac11d08dcbfdb417ac840074a8659831e928c70a92a6215e733896040516119f892919061505b565b60405180910390a381611a2c5787600b600089815260200190815260200160002081905550611a27898861295b565b611bf0565b611a37818985612979565b15611a9b57611a4587610eca565b93508873ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611a9657611a95848a89604051806020016040528060008152506127ae565b5b611bef565b611aa6818985612ab9565b15611b2957611ab487610eca565b93508873ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1b906151b7565b60405180910390fd5b611bee565b611b3287610eca565b9350611b3f81898561280a565b15611b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7690615277565b60405180910390fd5b8873ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be490615377565b60405180910390fd5b5b5b5b505050505050505050565b611c0c611c066120dd565b8361219e565b611c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c42906153d7565b60405180910390fd5b611c57848484846127ae565b50505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6060611c8c82612071565b611ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc290615337565b60405180910390fd5b6000611cd5612b6b565b90506000815111611cf55760405180602001604052806000815250611d20565b80611cff84612bfd565b604051602001611d10929190614f6d565b6040516020818303038152906040525b915050919050565b611d3182610b0b565b611d4281611d3d6120dd565b61254e565b611d4c83836126cc565b505050565b7fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc681565b6060600f8054611d84906157e7565b80601f0160208091040260200160405190810160405280929190818152602001828054611db0906157e7565b8015611dfd5780601f10611dd257610100808354040283529160200191611dfd565b820191906000526020600020905b815481529060010190602001808311611de057829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f6657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611f765750611f7582612daa565b5b9050919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ff05750611fef82611e9b565b5b9050919050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061206a575061206982611f7d565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661215883610eca565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006121a982612071565b6121e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121df906151f7565b60405180910390fd5b60006121f383610eca565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061226257508373ffffffffffffffffffffffffffffffffffffffff1661224a846108d7565b73ffffffffffffffffffffffffffffffffffffffff16145b8061227357506122728185611e07565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661229c82610eca565b73ffffffffffffffffffffffffffffffffffffffff16146122f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e990615317565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612362576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235990615177565b60405180910390fd5b61236d838383612e14565b6123786000826120e5565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123c891906156a5565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461241f91906155c4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006124ed6124e78484611034565b33611089565b905092915050565b80600b6000848152602001908152602001600020541461254a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254190615437565b60405180910390fd5b5050565b6125588282611089565b6125e75761257d8173ffffffffffffffffffffffffffffffffffffffff1660146130e8565b61258b8360001c60206130e8565b60405160200161259c929190614f91565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125de91906150d5565b60405180910390fd5b5050565b6125f58282611089565b6126c8576001600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061266d6120dd565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6126d68282611089565b156127aa576000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061274f6120dd565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6127b984848461227c565b6127c5848484846133e2565b612804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fb90615137565b60405180910390fd5b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff16635575a455856040518263ffffffff1660e01b81526004016128469190615497565b60206040518083038186803b15801561285e57600080fd5b505afa158015612872573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061289691906142cf565b905060008373ffffffffffffffffffffffffffffffffffffffff166393059e2e866040518263ffffffff1660e01b81526004016128d39190615497565b60206040518083038186803b1580156128eb57600080fd5b505afa1580156128ff573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061292391906142cf565b90506000828761293391906155c4565b905080421015801561294f5750818161294c91906155c4565b42105b93505050509392505050565b612975828260405180602001604052806000815250613579565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff16635575a455856040518263ffffffff1660e01b81526004016129b59190615497565b60206040518083038186803b1580156129cd57600080fd5b505afa1580156129e1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a0591906142cf565b905060008373ffffffffffffffffffffffffffffffffffffffff166393059e2e866040518263ffffffff1660e01b8152600401612a429190615497565b60206040518083038186803b158015612a5a57600080fd5b505afa158015612a6e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a9291906142cf565b9050808287612aa191906155c4565b612aab91906155c4565b421015925050509392505050565b6000808273ffffffffffffffffffffffffffffffffffffffff16635575a455856040518263ffffffff1660e01b8152600401612af59190615497565b60206040518083038186803b158015612b0d57600080fd5b505afa158015612b21573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b4591906142cf565b9050844210158015612b6157508085612b5e91906155c4565b42105b9150509392505050565b6060600e8054612b7a906157e7565b80601f0160208091040260200160405190810160405280929190818152602001828054612ba6906157e7565b8015612bf35780601f10612bc857610100808354040283529160200191612bf3565b820191906000526020600020905b815481529060010190602001808311612bd657829003601f168201915b5050505050905090565b60606000821415612c45576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612da5565b600082905060005b60008214612c77578080612c6090615819565b915050600a82612c70919061561a565b9150612c4d565b60008167ffffffffffffffff811115612cb9577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612ceb5781602001600182028036833780820191505090505b5090505b60008514612d9e57600182612d0491906156a5565b9150600a85612d139190615876565b6030612d1f91906155c4565b60f81b818381518110612d5b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d97919061561a565b9450612cef565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000600b6000838152602001908152602001600020549050612e567fceebf77a833b30520287ddd9478ff51abbdffa30aa90a8d655dba0e8a79ce0c1826124d8565b15612e6c57612e668484846135d4565b506130e3565b600d600083815260200190815260200160002060009054906101000a900460ff1615612ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec490615417565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663693ec85e6040518163ffffffff1660e01b8152600401612f26906152b7565b60206040518083038186803b158015612f3e57600080fd5b505afa158015612f52573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f769190613e8a565b90506000600c6000858152602001908152602001600020549050612f9b818484612ab9565b15612fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd290615457565b60405180910390fd5b612fe681848461280a565b15613059576130157f13600b294191fc92924bb3ce4b969c1e7e2bab8f4c93c3fc6d0a51733df3c060846124d8565b613054576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304b90615457565b60405180910390fd5b6130d4565b613064818484612979565b156130d3576130937f2a80e1ef1d7842f27f2e6be0972bb708b9a135c38860dbe73c27c3486c34f4de846124d8565b6130d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c990615457565b60405180910390fd5b5b5b6130df8686866135d4565b5050505b505050565b6060600060028360026130fb919061564b565b61310591906155c4565b67ffffffffffffffff811115613144577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156131765781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106131d4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061325e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261329e919061564b565b6132a891906155c4565b90505b6001811115613394577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110613310577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b82828151811061334d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061338d906157bd565b90506132ab565b50600084146133d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133cf906150f7565b60405180910390fd5b8091505092915050565b60006134038473ffffffffffffffffffffffffffffffffffffffff166136e8565b1561356c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261342c6120dd565b8786866040518563ffffffff1660e01b815260040161344e9493929190614fe6565b602060405180830381600087803b15801561346857600080fd5b505af192505050801561349957506040513d601f19601f82011682018060405250810190613496919061423c565b60015b61351c573d80600081146134c9576040519150601f19603f3d011682016040523d82523d6000602084013e6134ce565b606091505b50600081511415613514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161350b90615137565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613571565b600190505b949350505050565b61358383836136fb565b61359060008484846133e2565b6135cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135c690615137565b60405180910390fd5b505050565b6135df8383836138c9565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156136225761361d816138ce565b613661565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146136605761365f8382613917565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136a45761369f81613a84565b6136e3565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146136e2576136e18282613bc7565b5b5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561376b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161376290615297565b60405180910390fd5b61377481612071565b156137b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137ab90615157565b60405180910390fd5b6137c060008383612e14565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461381091906155c4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161392484610f7c565b61392e91906156a5565b9050600060076000848152602001908152602001600020549050818114613a13576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613a9891906156a5565b9050600060096000848152602001908152602001600020549050600060088381548110613aee577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613b36577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613bab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613bd283610f7c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054613c52906157e7565b90600052602060002090601f016020900481019282613c745760008555613cbb565b82601f10613c8d57805160ff1916838001178555613cbb565b82800160010185558215613cbb579182015b82811115613cba578251825591602001919060010190613c9f565b5b509050613cc89190613ccc565b5090565b5b80821115613ce5576000816000905550600101613ccd565b5090565b6000613cfc613cf784615521565b6154f0565b905082815260208101848484011115613d1457600080fd5b613d1f84828561577b565b509392505050565b6000613d3a613d3584615551565b6154f0565b905082815260208101848484011115613d5257600080fd5b613d5d84828561577b565b509392505050565b600081359050613d7481615974565b92915050565b600081519050613d8981615974565b92915050565b600081359050613d9e8161598b565b92915050565b600081359050613db3816159a2565b92915050565b600081359050613dc8816159b9565b92915050565b600081519050613ddd816159b9565b92915050565b600082601f830112613df457600080fd5b8135613e04848260208601613ce9565b91505092915050565b600082601f830112613e1e57600080fd5b8135613e2e848260208601613d27565b91505092915050565b600081359050613e46816159d0565b92915050565b600081519050613e5b816159d0565b92915050565b600060208284031215613e7357600080fd5b6000613e8184828501613d65565b91505092915050565b600060208284031215613e9c57600080fd5b6000613eaa84828501613d7a565b91505092915050565b60008060408385031215613ec657600080fd5b6000613ed485828601613d65565b9250506020613ee585828601613d65565b9150509250929050565b600080600060608486031215613f0457600080fd5b6000613f1286828701613d65565b9350506020613f2386828701613d65565b9250506040613f3486828701613e37565b9150509250925092565b60008060008060808587031215613f5457600080fd5b6000613f6287828801613d65565b9450506020613f7387828801613d65565b9350506040613f8487828801613e37565b925050606085013567ffffffffffffffff811115613fa157600080fd5b613fad87828801613de3565b91505092959194509250565b60008060408385031215613fcc57600080fd5b6000613fda85828601613d65565b9250506020613feb85828601613d8f565b9150509250929050565b6000806040838503121561400857600080fd5b600061401685828601613d65565b925050602061402785828601613e37565b9150509250929050565b60008060006060848603121561404657600080fd5b600061405486828701613d65565b935050602061406586828701613e37565b925050604061407686828701613e37565b9150509250925092565b6000806000806080858703121561409657600080fd5b60006140a487828801613d65565b94505060206140b587828801613e37565b93505060406140c687828801613e37565b92505060606140d787828801613e37565b91505092959194509250565b600080600080600060a086880312156140fb57600080fd5b600061410988828901613d65565b955050602061411a88828901613e37565b945050604061412b88828901613e37565b935050606061413c88828901613e37565b925050608086013567ffffffffffffffff81111561415957600080fd5b61416588828901613de3565b9150509295509295909350565b60006020828403121561418457600080fd5b600061419284828501613da4565b91505092915050565b600080604083850312156141ae57600080fd5b60006141bc85828601613da4565b92505060206141cd85828601613d65565b9150509250929050565b600080604083850312156141ea57600080fd5b60006141f885828601613da4565b925050602061420985828601613e37565b9150509250929050565b60006020828403121561422557600080fd5b600061423384828501613db9565b91505092915050565b60006020828403121561424e57600080fd5b600061425c84828501613dce565b91505092915050565b60006020828403121561427757600080fd5b600082013567ffffffffffffffff81111561429157600080fd5b61429d84828501613e0d565b91505092915050565b6000602082840312156142b857600080fd5b60006142c684828501613e37565b91505092915050565b6000602082840312156142e157600080fd5b60006142ef84828501613e4c565b91505092915050565b60008060006060848603121561430d57600080fd5b600061431b86828701613e37565b935050602061432c86828701613e37565b925050604061433d86828701613d8f565b9150509250925092565b614350816156d9565b82525050565b61435f816156eb565b82525050565b61436e816156f7565b82525050565b614385614380826156f7565b615862565b82525050565b600061439682615581565b6143a08185615597565b93506143b081856020860161578a565b6143b981615963565b840191505092915050565b6143cd81615757565b82525050565b60006143de8261558c565b6143e881856155a8565b93506143f881856020860161578a565b61440181615963565b840191505092915050565b60006144178261558c565b61442181856155b9565b935061443181856020860161578a565b80840191505092915050565b600061444a6020836155a8565b91507f537472696e67733a20686578206c656e67746820696e73756666696369656e746000830152602082019050919050565b600061448a602b836155a8565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006144f06032836155a8565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000614556601c836155a8565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006145966024836155a8565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006145fc6019836155a8565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061463c6036836155a8565b91507f446f6d61696e3a2043616e206f6e6c7920726567697374657220746f206f776e60008301527f657220647572696e6720677261636520706572696f64000000000000000000006020830152604082019050919050565b60006146a26028836155a8565b91507f446f6d61696e3a2043616e6e6f742072656769737465722073757370656e646560008301527f6420646f6d61696e0000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614708602c836155a8565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061476e6038836155a8565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006147d4602a836155a8565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061483a6029836155a8565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006148a0602d836155a8565b91507f446f6d61696e3a2043616e6e6f7420726567697374657220647572696e67207260008301527f656379636c6520706572696f64000000000000000000000000000000000000006020830152604082019050919050565b60006149066020836155a8565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006149466009836155a8565b91507f4e616d65737061636500000000000000000000000000000000000000000000006000830152602082019050919050565b6000614986602c836155a8565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006149ec601c836155a8565b91507f446f6d61696e3a204e6f742072656379636c696e6720706572696f64000000006000830152602082019050919050565b6000614a2c6029836155a8565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a92602f836155a8565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614af86027836155a8565b91507f446f6d61696e3a2043616e6e6f742072656379636c652073757370656e64656460008301527f20646f6d61696e000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614b5e6034836155a8565b91507f446f6d61696e3a204f6e6c79206f776e65722063616e206d6f6469667920726560008301527f67697374726174696f6e206966206c65617365640000000000000000000000006020830152604082019050919050565b6000614bc46021836155a8565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c2a601b836155a8565b91507f446f6d61696e3a20496e76616c6964207065726d697373696f6e7300000000006000830152602082019050919050565b6000614c6a6031836155a8565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614cd0602c836155a8565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000614d366017836155b9565b91507f416363657373436f6e74726f6c3a206163636f756e74200000000000000000006000830152601782019050919050565b6000614d766028836155a8565b91507f446f6d61696e3a2043616e6e6f74207472616e736665722073757370656e646560008301527f6420646f6d61696e0000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ddc601a836155a8565b91507f446f6d61696e3a204e616d657370616365206d69736d617463680000000000006000830152602082019050919050565b6000614e1c6026836155a8565b91507f446f6d61696e3a2043616e6e6f74207472616e7366657220657870697265642060008301527f646f6d61696e00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614e826011836155b9565b91507f206973206d697373696e6720726f6c65200000000000000000000000000000006000830152601182019050919050565b6000614ec2602f836155a8565b91507f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008301527f20726f6c657320666f722073656c6600000000000000000000000000000000006020830152604082019050919050565b614f248161574d565b82525050565b614f3b614f368261574d565b61586c565b82525050565b6000614f4d8285614374565b602082019150614f5d8284614f2a565b6020820191508190509392505050565b6000614f79828561440c565b9150614f85828461440c565b91508190509392505050565b6000614f9c82614d29565b9150614fa8828561440c565b9150614fb382614e75565b9150614fbf828461440c565b91508190509392505050565b6000602082019050614fe06000830184614347565b92915050565b6000608082019050614ffb6000830187614347565b6150086020830186614347565b6150156040830185614f1b565b8181036060830152615027818461438b565b905095945050505050565b60006040820190506150476000830185614347565b6150546020830184614356565b9392505050565b60006040820190506150706000830185614347565b61507d6020830184614f1b565b9392505050565b60006020820190506150996000830184614356565b92915050565b60006020820190506150b46000830184614365565b92915050565b60006020820190506150cf60008301846143c4565b92915050565b600060208201905081810360008301526150ef81846143d3565b905092915050565b600060208201905081810360008301526151108161443d565b9050919050565b600060208201905081810360008301526151308161447d565b9050919050565b60006020820190508181036000830152615150816144e3565b9050919050565b6000602082019050818103600083015261517081614549565b9050919050565b6000602082019050818103600083015261519081614589565b9050919050565b600060208201905081810360008301526151b0816145ef565b9050919050565b600060208201905081810360008301526151d08161462f565b9050919050565b600060208201905081810360008301526151f081614695565b9050919050565b60006020820190508181036000830152615210816146fb565b9050919050565b6000602082019050818103600083015261523081614761565b9050919050565b60006020820190508181036000830152615250816147c7565b9050919050565b600060208201905081810360008301526152708161482d565b9050919050565b6000602082019050818103600083015261529081614893565b9050919050565b600060208201905081810360008301526152b0816148f9565b9050919050565b600060208201905081810360008301526152d081614939565b9050919050565b600060208201905081810360008301526152f081614979565b9050919050565b60006020820190508181036000830152615310816149df565b9050919050565b6000602082019050818103600083015261533081614a1f565b9050919050565b6000602082019050818103600083015261535081614a85565b9050919050565b6000602082019050818103600083015261537081614aeb565b9050919050565b6000602082019050818103600083015261539081614b51565b9050919050565b600060208201905081810360008301526153b081614bb7565b9050919050565b600060208201905081810360008301526153d081614c1d565b9050919050565b600060208201905081810360008301526153f081614c5d565b9050919050565b6000602082019050818103600083015261541081614cc3565b9050919050565b6000602082019050818103600083015261543081614d69565b9050919050565b6000602082019050818103600083015261545081614dcf565b9050919050565b6000602082019050818103600083015261547081614e0f565b9050919050565b6000602082019050818103600083015261549081614eb5565b9050919050565b60006020820190506154ac6000830184614f1b565b92915050565b60006060820190506154c76000830186614f1b565b6154d46020830185614f1b565b81810360408301526154e6818461438b565b9050949350505050565b6000604051905081810181811067ffffffffffffffff8211171561551757615516615934565b5b8060405250919050565b600067ffffffffffffffff82111561553c5761553b615934565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561556c5761556b615934565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006155cf8261574d565b91506155da8361574d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561560f5761560e6158a7565b5b828201905092915050565b60006156258261574d565b91506156308361574d565b9250826156405761563f6158d6565b5b828204905092915050565b60006156568261574d565b91506156618361574d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561569a576156996158a7565b5b828202905092915050565b60006156b08261574d565b91506156bb8361574d565b9250828210156156ce576156cd6158a7565b5b828203905092915050565b60006156e48261572d565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061576282615769565b9050919050565b60006157748261572d565b9050919050565b82818337600083830152505050565b60005b838110156157a857808201518184015260208101905061578d565b838111156157b7576000848401525b50505050565b60006157c88261574d565b915060008214156157dc576157db6158a7565b5b600182039050919050565b600060028204905060018216806157ff57607f821691505b6020821081141561581357615812615905565b5b50919050565b60006158248261574d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615857576158566158a7565b5b600182019050919050565b6000819050919050565b6000819050919050565b60006158818261574d565b915061588c8361574d565b92508261589c5761589b6158d6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61597d816156d9565b811461598857600080fd5b50565b615994816156eb565b811461599f57600080fd5b50565b6159ab816156f7565b81146159b657600080fd5b50565b6159c281615701565b81146159cd57600080fd5b50565b6159d98161574d565b81146159e457600080fd5b5056fea2646970667358221220bf5855f7287e9b8c9df690fcdd4b6e820b343cf07104c3dca238500f1eac89bf64736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000004832d668c2c75fa10c597fd19b116d2e1873ed69000000000000000000000000000000000000000000000000000000000000000c4176767920446f6d61696e73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044156565900000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102485760003560e01c8063831ff4621161013b578063a22cb465116100b8578063c87b56dd1161007c578063c87b56dd14610737578063d547741f14610767578063e5bdd1a814610783578063e8a3d485146107a1578063e985e9c5146107bf57610248565b8063a22cb465146106a9578063b012290b146106c5578063b3e482fa146106e1578063b88d4fde146106fd578063c1058b8f1461071957610248565b806395d89b41116100ff57806395d89b4114610603578063990e4c511461062157806399d786ec1461063d5780639c9e36981461065b578063a217fddf1461068b57610248565b8063831ff46214610539578063881ea9d11461056957806391d1485414610599578063938e3d7b146105c957806394b629fb146105e557610248565b80632f2ff15d116101c9578063441c0ca31161018d578063441c0ca31461045b5780634f558e79146104795780634f6ccce7146104a95780636352211e146104d957806370a082311461050957610248565b80632f2ff15d146103bb5780632f745c59146103d757806330176e131461040757806336568abe1461042357806342842e0e1461043f57610248565b80630bae1bd0116102105780630bae1bd01461030557806318160ddd1461033557806323b872dd14610353578063248a9ca31461036f5780632d8fbcad1461039f57610248565b80630138b3bf1461024d57806301ffc9a71461026b57806306fdde031461029b578063081812fc146102b9578063095ea7b3146102e9575b600080fd5b6102556107ef565b604051610262919061509f565b60405180910390f35b61028560048036038101906102809190614213565b610813565b6040516102929190615084565b60405180910390f35b6102a3610845565b6040516102b091906150d5565b60405180910390f35b6102d360048036038101906102ce91906142a6565b6108d7565b6040516102e09190614fcb565b60405180910390f35b61030360048036038101906102fe9190613ff5565b61095c565b005b61031f600480360381019061031a91906142a6565b610a74565b60405161032c9190615084565b60405180910390f35b61033d610a9e565b60405161034a9190615497565b60405180910390f35b61036d60048036038101906103689190613eef565b610aab565b005b61038960048036038101906103849190614172565b610b0b565b604051610396919061509f565b60405180910390f35b6103b960048036038101906103b491906142f8565b610b2b565b005b6103d560048036038101906103d0919061419b565b610c08565b005b6103f160048036038101906103ec9190613ff5565b610c31565b6040516103fe9190615497565b60405180910390f35b610421600480360381019061041c9190614265565b610cd6565b005b61043d6004803603810190610438919061419b565b610d5a565b005b61045960048036038101906104549190613eef565b610ddd565b005b610463610dfd565b604051610470919061509f565b60405180910390f35b610493600480360381019061048e91906142a6565b610e21565b6040516104a09190615084565b60405180910390f35b6104c360048036038101906104be91906142a6565b610e33565b6040516104d09190615497565b60405180910390f35b6104f360048036038101906104ee91906142a6565b610eca565b6040516105009190614fcb565b60405180910390f35b610523600480360381019061051e9190613e61565b610f7c565b6040516105309190615497565b60405180910390f35b610553600480360381019061054e91906141d7565b611034565b604051610560919061509f565b60405180910390f35b610583600480360381019061057e91906142a6565b61106c565b6040516105909190615497565b60405180910390f35b6105b360048036038101906105ae919061419b565b611089565b6040516105c09190615084565b60405180910390f35b6105e360048036038101906105de9190614265565b6110f4565b005b6105ed611178565b6040516105fa919061509f565b60405180910390f35b61060b61119c565b60405161061891906150d5565b60405180910390f35b61063b60048036038101906106369190614031565b61122e565b005b61064561131e565b604051610652919061509f565b60405180910390f35b610675600480360381019061067091906142a6565b611342565b6040516106829190615497565b60405180910390f35b61069361135f565b6040516106a0919061509f565b60405180910390f35b6106c360048036038101906106be9190613fb9565b611366565b005b6106df60048036038101906106da9190614080565b6114e7565b005b6106fb60048036038101906106f691906140e3565b61176d565b005b61071760048036038101906107129190613f3e565b611bfb565b005b610721611c5d565b60405161072e91906150ba565b60405180910390f35b610751600480360381019061074c91906142a6565b611c81565b60405161075e91906150d5565b60405180910390f35b610781600480360381019061077c919061419b565b611d28565b005b61078b611d51565b604051610798919061509f565b60405180910390f35b6107a9611d75565b6040516107b691906150d5565b60405180910390f35b6107d960048036038101906107d49190613eb3565b611e07565b6040516107e69190615084565b60405180910390f35b7fceebf77a833b30520287ddd9478ff51abbdffa30aa90a8d655dba0e8a79ce0c181565b600061081e82611e9b565b8061082e575061082d82611f7d565b5b8061083e575061083d82611ff7565b5b9050919050565b606060008054610854906157e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610880906157e7565b80156108cd5780601f106108a2576101008083540402835291602001916108cd565b820191906000526020600020905b8154815290600101906020018083116108b057829003601f168201915b5050505050905090565b60006108e282612071565b610921576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610918906152d7565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096782610eca565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cf90615397565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109f76120dd565b73ffffffffffffffffffffffffffffffffffffffff161480610a265750610a2581610a206120dd565b611e07565b5b610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c90615217565b60405180910390fd5b610a6f83836120e5565b505050565b6000600d600083815260200190815260200160002060009054906101000a900460ff169050919050565b6000600880549050905090565b610abc610ab66120dd565b8261219e565b610afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af2906153d7565b60405180910390fd5b610b0683838361227c565b505050565b6000600a6000838152602001908152602001600020600101549050919050565b610b557fad7c5bef027816a800da1736444fb58a807ef4c9603b7848673f7e3a68eb14a5846124d8565b610b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8b906153b7565b60405180910390fd5b610b9e82846124f5565b80600d600084815260200190815260200160002060006101000a81548160ff021916908315150217905550817fcd26ab8516a4725be7b2ea7ae931dfb377ac5cf653a5cecafe7b030e4007dbae3383604051610bfb929190615032565b60405180910390a2505050565b610c1182610b0b565b610c2281610c1d6120dd565b61254e565b610c2c83836125eb565b505050565b6000610c3c83610f7c565b8210610c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7490615117565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b7fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6610d0881610d036120dd565b61254e565b81600e9080519060200190610d1e929190613c46565b507f6ae07e2a08f067a8d5ece04d32173e8ecaac9a2273ca0e3db850c5460a5d616082604051610d4e91906150d5565b60405180910390a15050565b610d626120dd565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc690615477565b60405180910390fd5b610dd982826126cc565b5050565b610df883838360405180602001604052806000815250611bfb565b505050565b7f13600b294191fc92924bb3ce4b969c1e7e2bab8f4c93c3fc6d0a51733df3c06081565b6000610e2c82612071565b9050919050565b6000610e3d610a9e565b8210610e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e75906153f7565b60405180910390fd5b60088281548110610eb8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6a90615257565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe490615237565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600080838360405160200161104a929190614f41565b6040516020818303038152906040528051906020012090508091505092915050565b6000600b6000838152602001908152602001600020549050919050565b6000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b7fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6611126816111216120dd565b61254e565b81600f908051906020019061113c929190613c46565b507faf497693a87db12ca89131a31edbb3db4bb5702dfb284e8ae7427d185f09112d8260405161116c91906150d5565b60405180910390a15050565b7f2a80e1ef1d7842f27f2e6be0972bb708b9a135c38860dbe73c27c3486c34f4de81565b6060600180546111ab906157e7565b80601f01602080910402602001604051908101604052809291908181526020018280546111d7906157e7565b80156112245780601f106111f957610100808354040283529160200191611224565b820191906000526020600020905b81548152906001019060200180831161120757829003601f168201915b5050505050905090565b6112587fceebf77a833b30520287ddd9478ff51abbdffa30aa90a8d655dba0e8a79ce0c1836124d8565b611297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128e906153b7565b60405180910390fd5b6112a181836124f5565b60006112ac82610eca565b90506112c9818584604051806020016040528060008152506127ae565b818473ffffffffffffffffffffffffffffffffffffffff167fb698e31a2abee5824d0d7bcfd2339aead7f9e9ae413fba50bf554ff3fa470b7b336040516113109190614fcb565b60405180910390a350505050565b7fad7c5bef027816a800da1736444fb58a807ef4c9603b7848673f7e3a68eb14a581565b6000600c6000838152602001908152602001600020549050919050565b6000801b81565b61136e6120dd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d390615197565b60405180910390fd5b80600560006113e96120dd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114966120dd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114db9190615084565b60405180910390a35050565b6115117f13600b294191fc92924bb3ce4b969c1e7e2bab8f4c93c3fc6d0a51733df3c060846124d8565b611550576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611547906153b7565b60405180910390fd5b600061155b83610eca565b905060007f0000000000000000000000004832d668c2c75fa10c597fd19b116d2e1873ed6973ffffffffffffffffffffffffffffffffffffffff1663693ec85e6040518163ffffffff1660e01b81526004016115b6906152b7565b60206040518083038186803b1580156115ce57600080fd5b505afa1580156115e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116069190613e8a565b9050600d600085815260200190815260200160002060009054906101000a900460ff1615611669576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166090615357565b60405180910390fd5b6000600c600086815260200190815260200160002054905061168c81878461280a565b6116cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c2906152f7565b60405180910390fd5b6116d585876124f5565b83426116e191906155c4565b600c600087815260200190815260200160002081905550848773ffffffffffffffffffffffffffffffffffffffff167f14295458e7a580d6a197fb2ba945cb8e733fa6a9642a29909cdef9301bc3fa3e338760405161174192919061505b565b60405180910390a3611764838887604051806020016040528060008152506127ae565b50505050505050565b6117977f2a80e1ef1d7842f27f2e6be0972bb708b9a135c38860dbe73c27c3486c34f4de856124d8565b6117d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cd906153b7565b60405180910390fd5b6000600d600085815260200190815260200160002060009054906101000a900460ff1615611839576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611830906151d7565b60405180910390fd5b60007f0000000000000000000000004832d668c2c75fa10c597fd19b116d2e1873ed6973ffffffffffffffffffffffffffffffffffffffff1663693ec85e6040518163ffffffff1660e01b8152600401611892906152b7565b60206040518083038186803b1580156118aa57600080fd5b505afa1580156118be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118e29190613e8a565b905060006118ef86612071565b905080156119065761190186886124f5565b611974565b8173ffffffffffffffffffffffffffffffffffffffff16633b5667078888876040518463ffffffff1660e01b8152600401611943939291906154b2565b60006040518083038186803b15801561195b57600080fd5b505afa15801561196f573d6000803e3d6000fd5b505050505b6000600c6000888152602001908152602001600020549050854261199891906155c4565b600c600089815260200190815260200160002081905550868973ffffffffffffffffffffffffffffffffffffffff167f2e99fd66dad9611ac11d08dcbfdb417ac840074a8659831e928c70a92a6215e733896040516119f892919061505b565b60405180910390a381611a2c5787600b600089815260200190815260200160002081905550611a27898861295b565b611bf0565b611a37818985612979565b15611a9b57611a4587610eca565b93508873ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611a9657611a95848a89604051806020016040528060008152506127ae565b5b611bef565b611aa6818985612ab9565b15611b2957611ab487610eca565b93508873ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1b906151b7565b60405180910390fd5b611bee565b611b3287610eca565b9350611b3f81898561280a565b15611b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7690615277565b60405180910390fd5b8873ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be490615377565b60405180910390fd5b5b5b5b505050505050505050565b611c0c611c066120dd565b8361219e565b611c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c42906153d7565b60405180910390fd5b611c57848484846127ae565b50505050565b7f0000000000000000000000004832d668c2c75fa10c597fd19b116d2e1873ed6981565b6060611c8c82612071565b611ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc290615337565b60405180910390fd5b6000611cd5612b6b565b90506000815111611cf55760405180602001604052806000815250611d20565b80611cff84612bfd565b604051602001611d10929190614f6d565b6040516020818303038152906040525b915050919050565b611d3182610b0b565b611d4281611d3d6120dd565b61254e565b611d4c83836126cc565b505050565b7fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc681565b6060600f8054611d84906157e7565b80601f0160208091040260200160405190810160405280929190818152602001828054611db0906157e7565b8015611dfd5780601f10611dd257610100808354040283529160200191611dfd565b820191906000526020600020905b815481529060010190602001808311611de057829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f6657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611f765750611f7582612daa565b5b9050919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ff05750611fef82611e9b565b5b9050919050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061206a575061206982611f7d565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661215883610eca565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006121a982612071565b6121e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121df906151f7565b60405180910390fd5b60006121f383610eca565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061226257508373ffffffffffffffffffffffffffffffffffffffff1661224a846108d7565b73ffffffffffffffffffffffffffffffffffffffff16145b8061227357506122728185611e07565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661229c82610eca565b73ffffffffffffffffffffffffffffffffffffffff16146122f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e990615317565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612362576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235990615177565b60405180910390fd5b61236d838383612e14565b6123786000826120e5565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123c891906156a5565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461241f91906155c4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006124ed6124e78484611034565b33611089565b905092915050565b80600b6000848152602001908152602001600020541461254a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254190615437565b60405180910390fd5b5050565b6125588282611089565b6125e75761257d8173ffffffffffffffffffffffffffffffffffffffff1660146130e8565b61258b8360001c60206130e8565b60405160200161259c929190614f91565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125de91906150d5565b60405180910390fd5b5050565b6125f58282611089565b6126c8576001600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061266d6120dd565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6126d68282611089565b156127aa576000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061274f6120dd565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6127b984848461227c565b6127c5848484846133e2565b612804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fb90615137565b60405180910390fd5b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff16635575a455856040518263ffffffff1660e01b81526004016128469190615497565b60206040518083038186803b15801561285e57600080fd5b505afa158015612872573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061289691906142cf565b905060008373ffffffffffffffffffffffffffffffffffffffff166393059e2e866040518263ffffffff1660e01b81526004016128d39190615497565b60206040518083038186803b1580156128eb57600080fd5b505afa1580156128ff573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061292391906142cf565b90506000828761293391906155c4565b905080421015801561294f5750818161294c91906155c4565b42105b93505050509392505050565b612975828260405180602001604052806000815250613579565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff16635575a455856040518263ffffffff1660e01b81526004016129b59190615497565b60206040518083038186803b1580156129cd57600080fd5b505afa1580156129e1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a0591906142cf565b905060008373ffffffffffffffffffffffffffffffffffffffff166393059e2e866040518263ffffffff1660e01b8152600401612a429190615497565b60206040518083038186803b158015612a5a57600080fd5b505afa158015612a6e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a9291906142cf565b9050808287612aa191906155c4565b612aab91906155c4565b421015925050509392505050565b6000808273ffffffffffffffffffffffffffffffffffffffff16635575a455856040518263ffffffff1660e01b8152600401612af59190615497565b60206040518083038186803b158015612b0d57600080fd5b505afa158015612b21573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b4591906142cf565b9050844210158015612b6157508085612b5e91906155c4565b42105b9150509392505050565b6060600e8054612b7a906157e7565b80601f0160208091040260200160405190810160405280929190818152602001828054612ba6906157e7565b8015612bf35780601f10612bc857610100808354040283529160200191612bf3565b820191906000526020600020905b815481529060010190602001808311612bd657829003601f168201915b5050505050905090565b60606000821415612c45576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612da5565b600082905060005b60008214612c77578080612c6090615819565b915050600a82612c70919061561a565b9150612c4d565b60008167ffffffffffffffff811115612cb9577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612ceb5781602001600182028036833780820191505090505b5090505b60008514612d9e57600182612d0491906156a5565b9150600a85612d139190615876565b6030612d1f91906155c4565b60f81b818381518110612d5b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d97919061561a565b9450612cef565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000600b6000838152602001908152602001600020549050612e567fceebf77a833b30520287ddd9478ff51abbdffa30aa90a8d655dba0e8a79ce0c1826124d8565b15612e6c57612e668484846135d4565b506130e3565b600d600083815260200190815260200160002060009054906101000a900460ff1615612ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec490615417565b60405180910390fd5b60007f0000000000000000000000004832d668c2c75fa10c597fd19b116d2e1873ed6973ffffffffffffffffffffffffffffffffffffffff1663693ec85e6040518163ffffffff1660e01b8152600401612f26906152b7565b60206040518083038186803b158015612f3e57600080fd5b505afa158015612f52573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f769190613e8a565b90506000600c6000858152602001908152602001600020549050612f9b818484612ab9565b15612fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd290615457565b60405180910390fd5b612fe681848461280a565b15613059576130157f13600b294191fc92924bb3ce4b969c1e7e2bab8f4c93c3fc6d0a51733df3c060846124d8565b613054576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304b90615457565b60405180910390fd5b6130d4565b613064818484612979565b156130d3576130937f2a80e1ef1d7842f27f2e6be0972bb708b9a135c38860dbe73c27c3486c34f4de846124d8565b6130d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c990615457565b60405180910390fd5b5b5b6130df8686866135d4565b5050505b505050565b6060600060028360026130fb919061564b565b61310591906155c4565b67ffffffffffffffff811115613144577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156131765781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106131d4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061325e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261329e919061564b565b6132a891906155c4565b90505b6001811115613394577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110613310577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b82828151811061334d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061338d906157bd565b90506132ab565b50600084146133d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133cf906150f7565b60405180910390fd5b8091505092915050565b60006134038473ffffffffffffffffffffffffffffffffffffffff166136e8565b1561356c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261342c6120dd565b8786866040518563ffffffff1660e01b815260040161344e9493929190614fe6565b602060405180830381600087803b15801561346857600080fd5b505af192505050801561349957506040513d601f19601f82011682018060405250810190613496919061423c565b60015b61351c573d80600081146134c9576040519150601f19603f3d011682016040523d82523d6000602084013e6134ce565b606091505b50600081511415613514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161350b90615137565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613571565b600190505b949350505050565b61358383836136fb565b61359060008484846133e2565b6135cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135c690615137565b60405180910390fd5b505050565b6135df8383836138c9565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156136225761361d816138ce565b613661565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146136605761365f8382613917565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136a45761369f81613a84565b6136e3565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146136e2576136e18282613bc7565b5b5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561376b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161376290615297565b60405180910390fd5b61377481612071565b156137b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137ab90615157565b60405180910390fd5b6137c060008383612e14565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461381091906155c4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161392484610f7c565b61392e91906156a5565b9050600060076000848152602001908152602001600020549050818114613a13576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613a9891906156a5565b9050600060096000848152602001908152602001600020549050600060088381548110613aee577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613b36577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613bab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613bd283610f7c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054613c52906157e7565b90600052602060002090601f016020900481019282613c745760008555613cbb565b82601f10613c8d57805160ff1916838001178555613cbb565b82800160010185558215613cbb579182015b82811115613cba578251825591602001919060010190613c9f565b5b509050613cc89190613ccc565b5090565b5b80821115613ce5576000816000905550600101613ccd565b5090565b6000613cfc613cf784615521565b6154f0565b905082815260208101848484011115613d1457600080fd5b613d1f84828561577b565b509392505050565b6000613d3a613d3584615551565b6154f0565b905082815260208101848484011115613d5257600080fd5b613d5d84828561577b565b509392505050565b600081359050613d7481615974565b92915050565b600081519050613d8981615974565b92915050565b600081359050613d9e8161598b565b92915050565b600081359050613db3816159a2565b92915050565b600081359050613dc8816159b9565b92915050565b600081519050613ddd816159b9565b92915050565b600082601f830112613df457600080fd5b8135613e04848260208601613ce9565b91505092915050565b600082601f830112613e1e57600080fd5b8135613e2e848260208601613d27565b91505092915050565b600081359050613e46816159d0565b92915050565b600081519050613e5b816159d0565b92915050565b600060208284031215613e7357600080fd5b6000613e8184828501613d65565b91505092915050565b600060208284031215613e9c57600080fd5b6000613eaa84828501613d7a565b91505092915050565b60008060408385031215613ec657600080fd5b6000613ed485828601613d65565b9250506020613ee585828601613d65565b9150509250929050565b600080600060608486031215613f0457600080fd5b6000613f1286828701613d65565b9350506020613f2386828701613d65565b9250506040613f3486828701613e37565b9150509250925092565b60008060008060808587031215613f5457600080fd5b6000613f6287828801613d65565b9450506020613f7387828801613d65565b9350506040613f8487828801613e37565b925050606085013567ffffffffffffffff811115613fa157600080fd5b613fad87828801613de3565b91505092959194509250565b60008060408385031215613fcc57600080fd5b6000613fda85828601613d65565b9250506020613feb85828601613d8f565b9150509250929050565b6000806040838503121561400857600080fd5b600061401685828601613d65565b925050602061402785828601613e37565b9150509250929050565b60008060006060848603121561404657600080fd5b600061405486828701613d65565b935050602061406586828701613e37565b925050604061407686828701613e37565b9150509250925092565b6000806000806080858703121561409657600080fd5b60006140a487828801613d65565b94505060206140b587828801613e37565b93505060406140c687828801613e37565b92505060606140d787828801613e37565b91505092959194509250565b600080600080600060a086880312156140fb57600080fd5b600061410988828901613d65565b955050602061411a88828901613e37565b945050604061412b88828901613e37565b935050606061413c88828901613e37565b925050608086013567ffffffffffffffff81111561415957600080fd5b61416588828901613de3565b9150509295509295909350565b60006020828403121561418457600080fd5b600061419284828501613da4565b91505092915050565b600080604083850312156141ae57600080fd5b60006141bc85828601613da4565b92505060206141cd85828601613d65565b9150509250929050565b600080604083850312156141ea57600080fd5b60006141f885828601613da4565b925050602061420985828601613e37565b9150509250929050565b60006020828403121561422557600080fd5b600061423384828501613db9565b91505092915050565b60006020828403121561424e57600080fd5b600061425c84828501613dce565b91505092915050565b60006020828403121561427757600080fd5b600082013567ffffffffffffffff81111561429157600080fd5b61429d84828501613e0d565b91505092915050565b6000602082840312156142b857600080fd5b60006142c684828501613e37565b91505092915050565b6000602082840312156142e157600080fd5b60006142ef84828501613e4c565b91505092915050565b60008060006060848603121561430d57600080fd5b600061431b86828701613e37565b935050602061432c86828701613e37565b925050604061433d86828701613d8f565b9150509250925092565b614350816156d9565b82525050565b61435f816156eb565b82525050565b61436e816156f7565b82525050565b614385614380826156f7565b615862565b82525050565b600061439682615581565b6143a08185615597565b93506143b081856020860161578a565b6143b981615963565b840191505092915050565b6143cd81615757565b82525050565b60006143de8261558c565b6143e881856155a8565b93506143f881856020860161578a565b61440181615963565b840191505092915050565b60006144178261558c565b61442181856155b9565b935061443181856020860161578a565b80840191505092915050565b600061444a6020836155a8565b91507f537472696e67733a20686578206c656e67746820696e73756666696369656e746000830152602082019050919050565b600061448a602b836155a8565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006144f06032836155a8565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000614556601c836155a8565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006145966024836155a8565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006145fc6019836155a8565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061463c6036836155a8565b91507f446f6d61696e3a2043616e206f6e6c7920726567697374657220746f206f776e60008301527f657220647572696e6720677261636520706572696f64000000000000000000006020830152604082019050919050565b60006146a26028836155a8565b91507f446f6d61696e3a2043616e6e6f742072656769737465722073757370656e646560008301527f6420646f6d61696e0000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614708602c836155a8565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061476e6038836155a8565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006147d4602a836155a8565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061483a6029836155a8565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006148a0602d836155a8565b91507f446f6d61696e3a2043616e6e6f7420726567697374657220647572696e67207260008301527f656379636c6520706572696f64000000000000000000000000000000000000006020830152604082019050919050565b60006149066020836155a8565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006149466009836155a8565b91507f4e616d65737061636500000000000000000000000000000000000000000000006000830152602082019050919050565b6000614986602c836155a8565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006149ec601c836155a8565b91507f446f6d61696e3a204e6f742072656379636c696e6720706572696f64000000006000830152602082019050919050565b6000614a2c6029836155a8565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a92602f836155a8565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614af86027836155a8565b91507f446f6d61696e3a2043616e6e6f742072656379636c652073757370656e64656460008301527f20646f6d61696e000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614b5e6034836155a8565b91507f446f6d61696e3a204f6e6c79206f776e65722063616e206d6f6469667920726560008301527f67697374726174696f6e206966206c65617365640000000000000000000000006020830152604082019050919050565b6000614bc46021836155a8565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c2a601b836155a8565b91507f446f6d61696e3a20496e76616c6964207065726d697373696f6e7300000000006000830152602082019050919050565b6000614c6a6031836155a8565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614cd0602c836155a8565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000614d366017836155b9565b91507f416363657373436f6e74726f6c3a206163636f756e74200000000000000000006000830152601782019050919050565b6000614d766028836155a8565b91507f446f6d61696e3a2043616e6e6f74207472616e736665722073757370656e646560008301527f6420646f6d61696e0000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ddc601a836155a8565b91507f446f6d61696e3a204e616d657370616365206d69736d617463680000000000006000830152602082019050919050565b6000614e1c6026836155a8565b91507f446f6d61696e3a2043616e6e6f74207472616e7366657220657870697265642060008301527f646f6d61696e00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614e826011836155b9565b91507f206973206d697373696e6720726f6c65200000000000000000000000000000006000830152601182019050919050565b6000614ec2602f836155a8565b91507f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008301527f20726f6c657320666f722073656c6600000000000000000000000000000000006020830152604082019050919050565b614f248161574d565b82525050565b614f3b614f368261574d565b61586c565b82525050565b6000614f4d8285614374565b602082019150614f5d8284614f2a565b6020820191508190509392505050565b6000614f79828561440c565b9150614f85828461440c565b91508190509392505050565b6000614f9c82614d29565b9150614fa8828561440c565b9150614fb382614e75565b9150614fbf828461440c565b91508190509392505050565b6000602082019050614fe06000830184614347565b92915050565b6000608082019050614ffb6000830187614347565b6150086020830186614347565b6150156040830185614f1b565b8181036060830152615027818461438b565b905095945050505050565b60006040820190506150476000830185614347565b6150546020830184614356565b9392505050565b60006040820190506150706000830185614347565b61507d6020830184614f1b565b9392505050565b60006020820190506150996000830184614356565b92915050565b60006020820190506150b46000830184614365565b92915050565b60006020820190506150cf60008301846143c4565b92915050565b600060208201905081810360008301526150ef81846143d3565b905092915050565b600060208201905081810360008301526151108161443d565b9050919050565b600060208201905081810360008301526151308161447d565b9050919050565b60006020820190508181036000830152615150816144e3565b9050919050565b6000602082019050818103600083015261517081614549565b9050919050565b6000602082019050818103600083015261519081614589565b9050919050565b600060208201905081810360008301526151b0816145ef565b9050919050565b600060208201905081810360008301526151d08161462f565b9050919050565b600060208201905081810360008301526151f081614695565b9050919050565b60006020820190508181036000830152615210816146fb565b9050919050565b6000602082019050818103600083015261523081614761565b9050919050565b60006020820190508181036000830152615250816147c7565b9050919050565b600060208201905081810360008301526152708161482d565b9050919050565b6000602082019050818103600083015261529081614893565b9050919050565b600060208201905081810360008301526152b0816148f9565b9050919050565b600060208201905081810360008301526152d081614939565b9050919050565b600060208201905081810360008301526152f081614979565b9050919050565b60006020820190508181036000830152615310816149df565b9050919050565b6000602082019050818103600083015261533081614a1f565b9050919050565b6000602082019050818103600083015261535081614a85565b9050919050565b6000602082019050818103600083015261537081614aeb565b9050919050565b6000602082019050818103600083015261539081614b51565b9050919050565b600060208201905081810360008301526153b081614bb7565b9050919050565b600060208201905081810360008301526153d081614c1d565b9050919050565b600060208201905081810360008301526153f081614c5d565b9050919050565b6000602082019050818103600083015261541081614cc3565b9050919050565b6000602082019050818103600083015261543081614d69565b9050919050565b6000602082019050818103600083015261545081614dcf565b9050919050565b6000602082019050818103600083015261547081614e0f565b9050919050565b6000602082019050818103600083015261549081614eb5565b9050919050565b60006020820190506154ac6000830184614f1b565b92915050565b60006060820190506154c76000830186614f1b565b6154d46020830185614f1b565b81810360408301526154e6818461438b565b9050949350505050565b6000604051905081810181811067ffffffffffffffff8211171561551757615516615934565b5b8060405250919050565b600067ffffffffffffffff82111561553c5761553b615934565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561556c5761556b615934565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006155cf8261574d565b91506155da8361574d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561560f5761560e6158a7565b5b828201905092915050565b60006156258261574d565b91506156308361574d565b9250826156405761563f6158d6565b5b828204905092915050565b60006156568261574d565b91506156618361574d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561569a576156996158a7565b5b828202905092915050565b60006156b08261574d565b91506156bb8361574d565b9250828210156156ce576156cd6158a7565b5b828203905092915050565b60006156e48261572d565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061576282615769565b9050919050565b60006157748261572d565b9050919050565b82818337600083830152505050565b60005b838110156157a857808201518184015260208101905061578d565b838111156157b7576000848401525b50505050565b60006157c88261574d565b915060008214156157dc576157db6158a7565b5b600182039050919050565b600060028204905060018216806157ff57607f821691505b6020821081141561581357615812615905565b5b50919050565b60006158248261574d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615857576158566158a7565b5b600182019050919050565b6000819050919050565b6000819050919050565b60006158818261574d565b915061588c8361574d565b92508261589c5761589b6158d6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61597d816156d9565b811461598857600080fd5b50565b615994816156eb565b811461599f57600080fd5b50565b6159ab816156f7565b81146159b657600080fd5b50565b6159c281615701565b81146159cd57600080fd5b50565b6159d98161574d565b81146159e457600080fd5b5056fea2646970667358221220bf5855f7287e9b8c9df690fcdd4b6e820b343cf07104c3dca238500f1eac89bf64736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000004832d668c2c75fa10c597fd19b116d2e1873ed69000000000000000000000000000000000000000000000000000000000000000c4176767920446f6d61696e73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044156565900000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Avvy Domains
Arg [1] : symbol (string): AVVY
Arg [2] : contractRegistry (address): 0x4832D668C2c75Fa10C597FD19B116d2E1873ED69

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000004832d668c2c75fa10c597fd19b116d2e1873ed69
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [4] : 4176767920446f6d61696e730000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4156565900000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

53310:10113:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54333:57;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62879:318;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31802:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33361:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32884:411;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58248:122;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45545:113;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34251:339;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11707:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57904:338;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12092:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45213:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55122:139;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13140:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34661:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54231:56;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54905:92;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45735:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31496:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31226:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57082:188;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57637:132;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10592:139;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55267:136;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54115:54;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31971:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61400:387;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53971:57;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57775:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9683:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33654:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60552:842;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58428:2118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34917:328;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54432:60;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32146:334;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12484:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53875:52;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55656:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34020:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54333:57;54376:14;54333:57;:::o;62879:318::-;63005:4;63034:37;63059:11;63034:24;:37::i;:::-;:95;;;;63082:47;63117:11;63082:34;:47::i;:::-;63034:95;:150;;;;63140:44;63172:11;63140:31;:44::i;:::-;63034:150;63018:173;;62879:318;;;:::o;31802:100::-;31856:13;31889:5;31882:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31802:100;:::o;33361:221::-;33437:7;33465:16;33473:7;33465;:16::i;:::-;33457:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;33550:15;:24;33566:7;33550:24;;;;;;;;;;;;;;;;;;;;;33543:31;;33361:221;;;:::o;32884:411::-;32965:13;32981:23;32996:7;32981:14;:23::i;:::-;32965:39;;33029:5;33023:11;;:2;:11;;;;33015:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;33123:5;33107:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;33132:37;33149:5;33156:12;:10;:12::i;:::-;33132:16;:37::i;:::-;33107:62;33085:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;33266:21;33275:2;33279:7;33266:8;:21::i;:::-;32884:411;;;:::o;58248:122::-;58316:14;58346:12;:18;58359:4;58346:18;;;;;;;;;;;;;;;;;;;;;58339:25;;58248:122;;;:::o;45545:113::-;45606:7;45633:10;:17;;;;45626:24;;45545:113;:::o;34251:339::-;34446:41;34465:12;:10;:12::i;:::-;34479:7;34446:18;:41::i;:::-;34438:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;34554:28;34564:4;34570:2;34574:7;34554:9;:28::i;:::-;34251:339;;;:::o;11707:123::-;11773:7;11800:6;:12;11807:4;11800:12;;;;;;;;;;;:22;;;11793:29;;11707:123;;;:::o;57904:338::-;58016:51;54014:14;58055:11;58016:20;:51::i;:::-;58008:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;58106:45;58133:4;58139:11;58106:26;:45::i;:::-;58179:9;58158:12;:18;58171:4;58158:18;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;58220:4;58200:36;58208:10;58226:9;58200:36;;;;;;;:::i;:::-;;;;;;;;57904:338;;;:::o;12092:147::-;12175:18;12188:4;12175:12;:18::i;:::-;10174:30;10185:4;10191:12;:10;:12::i;:::-;10174:10;:30::i;:::-;12206:25:::1;12217:4;12223:7;12206:10;:25::i;:::-;12092:147:::0;;;:::o;45213:256::-;45310:7;45346:23;45363:5;45346:16;:23::i;:::-;45338:5;:31;45330:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;45435:12;:19;45448:5;45435:19;;;;;;;;;;;;;;;:26;45455:5;45435:26;;;;;;;;;;;;45428:33;;45213:256;;;;:::o;55122:139::-;53913:14;10174:30;10185:4;10191:12;:10;:12::i;:::-;10174:10;:30::i;:::-;55220:3:::1;55204:13;:19;;;;;;;;;;;;:::i;:::-;;55235:20;55251:3;55235:20;;;;;;:::i;:::-;;;;;;;;55122:139:::0;;:::o;13140:218::-;13247:12;:10;:12::i;:::-;13236:23;;:7;:23;;;13228:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;13324:26;13336:4;13342:7;13324:11;:26::i;:::-;13140:218;;:::o;34661:185::-;34799:39;34816:4;34822:2;34826:7;34799:39;;;;;;;;;;;;:16;:39::i;:::-;34661:185;;;:::o;54231:56::-;54273:14;54231:56;:::o;54905:92::-;54958:4;54978:13;54986:4;54978:7;:13::i;:::-;54971:20;;54905:92;;;:::o;45735:233::-;45810:7;45846:30;:28;:30::i;:::-;45838:5;:38;45830:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;45943:10;45954:5;45943:17;;;;;;;;;;;;;;;;;;;;;;;;45936:24;;45735:233;;;:::o;31496:239::-;31568:7;31588:13;31604:7;:16;31612:7;31604:16;;;;;;;;;;;;;;;;;;;;;31588:32;;31656:1;31639:19;;:5;:19;;;;31631:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31722:5;31715:12;;;31496:239;;;:::o;31226:208::-;31298:7;31343:1;31326:19;;:5;:19;;;;31318:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;31410:9;:16;31420:5;31410:16;;;;;;;;;;;;;;;;31403:23;;31226:208;;;:::o;57082:188::-;57167:7;57183:13;57226:4;57232:11;57209:35;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57199:46;;;;;;57183:62;;57259:5;57252:12;;;57082:188;;;;:::o;57637:132::-;57712:7;57735:18;:28;57754:8;57735:28;;;;;;;;;;;;57728:35;;57637:132;;;:::o;10592:139::-;10670:4;10694:6;:12;10701:4;10694:12;;;;;;;;;;;:20;;:29;10715:7;10694:29;;;;;;;;;;;;;;;;;;;;;;;;;10687:36;;10592:139;;;;:::o;55267:136::-;53913:14;10174:30;10185:4;10191:12;:10;:12::i;:::-;10174:10;:30::i;:::-;55363:3:::1;55348:12;:18;;;;;;;;;;;;:::i;:::-;;55378:19;55393:3;55378:19;;;;;;:::i;:::-;;;;;;;;55267:136:::0;;:::o;54115:54::-;54155:14;54115:54;:::o;31971:104::-;32027:13;32060:7;32053:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31971:104;:::o;61400:387::-;61516:51;54376:14;61555:11;61516:20;:51::i;:::-;61500:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;61619:45;61646:4;61652:11;61619:26;:45::i;:::-;61671:13;61687;61695:4;61687:7;:13::i;:::-;61671:29;;61707:34;61721:5;61728:2;61732:4;61707:34;;;;;;;;;;;;:13;:34::i;:::-;61776:4;61772:2;61753:28;;;61760:10;61753:28;;;;;;:::i;:::-;;;;;;;;61400:387;;;;:::o;53971:57::-;54014:14;53971:57;:::o;57775:123::-;57848:7;57871:15;:21;57887:4;57871:21;;;;;;;;;;;;57864:28;;57775:123;;;:::o;9683:49::-;9728:4;9683:49;;;:::o;33654:295::-;33769:12;:10;:12::i;:::-;33757:24;;:8;:24;;;;33749:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;33869:8;33824:18;:32;33843:12;:10;:12::i;:::-;33824:32;;;;;;;;;;;;;;;:42;33857:8;33824:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33922:8;33893:48;;33908:12;:10;:12::i;:::-;33893:48;;;33932:8;33893:48;;;;;;:::i;:::-;;;;;;;;33654:295;;:::o;60552:842::-;60694:50;54273:14;60732:11;60694:20;:50::i;:::-;60678:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;60798:13;60814;60822:4;60814:7;:13::i;:::-;60798:29;;60834:28;60884:17;:21;;;:34;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;60834:85;;60937:12;:18;60950:4;60937:18;;;;;;;;;;;;;;;;;;;;;60936:19;60928:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;61006:22;61031:15;:21;61047:4;61031:21;;;;;;;;;;;;61006:46;;61077:56;61094:14;61110:11;61123:9;61077:16;:56::i;:::-;61061:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;61188:45;61215:4;61221:11;61188:26;:45::i;:::-;61282:11;61264:15;:29;;;;:::i;:::-;61240:15;:21;61256:4;61240:21;;;;;;;;;;;:53;;;;61329:4;61325:2;61305:42;;;61313:10;61335:11;61305:42;;;;;;;:::i;:::-;;;;;;;;61354:34;61368:5;61375:2;61379:4;61354:34;;;;;;;;;;;;:13;:34::i;:::-;60552:842;;;;;;;:::o;58428:2118::-;58616:48;54155:14;58652:11;58616:20;:48::i;:::-;58600:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;58718:13;58747:12;:18;58760:4;58747:18;;;;;;;;;;;;;;;;;;;;;58746:19;58738:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;58819:28;58869:17;:21;;;:34;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58819:85;;58911:16;58930:13;58938:4;58930:7;:13::i;:::-;58911:32;;58954:11;58950:193;;;58976:45;59003:4;59009:11;58976:26;:45::i;:::-;58950:193;;;59044:9;:19;;;59074:11;59096:4;59111:15;59044:91;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58950:193;59151:22;59176:15;:21;59192:4;59176:21;;;;;;;;;;;;59151:46;;59246:11;59228:15;:29;;;;:::i;:::-;59204:15;:21;59220:4;59204:21;;;;;;;;;;;:53;;;;59302:4;59290:10;59269:51;;;59278:10;59308:11;59269:51;;;;;;;:::i;:::-;;;;;;;;59420:11;59415:1126;;59469:11;59442:18;:24;59461:4;59442:24;;;;;;;;;;;:38;;;;59489:27;59499:10;59511:4;59489:9;:27::i;:::-;59415:1126;;;59635:50;59646:14;59662:11;59675:9;59635:10;:50::i;:::-;59631:910;;;59704:13;59712:4;59704:7;:13::i;:::-;59696:21;;59739:10;59730:19;;:5;:19;;;59726:88;;59762:42;59776:5;59783:10;59795:4;59762:42;;;;;;;;;;;;:13;:42::i;:::-;59726:88;59631:910;;;59936:54;59951:14;59967:11;59980:9;59936:14;:54::i;:::-;59932:609;;;60009:13;60017:4;60009:7;:13::i;:::-;60001:21;;60048:10;60039:19;;:5;:19;;;60031:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;59932:609;;;60303:13;60311:4;60303:7;:13::i;:::-;60295:21;;60334:56;60351:14;60367:11;60380:9;60334:16;:56::i;:::-;60333:57;60325:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;60466:10;60457:19;;:5;:19;;;60449:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;59932:609;59631:910;59415:1126;58428:2118;;;;;;;;;:::o;34917:328::-;35092:41;35111:12;:10;:12::i;:::-;35125:7;35092:18;:41::i;:::-;35084:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;35198:39;35212:4;35218:2;35222:7;35231:5;35198:13;:39::i;:::-;34917:328;;;;:::o;54432:60::-;;;:::o;32146:334::-;32219:13;32253:16;32261:7;32253;:16::i;:::-;32245:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;32334:21;32358:10;:8;:10::i;:::-;32334:34;;32410:1;32392:7;32386:21;:25;:86;;;;;;;;;;;;;;;;;32438:7;32447:18;:7;:16;:18::i;:::-;32421:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32386:86;32379:93;;;32146:334;;;:::o;12484:149::-;12568:18;12581:4;12568:12;:18::i;:::-;10174:30;10185:4;10191:12;:10;:12::i;:::-;10174:10;:30::i;:::-;12599:26:::1;12611:4;12617:7;12599:11;:26::i;:::-;12484:149:::0;;;:::o;53875:52::-;53913:14;53875:52;:::o;55656:93::-;55702:13;55731:12;55724:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55656:93;:::o;34020:164::-;34117:4;34141:18;:25;34160:5;34141:25;;;;;;;;;;;;;;;:35;34167:8;34141:35;;;;;;;;;;;;;;;;;;;;;;;;;34134:42;;34020:164;;;;:::o;30857:305::-;30959:4;31011:25;30996:40;;;:11;:40;;;;:105;;;;31068:33;31053:48;;;:11;:48;;;;30996:105;:158;;;;31118:36;31142:11;31118:23;:36::i;:::-;30996:158;30976:178;;30857:305;;;:::o;44905:224::-;45007:4;45046:35;45031:50;;;:11;:50;;;;:90;;;;45085:36;45109:11;45085:23;:36::i;:::-;45031:90;45024:97;;44905:224;;;:::o;10296:204::-;10381:4;10420:32;10405:47;;;:11;:47;;;;:87;;;;10456:36;10480:11;10456:23;:36::i;:::-;10405:87;10398:94;;10296:204;;;:::o;36755:127::-;36820:4;36872:1;36844:30;;:7;:16;36852:7;36844:16;;;;;;;;;;;;;;;;;;;;;:30;;;;36837:37;;36755:127;;;:::o;3674:98::-;3727:7;3754:10;3747:17;;3674:98;:::o;40737:174::-;40839:2;40812:15;:24;40828:7;40812:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;40895:7;40891:2;40857:46;;40866:23;40881:7;40866:14;:23::i;:::-;40857:46;;;;;;;;;;;;40737:174;;:::o;37049:348::-;37142:4;37167:16;37175:7;37167;:16::i;:::-;37159:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;37243:13;37259:23;37274:7;37259:14;:23::i;:::-;37243:39;;37312:5;37301:16;;:7;:16;;;:51;;;;37345:7;37321:31;;:20;37333:7;37321:11;:20::i;:::-;:31;;;37301:51;:87;;;;37356:32;37373:5;37380:7;37356:16;:32::i;:::-;37301:87;37293:96;;;37049:348;;;;:::o;40041:578::-;40200:4;40173:31;;:23;40188:7;40173:14;:23::i;:::-;:31;;;40165:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;40283:1;40269:16;;:2;:16;;;;40261:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;40339:39;40360:4;40366:2;40370:7;40339:20;:39::i;:::-;40443:29;40460:1;40464:7;40443:8;:29::i;:::-;40504:1;40485:9;:15;40495:4;40485:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;40533:1;40516:9;:13;40526:2;40516:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;40564:2;40545:7;:16;40553:7;40545:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;40603:7;40599:2;40584:27;;40593:4;40584:27;;;;;;;;;;;;40041:578;;;:::o;57276:173::-;57364:4;57384:59;57392:38;57412:4;57418:11;57392:19;:38::i;:::-;57432:10;57384:7;:59::i;:::-;57377:66;;57276:173;;;;:::o;57455:176::-;57583:11;57555:18;:24;57574:4;57555:24;;;;;;;;;;;;:39;57547:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;57455:176;;:::o;11021:497::-;11102:22;11110:4;11116:7;11102;:22::i;:::-;11097:414;;11290:41;11318:7;11290:41;;11328:2;11290:19;:41::i;:::-;11404:38;11432:4;11424:13;;11439:2;11404:19;:38::i;:::-;11195:270;;;;;;;;;:::i;:::-;;;;;;;;;;;;;11141:358;;;;;;;;;;;:::i;:::-;;;;;;;;11097:414;11021:497;;:::o;14444:229::-;14519:22;14527:4;14533:7;14519;:22::i;:::-;14514:152;;14590:4;14558:6;:12;14565:4;14558:12;;;;;;;;;;;:20;;:29;14579:7;14558:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;14641:12;:10;:12::i;:::-;14614:40;;14632:7;14614:40;;14626:4;14614:40;;;;;;;;;;14514:152;14444:229;;:::o;14681:230::-;14756:22;14764:4;14770:7;14756;:22::i;:::-;14752:152;;;14827:5;14795:6;:12;14802:4;14795:12;;;;;;;;;;;:20;;:29;14816:7;14795:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;14879:12;:10;:12::i;:::-;14852:40;;14870:7;14852:40;;14864:4;14852:40;;;;;;;;;;14752:152;14681:230;;:::o;36127:315::-;36284:28;36294:4;36300:2;36304:7;36284:9;:28::i;:::-;36331:48;36354:4;36360:2;36364:7;36373:5;36331:22;:48::i;:::-;36323:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;36127:315;;;;:::o;56173:496::-;56317:4;56330:25;56358:9;:30;;;56389:11;56358:43;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56330:71;;56408:27;56438:9;:32;;;56471:11;56438:45;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56408:75;;56490:25;56535:17;56518:14;:34;;;;:::i;:::-;56490:62;;56585:17;56566:15;:36;;:97;;;;;56644:19;56624:17;:39;;;;:::i;:::-;56606:15;:57;56566:97;56559:104;;;;;56173:496;;;;;:::o;37739:110::-;37815:26;37825:2;37829:7;37815:26;;;;;;;;;;;;:9;:26::i;:::-;37739:110;;:::o;56677:399::-;56815:4;56828:25;56856:9;:30;;;56887:11;56856:43;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56828:71;;56906:27;56936:9;:32;;;56969:11;56936:45;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56906:75;;57051:19;57031:17;57014:14;:34;;;;:::i;:::-;:56;;;;:::i;:::-;56995:15;:75;;56988:82;;;;56677:399;;;;;:::o;55832:335::-;55974:4;55987:25;56015:9;:30;;;56046:11;56015:43;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;55987:71;;56091:14;56072:15;:33;;:89;;;;;56144:17;56127:14;:34;;;;:::i;:::-;56109:15;:52;56072:89;56065:96;;;55832:335;;;;;:::o;55542:108::-;55602:13;55631;55624:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55542:108;:::o;4203:723::-;4259:13;4489:1;4480:5;:10;4476:53;;;4507:10;;;;;;;;;;;;;;;;;;;;;4476:53;4539:12;4554:5;4539:20;;4570:14;4595:78;4610:1;4602:4;:9;4595:78;;4628:8;;;;;:::i;:::-;;;;4659:2;4651:10;;;;;:::i;:::-;;;4595:78;;;4683:19;4715:6;4705:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4683:39;;4733:154;4749:1;4740:5;:10;4733:154;;4777:1;4767:11;;;;;:::i;:::-;;;4844:2;4836:5;:10;;;;:::i;:::-;4823:2;:24;;;;:::i;:::-;4810:39;;4793:6;4800;4793:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;4873:2;4864:11;;;;;:::i;:::-;;;4733:154;;;4911:6;4897:21;;;;;4203:723;;;;:::o;7615:157::-;7700:4;7739:25;7724:40;;;:11;:40;;;;7717:47;;7615:157;;;:::o;61793:1080::-;61942:19;61964:18;:24;61983:4;61964:24;;;;;;;;;;;;61942:46;;61999:51;54376:14;62038:11;61999:20;:51::i;:::-;61995:123;;;62068:42;62095:4;62101:2;62105:4;62068:26;:42::i;:::-;62061:49;;;61995:123;62133:12;:18;62146:4;62133:18;;;;;;;;;;;;;;;;;;;;;62132:19;62124:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;62203:28;62253:17;:21;;;:34;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;62203:85;;62295:22;62320:15;:21;62336:4;62320:21;;;;;;;;;;;;62295:46;;62357:54;62372:14;62388:11;62401:9;62357:14;:54::i;:::-;62356:55;62348:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;62465:56;62482:14;62498:11;62511:9;62465:16;:56::i;:::-;62461:358;;;62540:50;54273:14;62578:11;62540:20;:50::i;:::-;62532:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;62461:358;;;62651:50;62662:14;62678:11;62691:9;62651:10;:50::i;:::-;62647:172;;;62720:48;54155:14;62756:11;62720:20;:48::i;:::-;62712:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;62647:172;62461:358;62825:42;62852:4;62858:2;62862:4;62825:26;:42::i;:::-;61793:1080;;;;;;;:::o;5504:451::-;5579:13;5605:19;5650:1;5641:6;5637:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;5627:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5605:47;;5663:15;:6;5670:1;5663:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;5689;:6;5696:1;5689:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;5720:9;5745:1;5736:6;5732:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;5720:26;;5715:135;5752:1;5748;:5;5715:135;;;5787:12;5808:3;5800:5;:11;5787:25;;;;;;;;;;;;;;;;;;5775:6;5782:1;5775:9;;;;;;;;;;;;;;;;;;;:37;;;;;;;;;;;5837:1;5827:11;;;;;5755:3;;;;:::i;:::-;;;5715:135;;;;5877:1;5868:5;:10;5860:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;5940:6;5926:21;;;5504:451;;;;:::o;41476:799::-;41631:4;41652:15;:2;:13;;;:15::i;:::-;41648:620;;;41704:2;41688:36;;;41725:12;:10;:12::i;:::-;41739:4;41745:7;41754:5;41688:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41684:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41947:1;41930:6;:13;:18;41926:272;;;41973:60;;;;;;;;;;:::i;:::-;;;;;;;;41926:272;42148:6;42142:13;42133:6;42129:2;42125:15;42118:38;41684:529;41821:41;;;41811:51;;;:6;:51;;;;41804:58;;;;;41648:620;42252:4;42245:11;;41476:799;;;;;;;:::o;38076:321::-;38206:18;38212:2;38216:7;38206:5;:18::i;:::-;38257:54;38288:1;38292:2;38296:7;38305:5;38257:22;:54::i;:::-;38235:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;38076:321;;;:::o;46581:589::-;46725:45;46752:4;46758:2;46762:7;46725:26;:45::i;:::-;46803:1;46787:18;;:4;:18;;;46783:187;;;46822:40;46854:7;46822:31;:40::i;:::-;46783:187;;;46892:2;46884:10;;:4;:10;;;46880:90;;46911:47;46944:4;46950:7;46911:32;:47::i;:::-;46880:90;46783:187;46998:1;46984:16;;:2;:16;;;46980:183;;;47017:45;47054:7;47017:36;:45::i;:::-;46980:183;;;47090:4;47084:10;;:2;:10;;;47080:83;;47111:40;47139:2;47143:7;47111:27;:40::i;:::-;47080:83;46980:183;46581:589;;;:::o;22192:387::-;22252:4;22460:12;22527:7;22515:20;22507:28;;22570:1;22563:4;:8;22556:15;;;22192:387;;;:::o;38733:382::-;38827:1;38813:16;;:2;:16;;;;38805:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;38886:16;38894:7;38886;:16::i;:::-;38885:17;38877:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;38948:45;38977:1;38981:2;38985:7;38948:20;:45::i;:::-;39023:1;39006:9;:13;39016:2;39006:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;39054:2;39035:7;:16;39043:7;39035:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;39099:7;39095:2;39074:33;;39091:1;39074:33;;;;;;;;;;;;38733:382;;:::o;42847:126::-;;;;:::o;47893:164::-;47997:10;:17;;;;47970:15;:24;47986:7;47970:24;;;;;;;;;;;:44;;;;48025:10;48041:7;48025:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47893:164;:::o;48684:988::-;48950:22;49000:1;48975:22;48992:4;48975:16;:22::i;:::-;:26;;;;:::i;:::-;48950:51;;49012:18;49033:17;:26;49051:7;49033:26;;;;;;;;;;;;49012:47;;49180:14;49166:10;:28;49162:328;;49211:19;49233:12;:18;49246:4;49233:18;;;;;;;;;;;;;;;:34;49252:14;49233:34;;;;;;;;;;;;49211:56;;49317:11;49284:12;:18;49297:4;49284:18;;;;;;;;;;;;;;;:30;49303:10;49284:30;;;;;;;;;;;:44;;;;49434:10;49401:17;:30;49419:11;49401:30;;;;;;;;;;;:43;;;;49162:328;;49586:17;:26;49604:7;49586:26;;;;;;;;;;;49579:33;;;49630:12;:18;49643:4;49630:18;;;;;;;;;;;;;;;:34;49649:14;49630:34;;;;;;;;;;;49623:41;;;48684:988;;;;:::o;49967:1079::-;50220:22;50265:1;50245:10;:17;;;;:21;;;;:::i;:::-;50220:46;;50277:18;50298:15;:24;50314:7;50298:24;;;;;;;;;;;;50277:45;;50649:19;50671:10;50682:14;50671:26;;;;;;;;;;;;;;;;;;;;;;;;50649:48;;50735:11;50710:10;50721;50710:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;50846:10;50815:15;:28;50831:11;50815:28;;;;;;;;;;;:41;;;;50987:15;:24;51003:7;50987:24;;;;;;;;;;;50980:31;;;51022:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49967:1079;;;;:::o;47471:221::-;47556:14;47573:20;47590:2;47573:16;:20::i;:::-;47556:37;;47631:7;47604:12;:16;47617:2;47604:16;;;;;;;;;;;;;;;:24;47621:6;47604:24;;;;;;;;;;;:34;;;;47678:6;47649:17;:26;47667:7;47649:26;;;;;;;;;;;:35;;;;47471:221;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:143::-;;938:6;932:13;923:22;;954:33;981:5;954:33;:::i;:::-;913:80;;;;:::o;999:133::-;;1080:6;1067:20;1058:29;;1096:30;1120:5;1096:30;:::i;:::-;1048:84;;;;:::o;1138:139::-;;1222:6;1209:20;1200:29;;1238:33;1265:5;1238:33;:::i;:::-;1190:87;;;;:::o;1283:137::-;;1366:6;1353:20;1344:29;;1382:32;1408:5;1382:32;:::i;:::-;1334:86;;;;:::o;1426:141::-;;1513:6;1507:13;1498:22;;1529:32;1555:5;1529:32;:::i;:::-;1488:79;;;;:::o;1586:271::-;;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:78;1847:3;1839:6;1832:4;1824:6;1820:17;1773:78;:::i;:::-;1764:87;;1647:210;;;;;:::o;1877:273::-;;1982:3;1975:4;1967:6;1963:17;1959:27;1949:2;;2000:1;1997;1990:12;1949:2;2040:6;2027:20;2065:79;2140:3;2132:6;2125:4;2117:6;2113:17;2065:79;:::i;:::-;2056:88;;1939:211;;;;;:::o;2156:139::-;;2240:6;2227:20;2218:29;;2256:33;2283:5;2256:33;:::i;:::-;2208:87;;;;:::o;2301:143::-;;2389:6;2383:13;2374:22;;2405:33;2432:5;2405:33;:::i;:::-;2364:80;;;;:::o;2450:262::-;;2558:2;2546:9;2537:7;2533:23;2529:32;2526:2;;;2574:1;2571;2564:12;2526:2;2617:1;2642:53;2687:7;2678:6;2667:9;2663:22;2642:53;:::i;:::-;2632:63;;2588:117;2516:196;;;;:::o;2718:284::-;;2837:2;2825:9;2816:7;2812:23;2808:32;2805:2;;;2853:1;2850;2843:12;2805:2;2896:1;2921:64;2977:7;2968:6;2957:9;2953:22;2921:64;:::i;:::-;2911:74;;2867:128;2795:207;;;;:::o;3008:407::-;;;3133:2;3121:9;3112:7;3108:23;3104:32;3101:2;;;3149:1;3146;3139:12;3101:2;3192:1;3217:53;3262:7;3253:6;3242:9;3238:22;3217:53;:::i;:::-;3207:63;;3163:117;3319:2;3345:53;3390:7;3381:6;3370:9;3366:22;3345:53;:::i;:::-;3335:63;;3290:118;3091:324;;;;;:::o;3421:552::-;;;;3563:2;3551:9;3542:7;3538:23;3534:32;3531:2;;;3579:1;3576;3569:12;3531:2;3622:1;3647:53;3692:7;3683:6;3672:9;3668:22;3647:53;:::i;:::-;3637:63;;3593:117;3749:2;3775:53;3820:7;3811:6;3800:9;3796:22;3775:53;:::i;:::-;3765:63;;3720:118;3877:2;3903:53;3948:7;3939:6;3928:9;3924:22;3903:53;:::i;:::-;3893:63;;3848:118;3521:452;;;;;:::o;3979:809::-;;;;;4147:3;4135:9;4126:7;4122:23;4118:33;4115:2;;;4164:1;4161;4154:12;4115:2;4207:1;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4178:117;4334:2;4360:53;4405:7;4396:6;4385:9;4381:22;4360:53;:::i;:::-;4350:63;;4305:118;4462:2;4488:53;4533:7;4524:6;4513:9;4509:22;4488:53;:::i;:::-;4478:63;;4433:118;4618:2;4607:9;4603:18;4590:32;4649:18;4641:6;4638:30;4635:2;;;4681:1;4678;4671:12;4635:2;4709:62;4763:7;4754:6;4743:9;4739:22;4709:62;:::i;:::-;4699:72;;4561:220;4105:683;;;;;;;:::o;4794:401::-;;;4916:2;4904:9;4895:7;4891:23;4887:32;4884:2;;;4932:1;4929;4922:12;4884:2;4975:1;5000:53;5045:7;5036:6;5025:9;5021:22;5000:53;:::i;:::-;4990:63;;4946:117;5102:2;5128:50;5170:7;5161:6;5150:9;5146:22;5128:50;:::i;:::-;5118:60;;5073:115;4874:321;;;;;:::o;5201:407::-;;;5326:2;5314:9;5305:7;5301:23;5297:32;5294:2;;;5342:1;5339;5332:12;5294:2;5385:1;5410:53;5455:7;5446:6;5435:9;5431:22;5410:53;:::i;:::-;5400:63;;5356:117;5512:2;5538:53;5583:7;5574:6;5563:9;5559:22;5538:53;:::i;:::-;5528:63;;5483:118;5284:324;;;;;:::o;5614:552::-;;;;5756:2;5744:9;5735:7;5731:23;5727:32;5724:2;;;5772:1;5769;5762:12;5724:2;5815:1;5840:53;5885:7;5876:6;5865:9;5861:22;5840:53;:::i;:::-;5830:63;;5786:117;5942:2;5968:53;6013:7;6004:6;5993:9;5989:22;5968:53;:::i;:::-;5958:63;;5913:118;6070:2;6096:53;6141:7;6132:6;6121:9;6117:22;6096:53;:::i;:::-;6086:63;;6041:118;5714:452;;;;;:::o;6172:698::-;;;;;6331:3;6319:9;6310:7;6306:23;6302:33;6299:2;;;6348:1;6345;6338:12;6299:2;6391:1;6416:53;6461:7;6452:6;6441:9;6437:22;6416:53;:::i;:::-;6406:63;;6362:117;6518:2;6544:53;6589:7;6580:6;6569:9;6565:22;6544:53;:::i;:::-;6534:63;;6489:118;6646:2;6672:53;6717:7;6708:6;6697:9;6693:22;6672:53;:::i;:::-;6662:63;;6617:118;6774:2;6800:53;6845:7;6836:6;6825:9;6821:22;6800:53;:::i;:::-;6790:63;;6745:118;6289:581;;;;;;;:::o;6876:955::-;;;;;;7061:3;7049:9;7040:7;7036:23;7032:33;7029:2;;;7078:1;7075;7068:12;7029:2;7121:1;7146:53;7191:7;7182:6;7171:9;7167:22;7146:53;:::i;:::-;7136:63;;7092:117;7248:2;7274:53;7319:7;7310:6;7299:9;7295:22;7274:53;:::i;:::-;7264:63;;7219:118;7376:2;7402:53;7447:7;7438:6;7427:9;7423:22;7402:53;:::i;:::-;7392:63;;7347:118;7504:2;7530:53;7575:7;7566:6;7555:9;7551:22;7530:53;:::i;:::-;7520:63;;7475:118;7660:3;7649:9;7645:19;7632:33;7692:18;7684:6;7681:30;7678:2;;;7724:1;7721;7714:12;7678:2;7752:62;7806:7;7797:6;7786:9;7782:22;7752:62;:::i;:::-;7742:72;;7603:221;7019:812;;;;;;;;:::o;7837:262::-;;7945:2;7933:9;7924:7;7920:23;7916:32;7913:2;;;7961:1;7958;7951:12;7913:2;8004:1;8029:53;8074:7;8065:6;8054:9;8050:22;8029:53;:::i;:::-;8019:63;;7975:117;7903:196;;;;:::o;8105:407::-;;;8230:2;8218:9;8209:7;8205:23;8201:32;8198:2;;;8246:1;8243;8236:12;8198:2;8289:1;8314:53;8359:7;8350:6;8339:9;8335:22;8314:53;:::i;:::-;8304:63;;8260:117;8416:2;8442:53;8487:7;8478:6;8467:9;8463:22;8442:53;:::i;:::-;8432:63;;8387:118;8188:324;;;;;:::o;8518:407::-;;;8643:2;8631:9;8622:7;8618:23;8614:32;8611:2;;;8659:1;8656;8649:12;8611:2;8702:1;8727:53;8772:7;8763:6;8752:9;8748:22;8727:53;:::i;:::-;8717:63;;8673:117;8829:2;8855:53;8900:7;8891:6;8880:9;8876:22;8855:53;:::i;:::-;8845:63;;8800:118;8601:324;;;;;:::o;8931:260::-;;9038:2;9026:9;9017:7;9013:23;9009:32;9006:2;;;9054:1;9051;9044:12;9006:2;9097:1;9122:52;9166:7;9157:6;9146:9;9142:22;9122:52;:::i;:::-;9112:62;;9068:116;8996:195;;;;:::o;9197:282::-;;9315:2;9303:9;9294:7;9290:23;9286:32;9283:2;;;9331:1;9328;9321:12;9283:2;9374:1;9399:63;9454:7;9445:6;9434:9;9430:22;9399:63;:::i;:::-;9389:73;;9345:127;9273:206;;;;:::o;9485:375::-;;9603:2;9591:9;9582:7;9578:23;9574:32;9571:2;;;9619:1;9616;9609:12;9571:2;9690:1;9679:9;9675:17;9662:31;9720:18;9712:6;9709:30;9706:2;;;9752:1;9749;9742:12;9706:2;9780:63;9835:7;9826:6;9815:9;9811:22;9780:63;:::i;:::-;9770:73;;9633:220;9561:299;;;;:::o;9866:262::-;;9974:2;9962:9;9953:7;9949:23;9945:32;9942:2;;;9990:1;9987;9980:12;9942:2;10033:1;10058:53;10103:7;10094:6;10083:9;10079:22;10058:53;:::i;:::-;10048:63;;10004:117;9932:196;;;;:::o;10134:284::-;;10253:2;10241:9;10232:7;10228:23;10224:32;10221:2;;;10269:1;10266;10259:12;10221:2;10312:1;10337:64;10393:7;10384:6;10373:9;10369:22;10337:64;:::i;:::-;10327:74;;10283:128;10211:207;;;;:::o;10424:546::-;;;;10563:2;10551:9;10542:7;10538:23;10534:32;10531:2;;;10579:1;10576;10569:12;10531:2;10622:1;10647:53;10692:7;10683:6;10672:9;10668:22;10647:53;:::i;:::-;10637:63;;10593:117;10749:2;10775:53;10820:7;10811:6;10800:9;10796:22;10775:53;:::i;:::-;10765:63;;10720:118;10877:2;10903:50;10945:7;10936:6;10925:9;10921:22;10903:50;:::i;:::-;10893:60;;10848:115;10521:449;;;;;:::o;10976:118::-;11063:24;11081:5;11063:24;:::i;:::-;11058:3;11051:37;11041:53;;:::o;11100:109::-;11181:21;11196:5;11181:21;:::i;:::-;11176:3;11169:34;11159:50;;:::o;11215:118::-;11302:24;11320:5;11302:24;:::i;:::-;11297:3;11290:37;11280:53;;:::o;11339:157::-;11444:45;11464:24;11482:5;11464:24;:::i;:::-;11444:45;:::i;:::-;11439:3;11432:58;11422:74;;:::o;11502:360::-;;11616:38;11648:5;11616:38;:::i;:::-;11670:70;11733:6;11728:3;11670:70;:::i;:::-;11663:77;;11749:52;11794:6;11789:3;11782:4;11775:5;11771:16;11749:52;:::i;:::-;11826:29;11848:6;11826:29;:::i;:::-;11821:3;11817:39;11810:46;;11592:270;;;;;:::o;11868:199::-;11989:71;12054:5;11989:71;:::i;:::-;11984:3;11977:84;11967:100;;:::o;12073:364::-;;12189:39;12222:5;12189:39;:::i;:::-;12244:71;12308:6;12303:3;12244:71;:::i;:::-;12237:78;;12324:52;12369:6;12364:3;12357:4;12350:5;12346:16;12324:52;:::i;:::-;12401:29;12423:6;12401:29;:::i;:::-;12396:3;12392:39;12385:46;;12165:272;;;;;:::o;12443:377::-;;12577:39;12610:5;12577:39;:::i;:::-;12632:89;12714:6;12709:3;12632:89;:::i;:::-;12625:96;;12730:52;12775:6;12770:3;12763:4;12756:5;12752:16;12730:52;:::i;:::-;12807:6;12802:3;12798:16;12791:23;;12553:267;;;;;:::o;12826:330::-;;12989:67;13053:2;13048:3;12989:67;:::i;:::-;12982:74;;13086:34;13082:1;13077:3;13073:11;13066:55;13147:2;13142:3;13138:12;13131:19;;12972:184;;;:::o;13162:375::-;;13325:67;13389:2;13384:3;13325:67;:::i;:::-;13318:74;;13422:34;13418:1;13413:3;13409:11;13402:55;13488:13;13483:2;13478:3;13474:12;13467:35;13528:2;13523:3;13519:12;13512:19;;13308:229;;;:::o;13543:382::-;;13706:67;13770:2;13765:3;13706:67;:::i;:::-;13699:74;;13803:34;13799:1;13794:3;13790:11;13783:55;13869:20;13864:2;13859:3;13855:12;13848:42;13916:2;13911:3;13907:12;13900:19;;13689:236;;;:::o;13931:326::-;;14094:67;14158:2;14153:3;14094:67;:::i;:::-;14087:74;;14191:30;14187:1;14182:3;14178:11;14171:51;14248:2;14243:3;14239:12;14232:19;;14077:180;;;:::o;14263:368::-;;14426:67;14490:2;14485:3;14426:67;:::i;:::-;14419:74;;14523:34;14519:1;14514:3;14510:11;14503:55;14589:6;14584:2;14579:3;14575:12;14568:28;14622:2;14617:3;14613:12;14606:19;;14409:222;;;:::o;14637:323::-;;14800:67;14864:2;14859:3;14800:67;:::i;:::-;14793:74;;14897:27;14893:1;14888:3;14884:11;14877:48;14951:2;14946:3;14942:12;14935:19;;14783:177;;;:::o;14966:386::-;;15129:67;15193:2;15188:3;15129:67;:::i;:::-;15122:74;;15226:34;15222:1;15217:3;15213:11;15206:55;15292:24;15287:2;15282:3;15278:12;15271:46;15343:2;15338:3;15334:12;15327:19;;15112:240;;;:::o;15358:372::-;;15521:67;15585:2;15580:3;15521:67;:::i;:::-;15514:74;;15618:34;15614:1;15609:3;15605:11;15598:55;15684:10;15679:2;15674:3;15670:12;15663:32;15721:2;15716:3;15712:12;15705:19;;15504:226;;;:::o;15736:376::-;;15899:67;15963:2;15958:3;15899:67;:::i;:::-;15892:74;;15996:34;15992:1;15987:3;15983:11;15976:55;16062:14;16057:2;16052:3;16048:12;16041:36;16103:2;16098:3;16094:12;16087:19;;15882:230;;;:::o;16118:388::-;;16281:67;16345:2;16340:3;16281:67;:::i;:::-;16274:74;;16378:34;16374:1;16369:3;16365:11;16358:55;16444:26;16439:2;16434:3;16430:12;16423:48;16497:2;16492:3;16488:12;16481:19;;16264:242;;;:::o;16512:374::-;;16675:67;16739:2;16734:3;16675:67;:::i;:::-;16668:74;;16772:34;16768:1;16763:3;16759:11;16752:55;16838:12;16833:2;16828:3;16824:12;16817:34;16877:2;16872:3;16868:12;16861:19;;16658:228;;;:::o;16892:373::-;;17055:67;17119:2;17114:3;17055:67;:::i;:::-;17048:74;;17152:34;17148:1;17143:3;17139:11;17132:55;17218:11;17213:2;17208:3;17204:12;17197:33;17256:2;17251:3;17247:12;17240:19;;17038:227;;;:::o;17271:377::-;;17434:67;17498:2;17493:3;17434:67;:::i;:::-;17427:74;;17531:34;17527:1;17522:3;17518:11;17511:55;17597:15;17592:2;17587:3;17583:12;17576:37;17639:2;17634:3;17630:12;17623:19;;17417:231;;;:::o;17654:330::-;;17817:67;17881:2;17876:3;17817:67;:::i;:::-;17810:74;;17914:34;17910:1;17905:3;17901:11;17894:55;17975:2;17970:3;17966:12;17959:19;;17800:184;;;:::o;17990:306::-;;18153:66;18217:1;18212:3;18153:66;:::i;:::-;18146:73;;18249:11;18245:1;18240:3;18236:11;18229:32;18287:2;18282:3;18278:12;18271:19;;18136:160;;;:::o;18302:376::-;;18465:67;18529:2;18524:3;18465:67;:::i;:::-;18458:74;;18562:34;18558:1;18553:3;18549:11;18542:55;18628:14;18623:2;18618:3;18614:12;18607:36;18669:2;18664:3;18660:12;18653:19;;18448:230;;;:::o;18684:326::-;;18847:67;18911:2;18906:3;18847:67;:::i;:::-;18840:74;;18944:30;18940:1;18935:3;18931:11;18924:51;19001:2;18996:3;18992:12;18985:19;;18830:180;;;:::o;19016:373::-;;19179:67;19243:2;19238:3;19179:67;:::i;:::-;19172:74;;19276:34;19272:1;19267:3;19263:11;19256:55;19342:11;19337:2;19332:3;19328:12;19321:33;19380:2;19375:3;19371:12;19364:19;;19162:227;;;:::o;19395:379::-;;19558:67;19622:2;19617:3;19558:67;:::i;:::-;19551:74;;19655:34;19651:1;19646:3;19642:11;19635:55;19721:17;19716:2;19711:3;19707:12;19700:39;19765:2;19760:3;19756:12;19749:19;;19541:233;;;:::o;19780:371::-;;19943:67;20007:2;20002:3;19943:67;:::i;:::-;19936:74;;20040:34;20036:1;20031:3;20027:11;20020:55;20106:9;20101:2;20096:3;20092:12;20085:31;20142:2;20137:3;20133:12;20126:19;;19926:225;;;:::o;20157:384::-;;20320:67;20384:2;20379:3;20320:67;:::i;:::-;20313:74;;20417:34;20413:1;20408:3;20404:11;20397:55;20483:22;20478:2;20473:3;20469:12;20462:44;20532:2;20527:3;20523:12;20516:19;;20303:238;;;:::o;20547:365::-;;20710:67;20774:2;20769:3;20710:67;:::i;:::-;20703:74;;20807:34;20803:1;20798:3;20794:11;20787:55;20873:3;20868:2;20863:3;20859:12;20852:25;20903:2;20898:3;20894:12;20887:19;;20693:219;;;:::o;20918:325::-;;21081:67;21145:2;21140:3;21081:67;:::i;:::-;21074:74;;21178:29;21174:1;21169:3;21165:11;21158:50;21234:2;21229:3;21225:12;21218:19;;21064:179;;;:::o;21249:381::-;;21412:67;21476:2;21471:3;21412:67;:::i;:::-;21405:74;;21509:34;21505:1;21500:3;21496:11;21489:55;21575:19;21570:2;21565:3;21561:12;21554:41;21621:2;21616:3;21612:12;21605:19;;21395:235;;;:::o;21636:376::-;;21799:67;21863:2;21858:3;21799:67;:::i;:::-;21792:74;;21896:34;21892:1;21887:3;21883:11;21876:55;21962:14;21957:2;21952:3;21948:12;21941:36;22003:2;21998:3;21994:12;21987:19;;21782:230;;;:::o;22018:357::-;;22199:85;22281:2;22276:3;22199:85;:::i;:::-;22192:92;;22314:25;22310:1;22305:3;22301:11;22294:46;22366:2;22361:3;22357:12;22350:19;;22182:193;;;:::o;22381:372::-;;22544:67;22608:2;22603:3;22544:67;:::i;:::-;22537:74;;22641:34;22637:1;22632:3;22628:11;22621:55;22707:10;22702:2;22697:3;22693:12;22686:32;22744:2;22739:3;22735:12;22728:19;;22527:226;;;:::o;22759:324::-;;22922:67;22986:2;22981:3;22922:67;:::i;:::-;22915:74;;23019:28;23015:1;23010:3;23006:11;22999:49;23074:2;23069:3;23065:12;23058:19;;22905:178;;;:::o;23089:370::-;;23252:67;23316:2;23311:3;23252:67;:::i;:::-;23245:74;;23349:34;23345:1;23340:3;23336:11;23329:55;23415:8;23410:2;23405:3;23401:12;23394:30;23450:2;23445:3;23441:12;23434:19;;23235:224;;;:::o;23465:351::-;;23646:85;23728:2;23723:3;23646:85;:::i;:::-;23639:92;;23761:19;23757:1;23752:3;23748:11;23741:40;23807:2;23802:3;23798:12;23791:19;;23629:187;;;:::o;23822:379::-;;23985:67;24049:2;24044:3;23985:67;:::i;:::-;23978:74;;24082:34;24078:1;24073:3;24069:11;24062:55;24148:17;24143:2;24138:3;24134:12;24127:39;24192:2;24187:3;24183:12;24176:19;;23968:233;;;:::o;24207:118::-;24294:24;24312:5;24294:24;:::i;:::-;24289:3;24282:37;24272:53;;:::o;24331:157::-;24436:45;24456:24;24474:5;24456:24;:::i;:::-;24436:45;:::i;:::-;24431:3;24424:58;24414:74;;:::o;24494:397::-;;24649:75;24720:3;24711:6;24649:75;:::i;:::-;24749:2;24744:3;24740:12;24733:19;;24762:75;24833:3;24824:6;24762:75;:::i;:::-;24862:2;24857:3;24853:12;24846:19;;24882:3;24875:10;;24638:253;;;;;:::o;24897:435::-;;25099:95;25190:3;25181:6;25099:95;:::i;:::-;25092:102;;25211:95;25302:3;25293:6;25211:95;:::i;:::-;25204:102;;25323:3;25316:10;;25081:251;;;;;:::o;25338:967::-;;25742:148;25886:3;25742:148;:::i;:::-;25735:155;;25907:95;25998:3;25989:6;25907:95;:::i;:::-;25900:102;;26019:148;26163:3;26019:148;:::i;:::-;26012:155;;26184:95;26275:3;26266:6;26184:95;:::i;:::-;26177:102;;26296:3;26289:10;;25724:581;;;;;:::o;26311:222::-;;26442:2;26431:9;26427:18;26419:26;;26455:71;26523:1;26512:9;26508:17;26499:6;26455:71;:::i;:::-;26409:124;;;;:::o;26539:640::-;;26772:3;26761:9;26757:19;26749:27;;26786:71;26854:1;26843:9;26839:17;26830:6;26786:71;:::i;:::-;26867:72;26935:2;26924:9;26920:18;26911:6;26867:72;:::i;:::-;26949;27017:2;27006:9;27002:18;26993:6;26949:72;:::i;:::-;27068:9;27062:4;27058:20;27053:2;27042:9;27038:18;27031:48;27096:76;27167:4;27158:6;27096:76;:::i;:::-;27088:84;;26739:440;;;;;;;:::o;27185:320::-;;27338:2;27327:9;27323:18;27315:26;;27351:71;27419:1;27408:9;27404:17;27395:6;27351:71;:::i;:::-;27432:66;27494:2;27483:9;27479:18;27470:6;27432:66;:::i;:::-;27305:200;;;;;:::o;27511:332::-;;27670:2;27659:9;27655:18;27647:26;;27683:71;27751:1;27740:9;27736:17;27727:6;27683:71;:::i;:::-;27764:72;27832:2;27821:9;27817:18;27808:6;27764:72;:::i;:::-;27637:206;;;;;:::o;27849:210::-;;27974:2;27963:9;27959:18;27951:26;;27987:65;28049:1;28038:9;28034:17;28025:6;27987:65;:::i;:::-;27941:118;;;;:::o;28065:222::-;;28196:2;28185:9;28181:18;28173:26;;28209:71;28277:1;28266:9;28262:17;28253:6;28209:71;:::i;:::-;28163:124;;;;:::o;28293:290::-;;28458:2;28447:9;28443:18;28435:26;;28471:105;28573:1;28562:9;28558:17;28549:6;28471:105;:::i;:::-;28425:158;;;;:::o;28589:313::-;;28740:2;28729:9;28725:18;28717:26;;28789:9;28783:4;28779:20;28775:1;28764:9;28760:17;28753:47;28817:78;28890:4;28881:6;28817:78;:::i;:::-;28809:86;;28707:195;;;;:::o;28908:419::-;;29112:2;29101:9;29097:18;29089:26;;29161:9;29155:4;29151:20;29147:1;29136:9;29132:17;29125:47;29189:131;29315:4;29189:131;:::i;:::-;29181:139;;29079:248;;;:::o;29333:419::-;;29537:2;29526:9;29522:18;29514:26;;29586:9;29580:4;29576:20;29572:1;29561:9;29557:17;29550:47;29614:131;29740:4;29614:131;:::i;:::-;29606:139;;29504:248;;;:::o;29758:419::-;;29962:2;29951:9;29947:18;29939:26;;30011:9;30005:4;30001:20;29997:1;29986:9;29982:17;29975:47;30039:131;30165:4;30039:131;:::i;:::-;30031:139;;29929:248;;;:::o;30183:419::-;;30387:2;30376:9;30372:18;30364:26;;30436:9;30430:4;30426:20;30422:1;30411:9;30407:17;30400:47;30464:131;30590:4;30464:131;:::i;:::-;30456:139;;30354:248;;;:::o;30608:419::-;;30812:2;30801:9;30797:18;30789:26;;30861:9;30855:4;30851:20;30847:1;30836:9;30832:17;30825:47;30889:131;31015:4;30889:131;:::i;:::-;30881:139;;30779:248;;;:::o;31033:419::-;;31237:2;31226:9;31222:18;31214:26;;31286:9;31280:4;31276:20;31272:1;31261:9;31257:17;31250:47;31314:131;31440:4;31314:131;:::i;:::-;31306:139;;31204:248;;;:::o;31458:419::-;;31662:2;31651:9;31647:18;31639:26;;31711:9;31705:4;31701:20;31697:1;31686:9;31682:17;31675:47;31739:131;31865:4;31739:131;:::i;:::-;31731:139;;31629:248;;;:::o;31883:419::-;;32087:2;32076:9;32072:18;32064:26;;32136:9;32130:4;32126:20;32122:1;32111:9;32107:17;32100:47;32164:131;32290:4;32164:131;:::i;:::-;32156:139;;32054:248;;;:::o;32308:419::-;;32512:2;32501:9;32497:18;32489:26;;32561:9;32555:4;32551:20;32547:1;32536:9;32532:17;32525:47;32589:131;32715:4;32589:131;:::i;:::-;32581:139;;32479:248;;;:::o;32733:419::-;;32937:2;32926:9;32922:18;32914:26;;32986:9;32980:4;32976:20;32972:1;32961:9;32957:17;32950:47;33014:131;33140:4;33014:131;:::i;:::-;33006:139;;32904:248;;;:::o;33158:419::-;;33362:2;33351:9;33347:18;33339:26;;33411:9;33405:4;33401:20;33397:1;33386:9;33382:17;33375:47;33439:131;33565:4;33439:131;:::i;:::-;33431:139;;33329:248;;;:::o;33583:419::-;;33787:2;33776:9;33772:18;33764:26;;33836:9;33830:4;33826:20;33822:1;33811:9;33807:17;33800:47;33864:131;33990:4;33864:131;:::i;:::-;33856:139;;33754:248;;;:::o;34008:419::-;;34212:2;34201:9;34197:18;34189:26;;34261:9;34255:4;34251:20;34247:1;34236:9;34232:17;34225:47;34289:131;34415:4;34289:131;:::i;:::-;34281:139;;34179:248;;;:::o;34433:419::-;;34637:2;34626:9;34622:18;34614:26;;34686:9;34680:4;34676:20;34672:1;34661:9;34657:17;34650:47;34714:131;34840:4;34714:131;:::i;:::-;34706:139;;34604:248;;;:::o;34858:419::-;;35062:2;35051:9;35047:18;35039:26;;35111:9;35105:4;35101:20;35097:1;35086:9;35082:17;35075:47;35139:131;35265:4;35139:131;:::i;:::-;35131:139;;35029:248;;;:::o;35283:419::-;;35487:2;35476:9;35472:18;35464:26;;35536:9;35530:4;35526:20;35522:1;35511:9;35507:17;35500:47;35564:131;35690:4;35564:131;:::i;:::-;35556:139;;35454:248;;;:::o;35708:419::-;;35912:2;35901:9;35897:18;35889:26;;35961:9;35955:4;35951:20;35947:1;35936:9;35932:17;35925:47;35989:131;36115:4;35989:131;:::i;:::-;35981:139;;35879:248;;;:::o;36133:419::-;;36337:2;36326:9;36322:18;36314:26;;36386:9;36380:4;36376:20;36372:1;36361:9;36357:17;36350:47;36414:131;36540:4;36414:131;:::i;:::-;36406:139;;36304:248;;;:::o;36558:419::-;;36762:2;36751:9;36747:18;36739:26;;36811:9;36805:4;36801:20;36797:1;36786:9;36782:17;36775:47;36839:131;36965:4;36839:131;:::i;:::-;36831:139;;36729:248;;;:::o;36983:419::-;;37187:2;37176:9;37172:18;37164:26;;37236:9;37230:4;37226:20;37222:1;37211:9;37207:17;37200:47;37264:131;37390:4;37264:131;:::i;:::-;37256:139;;37154:248;;;:::o;37408:419::-;;37612:2;37601:9;37597:18;37589:26;;37661:9;37655:4;37651:20;37647:1;37636:9;37632:17;37625:47;37689:131;37815:4;37689:131;:::i;:::-;37681:139;;37579:248;;;:::o;37833:419::-;;38037:2;38026:9;38022:18;38014:26;;38086:9;38080:4;38076:20;38072:1;38061:9;38057:17;38050:47;38114:131;38240:4;38114:131;:::i;:::-;38106:139;;38004:248;;;:::o;38258:419::-;;38462:2;38451:9;38447:18;38439:26;;38511:9;38505:4;38501:20;38497:1;38486:9;38482:17;38475:47;38539:131;38665:4;38539:131;:::i;:::-;38531:139;;38429:248;;;:::o;38683:419::-;;38887:2;38876:9;38872:18;38864:26;;38936:9;38930:4;38926:20;38922:1;38911:9;38907:17;38900:47;38964:131;39090:4;38964:131;:::i;:::-;38956:139;;38854:248;;;:::o;39108:419::-;;39312:2;39301:9;39297:18;39289:26;;39361:9;39355:4;39351:20;39347:1;39336:9;39332:17;39325:47;39389:131;39515:4;39389:131;:::i;:::-;39381:139;;39279:248;;;:::o;39533:419::-;;39737:2;39726:9;39722:18;39714:26;;39786:9;39780:4;39776:20;39772:1;39761:9;39757:17;39750:47;39814:131;39940:4;39814:131;:::i;:::-;39806:139;;39704:248;;;:::o;39958:419::-;;40162:2;40151:9;40147:18;40139:26;;40211:9;40205:4;40201:20;40197:1;40186:9;40182:17;40175:47;40239:131;40365:4;40239:131;:::i;:::-;40231:139;;40129:248;;;:::o;40383:419::-;;40587:2;40576:9;40572:18;40564:26;;40636:9;40630:4;40626:20;40622:1;40611:9;40607:17;40600:47;40664:131;40790:4;40664:131;:::i;:::-;40656:139;;40554:248;;;:::o;40808:419::-;;41012:2;41001:9;40997:18;40989:26;;41061:9;41055:4;41051:20;41047:1;41036:9;41032:17;41025:47;41089:131;41215:4;41089:131;:::i;:::-;41081:139;;40979:248;;;:::o;41233:222::-;;41364:2;41353:9;41349:18;41341:26;;41377:71;41445:1;41434:9;41430:17;41421:6;41377:71;:::i;:::-;41331:124;;;;:::o;41461:529::-;;41666:2;41655:9;41651:18;41643:26;;41679:71;41747:1;41736:9;41732:17;41723:6;41679:71;:::i;:::-;41760:72;41828:2;41817:9;41813:18;41804:6;41760:72;:::i;:::-;41879:9;41873:4;41869:20;41864:2;41853:9;41849:18;41842:48;41907:76;41978:4;41969:6;41907:76;:::i;:::-;41899:84;;41633:357;;;;;;:::o;41996:283::-;;42062:2;42056:9;42046:19;;42104:4;42096:6;42092:17;42211:6;42199:10;42196:22;42175:18;42163:10;42160:34;42157:62;42154:2;;;42222:18;;:::i;:::-;42154:2;42262:10;42258:2;42251:22;42036:243;;;;:::o;42285:331::-;;42436:18;42428:6;42425:30;42422:2;;;42458:18;;:::i;:::-;42422:2;42543:4;42539:9;42532:4;42524:6;42520:17;42516:33;42508:41;;42604:4;42598;42594:15;42586:23;;42351:265;;;:::o;42622:332::-;;42774:18;42766:6;42763:30;42760:2;;;42796:18;;:::i;:::-;42760:2;42881:4;42877:9;42870:4;42862:6;42858:17;42854:33;42846:41;;42942:4;42936;42932:15;42924:23;;42689:265;;;:::o;42960:98::-;;43045:5;43039:12;43029:22;;43018:40;;;:::o;43064:99::-;;43150:5;43144:12;43134:22;;43123:40;;;:::o;43169:168::-;;43286:6;43281:3;43274:19;43326:4;43321:3;43317:14;43302:29;;43264:73;;;;:::o;43343:169::-;;43461:6;43456:3;43449:19;43501:4;43496:3;43492:14;43477:29;;43439:73;;;;:::o;43518:148::-;;43657:3;43642:18;;43632:34;;;;:::o;43672:305::-;;43731:20;43749:1;43731:20;:::i;:::-;43726:25;;43765:20;43783:1;43765:20;:::i;:::-;43760:25;;43919:1;43851:66;43847:74;43844:1;43841:81;43838:2;;;43925:18;;:::i;:::-;43838:2;43969:1;43966;43962:9;43955:16;;43716:261;;;;:::o;43983:185::-;;44040:20;44058:1;44040:20;:::i;:::-;44035:25;;44074:20;44092:1;44074:20;:::i;:::-;44069:25;;44113:1;44103:2;;44118:18;;:::i;:::-;44103:2;44160:1;44157;44153:9;44148:14;;44025:143;;;;:::o;44174:348::-;;44237:20;44255:1;44237:20;:::i;:::-;44232:25;;44271:20;44289:1;44271:20;:::i;:::-;44266:25;;44459:1;44391:66;44387:74;44384:1;44381:81;44376:1;44369:9;44362:17;44358:105;44355:2;;;44466:18;;:::i;:::-;44355:2;44514:1;44511;44507:9;44496:20;;44222:300;;;;:::o;44528:191::-;;44588:20;44606:1;44588:20;:::i;:::-;44583:25;;44622:20;44640:1;44622:20;:::i;:::-;44617:25;;44661:1;44658;44655:8;44652:2;;;44666:18;;:::i;:::-;44652:2;44711:1;44708;44704:9;44696:17;;44573:146;;;;:::o;44725:96::-;;44791:24;44809:5;44791:24;:::i;:::-;44780:35;;44770:51;;;:::o;44827:90::-;;44904:5;44897:13;44890:21;44879:32;;44869:48;;;:::o;44923:77::-;;44989:5;44978:16;;44968:32;;;:::o;45006:149::-;;45082:66;45075:5;45071:78;45060:89;;45050:105;;;:::o;45161:126::-;;45238:42;45231:5;45227:54;45216:65;;45206:81;;;:::o;45293:77::-;;45359:5;45348:16;;45338:32;;;:::o;45376:194::-;;45493:71;45558:5;45493:71;:::i;:::-;45480:84;;45470:100;;;:::o;45576:147::-;;45693:24;45711:5;45693:24;:::i;:::-;45680:37;;45670:53;;;:::o;45729:154::-;45813:6;45808:3;45803;45790:30;45875:1;45866:6;45861:3;45857:16;45850:27;45780:103;;;:::o;45889:307::-;45957:1;45967:113;45981:6;45978:1;45975:13;45967:113;;;46066:1;46061:3;46057:11;46051:18;46047:1;46042:3;46038:11;46031:39;46003:2;46000:1;45996:10;45991:15;;45967:113;;;46098:6;46095:1;46092:13;46089:2;;;46178:1;46169:6;46164:3;46160:16;46153:27;46089:2;45938:258;;;;:::o;46202:171::-;;46264:24;46282:5;46264:24;:::i;:::-;46255:33;;46310:4;46303:5;46300:15;46297:2;;;46318:18;;:::i;:::-;46297:2;46365:1;46358:5;46354:13;46347:20;;46245:128;;;:::o;46379:320::-;;46460:1;46454:4;46450:12;46440:22;;46507:1;46501:4;46497:12;46528:18;46518:2;;46584:4;46576:6;46572:17;46562:27;;46518:2;46646;46638:6;46635:14;46615:18;46612:38;46609:2;;;46665:18;;:::i;:::-;46609:2;46430:269;;;;:::o;46705:233::-;;46767:24;46785:5;46767:24;:::i;:::-;46758:33;;46813:66;46806:5;46803:77;46800:2;;;46883:18;;:::i;:::-;46800:2;46930:1;46923:5;46919:13;46912:20;;46748:190;;;:::o;46944:79::-;;47012:5;47001:16;;46991:32;;;:::o;47029:79::-;;47097:5;47086:16;;47076:32;;;:::o;47114:176::-;;47163:20;47181:1;47163:20;:::i;:::-;47158:25;;47197:20;47215:1;47197:20;:::i;:::-;47192:25;;47236:1;47226:2;;47241:18;;:::i;:::-;47226:2;47282:1;47279;47275:9;47270:14;;47148:142;;;;:::o;47296:180::-;47344:77;47341:1;47334:88;47441:4;47438:1;47431:15;47465:4;47462:1;47455:15;47482:180;47530:77;47527:1;47520:88;47627:4;47624:1;47617:15;47651:4;47648:1;47641:15;47668:180;47716:77;47713:1;47706:88;47813:4;47810:1;47803:15;47837:4;47834:1;47827:15;47854:180;47902:77;47899:1;47892:88;47999:4;47996:1;47989:15;48023:4;48020:1;48013:15;48040:102;;48132:2;48128:7;48123:2;48116:5;48112:14;48108:28;48098:38;;48088:54;;;:::o;48148:122::-;48221:24;48239:5;48221:24;:::i;:::-;48214:5;48211:35;48201:2;;48260:1;48257;48250:12;48201:2;48191:79;:::o;48276:116::-;48346:21;48361:5;48346:21;:::i;:::-;48339:5;48336:32;48326:2;;48382:1;48379;48372:12;48326:2;48316:76;:::o;48398:122::-;48471:24;48489:5;48471:24;:::i;:::-;48464:5;48461:35;48451:2;;48510:1;48507;48500:12;48451:2;48441:79;:::o;48526:120::-;48598:23;48615:5;48598:23;:::i;:::-;48591:5;48588:34;48578:2;;48636:1;48633;48626:12;48578:2;48568:78;:::o;48652:122::-;48725:24;48743:5;48725:24;:::i;:::-;48718:5;48715:35;48705:2;;48764:1;48761;48754:12;48705:2;48695:79;:::o

Swarm Source

ipfs://bf5855f7287e9b8c9df690fcdd4b6e820b343cf07104c3dca238500f1eac89bf

Block Transaction Gas Used Reward
view all blocks ##produced##

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

OVERVIEW

Avvy Domains is the naming service on the Avalanche blockchain. With Avvy, users and businesses can replace computer-generated identifiers, such as wallet addresses, with human-readable and memorable names like johndoe.avax.

Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
[ 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.