ETH Price: $3,248.08 (+2.31%)
Gas: 3 Gwei

Token

Degenerate Egg Mint Pass (EGGP)
 

Overview

Max Total Supply

2,001 EGGP

Holders

1

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0xb96766be58df259f071c7d704142d3403c7545c1
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
EggPass

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-15
*/

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.4.0/contracts/utils/Address.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.4.0/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.4.0/contracts/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.4.0/contracts/token/ERC1155/IERC1155Receiver.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;


/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
        @dev Handles the receipt of a single ERC1155 token type. This function is
        called at the end of a `safeTransferFrom` after the balance has been updated.
        To accept the transfer, this must return
        `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
        (i.e. 0xf23a6e61, or its own function selector).
        @param operator The address which initiated the transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param id The ID of the token being transferred
        @param value The amount of tokens being transferred
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
    */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
        @dev Handles the receipt of a multiple ERC1155 token types. This function
        is called at the end of a `safeBatchTransferFrom` after the balances have
        been updated. To accept the transfer(s), this must return
        `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
        (i.e. 0xbc197c81, or its own function selector).
        @param operator The address which initiated the batch transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param ids An array containing ids of each token being transferred (order and length must match values array)
        @param values An array containing amounts of each token being transferred (order and length must match ids array)
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
    */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.4.0/contracts/token/ERC1155/IERC1155.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.4.0/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.4.0/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.4.0/contracts/security/Pausable.sol


// OpenZeppelin Contracts v4.4.0 (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.4.0/contracts/token/ERC1155/ERC1155.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;







/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.4.0/contracts/token/ERC1155/extensions/ERC1155Pausable.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC1155/extensions/ERC1155Pausable.sol)

pragma solidity ^0.8.0;



/**
 * @dev ERC1155 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Pausable is ERC1155, Pausable {
    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        require(!paused(), "ERC1155Pausable: token transfer while paused");
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.4.0/contracts/token/ERC1155/extensions/ERC1155Supply.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC1155/extensions/ERC1155Supply.sol)

pragma solidity ^0.8.0;


/**
 * @dev Extension of ERC1155 that adds tracking of total supply per id.
 *
 * Useful for scenarios where Fungible and Non-fungible tokens have to be
 * clearly identified. Note: While a totalSupply of 1 might mean the
 * corresponding is an NFT, there is no guarantees that no other token with the
 * same id are not going to be minted.
 */
abstract contract ERC1155Supply is ERC1155 {
    mapping(uint256 => uint256) private _totalSupply;

    /**
     * @dev Total amount of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return _totalSupply[id];
    }

    /**
     * @dev Indicates whether any token exist with a given id, or not.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        return ERC1155Supply.totalSupply(id) > 0;
    }

    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        if (from == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] += amounts[i];
            }
        }

        if (to == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] -= amounts[i];
            }
        }
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.4.0/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: eggPass.sol


pragma solidity ^0.8.9 <0.9.0;




contract EggPass is ERC1155Supply, Ownable , ERC1155Pausable  {
    bool public saleIsActive;
    uint constant TOKEN_ID = 1;
    uint constant NUM_RESERVED_TOKENS = 2000;
    uint constant MAX_TOKENS = 2000; // one too high to get cheaper gas comparison!
    address private constant DEV = 0xb96766BE58Df259F071c7d704142D3403c7545C1;

    constructor() ERC1155("") {
        _mint(DEV,TOKEN_ID,1, "");
        reserve();
    }
    
    function pause() external onlyOwner {
        _pause();
        saleIsActive = false;
    }

    function unpause() external onlyOwner {
        _unpause();
    }
    
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override(ERC1155Pausable, ERC1155Supply) {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
    }  

    function reserve() public onlyOwner whenNotPaused{
       _mint(msg.sender, TOKEN_ID, NUM_RESERVED_TOKENS, "");
    }
    
    function flipSaleState() external onlyOwner {
        saleIsActive = !saleIsActive;
    }
    
    function setURI(string memory newuri) external onlyOwner {
        _setURI(newuri);
    }
    
    function mint() external whenNotPaused{
        require(saleIsActive, "Sale must be active to mint Tokens!");
        require(totalSupply(TOKEN_ID) + 1 < MAX_TOKENS, "Purchase would exceed max supply of tokens!");
        require(balanceOf(msg.sender,TOKEN_ID)==0,"you can only mint ONE pass per wallet!");
        _mint(msg.sender,TOKEN_ID,1 , "");
    }

    ///////////// Add name and symbol for etherscan /////////////////
    function name() public pure returns (string memory) {
        return "Degenerate Egg Mint Pass";
    }

    function symbol() public pure returns (string memory) {
        return "EGGP";
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"newuri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051806020016040528060008152506200003381620000bd60201b60201c565b506200005462000048620000d960201b60201c565b620000e160201b60201c565b6000600460146101000a81548160ff021916908315150217905550620000a773b96766be58df259f071c7d704142d3403c7545c160018060405180602001604052806000815250620001a760201b60201c565b620000b76200036c60201b60201c565b62001321565b8060029080519060200190620000d592919062000997565b5050565b600033905090565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156200021a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002119062000ace565b60405180910390fd5b60006200022c620000d960201b60201c565b9050620002658160008762000247886200047660201b60201c565b62000258886200047660201b60201c565b87620004f760201b60201c565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002c6919062000b29565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516200034692919062000b97565b60405180910390a462000365816000878787876200051a60201b60201c565b5050505050565b6200037c620000d960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003a26200072460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003fb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003f29062000c14565b60405180910390fd5b6200040b6200074e60201b60201c565b156200044e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004459062000c86565b60405180910390fd5b620004743360016107d060405180602001604052806000815250620001a760201b60201c565b565b60606000600167ffffffffffffffff81111562000498576200049762000ca8565b5b604051908082528060200260200182016040528015620004c75781602001602082028036833780820191505090505b5090508281600081518110620004e257620004e162000cd7565b5b60200260200101818152505080915050919050565b620005128686868686866200076560201b620010581760201c565b505050505050565b620005468473ffffffffffffffffffffffffffffffffffffffff16620007db60201b620010b61760201c565b156200071c578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016200058f95949392919062000def565b602060405180830381600087803b158015620005aa57600080fd5b505af1925050508015620005de57506040513d601f19601f82011682018060405250810190620005db919062000ebf565b60015b6200069057620005ed62000efe565b806308c379a014156200065157506200060562000f59565b8062000612575062000653565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000648919062001047565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200068790620010e1565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146200071a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007119062001179565b60405180910390fd5b505b505050505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600460149054906101000a900460ff16905090565b62000780868686868686620007ee60201b620010c91760201c565b620007906200074e60201b60201c565b15620007d3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007ca9062001211565b60405180910390fd5b505050505050565b600080823b905060008111915050919050565b620008098686868686866200098f60201b620012431760201c565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415620008c85760005b8351811015620008c65782818151811062000862576200086162000cd7565b5b60200260200101516003600086848151811062000884576200088362000cd7565b5b602002602001015181526020019081526020016000206000828254620008ab919062000b29565b9250508190555080620008be9062001233565b905062000842565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415620009875760005b8351811015620009855782818151811062000921576200092062000cd7565b5b60200260200101516003600086848151811062000943576200094262000cd7565b5b6020026020010151815260200190815260200160002060008282546200096a919062001281565b92505081905550806200097d9062001233565b905062000901565b505b505050505050565b505050505050565b828054620009a590620012eb565b90600052602060002090601f016020900481019282620009c9576000855562000a15565b82601f10620009e457805160ff191683800117855562000a15565b8280016001018555821562000a15579182015b8281111562000a14578251825591602001919060010190620009f7565b5b50905062000a24919062000a28565b5090565b5b8082111562000a4357600081600090555060010162000a29565b5090565b600082825260208201905092915050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600062000ab660218362000a47565b915062000ac38262000a58565b604082019050919050565b6000602082019050818103600083015262000ae98162000aa7565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000b368262000af0565b915062000b438362000af0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000b7b5762000b7a62000afa565b5b828201905092915050565b62000b918162000af0565b82525050565b600060408201905062000bae600083018562000b86565b62000bbd602083018462000b86565b9392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000bfc60208362000a47565b915062000c098262000bc4565b602082019050919050565b6000602082019050818103600083015262000c2f8162000bed565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600062000c6e60108362000a47565b915062000c7b8262000c36565b602082019050919050565b6000602082019050818103600083015262000ca18162000c5f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d338262000d06565b9050919050565b62000d458162000d26565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000d8757808201518184015260208101905062000d6a565b8381111562000d97576000848401525b50505050565b6000601f19601f8301169050919050565b600062000dbb8262000d4b565b62000dc7818562000d56565b935062000dd981856020860162000d67565b62000de48162000d9d565b840191505092915050565b600060a08201905062000e06600083018862000d3a565b62000e15602083018762000d3a565b62000e24604083018662000b86565b62000e33606083018562000b86565b818103608083015262000e47818462000dae565b90509695505050505050565b6000604051905090565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000e998162000e62565b811462000ea557600080fd5b50565b60008151905062000eb98162000e8e565b92915050565b60006020828403121562000ed85762000ed762000e5d565b5b600062000ee88482850162000ea8565b91505092915050565b60008160e01c9050919050565b600060033d111562000f205760046000803e62000f1d60005162000ef1565b90505b90565b62000f2e8262000d9d565b810181811067ffffffffffffffff8211171562000f505762000f4f62000ca8565b5b80604052505050565b600060443d101562000f6b5762000ff8565b62000f7562000e53565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000f9f57505062000ff8565b808201805167ffffffffffffffff81111562000fbf575050505062000ff8565b80602083010160043d03850181111562000fde57505050505062000ff8565b62000fef8260200185018662000f23565b82955050505050505b90565b600081519050919050565b6000620010138262000ffb565b6200101f818562000a47565b93506200103181856020860162000d67565b6200103c8162000d9d565b840191505092915050565b6000602082019050818103600083015262001063818462001006565b905092915050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000620010c960348362000a47565b9150620010d6826200106b565b604082019050919050565b60006020820190508181036000830152620010fc81620010ba565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006200116160288362000a47565b91506200116e8262001103565b604082019050919050565b60006020820190508181036000830152620011948162001152565b9050919050565b7f455243313135355061757361626c653a20746f6b656e207472616e736665722060008201527f7768696c65207061757365640000000000000000000000000000000000000000602082015250565b6000620011f9602c8362000a47565b915062001206826200119b565b604082019050919050565b600060208201905081810360008301526200122c81620011ea565b9050919050565b6000620012408262000af0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562001276576200127562000afa565b5b600182019050919050565b60006200128e8262000af0565b91506200129b8362000af0565b925082821015620012b157620012b062000afa565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200130457607f821691505b602082108114156200131b576200131a620012bc565b5b50919050565b613b4680620013316000396000f3fe608060405234801561001057600080fd5b506004361061014c5760003560e01c80635c975abb116100c3578063bd85b0391161007c578063bd85b0391461033f578063cd3293de1461036f578063e985e9c514610379578063eb8d2444146103a9578063f242432a146103c7578063f2fde38b146103e35761014c565b80635c975abb146102b5578063715018a6146102d35780638456cb59146102dd5780638da5cb5b146102e757806395d89b4114610305578063a22cb465146103235761014c565b80631249c58b116101155780631249c58b1461021b5780632eb2c2d61461022557806334918dfd146102415780633f4ba83a1461024b5780634e1273f4146102555780634f558e79146102855761014c565b8062fdd58e1461015157806301ffc9a71461018157806302fe5305146101b157806306fdde03146101cd5780630e89341c146101eb575b600080fd5b61016b60048036038101906101669190612324565b6103ff565b6040516101789190612373565b60405180910390f35b61019b600480360381019061019691906123e6565b6104c8565b6040516101a8919061242e565b60405180910390f35b6101cb60048036038101906101c6919061258f565b6105aa565b005b6101d5610632565b6040516101e29190612660565b60405180910390f35b61020560048036038101906102009190612682565b61066f565b6040516102129190612660565b60405180910390f35b610223610703565b005b61023f600480360381019061023a9190612818565b61085e565b005b6102496108ff565b005b6102536109a7565b005b61026f600480360381019061026a91906129aa565b610a2d565b60405161027c9190612ae0565b60405180910390f35b61029f600480360381019061029a9190612682565b610b46565b6040516102ac919061242e565b60405180910390f35b6102bd610b5a565b6040516102ca919061242e565b60405180910390f35b6102db610b71565b005b6102e5610bf9565b005b6102ef610c9a565b6040516102fc9190612b11565b60405180910390f35b61030d610cc4565b60405161031a9190612660565b60405180910390f35b61033d60048036038101906103389190612b58565b610d01565b005b61035960048036038101906103549190612682565b610d17565b6040516103669190612373565b60405180910390f35b610377610d34565b005b610393600480360381019061038e9190612b98565b610e18565b6040516103a0919061242e565b60405180910390f35b6103b1610eac565b6040516103be919061242e565b60405180910390f35b6103e160048036038101906103dc9190612bd8565b610ebf565b005b6103fd60048036038101906103f89190612c6f565b610f60565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610470576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161046790612d0e565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061059357507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105a357506105a28261124b565b5b9050919050565b6105b26112b5565b73ffffffffffffffffffffffffffffffffffffffff166105d0610c9a565b73ffffffffffffffffffffffffffffffffffffffff1614610626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061d90612d7a565b60405180910390fd5b61062f816112bd565b50565b60606040518060400160405280601881526020017f446567656e657261746520456767204d696e7420506173730000000000000000815250905090565b60606002805461067e90612dc9565b80601f01602080910402602001604051908101604052809291908181526020018280546106aa90612dc9565b80156106f75780601f106106cc576101008083540402835291602001916106f7565b820191906000526020600020905b8154815290600101906020018083116106da57829003601f168201915b50505050509050919050565b61070b610b5a565b1561074b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074290612e47565b60405180910390fd5b600460159054906101000a900460ff1661079a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079190612ed9565b60405180910390fd5b6107d060016107a96001610d17565b6107b39190612f28565b106107f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ea90612ff0565b60405180910390fd5b60006108003360016103ff565b14610840576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083790613082565b60405180910390fd5b61085c33600180604051806020016040528060008152506112d7565b565b6108666112b5565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806108ac57506108ab856108a66112b5565b610e18565b5b6108eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613114565b60405180910390fd5b6108f8858585858561146d565b5050505050565b6109076112b5565b73ffffffffffffffffffffffffffffffffffffffff16610925610c9a565b73ffffffffffffffffffffffffffffffffffffffff161461097b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097290612d7a565b60405180910390fd5b600460159054906101000a900460ff1615600460156101000a81548160ff021916908315150217905550565b6109af6112b5565b73ffffffffffffffffffffffffffffffffffffffff166109cd610c9a565b73ffffffffffffffffffffffffffffffffffffffff1614610a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1a90612d7a565b60405180910390fd5b610a2b611781565b565b60608151835114610a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6a906131a6565b60405180910390fd5b6000835167ffffffffffffffff811115610a9057610a8f612464565b5b604051908082528060200260200182016040528015610abe5781602001602082028036833780820191505090505b50905060005b8451811015610b3b57610b0b858281518110610ae357610ae26131c6565b5b6020026020010151858381518110610afe57610afd6131c6565b5b60200260200101516103ff565b828281518110610b1e57610b1d6131c6565b5b60200260200101818152505080610b34906131f5565b9050610ac4565b508091505092915050565b600080610b5283610d17565b119050919050565b6000600460149054906101000a900460ff16905090565b610b796112b5565b73ffffffffffffffffffffffffffffffffffffffff16610b97610c9a565b73ffffffffffffffffffffffffffffffffffffffff1614610bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be490612d7a565b60405180910390fd5b610bf76000611823565b565b610c016112b5565b73ffffffffffffffffffffffffffffffffffffffff16610c1f610c9a565b73ffffffffffffffffffffffffffffffffffffffff1614610c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6c90612d7a565b60405180910390fd5b610c7d6118e9565b6000600460156101000a81548160ff021916908315150217905550565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600481526020017f4547475000000000000000000000000000000000000000000000000000000000815250905090565b610d13610d0c6112b5565b838361198c565b5050565b600060036000838152602001908152602001600020549050919050565b610d3c6112b5565b73ffffffffffffffffffffffffffffffffffffffff16610d5a610c9a565b73ffffffffffffffffffffffffffffffffffffffff1614610db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da790612d7a565b60405180910390fd5b610db8610b5a565b15610df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610def90612e47565b60405180910390fd5b610e163360016107d0604051806020016040528060008152506112d7565b565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600460159054906101000a900460ff1681565b610ec76112b5565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610f0d5750610f0c85610f076112b5565b610e18565b5b610f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f43906132b0565b60405180910390fd5b610f598585858585611af9565b5050505050565b610f686112b5565b73ffffffffffffffffffffffffffffffffffffffff16610f86610c9a565b73ffffffffffffffffffffffffffffffffffffffff1614610fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd390612d7a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561104c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104390613342565b60405180910390fd5b61105581611823565b50565b6110668686868686866110c9565b61106e610b5a565b156110ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a5906133d4565b60405180910390fd5b505050505050565b600080823b905060008111915050919050565b6110d7868686868686611243565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156111895760005b83518110156111875782818151811061112b5761112a6131c6565b5b60200260200101516003600086848151811061114a576111496131c6565b5b60200260200101518152602001908152602001600020600082825461116f9190612f28565b9250508190555080611180906131f5565b905061110f565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561123b5760005b8351811015611239578281815181106111dd576111dc6131c6565b5b6020026020010151600360008684815181106111fc576111fb6131c6565b5b60200260200101518152602001908152602001600020600082825461122191906133f4565b9250508190555080611232906131f5565b90506111c1565b505b505050505050565b505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b80600290805190602001906112d39291906121d9565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133e9061349a565b60405180910390fd5b60006113516112b5565b90506113728160008761136388611d7b565b61136c88611d7b565b87611df5565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113d19190612f28565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161144f9291906134ba565b60405180910390a461146681600087878787611e0b565b5050505050565b81518351146114b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a890613555565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611521576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611518906135e7565b60405180910390fd5b600061152b6112b5565b905061153b818787878787611df5565b60005b84518110156116ec57600085828151811061155c5761155b6131c6565b5b60200260200101519050600085838151811061157b5761157a6131c6565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561161c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161390613679565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116d19190612f28565b92505081905550505050806116e5906131f5565b905061153e565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611763929190613699565b60405180910390a4611779818787878787611ff2565b505050505050565b611789610b5a565b6117c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bf9061371c565b60405180910390fd5b6000600460146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61180c6112b5565b6040516118199190612b11565b60405180910390a1565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6118f1610b5a565b15611931576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192890612e47565b60405180910390fd5b6001600460146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586119756112b5565b6040516119829190612b11565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156119fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f2906137ae565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611aec919061242e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b60906135e7565b60405180910390fd5b6000611b736112b5565b9050611b93818787611b8488611d7b565b611b8d88611d7b565b87611df5565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2190613679565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cdf9190612f28565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611d5c9291906134ba565b60405180910390a4611d72828888888888611e0b565b50505050505050565b60606000600167ffffffffffffffff811115611d9a57611d99612464565b5b604051908082528060200260200182016040528015611dc85781602001602082028036833780820191505090505b5090508281600081518110611de057611ddf6131c6565b5b60200260200101818152505080915050919050565b611e03868686868686611058565b505050505050565b611e2a8473ffffffffffffffffffffffffffffffffffffffff166110b6565b15611fea578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611e70959493929190613823565b602060405180830381600087803b158015611e8a57600080fd5b505af1925050508015611ebb57506040513d601f19601f82011682018060405250810190611eb89190613892565b60015b611f6157611ec76138cc565b806308c379a01415611f245750611edc6138ee565b80611ee75750611f26565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1b9190612660565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f58906139f6565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdf90613a88565b60405180910390fd5b505b505050505050565b6120118473ffffffffffffffffffffffffffffffffffffffff166110b6565b156121d1578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612057959493929190613aa8565b602060405180830381600087803b15801561207157600080fd5b505af19250505080156120a257506040513d601f19601f8201168201806040525081019061209f9190613892565b60015b612148576120ae6138cc565b806308c379a0141561210b57506120c36138ee565b806120ce575061210d565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121029190612660565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213f906139f6565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146121cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c690613a88565b60405180910390fd5b505b505050505050565b8280546121e590612dc9565b90600052602060002090601f016020900481019282612207576000855561224e565b82601f1061222057805160ff191683800117855561224e565b8280016001018555821561224e579182015b8281111561224d578251825591602001919060010190612232565b5b50905061225b919061225f565b5090565b5b80821115612278576000816000905550600101612260565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122bb82612290565b9050919050565b6122cb816122b0565b81146122d657600080fd5b50565b6000813590506122e8816122c2565b92915050565b6000819050919050565b612301816122ee565b811461230c57600080fd5b50565b60008135905061231e816122f8565b92915050565b6000806040838503121561233b5761233a612286565b5b6000612349858286016122d9565b925050602061235a8582860161230f565b9150509250929050565b61236d816122ee565b82525050565b60006020820190506123886000830184612364565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123c38161238e565b81146123ce57600080fd5b50565b6000813590506123e0816123ba565b92915050565b6000602082840312156123fc576123fb612286565b5b600061240a848285016123d1565b91505092915050565b60008115159050919050565b61242881612413565b82525050565b6000602082019050612443600083018461241f565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61249c82612453565b810181811067ffffffffffffffff821117156124bb576124ba612464565b5b80604052505050565b60006124ce61227c565b90506124da8282612493565b919050565b600067ffffffffffffffff8211156124fa576124f9612464565b5b61250382612453565b9050602081019050919050565b82818337600083830152505050565b600061253261252d846124df565b6124c4565b90508281526020810184848401111561254e5761254d61244e565b5b612559848285612510565b509392505050565b600082601f83011261257657612575612449565b5b813561258684826020860161251f565b91505092915050565b6000602082840312156125a5576125a4612286565b5b600082013567ffffffffffffffff8111156125c3576125c261228b565b5b6125cf84828501612561565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156126125780820151818401526020810190506125f7565b83811115612621576000848401525b50505050565b6000612632826125d8565b61263c81856125e3565b935061264c8185602086016125f4565b61265581612453565b840191505092915050565b6000602082019050818103600083015261267a8184612627565b905092915050565b60006020828403121561269857612697612286565b5b60006126a68482850161230f565b91505092915050565b600067ffffffffffffffff8211156126ca576126c9612464565b5b602082029050602081019050919050565b600080fd5b60006126f36126ee846126af565b6124c4565b90508083825260208201905060208402830185811115612716576127156126db565b5b835b8181101561273f578061272b888261230f565b845260208401935050602081019050612718565b5050509392505050565b600082601f83011261275e5761275d612449565b5b813561276e8482602086016126e0565b91505092915050565b600067ffffffffffffffff82111561279257612791612464565b5b61279b82612453565b9050602081019050919050565b60006127bb6127b684612777565b6124c4565b9050828152602081018484840111156127d7576127d661244e565b5b6127e2848285612510565b509392505050565b600082601f8301126127ff576127fe612449565b5b813561280f8482602086016127a8565b91505092915050565b600080600080600060a0868803121561283457612833612286565b5b6000612842888289016122d9565b9550506020612853888289016122d9565b945050604086013567ffffffffffffffff8111156128745761287361228b565b5b61288088828901612749565b935050606086013567ffffffffffffffff8111156128a1576128a061228b565b5b6128ad88828901612749565b925050608086013567ffffffffffffffff8111156128ce576128cd61228b565b5b6128da888289016127ea565b9150509295509295909350565b600067ffffffffffffffff82111561290257612901612464565b5b602082029050602081019050919050565b6000612926612921846128e7565b6124c4565b90508083825260208201905060208402830185811115612949576129486126db565b5b835b81811015612972578061295e88826122d9565b84526020840193505060208101905061294b565b5050509392505050565b600082601f83011261299157612990612449565b5b81356129a1848260208601612913565b91505092915050565b600080604083850312156129c1576129c0612286565b5b600083013567ffffffffffffffff8111156129df576129de61228b565b5b6129eb8582860161297c565b925050602083013567ffffffffffffffff811115612a0c57612a0b61228b565b5b612a1885828601612749565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612a57816122ee565b82525050565b6000612a698383612a4e565b60208301905092915050565b6000602082019050919050565b6000612a8d82612a22565b612a978185612a2d565b9350612aa283612a3e565b8060005b83811015612ad3578151612aba8882612a5d565b9750612ac583612a75565b925050600181019050612aa6565b5085935050505092915050565b60006020820190508181036000830152612afa8184612a82565b905092915050565b612b0b816122b0565b82525050565b6000602082019050612b266000830184612b02565b92915050565b612b3581612413565b8114612b4057600080fd5b50565b600081359050612b5281612b2c565b92915050565b60008060408385031215612b6f57612b6e612286565b5b6000612b7d858286016122d9565b9250506020612b8e85828601612b43565b9150509250929050565b60008060408385031215612baf57612bae612286565b5b6000612bbd858286016122d9565b9250506020612bce858286016122d9565b9150509250929050565b600080600080600060a08688031215612bf457612bf3612286565b5b6000612c02888289016122d9565b9550506020612c13888289016122d9565b9450506040612c248882890161230f565b9350506060612c358882890161230f565b925050608086013567ffffffffffffffff811115612c5657612c5561228b565b5b612c62888289016127ea565b9150509295509295909350565b600060208284031215612c8557612c84612286565b5b6000612c93848285016122d9565b91505092915050565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000612cf8602b836125e3565b9150612d0382612c9c565b604082019050919050565b60006020820190508181036000830152612d2781612ceb565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612d646020836125e3565b9150612d6f82612d2e565b602082019050919050565b60006020820190508181036000830152612d9381612d57565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612de157607f821691505b60208210811415612df557612df4612d9a565b5b50919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000612e316010836125e3565b9150612e3c82612dfb565b602082019050919050565b60006020820190508181036000830152612e6081612e24565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e7420546f6b6560008201527f6e73210000000000000000000000000000000000000000000000000000000000602082015250565b6000612ec36023836125e3565b9150612ece82612e67565b604082019050919050565b60006020820190508181036000830152612ef281612eb6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f33826122ee565b9150612f3e836122ee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f7357612f72612ef9565b5b828201905092915050565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7321000000000000000000000000000000000000000000602082015250565b6000612fda602b836125e3565b9150612fe582612f7e565b604082019050919050565b6000602082019050818103600083015261300981612fcd565b9050919050565b7f796f752063616e206f6e6c79206d696e74204f4e45207061737320706572207760008201527f616c6c6574210000000000000000000000000000000000000000000000000000602082015250565b600061306c6026836125e3565b915061307782613010565b604082019050919050565b6000602082019050818103600083015261309b8161305f565b9050919050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006130fe6032836125e3565b9150613109826130a2565b604082019050919050565b6000602082019050818103600083015261312d816130f1565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b60006131906029836125e3565b915061319b82613134565b604082019050919050565b600060208201905081810360008301526131bf81613183565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613200826122ee565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561323357613232612ef9565b5b600182019050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b600061329a6029836125e3565b91506132a58261323e565b604082019050919050565b600060208201905081810360008301526132c98161328d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061332c6026836125e3565b9150613337826132d0565b604082019050919050565b6000602082019050818103600083015261335b8161331f565b9050919050565b7f455243313135355061757361626c653a20746f6b656e207472616e736665722060008201527f7768696c65207061757365640000000000000000000000000000000000000000602082015250565b60006133be602c836125e3565b91506133c982613362565b604082019050919050565b600060208201905081810360008301526133ed816133b1565b9050919050565b60006133ff826122ee565b915061340a836122ee565b92508282101561341d5761341c612ef9565b5b828203905092915050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006134846021836125e3565b915061348f82613428565b604082019050919050565b600060208201905081810360008301526134b381613477565b9050919050565b60006040820190506134cf6000830185612364565b6134dc6020830184612364565b9392505050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b600061353f6028836125e3565b915061354a826134e3565b604082019050919050565b6000602082019050818103600083015261356e81613532565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006135d16025836125e3565b91506135dc82613575565b604082019050919050565b60006020820190508181036000830152613600816135c4565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000613663602a836125e3565b915061366e82613607565b604082019050919050565b6000602082019050818103600083015261369281613656565b9050919050565b600060408201905081810360008301526136b38185612a82565b905081810360208301526136c78184612a82565b90509392505050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006137066014836125e3565b9150613711826136d0565b602082019050919050565b60006020820190508181036000830152613735816136f9565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006137986029836125e3565b91506137a38261373c565b604082019050919050565b600060208201905081810360008301526137c78161378b565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006137f5826137ce565b6137ff81856137d9565b935061380f8185602086016125f4565b61381881612453565b840191505092915050565b600060a0820190506138386000830188612b02565b6138456020830187612b02565b6138526040830186612364565b61385f6060830185612364565b818103608083015261387181846137ea565b90509695505050505050565b60008151905061388c816123ba565b92915050565b6000602082840312156138a8576138a7612286565b5b60006138b68482850161387d565b91505092915050565b60008160e01c9050919050565b600060033d11156138eb5760046000803e6138e86000516138bf565b90505b90565b600060443d10156138fe57613981565b61390661227c565b60043d036004823e80513d602482011167ffffffffffffffff8211171561392e575050613981565b808201805167ffffffffffffffff81111561394c5750505050613981565b80602083010160043d038501811115613969575050505050613981565b61397882602001850186612493565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b60006139e06034836125e3565b91506139eb82613984565b604082019050919050565b60006020820190508181036000830152613a0f816139d3565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000613a726028836125e3565b9150613a7d82613a16565b604082019050919050565b60006020820190508181036000830152613aa181613a65565b9050919050565b600060a082019050613abd6000830188612b02565b613aca6020830187612b02565b8181036040830152613adc8186612a82565b90508181036060830152613af08185612a82565b90508181036080830152613b0481846137ea565b9050969550505050505056fea26469706673582212201479480d5f2101afc3421b61ef5b6fca7cc5266fc16109d5062081e321942d1064736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014c5760003560e01c80635c975abb116100c3578063bd85b0391161007c578063bd85b0391461033f578063cd3293de1461036f578063e985e9c514610379578063eb8d2444146103a9578063f242432a146103c7578063f2fde38b146103e35761014c565b80635c975abb146102b5578063715018a6146102d35780638456cb59146102dd5780638da5cb5b146102e757806395d89b4114610305578063a22cb465146103235761014c565b80631249c58b116101155780631249c58b1461021b5780632eb2c2d61461022557806334918dfd146102415780633f4ba83a1461024b5780634e1273f4146102555780634f558e79146102855761014c565b8062fdd58e1461015157806301ffc9a71461018157806302fe5305146101b157806306fdde03146101cd5780630e89341c146101eb575b600080fd5b61016b60048036038101906101669190612324565b6103ff565b6040516101789190612373565b60405180910390f35b61019b600480360381019061019691906123e6565b6104c8565b6040516101a8919061242e565b60405180910390f35b6101cb60048036038101906101c6919061258f565b6105aa565b005b6101d5610632565b6040516101e29190612660565b60405180910390f35b61020560048036038101906102009190612682565b61066f565b6040516102129190612660565b60405180910390f35b610223610703565b005b61023f600480360381019061023a9190612818565b61085e565b005b6102496108ff565b005b6102536109a7565b005b61026f600480360381019061026a91906129aa565b610a2d565b60405161027c9190612ae0565b60405180910390f35b61029f600480360381019061029a9190612682565b610b46565b6040516102ac919061242e565b60405180910390f35b6102bd610b5a565b6040516102ca919061242e565b60405180910390f35b6102db610b71565b005b6102e5610bf9565b005b6102ef610c9a565b6040516102fc9190612b11565b60405180910390f35b61030d610cc4565b60405161031a9190612660565b60405180910390f35b61033d60048036038101906103389190612b58565b610d01565b005b61035960048036038101906103549190612682565b610d17565b6040516103669190612373565b60405180910390f35b610377610d34565b005b610393600480360381019061038e9190612b98565b610e18565b6040516103a0919061242e565b60405180910390f35b6103b1610eac565b6040516103be919061242e565b60405180910390f35b6103e160048036038101906103dc9190612bd8565b610ebf565b005b6103fd60048036038101906103f89190612c6f565b610f60565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610470576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161046790612d0e565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061059357507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105a357506105a28261124b565b5b9050919050565b6105b26112b5565b73ffffffffffffffffffffffffffffffffffffffff166105d0610c9a565b73ffffffffffffffffffffffffffffffffffffffff1614610626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061d90612d7a565b60405180910390fd5b61062f816112bd565b50565b60606040518060400160405280601881526020017f446567656e657261746520456767204d696e7420506173730000000000000000815250905090565b60606002805461067e90612dc9565b80601f01602080910402602001604051908101604052809291908181526020018280546106aa90612dc9565b80156106f75780601f106106cc576101008083540402835291602001916106f7565b820191906000526020600020905b8154815290600101906020018083116106da57829003601f168201915b50505050509050919050565b61070b610b5a565b1561074b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074290612e47565b60405180910390fd5b600460159054906101000a900460ff1661079a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079190612ed9565b60405180910390fd5b6107d060016107a96001610d17565b6107b39190612f28565b106107f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ea90612ff0565b60405180910390fd5b60006108003360016103ff565b14610840576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083790613082565b60405180910390fd5b61085c33600180604051806020016040528060008152506112d7565b565b6108666112b5565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806108ac57506108ab856108a66112b5565b610e18565b5b6108eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613114565b60405180910390fd5b6108f8858585858561146d565b5050505050565b6109076112b5565b73ffffffffffffffffffffffffffffffffffffffff16610925610c9a565b73ffffffffffffffffffffffffffffffffffffffff161461097b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097290612d7a565b60405180910390fd5b600460159054906101000a900460ff1615600460156101000a81548160ff021916908315150217905550565b6109af6112b5565b73ffffffffffffffffffffffffffffffffffffffff166109cd610c9a565b73ffffffffffffffffffffffffffffffffffffffff1614610a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1a90612d7a565b60405180910390fd5b610a2b611781565b565b60608151835114610a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6a906131a6565b60405180910390fd5b6000835167ffffffffffffffff811115610a9057610a8f612464565b5b604051908082528060200260200182016040528015610abe5781602001602082028036833780820191505090505b50905060005b8451811015610b3b57610b0b858281518110610ae357610ae26131c6565b5b6020026020010151858381518110610afe57610afd6131c6565b5b60200260200101516103ff565b828281518110610b1e57610b1d6131c6565b5b60200260200101818152505080610b34906131f5565b9050610ac4565b508091505092915050565b600080610b5283610d17565b119050919050565b6000600460149054906101000a900460ff16905090565b610b796112b5565b73ffffffffffffffffffffffffffffffffffffffff16610b97610c9a565b73ffffffffffffffffffffffffffffffffffffffff1614610bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be490612d7a565b60405180910390fd5b610bf76000611823565b565b610c016112b5565b73ffffffffffffffffffffffffffffffffffffffff16610c1f610c9a565b73ffffffffffffffffffffffffffffffffffffffff1614610c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6c90612d7a565b60405180910390fd5b610c7d6118e9565b6000600460156101000a81548160ff021916908315150217905550565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600481526020017f4547475000000000000000000000000000000000000000000000000000000000815250905090565b610d13610d0c6112b5565b838361198c565b5050565b600060036000838152602001908152602001600020549050919050565b610d3c6112b5565b73ffffffffffffffffffffffffffffffffffffffff16610d5a610c9a565b73ffffffffffffffffffffffffffffffffffffffff1614610db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da790612d7a565b60405180910390fd5b610db8610b5a565b15610df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610def90612e47565b60405180910390fd5b610e163360016107d0604051806020016040528060008152506112d7565b565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600460159054906101000a900460ff1681565b610ec76112b5565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610f0d5750610f0c85610f076112b5565b610e18565b5b610f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f43906132b0565b60405180910390fd5b610f598585858585611af9565b5050505050565b610f686112b5565b73ffffffffffffffffffffffffffffffffffffffff16610f86610c9a565b73ffffffffffffffffffffffffffffffffffffffff1614610fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd390612d7a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561104c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104390613342565b60405180910390fd5b61105581611823565b50565b6110668686868686866110c9565b61106e610b5a565b156110ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a5906133d4565b60405180910390fd5b505050505050565b600080823b905060008111915050919050565b6110d7868686868686611243565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156111895760005b83518110156111875782818151811061112b5761112a6131c6565b5b60200260200101516003600086848151811061114a576111496131c6565b5b60200260200101518152602001908152602001600020600082825461116f9190612f28565b9250508190555080611180906131f5565b905061110f565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561123b5760005b8351811015611239578281815181106111dd576111dc6131c6565b5b6020026020010151600360008684815181106111fc576111fb6131c6565b5b60200260200101518152602001908152602001600020600082825461122191906133f4565b9250508190555080611232906131f5565b90506111c1565b505b505050505050565b505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b80600290805190602001906112d39291906121d9565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133e9061349a565b60405180910390fd5b60006113516112b5565b90506113728160008761136388611d7b565b61136c88611d7b565b87611df5565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113d19190612f28565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161144f9291906134ba565b60405180910390a461146681600087878787611e0b565b5050505050565b81518351146114b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a890613555565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611521576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611518906135e7565b60405180910390fd5b600061152b6112b5565b905061153b818787878787611df5565b60005b84518110156116ec57600085828151811061155c5761155b6131c6565b5b60200260200101519050600085838151811061157b5761157a6131c6565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561161c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161390613679565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116d19190612f28565b92505081905550505050806116e5906131f5565b905061153e565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611763929190613699565b60405180910390a4611779818787878787611ff2565b505050505050565b611789610b5a565b6117c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bf9061371c565b60405180910390fd5b6000600460146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61180c6112b5565b6040516118199190612b11565b60405180910390a1565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6118f1610b5a565b15611931576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192890612e47565b60405180910390fd5b6001600460146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586119756112b5565b6040516119829190612b11565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156119fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f2906137ae565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611aec919061242e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b60906135e7565b60405180910390fd5b6000611b736112b5565b9050611b93818787611b8488611d7b565b611b8d88611d7b565b87611df5565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2190613679565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cdf9190612f28565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611d5c9291906134ba565b60405180910390a4611d72828888888888611e0b565b50505050505050565b60606000600167ffffffffffffffff811115611d9a57611d99612464565b5b604051908082528060200260200182016040528015611dc85781602001602082028036833780820191505090505b5090508281600081518110611de057611ddf6131c6565b5b60200260200101818152505080915050919050565b611e03868686868686611058565b505050505050565b611e2a8473ffffffffffffffffffffffffffffffffffffffff166110b6565b15611fea578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611e70959493929190613823565b602060405180830381600087803b158015611e8a57600080fd5b505af1925050508015611ebb57506040513d601f19601f82011682018060405250810190611eb89190613892565b60015b611f6157611ec76138cc565b806308c379a01415611f245750611edc6138ee565b80611ee75750611f26565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1b9190612660565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f58906139f6565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdf90613a88565b60405180910390fd5b505b505050505050565b6120118473ffffffffffffffffffffffffffffffffffffffff166110b6565b156121d1578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612057959493929190613aa8565b602060405180830381600087803b15801561207157600080fd5b505af19250505080156120a257506040513d601f19601f8201168201806040525081019061209f9190613892565b60015b612148576120ae6138cc565b806308c379a0141561210b57506120c36138ee565b806120ce575061210d565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121029190612660565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213f906139f6565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146121cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c690613a88565b60405180910390fd5b505b505050505050565b8280546121e590612dc9565b90600052602060002090601f016020900481019282612207576000855561224e565b82601f1061222057805160ff191683800117855561224e565b8280016001018555821561224e579182015b8281111561224d578251825591602001919060010190612232565b5b50905061225b919061225f565b5090565b5b80821115612278576000816000905550600101612260565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122bb82612290565b9050919050565b6122cb816122b0565b81146122d657600080fd5b50565b6000813590506122e8816122c2565b92915050565b6000819050919050565b612301816122ee565b811461230c57600080fd5b50565b60008135905061231e816122f8565b92915050565b6000806040838503121561233b5761233a612286565b5b6000612349858286016122d9565b925050602061235a8582860161230f565b9150509250929050565b61236d816122ee565b82525050565b60006020820190506123886000830184612364565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123c38161238e565b81146123ce57600080fd5b50565b6000813590506123e0816123ba565b92915050565b6000602082840312156123fc576123fb612286565b5b600061240a848285016123d1565b91505092915050565b60008115159050919050565b61242881612413565b82525050565b6000602082019050612443600083018461241f565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61249c82612453565b810181811067ffffffffffffffff821117156124bb576124ba612464565b5b80604052505050565b60006124ce61227c565b90506124da8282612493565b919050565b600067ffffffffffffffff8211156124fa576124f9612464565b5b61250382612453565b9050602081019050919050565b82818337600083830152505050565b600061253261252d846124df565b6124c4565b90508281526020810184848401111561254e5761254d61244e565b5b612559848285612510565b509392505050565b600082601f83011261257657612575612449565b5b813561258684826020860161251f565b91505092915050565b6000602082840312156125a5576125a4612286565b5b600082013567ffffffffffffffff8111156125c3576125c261228b565b5b6125cf84828501612561565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156126125780820151818401526020810190506125f7565b83811115612621576000848401525b50505050565b6000612632826125d8565b61263c81856125e3565b935061264c8185602086016125f4565b61265581612453565b840191505092915050565b6000602082019050818103600083015261267a8184612627565b905092915050565b60006020828403121561269857612697612286565b5b60006126a68482850161230f565b91505092915050565b600067ffffffffffffffff8211156126ca576126c9612464565b5b602082029050602081019050919050565b600080fd5b60006126f36126ee846126af565b6124c4565b90508083825260208201905060208402830185811115612716576127156126db565b5b835b8181101561273f578061272b888261230f565b845260208401935050602081019050612718565b5050509392505050565b600082601f83011261275e5761275d612449565b5b813561276e8482602086016126e0565b91505092915050565b600067ffffffffffffffff82111561279257612791612464565b5b61279b82612453565b9050602081019050919050565b60006127bb6127b684612777565b6124c4565b9050828152602081018484840111156127d7576127d661244e565b5b6127e2848285612510565b509392505050565b600082601f8301126127ff576127fe612449565b5b813561280f8482602086016127a8565b91505092915050565b600080600080600060a0868803121561283457612833612286565b5b6000612842888289016122d9565b9550506020612853888289016122d9565b945050604086013567ffffffffffffffff8111156128745761287361228b565b5b61288088828901612749565b935050606086013567ffffffffffffffff8111156128a1576128a061228b565b5b6128ad88828901612749565b925050608086013567ffffffffffffffff8111156128ce576128cd61228b565b5b6128da888289016127ea565b9150509295509295909350565b600067ffffffffffffffff82111561290257612901612464565b5b602082029050602081019050919050565b6000612926612921846128e7565b6124c4565b90508083825260208201905060208402830185811115612949576129486126db565b5b835b81811015612972578061295e88826122d9565b84526020840193505060208101905061294b565b5050509392505050565b600082601f83011261299157612990612449565b5b81356129a1848260208601612913565b91505092915050565b600080604083850312156129c1576129c0612286565b5b600083013567ffffffffffffffff8111156129df576129de61228b565b5b6129eb8582860161297c565b925050602083013567ffffffffffffffff811115612a0c57612a0b61228b565b5b612a1885828601612749565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612a57816122ee565b82525050565b6000612a698383612a4e565b60208301905092915050565b6000602082019050919050565b6000612a8d82612a22565b612a978185612a2d565b9350612aa283612a3e565b8060005b83811015612ad3578151612aba8882612a5d565b9750612ac583612a75565b925050600181019050612aa6565b5085935050505092915050565b60006020820190508181036000830152612afa8184612a82565b905092915050565b612b0b816122b0565b82525050565b6000602082019050612b266000830184612b02565b92915050565b612b3581612413565b8114612b4057600080fd5b50565b600081359050612b5281612b2c565b92915050565b60008060408385031215612b6f57612b6e612286565b5b6000612b7d858286016122d9565b9250506020612b8e85828601612b43565b9150509250929050565b60008060408385031215612baf57612bae612286565b5b6000612bbd858286016122d9565b9250506020612bce858286016122d9565b9150509250929050565b600080600080600060a08688031215612bf457612bf3612286565b5b6000612c02888289016122d9565b9550506020612c13888289016122d9565b9450506040612c248882890161230f565b9350506060612c358882890161230f565b925050608086013567ffffffffffffffff811115612c5657612c5561228b565b5b612c62888289016127ea565b9150509295509295909350565b600060208284031215612c8557612c84612286565b5b6000612c93848285016122d9565b91505092915050565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000612cf8602b836125e3565b9150612d0382612c9c565b604082019050919050565b60006020820190508181036000830152612d2781612ceb565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612d646020836125e3565b9150612d6f82612d2e565b602082019050919050565b60006020820190508181036000830152612d9381612d57565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612de157607f821691505b60208210811415612df557612df4612d9a565b5b50919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000612e316010836125e3565b9150612e3c82612dfb565b602082019050919050565b60006020820190508181036000830152612e6081612e24565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e7420546f6b6560008201527f6e73210000000000000000000000000000000000000000000000000000000000602082015250565b6000612ec36023836125e3565b9150612ece82612e67565b604082019050919050565b60006020820190508181036000830152612ef281612eb6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f33826122ee565b9150612f3e836122ee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f7357612f72612ef9565b5b828201905092915050565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7321000000000000000000000000000000000000000000602082015250565b6000612fda602b836125e3565b9150612fe582612f7e565b604082019050919050565b6000602082019050818103600083015261300981612fcd565b9050919050565b7f796f752063616e206f6e6c79206d696e74204f4e45207061737320706572207760008201527f616c6c6574210000000000000000000000000000000000000000000000000000602082015250565b600061306c6026836125e3565b915061307782613010565b604082019050919050565b6000602082019050818103600083015261309b8161305f565b9050919050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006130fe6032836125e3565b9150613109826130a2565b604082019050919050565b6000602082019050818103600083015261312d816130f1565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b60006131906029836125e3565b915061319b82613134565b604082019050919050565b600060208201905081810360008301526131bf81613183565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613200826122ee565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561323357613232612ef9565b5b600182019050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b600061329a6029836125e3565b91506132a58261323e565b604082019050919050565b600060208201905081810360008301526132c98161328d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061332c6026836125e3565b9150613337826132d0565b604082019050919050565b6000602082019050818103600083015261335b8161331f565b9050919050565b7f455243313135355061757361626c653a20746f6b656e207472616e736665722060008201527f7768696c65207061757365640000000000000000000000000000000000000000602082015250565b60006133be602c836125e3565b91506133c982613362565b604082019050919050565b600060208201905081810360008301526133ed816133b1565b9050919050565b60006133ff826122ee565b915061340a836122ee565b92508282101561341d5761341c612ef9565b5b828203905092915050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006134846021836125e3565b915061348f82613428565b604082019050919050565b600060208201905081810360008301526134b381613477565b9050919050565b60006040820190506134cf6000830185612364565b6134dc6020830184612364565b9392505050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b600061353f6028836125e3565b915061354a826134e3565b604082019050919050565b6000602082019050818103600083015261356e81613532565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006135d16025836125e3565b91506135dc82613575565b604082019050919050565b60006020820190508181036000830152613600816135c4565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000613663602a836125e3565b915061366e82613607565b604082019050919050565b6000602082019050818103600083015261369281613656565b9050919050565b600060408201905081810360008301526136b38185612a82565b905081810360208301526136c78184612a82565b90509392505050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006137066014836125e3565b9150613711826136d0565b602082019050919050565b60006020820190508181036000830152613735816136f9565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006137986029836125e3565b91506137a38261373c565b604082019050919050565b600060208201905081810360008301526137c78161378b565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006137f5826137ce565b6137ff81856137d9565b935061380f8185602086016125f4565b61381881612453565b840191505092915050565b600060a0820190506138386000830188612b02565b6138456020830187612b02565b6138526040830186612364565b61385f6060830185612364565b818103608083015261387181846137ea565b90509695505050505050565b60008151905061388c816123ba565b92915050565b6000602082840312156138a8576138a7612286565b5b60006138b68482850161387d565b91505092915050565b60008160e01c9050919050565b600060033d11156138eb5760046000803e6138e86000516138bf565b90505b90565b600060443d10156138fe57613981565b61390661227c565b60043d036004823e80513d602482011167ffffffffffffffff8211171561392e575050613981565b808201805167ffffffffffffffff81111561394c5750505050613981565b80602083010160043d038501811115613969575050505050613981565b61397882602001850186612493565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b60006139e06034836125e3565b91506139eb82613984565b604082019050919050565b60006020820190508181036000830152613a0f816139d3565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000613a726028836125e3565b9150613a7d82613a16565b604082019050919050565b60006020820190508181036000830152613aa181613a65565b9050919050565b600060a082019050613abd6000830188612b02565b613aca6020830187612b02565b8181036040830152613adc8186612a82565b90508181036060830152613af08185612a82565b90508181036080830152613b0481846137ea565b9050969550505050505056fea26469706673582212201479480d5f2101afc3421b61ef5b6fca7cc5266fc16109d5062081e321942d1064736f6c63430008090033

Deployed Bytecode Sourcemap

42413:1962:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23243:231;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22266:310;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43632:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44174:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22987:105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43735:360;;;:::i;:::-;;25182:442;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43529:91;;;:::i;:::-;;42964:67;;;:::i;:::-;;23640:524;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38905:122;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19950:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41530:103;;;:::i;:::-;;42862:94;;;:::i;:::-;;40879:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44286:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24237:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38694:113;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43398:119;;;:::i;:::-;;24464:168;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42482:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24704:401;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41788:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23243:231;23329:7;23376:1;23357:21;;:7;:21;;;;23349:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;23444:9;:13;23454:2;23444:13;;;;;;;;;;;:22;23458:7;23444:22;;;;;;;;;;;;;;;;23437:29;;23243:231;;;;:::o;22266:310::-;22368:4;22420:26;22405:41;;;:11;:41;;;;:110;;;;22478:37;22463:52;;;:11;:52;;;;22405:110;:163;;;;22532:36;22556:11;22532:23;:36::i;:::-;22405:163;22385:183;;22266:310;;;:::o;43632:91::-;41110:12;:10;:12::i;:::-;41099:23;;:7;:5;:7::i;:::-;:23;;;41091:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43700:15:::1;43708:6;43700:7;:15::i;:::-;43632:91:::0;:::o;44174:104::-;44211:13;44237:33;;;;;;;;;;;;;;;;;;;44174:104;:::o;22987:105::-;23047:13;23080:4;23073:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22987:105;;;:::o;43735:360::-;20276:8;:6;:8::i;:::-;20275:9;20267:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;43792:12:::1;;;;;;;;;;;43784:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;42620:4;43887:1;43863:21;42538:1;43863:11;:21::i;:::-;:25;;;;:::i;:::-;:38;43855:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;44000:1;43968:30;43978:10;42538:1;43968:9;:30::i;:::-;:33;43960:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;44054:33;44060:10;42538:1;44080::::0;44054:33:::1;;;;;;;;;;;::::0;:5:::1;:33::i;:::-;43735:360::o:0;25182:442::-;25423:12;:10;:12::i;:::-;25415:20;;:4;:20;;;:60;;;;25439:36;25456:4;25462:12;:10;:12::i;:::-;25439:16;:36::i;:::-;25415:60;25393:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;25564:52;25587:4;25593:2;25597:3;25602:7;25611:4;25564:22;:52::i;:::-;25182:442;;;;;:::o;43529:91::-;41110:12;:10;:12::i;:::-;41099:23;;:7;:5;:7::i;:::-;:23;;;41091:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43600:12:::1;;;;;;;;;;;43599:13;43584:12;;:28;;;;;;;;;;;;;;;;;;43529:91::o:0;42964:67::-;41110:12;:10;:12::i;:::-;41099:23;;:7;:5;:7::i;:::-;:23;;;41091:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43013:10:::1;:8;:10::i;:::-;42964:67::o:0;23640:524::-;23796:16;23857:3;:10;23838:8;:15;:29;23830:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;23926:30;23973:8;:15;23959:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23926:63;;24007:9;24002:122;24026:8;:15;24022:1;:19;24002:122;;;24082:30;24092:8;24101:1;24092:11;;;;;;;;:::i;:::-;;;;;;;;24105:3;24109:1;24105:6;;;;;;;;:::i;:::-;;;;;;;;24082:9;:30::i;:::-;24063:13;24077:1;24063:16;;;;;;;;:::i;:::-;;;;;;;:49;;;;;24043:3;;;;:::i;:::-;;;24002:122;;;;24143:13;24136:20;;;23640:524;;;;:::o;38905:122::-;38962:4;39018:1;38986:29;39012:2;38986:25;:29::i;:::-;:33;38979:40;;38905:122;;;:::o;19950:86::-;19997:4;20021:7;;;;;;;;;;;20014:14;;19950:86;:::o;41530:103::-;41110:12;:10;:12::i;:::-;41099:23;;:7;:5;:7::i;:::-;:23;;;41091:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41595:30:::1;41622:1;41595:18;:30::i;:::-;41530:103::o:0;42862:94::-;41110:12;:10;:12::i;:::-;41099:23;;:7;:5;:7::i;:::-;:23;;;41091:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42909:8:::1;:6;:8::i;:::-;42943:5;42928:12;;:20;;;;;;;;;;;;;;;;;;42862:94::o:0;40879:87::-;40925:7;40952:6;;;;;;;;;;;40945:13;;40879:87;:::o;44286:86::-;44325:13;44351;;;;;;;;;;;;;;;;;;;44286:86;:::o;24237:155::-;24332:52;24351:12;:10;:12::i;:::-;24365:8;24375;24332:18;:52::i;:::-;24237:155;;:::o;38694:113::-;38756:7;38783:12;:16;38796:2;38783:16;;;;;;;;;;;;38776:23;;38694:113;;;:::o;43398:119::-;41110:12;:10;:12::i;:::-;41099:23;;:7;:5;:7::i;:::-;:23;;;41091:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20276:8:::1;:6;:8::i;:::-;20275:9;20267:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;43457:52:::2;43463:10;42538:1;42582:4;43457:52;;;;;;;;;;;::::0;:5:::2;:52::i;:::-;43398:119::o:0;24464:168::-;24563:4;24587:18;:27;24606:7;24587:27;;;;;;;;;;;;;;;:37;24615:8;24587:37;;;;;;;;;;;;;;;;;;;;;;;;;24580:44;;24464:168;;;;:::o;42482:24::-;;;;;;;;;;;;;:::o;24704:401::-;24920:12;:10;:12::i;:::-;24912:20;;:4;:20;;;:60;;;;24936:36;24953:4;24959:12;:10;:12::i;:::-;24936:16;:36::i;:::-;24912:60;24890:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;25052:45;25070:4;25076:2;25080;25084:6;25092:4;25052:17;:45::i;:::-;24704:401;;;;;:::o;41788:201::-;41110:12;:10;:12::i;:::-;41099:23;;:7;:5;:7::i;:::-;:23;;;41091:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41897:1:::1;41877:22;;:8;:22;;;;41869:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;41953:28;41972:8;41953:18;:28::i;:::-;41788:201:::0;:::o;37517:392::-;37756:66;37783:8;37793:4;37799:2;37803:3;37808:7;37817:4;37756:26;:66::i;:::-;37844:8;:6;:8::i;:::-;37843:9;37835:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;37517:392;;;;;;:::o;873:387::-;933:4;1141:12;1208:7;1196:20;1188:28;;1251:1;1244:4;:8;1237:15;;;873:387;;;:::o;39102:655::-;39341:66;39368:8;39378:4;39384:2;39388:3;39393:7;39402:4;39341:26;:66::i;:::-;39440:1;39424:18;;:4;:18;;;39420:160;;;39464:9;39459:110;39483:3;:10;39479:1;:14;39459:110;;;39543:7;39551:1;39543:10;;;;;;;;:::i;:::-;;;;;;;;39519:12;:20;39532:3;39536:1;39532:6;;;;;;;;:::i;:::-;;;;;;;;39519:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;39495:3;;;;:::i;:::-;;;39459:110;;;;39420:160;39610:1;39596:16;;:2;:16;;;39592:158;;;39634:9;39629:110;39653:3;:10;39649:1;:14;39629:110;;;39713:7;39721:1;39713:10;;;;;;;;:::i;:::-;;;;;;;;39689:12;:20;39702:3;39706:1;39702:6;;;;;;;;:::i;:::-;;;;;;;;39689:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;39665:3;;;;:::i;:::-;;;39629:110;;;;39592:158;39102:655;;;;;;:::o;34739:221::-;;;;;;;:::o;10092:157::-;10177:4;10216:25;10201:40;;;:11;:40;;;;10194:47;;10092:157;;;:::o;18551:98::-;18604:7;18631:10;18624:17;;18551:98;:::o;29184:88::-;29258:6;29251:4;:13;;;;;;;;;;;;:::i;:::-;;29184:88;:::o;29658:569::-;29825:1;29811:16;;:2;:16;;;;29803:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;29878:16;29897:12;:10;:12::i;:::-;29878:31;;29922:102;29943:8;29961:1;29965:2;29969:21;29987:2;29969:17;:21::i;:::-;29992:25;30010:6;29992:17;:25::i;:::-;30019:4;29922:20;:102::i;:::-;30058:6;30037:9;:13;30047:2;30037:13;;;;;;;;;;;:17;30051:2;30037:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;30117:2;30080:52;;30113:1;30080:52;;30095:8;30080:52;;;30121:2;30125:6;30080:52;;;;;;;:::i;:::-;;;;;;;;30145:74;30176:8;30194:1;30198:2;30202;30206:6;30214:4;30145:30;:74::i;:::-;29792:435;29658:569;;;;:::o;27266:1074::-;27493:7;:14;27479:3;:10;:28;27471:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;27585:1;27571:16;;:2;:16;;;;27563:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;27642:16;27661:12;:10;:12::i;:::-;27642:31;;27686:60;27707:8;27717:4;27723:2;27727:3;27732:7;27741:4;27686:20;:60::i;:::-;27764:9;27759:421;27783:3;:10;27779:1;:14;27759:421;;;27815:10;27828:3;27832:1;27828:6;;;;;;;;:::i;:::-;;;;;;;;27815:19;;27849:14;27866:7;27874:1;27866:10;;;;;;;;:::i;:::-;;;;;;;;27849:27;;27893:19;27915:9;:13;27925:2;27915:13;;;;;;;;;;;:19;27929:4;27915:19;;;;;;;;;;;;;;;;27893:41;;27972:6;27957:11;:21;;27949:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;28105:6;28091:11;:20;28069:9;:13;28079:2;28069:13;;;;;;;;;;;:19;28083:4;28069:19;;;;;;;;;;;;;;;:42;;;;28162:6;28141:9;:13;28151:2;28141:13;;;;;;;;;;;:17;28155:2;28141:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;27800:380;;;27795:3;;;;:::i;:::-;;;27759:421;;;;28227:2;28197:47;;28221:4;28197:47;;28211:8;28197:47;;;28231:3;28236:7;28197:47;;;;;;;:::i;:::-;;;;;;;;28257:75;28293:8;28303:4;28309:2;28313:3;28318:7;28327:4;28257:35;:75::i;:::-;27460:880;27266:1074;;;;;:::o;21009:120::-;20553:8;:6;:8::i;:::-;20545:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;21078:5:::1;21068:7;;:15;;;;;;;;;;;;;;;;;;21099:22;21108:12;:10;:12::i;:::-;21099:22;;;;;;:::i;:::-;;;;;;;;21009:120::o:0;42149:191::-;42223:16;42242:6;;;;;;;;;;;42223:25;;42268:8;42259:6;;:17;;;;;;;;;;;;;;;;;;42323:8;42292:40;;42313:8;42292:40;;;;;;;;;;;;42212:128;42149:191;:::o;20750:118::-;20276:8;:6;:8::i;:::-;20275:9;20267:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;20820:4:::1;20810:7;;:14;;;;;;;;;;;;;;;;;;20840:20;20847:12;:10;:12::i;:::-;20840:20;;;;;;:::i;:::-;;;;;;;;20750:118::o:0;33452:331::-;33607:8;33598:17;;:5;:17;;;;33590:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;33710:8;33672:18;:25;33691:5;33672:25;;;;;;;;;;;;;;;:35;33698:8;33672:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;33756:8;33734:41;;33749:5;33734:41;;;33766:8;33734:41;;;;;;:::i;:::-;;;;;;;;33452:331;;;:::o;26088:820::-;26290:1;26276:16;;:2;:16;;;;26268:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;26347:16;26366:12;:10;:12::i;:::-;26347:31;;26391:96;26412:8;26422:4;26428:2;26432:21;26450:2;26432:17;:21::i;:::-;26455:25;26473:6;26455:17;:25::i;:::-;26482:4;26391:20;:96::i;:::-;26500:19;26522:9;:13;26532:2;26522:13;;;;;;;;;;;:19;26536:4;26522:19;;;;;;;;;;;;;;;;26500:41;;26575:6;26560:11;:21;;26552:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;26700:6;26686:11;:20;26664:9;:13;26674:2;26664:13;;;;;;;;;;;:19;26678:4;26664:19;;;;;;;;;;;;;;;:42;;;;26749:6;26728:9;:13;26738:2;26728:13;;;;;;;;;;;:17;26742:2;26728:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;26804:2;26773:46;;26798:4;26773:46;;26788:8;26773:46;;;26808:2;26812:6;26773:46;;;;;;;:::i;:::-;;;;;;;;26832:68;26863:8;26873:4;26879:2;26883;26887:6;26895:4;26832:30;:68::i;:::-;26257:651;;26088:820;;;;;:::o;36541:198::-;36607:16;36636:22;36675:1;36661:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36636:41;;36699:7;36688:5;36694:1;36688:8;;;;;;;;:::i;:::-;;;;;;;:18;;;;;36726:5;36719:12;;;36541:198;;;:::o;43043:345::-;43314:66;43341:8;43351:4;43357:2;43361:3;43366:7;43375:4;43314:26;:66::i;:::-;43043:345;;;;;;:::o;34968:744::-;35183:15;:2;:13;;;:15::i;:::-;35179:526;;;35236:2;35219:38;;;35258:8;35268:4;35274:2;35278:6;35286:4;35219:72;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35215:479;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;35567:6;35560:14;;;;;;;;;;;:::i;:::-;;;;;;;;35215:479;;;35616:62;;;;;;;;;;:::i;:::-;;;;;;;;35215:479;35353:43;;;35341:55;;;:8;:55;;;;35337:154;;35421:50;;;;;;;;;;:::i;:::-;;;;;;;;35337:154;35292:214;35179:526;34968:744;;;;;;:::o;35720:813::-;35960:15;:2;:13;;;:15::i;:::-;35956:570;;;36013:2;35996:43;;;36040:8;36050:4;36056:3;36061:7;36070:4;35996:79;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35992:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;36388:6;36381:14;;;;;;;;;;;:::i;:::-;;;;;;;;35992:523;;;36437:62;;;;;;;;;;:::i;:::-;;;;;;;;35992:523;36169:48;;;36157:60;;;:8;:60;;;;36153:159;;36242:50;;;;;;;;;;:::i;:::-;;;;;;;;36153:159;36076:251;35956:570;35720:813;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:77::-;878:7;907:5;896:16;;841:77;;;:::o;924:122::-;997:24;1015:5;997:24;:::i;:::-;990:5;987:35;977:63;;1036:1;1033;1026:12;977:63;924:122;:::o;1052:139::-;1098:5;1136:6;1123:20;1114:29;;1152:33;1179:5;1152:33;:::i;:::-;1052:139;;;;:::o;1197:474::-;1265:6;1273;1322:2;1310:9;1301:7;1297:23;1293:32;1290:119;;;1328:79;;:::i;:::-;1290:119;1448:1;1473:53;1518:7;1509:6;1498:9;1494:22;1473:53;:::i;:::-;1463:63;;1419:117;1575:2;1601:53;1646:7;1637:6;1626:9;1622:22;1601:53;:::i;:::-;1591:63;;1546:118;1197:474;;;;;:::o;1677:118::-;1764:24;1782:5;1764:24;:::i;:::-;1759:3;1752:37;1677:118;;:::o;1801:222::-;1894:4;1932:2;1921:9;1917:18;1909:26;;1945:71;2013:1;2002:9;1998:17;1989:6;1945:71;:::i;:::-;1801:222;;;;:::o;2029:149::-;2065:7;2105:66;2098:5;2094:78;2083:89;;2029:149;;;:::o;2184:120::-;2256:23;2273:5;2256:23;:::i;:::-;2249:5;2246:34;2236:62;;2294:1;2291;2284:12;2236:62;2184:120;:::o;2310:137::-;2355:5;2393:6;2380:20;2371:29;;2409:32;2435:5;2409:32;:::i;:::-;2310:137;;;;:::o;2453:327::-;2511:6;2560:2;2548:9;2539:7;2535:23;2531:32;2528:119;;;2566:79;;:::i;:::-;2528:119;2686:1;2711:52;2755:7;2746:6;2735:9;2731:22;2711:52;:::i;:::-;2701:62;;2657:116;2453:327;;;;:::o;2786:90::-;2820:7;2863:5;2856:13;2849:21;2838:32;;2786:90;;;:::o;2882:109::-;2963:21;2978:5;2963:21;:::i;:::-;2958:3;2951:34;2882:109;;:::o;2997:210::-;3084:4;3122:2;3111:9;3107:18;3099:26;;3135:65;3197:1;3186:9;3182:17;3173:6;3135:65;:::i;:::-;2997:210;;;;:::o;3213:117::-;3322:1;3319;3312:12;3336:117;3445:1;3442;3435:12;3459:102;3500:6;3551:2;3547:7;3542:2;3535:5;3531:14;3527:28;3517:38;;3459:102;;;:::o;3567:180::-;3615:77;3612:1;3605:88;3712:4;3709:1;3702:15;3736:4;3733:1;3726:15;3753:281;3836:27;3858:4;3836:27;:::i;:::-;3828:6;3824:40;3966:6;3954:10;3951:22;3930:18;3918:10;3915:34;3912:62;3909:88;;;3977:18;;:::i;:::-;3909:88;4017:10;4013:2;4006:22;3796:238;3753:281;;:::o;4040:129::-;4074:6;4101:20;;:::i;:::-;4091:30;;4130:33;4158:4;4150:6;4130:33;:::i;:::-;4040:129;;;:::o;4175:308::-;4237:4;4327:18;4319:6;4316:30;4313:56;;;4349:18;;:::i;:::-;4313:56;4387:29;4409:6;4387:29;:::i;:::-;4379:37;;4471:4;4465;4461:15;4453:23;;4175:308;;;:::o;4489:154::-;4573:6;4568:3;4563;4550:30;4635:1;4626:6;4621:3;4617:16;4610:27;4489:154;;;:::o;4649:412::-;4727:5;4752:66;4768:49;4810:6;4768:49;:::i;:::-;4752:66;:::i;:::-;4743:75;;4841:6;4834:5;4827:21;4879:4;4872:5;4868:16;4917:3;4908:6;4903:3;4899:16;4896:25;4893:112;;;4924:79;;:::i;:::-;4893:112;5014:41;5048:6;5043:3;5038;5014:41;:::i;:::-;4733:328;4649:412;;;;;:::o;5081:340::-;5137:5;5186:3;5179:4;5171:6;5167:17;5163:27;5153:122;;5194:79;;:::i;:::-;5153:122;5311:6;5298:20;5336:79;5411:3;5403:6;5396:4;5388:6;5384:17;5336:79;:::i;:::-;5327:88;;5143:278;5081:340;;;;:::o;5427:509::-;5496:6;5545:2;5533:9;5524:7;5520:23;5516:32;5513:119;;;5551:79;;:::i;:::-;5513:119;5699:1;5688:9;5684:17;5671:31;5729:18;5721:6;5718:30;5715:117;;;5751:79;;:::i;:::-;5715:117;5856:63;5911:7;5902:6;5891:9;5887:22;5856:63;:::i;:::-;5846:73;;5642:287;5427:509;;;;:::o;5942:99::-;5994:6;6028:5;6022:12;6012:22;;5942:99;;;:::o;6047:169::-;6131:11;6165:6;6160:3;6153:19;6205:4;6200:3;6196:14;6181:29;;6047:169;;;;:::o;6222:307::-;6290:1;6300:113;6314:6;6311:1;6308:13;6300:113;;;6399:1;6394:3;6390:11;6384:18;6380:1;6375:3;6371:11;6364:39;6336:2;6333:1;6329:10;6324:15;;6300:113;;;6431:6;6428:1;6425:13;6422:101;;;6511:1;6502:6;6497:3;6493:16;6486:27;6422:101;6271:258;6222:307;;;:::o;6535:364::-;6623:3;6651:39;6684:5;6651:39;:::i;:::-;6706:71;6770:6;6765:3;6706:71;:::i;:::-;6699:78;;6786:52;6831:6;6826:3;6819:4;6812:5;6808:16;6786:52;:::i;:::-;6863:29;6885:6;6863:29;:::i;:::-;6858:3;6854:39;6847:46;;6627:272;6535:364;;;;:::o;6905:313::-;7018:4;7056:2;7045:9;7041:18;7033:26;;7105:9;7099:4;7095:20;7091:1;7080:9;7076:17;7069:47;7133:78;7206:4;7197:6;7133:78;:::i;:::-;7125:86;;6905:313;;;;:::o;7224:329::-;7283:6;7332:2;7320:9;7311:7;7307:23;7303:32;7300:119;;;7338:79;;:::i;:::-;7300:119;7458:1;7483:53;7528:7;7519:6;7508:9;7504:22;7483:53;:::i;:::-;7473:63;;7429:117;7224:329;;;;:::o;7559:311::-;7636:4;7726:18;7718:6;7715:30;7712:56;;;7748:18;;:::i;:::-;7712:56;7798:4;7790:6;7786:17;7778:25;;7858:4;7852;7848:15;7840:23;;7559:311;;;:::o;7876:117::-;7985:1;7982;7975:12;8016:710;8112:5;8137:81;8153:64;8210:6;8153:64;:::i;:::-;8137:81;:::i;:::-;8128:90;;8238:5;8267:6;8260:5;8253:21;8301:4;8294:5;8290:16;8283:23;;8354:4;8346:6;8342:17;8334:6;8330:30;8383:3;8375:6;8372:15;8369:122;;;8402:79;;:::i;:::-;8369:122;8517:6;8500:220;8534:6;8529:3;8526:15;8500:220;;;8609:3;8638:37;8671:3;8659:10;8638:37;:::i;:::-;8633:3;8626:50;8705:4;8700:3;8696:14;8689:21;;8576:144;8560:4;8555:3;8551:14;8544:21;;8500:220;;;8504:21;8118:608;;8016:710;;;;;:::o;8749:370::-;8820:5;8869:3;8862:4;8854:6;8850:17;8846:27;8836:122;;8877:79;;:::i;:::-;8836:122;8994:6;8981:20;9019:94;9109:3;9101:6;9094:4;9086:6;9082:17;9019:94;:::i;:::-;9010:103;;8826:293;8749:370;;;;:::o;9125:307::-;9186:4;9276:18;9268:6;9265:30;9262:56;;;9298:18;;:::i;:::-;9262:56;9336:29;9358:6;9336:29;:::i;:::-;9328:37;;9420:4;9414;9410:15;9402:23;;9125:307;;;:::o;9438:410::-;9515:5;9540:65;9556:48;9597:6;9556:48;:::i;:::-;9540:65;:::i;:::-;9531:74;;9628:6;9621:5;9614:21;9666:4;9659:5;9655:16;9704:3;9695:6;9690:3;9686:16;9683:25;9680:112;;;9711:79;;:::i;:::-;9680:112;9801:41;9835:6;9830:3;9825;9801:41;:::i;:::-;9521:327;9438:410;;;;;:::o;9867:338::-;9922:5;9971:3;9964:4;9956:6;9952:17;9948:27;9938:122;;9979:79;;:::i;:::-;9938:122;10096:6;10083:20;10121:78;10195:3;10187:6;10180:4;10172:6;10168:17;10121:78;:::i;:::-;10112:87;;9928:277;9867:338;;;;:::o;10211:1509::-;10365:6;10373;10381;10389;10397;10446:3;10434:9;10425:7;10421:23;10417:33;10414:120;;;10453:79;;:::i;:::-;10414:120;10573:1;10598:53;10643:7;10634:6;10623:9;10619:22;10598:53;:::i;:::-;10588:63;;10544:117;10700:2;10726:53;10771:7;10762:6;10751:9;10747:22;10726:53;:::i;:::-;10716:63;;10671:118;10856:2;10845:9;10841:18;10828:32;10887:18;10879:6;10876:30;10873:117;;;10909:79;;:::i;:::-;10873:117;11014:78;11084:7;11075:6;11064:9;11060:22;11014:78;:::i;:::-;11004:88;;10799:303;11169:2;11158:9;11154:18;11141:32;11200:18;11192:6;11189:30;11186:117;;;11222:79;;:::i;:::-;11186:117;11327:78;11397:7;11388:6;11377:9;11373:22;11327:78;:::i;:::-;11317:88;;11112:303;11482:3;11471:9;11467:19;11454:33;11514:18;11506:6;11503:30;11500:117;;;11536:79;;:::i;:::-;11500:117;11641:62;11695:7;11686:6;11675:9;11671:22;11641:62;:::i;:::-;11631:72;;11425:288;10211:1509;;;;;;;;:::o;11726:311::-;11803:4;11893:18;11885:6;11882:30;11879:56;;;11915:18;;:::i;:::-;11879:56;11965:4;11957:6;11953:17;11945:25;;12025:4;12019;12015:15;12007:23;;11726:311;;;:::o;12060:710::-;12156:5;12181:81;12197:64;12254:6;12197:64;:::i;:::-;12181:81;:::i;:::-;12172:90;;12282:5;12311:6;12304:5;12297:21;12345:4;12338:5;12334:16;12327:23;;12398:4;12390:6;12386:17;12378:6;12374:30;12427:3;12419:6;12416:15;12413:122;;;12446:79;;:::i;:::-;12413:122;12561:6;12544:220;12578:6;12573:3;12570:15;12544:220;;;12653:3;12682:37;12715:3;12703:10;12682:37;:::i;:::-;12677:3;12670:50;12749:4;12744:3;12740:14;12733:21;;12620:144;12604:4;12599:3;12595:14;12588:21;;12544:220;;;12548:21;12162:608;;12060:710;;;;;:::o;12793:370::-;12864:5;12913:3;12906:4;12898:6;12894:17;12890:27;12880:122;;12921:79;;:::i;:::-;12880:122;13038:6;13025:20;13063:94;13153:3;13145:6;13138:4;13130:6;13126:17;13063:94;:::i;:::-;13054:103;;12870:293;12793:370;;;;:::o;13169:894::-;13287:6;13295;13344:2;13332:9;13323:7;13319:23;13315:32;13312:119;;;13350:79;;:::i;:::-;13312:119;13498:1;13487:9;13483:17;13470:31;13528:18;13520:6;13517:30;13514:117;;;13550:79;;:::i;:::-;13514:117;13655:78;13725:7;13716:6;13705:9;13701:22;13655:78;:::i;:::-;13645:88;;13441:302;13810:2;13799:9;13795:18;13782:32;13841:18;13833:6;13830:30;13827:117;;;13863:79;;:::i;:::-;13827:117;13968:78;14038:7;14029:6;14018:9;14014:22;13968:78;:::i;:::-;13958:88;;13753:303;13169:894;;;;;:::o;14069:114::-;14136:6;14170:5;14164:12;14154:22;;14069:114;;;:::o;14189:184::-;14288:11;14322:6;14317:3;14310:19;14362:4;14357:3;14353:14;14338:29;;14189:184;;;;:::o;14379:132::-;14446:4;14469:3;14461:11;;14499:4;14494:3;14490:14;14482:22;;14379:132;;;:::o;14517:108::-;14594:24;14612:5;14594:24;:::i;:::-;14589:3;14582:37;14517:108;;:::o;14631:179::-;14700:10;14721:46;14763:3;14755:6;14721:46;:::i;:::-;14799:4;14794:3;14790:14;14776:28;;14631:179;;;;:::o;14816:113::-;14886:4;14918;14913:3;14909:14;14901:22;;14816:113;;;:::o;14965:732::-;15084:3;15113:54;15161:5;15113:54;:::i;:::-;15183:86;15262:6;15257:3;15183:86;:::i;:::-;15176:93;;15293:56;15343:5;15293:56;:::i;:::-;15372:7;15403:1;15388:284;15413:6;15410:1;15407:13;15388:284;;;15489:6;15483:13;15516:63;15575:3;15560:13;15516:63;:::i;:::-;15509:70;;15602:60;15655:6;15602:60;:::i;:::-;15592:70;;15448:224;15435:1;15432;15428:9;15423:14;;15388:284;;;15392:14;15688:3;15681:10;;15089:608;;;14965:732;;;;:::o;15703:373::-;15846:4;15884:2;15873:9;15869:18;15861:26;;15933:9;15927:4;15923:20;15919:1;15908:9;15904:17;15897:47;15961:108;16064:4;16055:6;15961:108;:::i;:::-;15953:116;;15703:373;;;;:::o;16082:118::-;16169:24;16187:5;16169:24;:::i;:::-;16164:3;16157:37;16082:118;;:::o;16206:222::-;16299:4;16337:2;16326:9;16322:18;16314:26;;16350:71;16418:1;16407:9;16403:17;16394:6;16350:71;:::i;:::-;16206:222;;;;:::o;16434:116::-;16504:21;16519:5;16504:21;:::i;:::-;16497:5;16494:32;16484:60;;16540:1;16537;16530:12;16484:60;16434:116;:::o;16556:133::-;16599:5;16637:6;16624:20;16615:29;;16653:30;16677:5;16653:30;:::i;:::-;16556:133;;;;:::o;16695:468::-;16760:6;16768;16817:2;16805:9;16796:7;16792:23;16788:32;16785:119;;;16823:79;;:::i;:::-;16785:119;16943:1;16968:53;17013:7;17004:6;16993:9;16989:22;16968:53;:::i;:::-;16958:63;;16914:117;17070:2;17096:50;17138:7;17129:6;17118:9;17114:22;17096:50;:::i;:::-;17086:60;;17041:115;16695:468;;;;;:::o;17169:474::-;17237:6;17245;17294:2;17282:9;17273:7;17269:23;17265:32;17262:119;;;17300:79;;:::i;:::-;17262:119;17420:1;17445:53;17490:7;17481:6;17470:9;17466:22;17445:53;:::i;:::-;17435:63;;17391:117;17547:2;17573:53;17618:7;17609:6;17598:9;17594:22;17573:53;:::i;:::-;17563:63;;17518:118;17169:474;;;;;:::o;17649:1089::-;17753:6;17761;17769;17777;17785;17834:3;17822:9;17813:7;17809:23;17805:33;17802:120;;;17841:79;;:::i;:::-;17802:120;17961:1;17986:53;18031:7;18022:6;18011:9;18007:22;17986:53;:::i;:::-;17976:63;;17932:117;18088:2;18114:53;18159:7;18150:6;18139:9;18135:22;18114:53;:::i;:::-;18104:63;;18059:118;18216:2;18242:53;18287:7;18278:6;18267:9;18263:22;18242:53;:::i;:::-;18232:63;;18187:118;18344:2;18370:53;18415:7;18406:6;18395:9;18391:22;18370:53;:::i;:::-;18360:63;;18315:118;18500:3;18489:9;18485:19;18472:33;18532:18;18524:6;18521:30;18518:117;;;18554:79;;:::i;:::-;18518:117;18659:62;18713:7;18704:6;18693:9;18689:22;18659:62;:::i;:::-;18649:72;;18443:288;17649:1089;;;;;;;;:::o;18744:329::-;18803:6;18852:2;18840:9;18831:7;18827:23;18823:32;18820:119;;;18858:79;;:::i;:::-;18820:119;18978:1;19003:53;19048:7;19039:6;19028:9;19024:22;19003:53;:::i;:::-;18993:63;;18949:117;18744:329;;;;:::o;19079:230::-;19219:34;19215:1;19207:6;19203:14;19196:58;19288:13;19283:2;19275:6;19271:15;19264:38;19079:230;:::o;19315:366::-;19457:3;19478:67;19542:2;19537:3;19478:67;:::i;:::-;19471:74;;19554:93;19643:3;19554:93;:::i;:::-;19672:2;19667:3;19663:12;19656:19;;19315:366;;;:::o;19687:419::-;19853:4;19891:2;19880:9;19876:18;19868:26;;19940:9;19934:4;19930:20;19926:1;19915:9;19911:17;19904:47;19968:131;20094:4;19968:131;:::i;:::-;19960:139;;19687:419;;;:::o;20112:182::-;20252:34;20248:1;20240:6;20236:14;20229:58;20112:182;:::o;20300:366::-;20442:3;20463:67;20527:2;20522:3;20463:67;:::i;:::-;20456:74;;20539:93;20628:3;20539:93;:::i;:::-;20657:2;20652:3;20648:12;20641:19;;20300:366;;;:::o;20672:419::-;20838:4;20876:2;20865:9;20861:18;20853:26;;20925:9;20919:4;20915:20;20911:1;20900:9;20896:17;20889:47;20953:131;21079:4;20953:131;:::i;:::-;20945:139;;20672:419;;;:::o;21097:180::-;21145:77;21142:1;21135:88;21242:4;21239:1;21232:15;21266:4;21263:1;21256:15;21283:320;21327:6;21364:1;21358:4;21354:12;21344:22;;21411:1;21405:4;21401:12;21432:18;21422:81;;21488:4;21480:6;21476:17;21466:27;;21422:81;21550:2;21542:6;21539:14;21519:18;21516:38;21513:84;;;21569:18;;:::i;:::-;21513:84;21334:269;21283:320;;;:::o;21609:166::-;21749:18;21745:1;21737:6;21733:14;21726:42;21609:166;:::o;21781:366::-;21923:3;21944:67;22008:2;22003:3;21944:67;:::i;:::-;21937:74;;22020:93;22109:3;22020:93;:::i;:::-;22138:2;22133:3;22129:12;22122:19;;21781:366;;;:::o;22153:419::-;22319:4;22357:2;22346:9;22342:18;22334:26;;22406:9;22400:4;22396:20;22392:1;22381:9;22377:17;22370:47;22434:131;22560:4;22434:131;:::i;:::-;22426:139;;22153:419;;;:::o;22578:222::-;22718:34;22714:1;22706:6;22702:14;22695:58;22787:5;22782:2;22774:6;22770:15;22763:30;22578:222;:::o;22806:366::-;22948:3;22969:67;23033:2;23028:3;22969:67;:::i;:::-;22962:74;;23045:93;23134:3;23045:93;:::i;:::-;23163:2;23158:3;23154:12;23147:19;;22806:366;;;:::o;23178:419::-;23344:4;23382:2;23371:9;23367:18;23359:26;;23431:9;23425:4;23421:20;23417:1;23406:9;23402:17;23395:47;23459:131;23585:4;23459:131;:::i;:::-;23451:139;;23178:419;;;:::o;23603:180::-;23651:77;23648:1;23641:88;23748:4;23745:1;23738:15;23772:4;23769:1;23762:15;23789:305;23829:3;23848:20;23866:1;23848:20;:::i;:::-;23843:25;;23882:20;23900:1;23882:20;:::i;:::-;23877:25;;24036:1;23968:66;23964:74;23961:1;23958:81;23955:107;;;24042:18;;:::i;:::-;23955:107;24086:1;24083;24079:9;24072:16;;23789:305;;;;:::o;24100:230::-;24240:34;24236:1;24228:6;24224:14;24217:58;24309:13;24304:2;24296:6;24292:15;24285:38;24100:230;:::o;24336:366::-;24478:3;24499:67;24563:2;24558:3;24499:67;:::i;:::-;24492:74;;24575:93;24664:3;24575:93;:::i;:::-;24693:2;24688:3;24684:12;24677:19;;24336:366;;;:::o;24708:419::-;24874:4;24912:2;24901:9;24897:18;24889:26;;24961:9;24955:4;24951:20;24947:1;24936:9;24932:17;24925:47;24989:131;25115:4;24989:131;:::i;:::-;24981:139;;24708:419;;;:::o;25133:225::-;25273:34;25269:1;25261:6;25257:14;25250:58;25342:8;25337:2;25329:6;25325:15;25318:33;25133:225;:::o;25364:366::-;25506:3;25527:67;25591:2;25586:3;25527:67;:::i;:::-;25520:74;;25603:93;25692:3;25603:93;:::i;:::-;25721:2;25716:3;25712:12;25705:19;;25364:366;;;:::o;25736:419::-;25902:4;25940:2;25929:9;25925:18;25917:26;;25989:9;25983:4;25979:20;25975:1;25964:9;25960:17;25953:47;26017:131;26143:4;26017:131;:::i;:::-;26009:139;;25736:419;;;:::o;26161:237::-;26301:34;26297:1;26289:6;26285:14;26278:58;26370:20;26365:2;26357:6;26353:15;26346:45;26161:237;:::o;26404:366::-;26546:3;26567:67;26631:2;26626:3;26567:67;:::i;:::-;26560:74;;26643:93;26732:3;26643:93;:::i;:::-;26761:2;26756:3;26752:12;26745:19;;26404:366;;;:::o;26776:419::-;26942:4;26980:2;26969:9;26965:18;26957:26;;27029:9;27023:4;27019:20;27015:1;27004:9;27000:17;26993:47;27057:131;27183:4;27057:131;:::i;:::-;27049:139;;26776:419;;;:::o;27201:228::-;27341:34;27337:1;27329:6;27325:14;27318:58;27410:11;27405:2;27397:6;27393:15;27386:36;27201:228;:::o;27435:366::-;27577:3;27598:67;27662:2;27657:3;27598:67;:::i;:::-;27591:74;;27674:93;27763:3;27674:93;:::i;:::-;27792:2;27787:3;27783:12;27776:19;;27435:366;;;:::o;27807:419::-;27973:4;28011:2;28000:9;27996:18;27988:26;;28060:9;28054:4;28050:20;28046:1;28035:9;28031:17;28024:47;28088:131;28214:4;28088:131;:::i;:::-;28080:139;;27807:419;;;:::o;28232:180::-;28280:77;28277:1;28270:88;28377:4;28374:1;28367:15;28401:4;28398:1;28391:15;28418:233;28457:3;28480:24;28498:5;28480:24;:::i;:::-;28471:33;;28526:66;28519:5;28516:77;28513:103;;;28596:18;;:::i;:::-;28513:103;28643:1;28636:5;28632:13;28625:20;;28418:233;;;:::o;28657:228::-;28797:34;28793:1;28785:6;28781:14;28774:58;28866:11;28861:2;28853:6;28849:15;28842:36;28657:228;:::o;28891:366::-;29033:3;29054:67;29118:2;29113:3;29054:67;:::i;:::-;29047:74;;29130:93;29219:3;29130:93;:::i;:::-;29248:2;29243:3;29239:12;29232:19;;28891:366;;;:::o;29263:419::-;29429:4;29467:2;29456:9;29452:18;29444:26;;29516:9;29510:4;29506:20;29502:1;29491:9;29487:17;29480:47;29544:131;29670:4;29544:131;:::i;:::-;29536:139;;29263:419;;;:::o;29688:225::-;29828:34;29824:1;29816:6;29812:14;29805:58;29897:8;29892:2;29884:6;29880:15;29873:33;29688:225;:::o;29919:366::-;30061:3;30082:67;30146:2;30141:3;30082:67;:::i;:::-;30075:74;;30158:93;30247:3;30158:93;:::i;:::-;30276:2;30271:3;30267:12;30260:19;;29919:366;;;:::o;30291:419::-;30457:4;30495:2;30484:9;30480:18;30472:26;;30544:9;30538:4;30534:20;30530:1;30519:9;30515:17;30508:47;30572:131;30698:4;30572:131;:::i;:::-;30564:139;;30291:419;;;:::o;30716:231::-;30856:34;30852:1;30844:6;30840:14;30833:58;30925:14;30920:2;30912:6;30908:15;30901:39;30716:231;:::o;30953:366::-;31095:3;31116:67;31180:2;31175:3;31116:67;:::i;:::-;31109:74;;31192:93;31281:3;31192:93;:::i;:::-;31310:2;31305:3;31301:12;31294:19;;30953:366;;;:::o;31325:419::-;31491:4;31529:2;31518:9;31514:18;31506:26;;31578:9;31572:4;31568:20;31564:1;31553:9;31549:17;31542:47;31606:131;31732:4;31606:131;:::i;:::-;31598:139;;31325:419;;;:::o;31750:191::-;31790:4;31810:20;31828:1;31810:20;:::i;:::-;31805:25;;31844:20;31862:1;31844:20;:::i;:::-;31839:25;;31883:1;31880;31877:8;31874:34;;;31888:18;;:::i;:::-;31874:34;31933:1;31930;31926:9;31918:17;;31750:191;;;;:::o;31947:220::-;32087:34;32083:1;32075:6;32071:14;32064:58;32156:3;32151:2;32143:6;32139:15;32132:28;31947:220;:::o;32173:366::-;32315:3;32336:67;32400:2;32395:3;32336:67;:::i;:::-;32329:74;;32412:93;32501:3;32412:93;:::i;:::-;32530:2;32525:3;32521:12;32514:19;;32173:366;;;:::o;32545:419::-;32711:4;32749:2;32738:9;32734:18;32726:26;;32798:9;32792:4;32788:20;32784:1;32773:9;32769:17;32762:47;32826:131;32952:4;32826:131;:::i;:::-;32818:139;;32545:419;;;:::o;32970:332::-;33091:4;33129:2;33118:9;33114:18;33106:26;;33142:71;33210:1;33199:9;33195:17;33186:6;33142:71;:::i;:::-;33223:72;33291:2;33280:9;33276:18;33267:6;33223:72;:::i;:::-;32970:332;;;;;:::o;33308:227::-;33448:34;33444:1;33436:6;33432:14;33425:58;33517:10;33512:2;33504:6;33500:15;33493:35;33308:227;:::o;33541:366::-;33683:3;33704:67;33768:2;33763:3;33704:67;:::i;:::-;33697:74;;33780:93;33869:3;33780:93;:::i;:::-;33898:2;33893:3;33889:12;33882:19;;33541:366;;;:::o;33913:419::-;34079:4;34117:2;34106:9;34102:18;34094:26;;34166:9;34160:4;34156:20;34152:1;34141:9;34137:17;34130:47;34194:131;34320:4;34194:131;:::i;:::-;34186:139;;33913:419;;;:::o;34338:224::-;34478:34;34474:1;34466:6;34462:14;34455:58;34547:7;34542:2;34534:6;34530:15;34523:32;34338:224;:::o;34568:366::-;34710:3;34731:67;34795:2;34790:3;34731:67;:::i;:::-;34724:74;;34807:93;34896:3;34807:93;:::i;:::-;34925:2;34920:3;34916:12;34909:19;;34568:366;;;:::o;34940:419::-;35106:4;35144:2;35133:9;35129:18;35121:26;;35193:9;35187:4;35183:20;35179:1;35168:9;35164:17;35157:47;35221:131;35347:4;35221:131;:::i;:::-;35213:139;;34940:419;;;:::o;35365:229::-;35505:34;35501:1;35493:6;35489:14;35482:58;35574:12;35569:2;35561:6;35557:15;35550:37;35365:229;:::o;35600:366::-;35742:3;35763:67;35827:2;35822:3;35763:67;:::i;:::-;35756:74;;35839:93;35928:3;35839:93;:::i;:::-;35957:2;35952:3;35948:12;35941:19;;35600:366;;;:::o;35972:419::-;36138:4;36176:2;36165:9;36161:18;36153:26;;36225:9;36219:4;36215:20;36211:1;36200:9;36196:17;36189:47;36253:131;36379:4;36253:131;:::i;:::-;36245:139;;35972:419;;;:::o;36397:634::-;36618:4;36656:2;36645:9;36641:18;36633:26;;36705:9;36699:4;36695:20;36691:1;36680:9;36676:17;36669:47;36733:108;36836:4;36827:6;36733:108;:::i;:::-;36725:116;;36888:9;36882:4;36878:20;36873:2;36862:9;36858:18;36851:48;36916:108;37019:4;37010:6;36916:108;:::i;:::-;36908:116;;36397:634;;;;;:::o;37037:170::-;37177:22;37173:1;37165:6;37161:14;37154:46;37037:170;:::o;37213:366::-;37355:3;37376:67;37440:2;37435:3;37376:67;:::i;:::-;37369:74;;37452:93;37541:3;37452:93;:::i;:::-;37570:2;37565:3;37561:12;37554:19;;37213:366;;;:::o;37585:419::-;37751:4;37789:2;37778:9;37774:18;37766:26;;37838:9;37832:4;37828:20;37824:1;37813:9;37809:17;37802:47;37866:131;37992:4;37866:131;:::i;:::-;37858:139;;37585:419;;;:::o;38010:228::-;38150:34;38146:1;38138:6;38134:14;38127:58;38219:11;38214:2;38206:6;38202:15;38195:36;38010:228;:::o;38244:366::-;38386:3;38407:67;38471:2;38466:3;38407:67;:::i;:::-;38400:74;;38483:93;38572:3;38483:93;:::i;:::-;38601:2;38596:3;38592:12;38585:19;;38244:366;;;:::o;38616:419::-;38782:4;38820:2;38809:9;38805:18;38797:26;;38869:9;38863:4;38859:20;38855:1;38844:9;38840:17;38833:47;38897:131;39023:4;38897:131;:::i;:::-;38889:139;;38616:419;;;:::o;39041:98::-;39092:6;39126:5;39120:12;39110:22;;39041:98;;;:::o;39145:168::-;39228:11;39262:6;39257:3;39250:19;39302:4;39297:3;39293:14;39278:29;;39145:168;;;;:::o;39319:360::-;39405:3;39433:38;39465:5;39433:38;:::i;:::-;39487:70;39550:6;39545:3;39487:70;:::i;:::-;39480:77;;39566:52;39611:6;39606:3;39599:4;39592:5;39588:16;39566:52;:::i;:::-;39643:29;39665:6;39643:29;:::i;:::-;39638:3;39634:39;39627:46;;39409:270;39319:360;;;;:::o;39685:751::-;39908:4;39946:3;39935:9;39931:19;39923:27;;39960:71;40028:1;40017:9;40013:17;40004:6;39960:71;:::i;:::-;40041:72;40109:2;40098:9;40094:18;40085:6;40041:72;:::i;:::-;40123;40191:2;40180:9;40176:18;40167:6;40123:72;:::i;:::-;40205;40273:2;40262:9;40258:18;40249:6;40205:72;:::i;:::-;40325:9;40319:4;40315:20;40309:3;40298:9;40294:19;40287:49;40353:76;40424:4;40415:6;40353:76;:::i;:::-;40345:84;;39685:751;;;;;;;;:::o;40442:141::-;40498:5;40529:6;40523:13;40514:22;;40545:32;40571:5;40545:32;:::i;:::-;40442:141;;;;:::o;40589:349::-;40658:6;40707:2;40695:9;40686:7;40682:23;40678:32;40675:119;;;40713:79;;:::i;:::-;40675:119;40833:1;40858:63;40913:7;40904:6;40893:9;40889:22;40858:63;:::i;:::-;40848:73;;40804:127;40589:349;;;;:::o;40944:106::-;40988:8;41037:5;41032:3;41028:15;41007:36;;40944:106;;;:::o;41056:183::-;41091:3;41129:1;41111:16;41108:23;41105:128;;;41167:1;41164;41161;41146:23;41189:34;41220:1;41214:8;41189:34;:::i;:::-;41182:41;;41105:128;41056:183;:::o;41245:711::-;41284:3;41322:4;41304:16;41301:26;41298:39;;;41330:5;;41298:39;41359:20;;:::i;:::-;41434:1;41416:16;41412:24;41409:1;41403:4;41388:49;41467:4;41461:11;41566:16;41559:4;41551:6;41547:17;41544:39;41511:18;41503:6;41500:30;41484:113;41481:146;;;41612:5;;;;41481:146;41658:6;41652:4;41648:17;41694:3;41688:10;41721:18;41713:6;41710:30;41707:43;;;41743:5;;;;;;41707:43;41791:6;41784:4;41779:3;41775:14;41771:27;41850:1;41832:16;41828:24;41822:4;41818:35;41813:3;41810:44;41807:57;;;41857:5;;;;;;;41807:57;41874;41922:6;41916:4;41912:17;41904:6;41900:30;41894:4;41874:57;:::i;:::-;41947:3;41940:10;;41288:668;;;;;41245:711;;:::o;41962:239::-;42102:34;42098:1;42090:6;42086:14;42079:58;42171:22;42166:2;42158:6;42154:15;42147:47;41962:239;:::o;42207:366::-;42349:3;42370:67;42434:2;42429:3;42370:67;:::i;:::-;42363:74;;42446:93;42535:3;42446:93;:::i;:::-;42564:2;42559:3;42555:12;42548:19;;42207:366;;;:::o;42579:419::-;42745:4;42783:2;42772:9;42768:18;42760:26;;42832:9;42826:4;42822:20;42818:1;42807:9;42803:17;42796:47;42860:131;42986:4;42860:131;:::i;:::-;42852:139;;42579:419;;;:::o;43004:227::-;43144:34;43140:1;43132:6;43128:14;43121:58;43213:10;43208:2;43200:6;43196:15;43189:35;43004:227;:::o;43237:366::-;43379:3;43400:67;43464:2;43459:3;43400:67;:::i;:::-;43393:74;;43476:93;43565:3;43476:93;:::i;:::-;43594:2;43589:3;43585:12;43578:19;;43237:366;;;:::o;43609:419::-;43775:4;43813:2;43802:9;43798:18;43790:26;;43862:9;43856:4;43852:20;43848:1;43837:9;43833:17;43826:47;43890:131;44016:4;43890:131;:::i;:::-;43882:139;;43609:419;;;:::o;44034:1053::-;44357:4;44395:3;44384:9;44380:19;44372:27;;44409:71;44477:1;44466:9;44462:17;44453:6;44409:71;:::i;:::-;44490:72;44558:2;44547:9;44543:18;44534:6;44490:72;:::i;:::-;44609:9;44603:4;44599:20;44594:2;44583:9;44579:18;44572:48;44637:108;44740:4;44731:6;44637:108;:::i;:::-;44629:116;;44792:9;44786:4;44782:20;44777:2;44766:9;44762:18;44755:48;44820:108;44923:4;44914:6;44820:108;:::i;:::-;44812:116;;44976:9;44970:4;44966:20;44960:3;44949:9;44945:19;44938:49;45004:76;45075:4;45066:6;45004:76;:::i;:::-;44996:84;;44034:1053;;;;;;;;:::o

Swarm Source

ipfs://1479480d5f2101afc3421b61ef5b6fca7cc5266fc16109d5062081e321942d10
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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