ETH Price: $3,616.68 (+4.80%)
 

Overview

Max Total Supply

120

Holders

119

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0x14dbf36f2b8b84cc8d85803455239af48a86d1ce
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:
LegacyAlpha

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-21
*/

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol


// OpenZeppelin Contracts (last updated v4.5.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.
     *
     * NOTE: 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.
     *
     * NOTE: 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: @openzeppelin/contracts/token/ERC1155/IERC1155.sol


// OpenZeppelin Contracts v4.4.1 (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: @openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol


// OpenZeppelin Contracts v4.4.1 (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: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.6.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();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, to, ids, amounts, 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);

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

        _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);

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

        _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();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

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

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

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

        _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);

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

        _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();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

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

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

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

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

        _afterTokenTransfer(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 {}

    /**
     * @dev Hook that is called after 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 _afterTokenTransfer(
        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: @openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol


// OpenZeppelin Contracts (last updated v4.6.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) {
                uint256 id = ids[i];
                uint256 amount = amounts[i];
                uint256 supply = _totalSupply[id];
                require(supply >= amount, "ERC1155: burn amount exceeds totalSupply");
                unchecked {
                    _totalSupply[id] = supply - amount;
                }
            }
        }
    }
}

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// File: LegacyAlpha.sol


pragma solidity ^0.8.13;




contract LegacyAlpha is ERC1155Supply, Ownable {

    // initial values
    uint256 public constant MAX_SUPPLY = 120;
    bytes32 public whitelistMerkleRoot;
    mapping (address => uint256) public userBalance;

    // constructor
    constructor() ERC1155("https://legacy-alpha.com/metadata/{id}.json") {
    }

    // setters
    function setURI(string memory newuri) public onlyOwner {
        _setURI(newuri);
    }

    // Merkle Tree
    function setWhitelistMerkleRoot(bytes32 _whitelistMerkleRoot) external onlyOwner {
        whitelistMerkleRoot = _whitelistMerkleRoot;
    }
    function _leaf(string memory payload) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked(payload));
    }
    function _verify(bytes32 leaf, bytes32[] memory proof) internal view returns (bool) {
        return MerkleProof.verify(proof, whitelistMerkleRoot, leaf);
    }

    // Mint
    function mint(bytes32[] calldata proof) external {
        string memory payload = string(abi.encodePacked(_msgSender()));
        require(userBalance[_msgSender()] == 0, "You can only mint once");
        require(totalSupply(1) < MAX_SUPPLY, "Max supply reached");
        require(_verify(_leaf(payload), proof), "Invalid Merkle Tree proof supplied.");
        userBalance[_msgSender()] = 1;
        _mint(_msgSender(), 1, 1, "");
    }

}

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":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"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":[{"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":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":[{"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":"bytes32","name":"_whitelistMerkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040518060600160405280602b815260200162003bca602b91396200003d816200006460201b60201c565b506200005e620000526200008060201b60201c565b6200008860201b60201c565b62000262565b80600290805190602001906200007c9291906200014e565b5050565b600033905090565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200015c906200022d565b90600052602060002090601f016020900481019282620001805760008555620001cc565b82601f106200019b57805160ff1916838001178555620001cc565b82800160010185558215620001cc579182015b82811115620001cb578251825591602001919060010190620001ae565b5b509050620001db9190620001df565b5090565b5b80821115620001fa576000816000905550600101620001e0565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200024657607f821691505b6020821081036200025c576200025b620001fe565b5b50919050565b61395880620002726000396000f3fe608060405234801561001057600080fd5b50600436106101205760003560e01c8063715018a6116100ad578063bd32fb6611610071578063bd32fb6614610319578063bd85b03914610335578063e985e9c514610365578063f242432a14610395578063f2fde38b146103b157610120565b8063715018a61461029b5780638da5cb5b146102a5578063a22cb465146102c3578063aa98e0c6146102df578063b77a147b146102fd57610120565b80630e89341c116100f45780630e89341c146101d15780632eb2c2d61461020157806332cb6b0c1461021d5780634e1273f41461023b5780634f558e791461026b57610120565b8062fdd58e146101255780630103c92b1461015557806301ffc9a71461018557806302fe5305146101b5575b600080fd5b61013f600480360381019061013a91906120ab565b6103cd565b60405161014c91906120fa565b60405180910390f35b61016f600480360381019061016a9190612115565b610495565b60405161017c91906120fa565b60405180910390f35b61019f600480360381019061019a919061219a565b6104ad565b6040516101ac91906121e2565b60405180910390f35b6101cf60048036038101906101ca9190612343565b61058f565b005b6101eb60048036038101906101e6919061238c565b610617565b6040516101f89190612441565b60405180910390f35b61021b600480360381019061021691906125cc565b6106ab565b005b61022561074c565b60405161023291906120fa565b60405180910390f35b6102556004803603810190610250919061275e565b610751565b6040516102629190612894565b60405180910390f35b6102856004803603810190610280919061238c565b61086a565b60405161029291906121e2565b60405180910390f35b6102a361087e565b005b6102ad610906565b6040516102ba91906128c5565b60405180910390f35b6102dd60048036038101906102d8919061290c565b610930565b005b6102e7610946565b6040516102f49190612965565b60405180910390f35b610317600480360381019061031291906129db565b61094c565b005b610333600480360381019061032e9190612a54565b610b52565b005b61034f600480360381019061034a919061238c565b610bd8565b60405161035c91906120fa565b60405180910390f35b61037f600480360381019061037a9190612a81565b610bf5565b60405161038c91906121e2565b60405180910390f35b6103af60048036038101906103aa9190612ac1565b610c89565b005b6103cb60048036038101906103c69190612115565b610d2a565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361043d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161043490612bca565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60066020528060005260406000206000915090505481565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061057857507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610588575061058782610e21565b5b9050919050565b610597610e8b565b73ffffffffffffffffffffffffffffffffffffffff166105b5610906565b73ffffffffffffffffffffffffffffffffffffffff161461060b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060290612c36565b60405180910390fd5b61061481610e93565b50565b60606002805461062690612c85565b80601f016020809104026020016040519081016040528092919081815260200182805461065290612c85565b801561069f5780601f106106745761010080835404028352916020019161069f565b820191906000526020600020905b81548152906001019060200180831161068257829003601f168201915b50505050509050919050565b6106b3610e8b565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806106f957506106f8856106f3610e8b565b610bf5565b5b610738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072f90612d28565b60405180910390fd5b6107458585858585610ead565b5050505050565b607881565b60608151835114610797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078e90612dba565b60405180910390fd5b6000835167ffffffffffffffff8111156107b4576107b3612218565b5b6040519080825280602002602001820160405280156107e25781602001602082028036833780820191505090505b50905060005b845181101561085f5761082f85828151811061080757610806612dda565b5b602002602001015185838151811061082257610821612dda565b5b60200260200101516103cd565b82828151811061084257610841612dda565b5b6020026020010181815250508061085890612e38565b90506107e8565b508091505092915050565b60008061087683610bd8565b119050919050565b610886610e8b565b73ffffffffffffffffffffffffffffffffffffffff166108a4610906565b73ffffffffffffffffffffffffffffffffffffffff16146108fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f190612c36565b60405180910390fd5b61090460006111ce565b565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61094261093b610e8b565b8383611294565b5050565b60055481565b6000610956610e8b565b6040516020016109669190612ec8565b6040516020818303038152906040529050600060066000610985610e8b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f790612f2f565b60405180910390fd5b6078610a0c6001610bd8565b10610a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4390612f9b565b60405180910390fd5b610a9f610a5882611400565b848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050611430565b610ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad59061302d565b60405180910390fd5b600160066000610aec610e8b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610b4d610b35610e8b565b60018060405180602001604052806000815250611447565b505050565b610b5a610e8b565b73ffffffffffffffffffffffffffffffffffffffff16610b78610906565b73ffffffffffffffffffffffffffffffffffffffff1614610bce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc590612c36565b60405180910390fd5b8060058190555050565b600060036000838152602001908152602001600020549050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610c91610e8b565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610cd75750610cd685610cd1610e8b565b610bf5565b5b610d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0d906130bf565b60405180910390fd5b610d2385858585856115f7565b5050505050565b610d32610e8b565b73ffffffffffffffffffffffffffffffffffffffff16610d50610906565b73ffffffffffffffffffffffffffffffffffffffff1614610da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d90612c36565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0c90613151565b60405180910390fd5b610e1e816111ce565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8060029080519060200190610ea9929190611f60565b5050565b8151835114610ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee8906131e3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5790613275565b60405180910390fd5b6000610f6a610e8b565b9050610f7a818787878787611892565b60005b845181101561112b576000858281518110610f9b57610f9a612dda565b5b602002602001015190506000858381518110610fba57610fb9612dda565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561105b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105290613307565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111109190613327565b925050819055505050508061112490612e38565b9050610f7d565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516111a292919061337d565b60405180910390a46111b8818787878787611a62565b6111c6818787878787611a6a565b505050505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f990613426565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113f391906121e2565b60405180910390a3505050565b6000816040516020016114139190613482565b604051602081830303815290604052805190602001209050919050565b600061143f8260055485611c41565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036114b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ad9061350b565b60405180910390fd5b60006114c0610e8b565b905060006114cd85611c58565b905060006114da85611c58565b90506114eb83600089858589611892565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461154a9190613327565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516115c892919061352b565b60405180910390a46115df83600089858589611a62565b6115ee83600089898989611cd2565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165d90613275565b60405180910390fd5b6000611670610e8b565b9050600061167d85611c58565b9050600061168a85611c58565b905061169a838989858589611892565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015611731576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172890613307565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117e69190613327565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a60405161186392919061352b565b60405180910390a4611879848a8a86868a611a62565b611887848a8a8a8a8a611cd2565b505050505050505050565b6118a0868686868686611ea9565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036119515760005b835181101561194f578281815181106118f3576118f2612dda565b5b60200260200101516003600086848151811061191257611911612dda565b5b6020026020010151815260200190815260200160002060008282546119379190613327565b925050819055508061194890612e38565b90506118d7565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611a5a5760005b8351811015611a585760008482815181106119a6576119a5612dda565b5b6020026020010151905060008483815181106119c5576119c4612dda565b5b6020026020010151905060006003600084815260200190815260200160002054905081811015611a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a21906135c6565b60405180910390fd5b818103600360008581526020019081526020016000208190555050505080611a5190612e38565b9050611988565b505b505050505050565b505050505050565b611a898473ffffffffffffffffffffffffffffffffffffffff16611eb1565b15611c39578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611acf95949392919061363b565b6020604051808303816000875af1925050508015611b0b57506040513d601f19601f82011682018060405250810190611b0891906136b8565b60015b611bb057611b176136f2565b806308c379a003611b735750611b2b613714565b80611b365750611b75565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6a9190612441565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba790613816565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2e906138a8565b60405180910390fd5b505b505050505050565b600082611c4e8584611ed4565b1490509392505050565b60606000600167ffffffffffffffff811115611c7757611c76612218565b5b604051908082528060200260200182016040528015611ca55781602001602082028036833780820191505090505b5090508281600081518110611cbd57611cbc612dda565b5b60200260200101818152505080915050919050565b611cf18473ffffffffffffffffffffffffffffffffffffffff16611eb1565b15611ea1578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611d379594939291906138c8565b6020604051808303816000875af1925050508015611d7357506040513d601f19601f82011682018060405250810190611d7091906136b8565b60015b611e1857611d7f6136f2565b806308c379a003611ddb5750611d93613714565b80611d9e5750611ddd565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd29190612441565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0f90613816565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e96906138a8565b60405180910390fd5b505b505050505050565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008082905060005b8451811015611f3e576000858281518110611efb57611efa612dda565b5b60200260200101519050808311611f1d57611f168382611f49565b9250611f2a565b611f278184611f49565b92505b508080611f3690612e38565b915050611edd565b508091505092915050565b600082600052816020526040600020905092915050565b828054611f6c90612c85565b90600052602060002090601f016020900481019282611f8e5760008555611fd5565b82601f10611fa757805160ff1916838001178555611fd5565b82800160010185558215611fd5579182015b82811115611fd4578251825591602001919060010190611fb9565b5b509050611fe29190611fe6565b5090565b5b80821115611fff576000816000905550600101611fe7565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061204282612017565b9050919050565b61205281612037565b811461205d57600080fd5b50565b60008135905061206f81612049565b92915050565b6000819050919050565b61208881612075565b811461209357600080fd5b50565b6000813590506120a58161207f565b92915050565b600080604083850312156120c2576120c161200d565b5b60006120d085828601612060565b92505060206120e185828601612096565b9150509250929050565b6120f481612075565b82525050565b600060208201905061210f60008301846120eb565b92915050565b60006020828403121561212b5761212a61200d565b5b600061213984828501612060565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61217781612142565b811461218257600080fd5b50565b6000813590506121948161216e565b92915050565b6000602082840312156121b0576121af61200d565b5b60006121be84828501612185565b91505092915050565b60008115159050919050565b6121dc816121c7565b82525050565b60006020820190506121f760008301846121d3565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61225082612207565b810181811067ffffffffffffffff8211171561226f5761226e612218565b5b80604052505050565b6000612282612003565b905061228e8282612247565b919050565b600067ffffffffffffffff8211156122ae576122ad612218565b5b6122b782612207565b9050602081019050919050565b82818337600083830152505050565b60006122e66122e184612293565b612278565b90508281526020810184848401111561230257612301612202565b5b61230d8482856122c4565b509392505050565b600082601f83011261232a576123296121fd565b5b813561233a8482602086016122d3565b91505092915050565b6000602082840312156123595761235861200d565b5b600082013567ffffffffffffffff81111561237757612376612012565b5b61238384828501612315565b91505092915050565b6000602082840312156123a2576123a161200d565b5b60006123b084828501612096565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156123f35780820151818401526020810190506123d8565b83811115612402576000848401525b50505050565b6000612413826123b9565b61241d81856123c4565b935061242d8185602086016123d5565b61243681612207565b840191505092915050565b6000602082019050818103600083015261245b8184612408565b905092915050565b600067ffffffffffffffff82111561247e5761247d612218565b5b602082029050602081019050919050565b600080fd5b60006124a76124a284612463565b612278565b905080838252602082019050602084028301858111156124ca576124c961248f565b5b835b818110156124f357806124df8882612096565b8452602084019350506020810190506124cc565b5050509392505050565b600082601f830112612512576125116121fd565b5b8135612522848260208601612494565b91505092915050565b600067ffffffffffffffff82111561254657612545612218565b5b61254f82612207565b9050602081019050919050565b600061256f61256a8461252b565b612278565b90508281526020810184848401111561258b5761258a612202565b5b6125968482856122c4565b509392505050565b600082601f8301126125b3576125b26121fd565b5b81356125c384826020860161255c565b91505092915050565b600080600080600060a086880312156125e8576125e761200d565b5b60006125f688828901612060565b955050602061260788828901612060565b945050604086013567ffffffffffffffff81111561262857612627612012565b5b612634888289016124fd565b935050606086013567ffffffffffffffff81111561265557612654612012565b5b612661888289016124fd565b925050608086013567ffffffffffffffff81111561268257612681612012565b5b61268e8882890161259e565b9150509295509295909350565b600067ffffffffffffffff8211156126b6576126b5612218565b5b602082029050602081019050919050565b60006126da6126d58461269b565b612278565b905080838252602082019050602084028301858111156126fd576126fc61248f565b5b835b8181101561272657806127128882612060565b8452602084019350506020810190506126ff565b5050509392505050565b600082601f830112612745576127446121fd565b5b81356127558482602086016126c7565b91505092915050565b600080604083850312156127755761277461200d565b5b600083013567ffffffffffffffff81111561279357612792612012565b5b61279f85828601612730565b925050602083013567ffffffffffffffff8111156127c0576127bf612012565b5b6127cc858286016124fd565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61280b81612075565b82525050565b600061281d8383612802565b60208301905092915050565b6000602082019050919050565b6000612841826127d6565b61284b81856127e1565b9350612856836127f2565b8060005b8381101561288757815161286e8882612811565b975061287983612829565b92505060018101905061285a565b5085935050505092915050565b600060208201905081810360008301526128ae8184612836565b905092915050565b6128bf81612037565b82525050565b60006020820190506128da60008301846128b6565b92915050565b6128e9816121c7565b81146128f457600080fd5b50565b600081359050612906816128e0565b92915050565b600080604083850312156129235761292261200d565b5b600061293185828601612060565b9250506020612942858286016128f7565b9150509250929050565b6000819050919050565b61295f8161294c565b82525050565b600060208201905061297a6000830184612956565b92915050565b600080fd5b60008083601f84011261299b5761299a6121fd565b5b8235905067ffffffffffffffff8111156129b8576129b7612980565b5b6020830191508360208202830111156129d4576129d361248f565b5b9250929050565b600080602083850312156129f2576129f161200d565b5b600083013567ffffffffffffffff811115612a1057612a0f612012565b5b612a1c85828601612985565b92509250509250929050565b612a318161294c565b8114612a3c57600080fd5b50565b600081359050612a4e81612a28565b92915050565b600060208284031215612a6a57612a6961200d565b5b6000612a7884828501612a3f565b91505092915050565b60008060408385031215612a9857612a9761200d565b5b6000612aa685828601612060565b9250506020612ab785828601612060565b9150509250929050565b600080600080600060a08688031215612add57612adc61200d565b5b6000612aeb88828901612060565b9550506020612afc88828901612060565b9450506040612b0d88828901612096565b9350506060612b1e88828901612096565b925050608086013567ffffffffffffffff811115612b3f57612b3e612012565b5b612b4b8882890161259e565b9150509295509295909350565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000612bb4602b836123c4565b9150612bbf82612b58565b604082019050919050565b60006020820190508181036000830152612be381612ba7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c206020836123c4565b9150612c2b82612bea565b602082019050919050565b60006020820190508181036000830152612c4f81612c13565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c9d57607f821691505b602082108103612cb057612caf612c56565b5b50919050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000612d126032836123c4565b9150612d1d82612cb6565b604082019050919050565b60006020820190508181036000830152612d4181612d05565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000612da46029836123c4565b9150612daf82612d48565b604082019050919050565b60006020820190508181036000830152612dd381612d97565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e4382612075565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612e7557612e74612e09565b5b600182019050919050565b60008160601b9050919050565b6000612e9882612e80565b9050919050565b6000612eaa82612e8d565b9050919050565b612ec2612ebd82612037565b612e9f565b82525050565b6000612ed48284612eb1565b60148201915081905092915050565b7f596f752063616e206f6e6c79206d696e74206f6e636500000000000000000000600082015250565b6000612f196016836123c4565b9150612f2482612ee3565b602082019050919050565b60006020820190508181036000830152612f4881612f0c565b9050919050565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b6000612f856012836123c4565b9150612f9082612f4f565b602082019050919050565b60006020820190508181036000830152612fb481612f78565b9050919050565b7f496e76616c6964204d65726b6c6520547265652070726f6f6620737570706c6960008201527f65642e0000000000000000000000000000000000000000000000000000000000602082015250565b60006130176023836123c4565b915061302282612fbb565b604082019050919050565b600060208201905081810360008301526130468161300a565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b60006130a96029836123c4565b91506130b48261304d565b604082019050919050565b600060208201905081810360008301526130d88161309c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061313b6026836123c4565b9150613146826130df565b604082019050919050565b6000602082019050818103600083015261316a8161312e565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b60006131cd6028836123c4565b91506131d882613171565b604082019050919050565b600060208201905081810360008301526131fc816131c0565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061325f6025836123c4565b915061326a82613203565b604082019050919050565b6000602082019050818103600083015261328e81613252565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b60006132f1602a836123c4565b91506132fc82613295565b604082019050919050565b60006020820190508181036000830152613320816132e4565b9050919050565b600061333282612075565b915061333d83612075565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561337257613371612e09565b5b828201905092915050565b600060408201905081810360008301526133978185612836565b905081810360208301526133ab8184612836565b90509392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006134106029836123c4565b915061341b826133b4565b604082019050919050565b6000602082019050818103600083015261343f81613403565b9050919050565b600081905092915050565b600061345c826123b9565b6134668185613446565b93506134768185602086016123d5565b80840191505092915050565b600061348e8284613451565b915081905092915050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006134f56021836123c4565b915061350082613499565b604082019050919050565b60006020820190508181036000830152613524816134e8565b9050919050565b600060408201905061354060008301856120eb565b61354d60208301846120eb565b9392505050565b7f455243313135353a206275726e20616d6f756e74206578636565647320746f7460008201527f616c537570706c79000000000000000000000000000000000000000000000000602082015250565b60006135b06028836123c4565b91506135bb82613554565b604082019050919050565b600060208201905081810360008301526135df816135a3565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061360d826135e6565b61361781856135f1565b93506136278185602086016123d5565b61363081612207565b840191505092915050565b600060a08201905061365060008301886128b6565b61365d60208301876128b6565b818103604083015261366f8186612836565b905081810360608301526136838185612836565b905081810360808301526136978184613602565b90509695505050505050565b6000815190506136b28161216e565b92915050565b6000602082840312156136ce576136cd61200d565b5b60006136dc848285016136a3565b91505092915050565b60008160e01c9050919050565b600060033d11156137115760046000803e61370e6000516136e5565b90505b90565b600060443d106137a157613726612003565b60043d036004823e80513d602482011167ffffffffffffffff8211171561374e5750506137a1565b808201805167ffffffffffffffff81111561376c57505050506137a1565b80602083010160043d0385018111156137895750505050506137a1565b61379882602001850186612247565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b60006138006034836123c4565b915061380b826137a4565b604082019050919050565b6000602082019050818103600083015261382f816137f3565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006138926028836123c4565b915061389d82613836565b604082019050919050565b600060208201905081810360008301526138c181613885565b9050919050565b600060a0820190506138dd60008301886128b6565b6138ea60208301876128b6565b6138f760408301866120eb565b61390460608301856120eb565b81810360808301526139168184613602565b9050969550505050505056fea2646970667358221220e280f275f4c42c00f07db050fc7b99b59fc6deb1017b955117fab06a005be1d664736f6c634300080d003368747470733a2f2f6c65676163792d616c7068612e636f6d2f6d657461646174612f7b69647d2e6a736f6e

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101205760003560e01c8063715018a6116100ad578063bd32fb6611610071578063bd32fb6614610319578063bd85b03914610335578063e985e9c514610365578063f242432a14610395578063f2fde38b146103b157610120565b8063715018a61461029b5780638da5cb5b146102a5578063a22cb465146102c3578063aa98e0c6146102df578063b77a147b146102fd57610120565b80630e89341c116100f45780630e89341c146101d15780632eb2c2d61461020157806332cb6b0c1461021d5780634e1273f41461023b5780634f558e791461026b57610120565b8062fdd58e146101255780630103c92b1461015557806301ffc9a71461018557806302fe5305146101b5575b600080fd5b61013f600480360381019061013a91906120ab565b6103cd565b60405161014c91906120fa565b60405180910390f35b61016f600480360381019061016a9190612115565b610495565b60405161017c91906120fa565b60405180910390f35b61019f600480360381019061019a919061219a565b6104ad565b6040516101ac91906121e2565b60405180910390f35b6101cf60048036038101906101ca9190612343565b61058f565b005b6101eb60048036038101906101e6919061238c565b610617565b6040516101f89190612441565b60405180910390f35b61021b600480360381019061021691906125cc565b6106ab565b005b61022561074c565b60405161023291906120fa565b60405180910390f35b6102556004803603810190610250919061275e565b610751565b6040516102629190612894565b60405180910390f35b6102856004803603810190610280919061238c565b61086a565b60405161029291906121e2565b60405180910390f35b6102a361087e565b005b6102ad610906565b6040516102ba91906128c5565b60405180910390f35b6102dd60048036038101906102d8919061290c565b610930565b005b6102e7610946565b6040516102f49190612965565b60405180910390f35b610317600480360381019061031291906129db565b61094c565b005b610333600480360381019061032e9190612a54565b610b52565b005b61034f600480360381019061034a919061238c565b610bd8565b60405161035c91906120fa565b60405180910390f35b61037f600480360381019061037a9190612a81565b610bf5565b60405161038c91906121e2565b60405180910390f35b6103af60048036038101906103aa9190612ac1565b610c89565b005b6103cb60048036038101906103c69190612115565b610d2a565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361043d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161043490612bca565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60066020528060005260406000206000915090505481565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061057857507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610588575061058782610e21565b5b9050919050565b610597610e8b565b73ffffffffffffffffffffffffffffffffffffffff166105b5610906565b73ffffffffffffffffffffffffffffffffffffffff161461060b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060290612c36565b60405180910390fd5b61061481610e93565b50565b60606002805461062690612c85565b80601f016020809104026020016040519081016040528092919081815260200182805461065290612c85565b801561069f5780601f106106745761010080835404028352916020019161069f565b820191906000526020600020905b81548152906001019060200180831161068257829003601f168201915b50505050509050919050565b6106b3610e8b565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806106f957506106f8856106f3610e8b565b610bf5565b5b610738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072f90612d28565b60405180910390fd5b6107458585858585610ead565b5050505050565b607881565b60608151835114610797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078e90612dba565b60405180910390fd5b6000835167ffffffffffffffff8111156107b4576107b3612218565b5b6040519080825280602002602001820160405280156107e25781602001602082028036833780820191505090505b50905060005b845181101561085f5761082f85828151811061080757610806612dda565b5b602002602001015185838151811061082257610821612dda565b5b60200260200101516103cd565b82828151811061084257610841612dda565b5b6020026020010181815250508061085890612e38565b90506107e8565b508091505092915050565b60008061087683610bd8565b119050919050565b610886610e8b565b73ffffffffffffffffffffffffffffffffffffffff166108a4610906565b73ffffffffffffffffffffffffffffffffffffffff16146108fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f190612c36565b60405180910390fd5b61090460006111ce565b565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61094261093b610e8b565b8383611294565b5050565b60055481565b6000610956610e8b565b6040516020016109669190612ec8565b6040516020818303038152906040529050600060066000610985610e8b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f790612f2f565b60405180910390fd5b6078610a0c6001610bd8565b10610a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4390612f9b565b60405180910390fd5b610a9f610a5882611400565b848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050611430565b610ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad59061302d565b60405180910390fd5b600160066000610aec610e8b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610b4d610b35610e8b565b60018060405180602001604052806000815250611447565b505050565b610b5a610e8b565b73ffffffffffffffffffffffffffffffffffffffff16610b78610906565b73ffffffffffffffffffffffffffffffffffffffff1614610bce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc590612c36565b60405180910390fd5b8060058190555050565b600060036000838152602001908152602001600020549050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610c91610e8b565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610cd75750610cd685610cd1610e8b565b610bf5565b5b610d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0d906130bf565b60405180910390fd5b610d2385858585856115f7565b5050505050565b610d32610e8b565b73ffffffffffffffffffffffffffffffffffffffff16610d50610906565b73ffffffffffffffffffffffffffffffffffffffff1614610da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d90612c36565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0c90613151565b60405180910390fd5b610e1e816111ce565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8060029080519060200190610ea9929190611f60565b5050565b8151835114610ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee8906131e3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5790613275565b60405180910390fd5b6000610f6a610e8b565b9050610f7a818787878787611892565b60005b845181101561112b576000858281518110610f9b57610f9a612dda565b5b602002602001015190506000858381518110610fba57610fb9612dda565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561105b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105290613307565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111109190613327565b925050819055505050508061112490612e38565b9050610f7d565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516111a292919061337d565b60405180910390a46111b8818787878787611a62565b6111c6818787878787611a6a565b505050505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f990613426565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113f391906121e2565b60405180910390a3505050565b6000816040516020016114139190613482565b604051602081830303815290604052805190602001209050919050565b600061143f8260055485611c41565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036114b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ad9061350b565b60405180910390fd5b60006114c0610e8b565b905060006114cd85611c58565b905060006114da85611c58565b90506114eb83600089858589611892565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461154a9190613327565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516115c892919061352b565b60405180910390a46115df83600089858589611a62565b6115ee83600089898989611cd2565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165d90613275565b60405180910390fd5b6000611670610e8b565b9050600061167d85611c58565b9050600061168a85611c58565b905061169a838989858589611892565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015611731576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172890613307565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117e69190613327565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a60405161186392919061352b565b60405180910390a4611879848a8a86868a611a62565b611887848a8a8a8a8a611cd2565b505050505050505050565b6118a0868686868686611ea9565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036119515760005b835181101561194f578281815181106118f3576118f2612dda565b5b60200260200101516003600086848151811061191257611911612dda565b5b6020026020010151815260200190815260200160002060008282546119379190613327565b925050819055508061194890612e38565b90506118d7565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611a5a5760005b8351811015611a585760008482815181106119a6576119a5612dda565b5b6020026020010151905060008483815181106119c5576119c4612dda565b5b6020026020010151905060006003600084815260200190815260200160002054905081811015611a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a21906135c6565b60405180910390fd5b818103600360008581526020019081526020016000208190555050505080611a5190612e38565b9050611988565b505b505050505050565b505050505050565b611a898473ffffffffffffffffffffffffffffffffffffffff16611eb1565b15611c39578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611acf95949392919061363b565b6020604051808303816000875af1925050508015611b0b57506040513d601f19601f82011682018060405250810190611b0891906136b8565b60015b611bb057611b176136f2565b806308c379a003611b735750611b2b613714565b80611b365750611b75565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6a9190612441565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba790613816565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2e906138a8565b60405180910390fd5b505b505050505050565b600082611c4e8584611ed4565b1490509392505050565b60606000600167ffffffffffffffff811115611c7757611c76612218565b5b604051908082528060200260200182016040528015611ca55781602001602082028036833780820191505090505b5090508281600081518110611cbd57611cbc612dda565b5b60200260200101818152505080915050919050565b611cf18473ffffffffffffffffffffffffffffffffffffffff16611eb1565b15611ea1578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611d379594939291906138c8565b6020604051808303816000875af1925050508015611d7357506040513d601f19601f82011682018060405250810190611d7091906136b8565b60015b611e1857611d7f6136f2565b806308c379a003611ddb5750611d93613714565b80611d9e5750611ddd565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd29190612441565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0f90613816565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e96906138a8565b60405180910390fd5b505b505050505050565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008082905060005b8451811015611f3e576000858281518110611efb57611efa612dda565b5b60200260200101519050808311611f1d57611f168382611f49565b9250611f2a565b611f278184611f49565b92505b508080611f3690612e38565b915050611edd565b508091505092915050565b600082600052816020526040600020905092915050565b828054611f6c90612c85565b90600052602060002090601f016020900481019282611f8e5760008555611fd5565b82601f10611fa757805160ff1916838001178555611fd5565b82800160010185558215611fd5579182015b82811115611fd4578251825591602001919060010190611fb9565b5b509050611fe29190611fe6565b5090565b5b80821115611fff576000816000905550600101611fe7565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061204282612017565b9050919050565b61205281612037565b811461205d57600080fd5b50565b60008135905061206f81612049565b92915050565b6000819050919050565b61208881612075565b811461209357600080fd5b50565b6000813590506120a58161207f565b92915050565b600080604083850312156120c2576120c161200d565b5b60006120d085828601612060565b92505060206120e185828601612096565b9150509250929050565b6120f481612075565b82525050565b600060208201905061210f60008301846120eb565b92915050565b60006020828403121561212b5761212a61200d565b5b600061213984828501612060565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61217781612142565b811461218257600080fd5b50565b6000813590506121948161216e565b92915050565b6000602082840312156121b0576121af61200d565b5b60006121be84828501612185565b91505092915050565b60008115159050919050565b6121dc816121c7565b82525050565b60006020820190506121f760008301846121d3565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61225082612207565b810181811067ffffffffffffffff8211171561226f5761226e612218565b5b80604052505050565b6000612282612003565b905061228e8282612247565b919050565b600067ffffffffffffffff8211156122ae576122ad612218565b5b6122b782612207565b9050602081019050919050565b82818337600083830152505050565b60006122e66122e184612293565b612278565b90508281526020810184848401111561230257612301612202565b5b61230d8482856122c4565b509392505050565b600082601f83011261232a576123296121fd565b5b813561233a8482602086016122d3565b91505092915050565b6000602082840312156123595761235861200d565b5b600082013567ffffffffffffffff81111561237757612376612012565b5b61238384828501612315565b91505092915050565b6000602082840312156123a2576123a161200d565b5b60006123b084828501612096565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156123f35780820151818401526020810190506123d8565b83811115612402576000848401525b50505050565b6000612413826123b9565b61241d81856123c4565b935061242d8185602086016123d5565b61243681612207565b840191505092915050565b6000602082019050818103600083015261245b8184612408565b905092915050565b600067ffffffffffffffff82111561247e5761247d612218565b5b602082029050602081019050919050565b600080fd5b60006124a76124a284612463565b612278565b905080838252602082019050602084028301858111156124ca576124c961248f565b5b835b818110156124f357806124df8882612096565b8452602084019350506020810190506124cc565b5050509392505050565b600082601f830112612512576125116121fd565b5b8135612522848260208601612494565b91505092915050565b600067ffffffffffffffff82111561254657612545612218565b5b61254f82612207565b9050602081019050919050565b600061256f61256a8461252b565b612278565b90508281526020810184848401111561258b5761258a612202565b5b6125968482856122c4565b509392505050565b600082601f8301126125b3576125b26121fd565b5b81356125c384826020860161255c565b91505092915050565b600080600080600060a086880312156125e8576125e761200d565b5b60006125f688828901612060565b955050602061260788828901612060565b945050604086013567ffffffffffffffff81111561262857612627612012565b5b612634888289016124fd565b935050606086013567ffffffffffffffff81111561265557612654612012565b5b612661888289016124fd565b925050608086013567ffffffffffffffff81111561268257612681612012565b5b61268e8882890161259e565b9150509295509295909350565b600067ffffffffffffffff8211156126b6576126b5612218565b5b602082029050602081019050919050565b60006126da6126d58461269b565b612278565b905080838252602082019050602084028301858111156126fd576126fc61248f565b5b835b8181101561272657806127128882612060565b8452602084019350506020810190506126ff565b5050509392505050565b600082601f830112612745576127446121fd565b5b81356127558482602086016126c7565b91505092915050565b600080604083850312156127755761277461200d565b5b600083013567ffffffffffffffff81111561279357612792612012565b5b61279f85828601612730565b925050602083013567ffffffffffffffff8111156127c0576127bf612012565b5b6127cc858286016124fd565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61280b81612075565b82525050565b600061281d8383612802565b60208301905092915050565b6000602082019050919050565b6000612841826127d6565b61284b81856127e1565b9350612856836127f2565b8060005b8381101561288757815161286e8882612811565b975061287983612829565b92505060018101905061285a565b5085935050505092915050565b600060208201905081810360008301526128ae8184612836565b905092915050565b6128bf81612037565b82525050565b60006020820190506128da60008301846128b6565b92915050565b6128e9816121c7565b81146128f457600080fd5b50565b600081359050612906816128e0565b92915050565b600080604083850312156129235761292261200d565b5b600061293185828601612060565b9250506020612942858286016128f7565b9150509250929050565b6000819050919050565b61295f8161294c565b82525050565b600060208201905061297a6000830184612956565b92915050565b600080fd5b60008083601f84011261299b5761299a6121fd565b5b8235905067ffffffffffffffff8111156129b8576129b7612980565b5b6020830191508360208202830111156129d4576129d361248f565b5b9250929050565b600080602083850312156129f2576129f161200d565b5b600083013567ffffffffffffffff811115612a1057612a0f612012565b5b612a1c85828601612985565b92509250509250929050565b612a318161294c565b8114612a3c57600080fd5b50565b600081359050612a4e81612a28565b92915050565b600060208284031215612a6a57612a6961200d565b5b6000612a7884828501612a3f565b91505092915050565b60008060408385031215612a9857612a9761200d565b5b6000612aa685828601612060565b9250506020612ab785828601612060565b9150509250929050565b600080600080600060a08688031215612add57612adc61200d565b5b6000612aeb88828901612060565b9550506020612afc88828901612060565b9450506040612b0d88828901612096565b9350506060612b1e88828901612096565b925050608086013567ffffffffffffffff811115612b3f57612b3e612012565b5b612b4b8882890161259e565b9150509295509295909350565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000612bb4602b836123c4565b9150612bbf82612b58565b604082019050919050565b60006020820190508181036000830152612be381612ba7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c206020836123c4565b9150612c2b82612bea565b602082019050919050565b60006020820190508181036000830152612c4f81612c13565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c9d57607f821691505b602082108103612cb057612caf612c56565b5b50919050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000612d126032836123c4565b9150612d1d82612cb6565b604082019050919050565b60006020820190508181036000830152612d4181612d05565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000612da46029836123c4565b9150612daf82612d48565b604082019050919050565b60006020820190508181036000830152612dd381612d97565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e4382612075565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612e7557612e74612e09565b5b600182019050919050565b60008160601b9050919050565b6000612e9882612e80565b9050919050565b6000612eaa82612e8d565b9050919050565b612ec2612ebd82612037565b612e9f565b82525050565b6000612ed48284612eb1565b60148201915081905092915050565b7f596f752063616e206f6e6c79206d696e74206f6e636500000000000000000000600082015250565b6000612f196016836123c4565b9150612f2482612ee3565b602082019050919050565b60006020820190508181036000830152612f4881612f0c565b9050919050565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b6000612f856012836123c4565b9150612f9082612f4f565b602082019050919050565b60006020820190508181036000830152612fb481612f78565b9050919050565b7f496e76616c6964204d65726b6c6520547265652070726f6f6620737570706c6960008201527f65642e0000000000000000000000000000000000000000000000000000000000602082015250565b60006130176023836123c4565b915061302282612fbb565b604082019050919050565b600060208201905081810360008301526130468161300a565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b60006130a96029836123c4565b91506130b48261304d565b604082019050919050565b600060208201905081810360008301526130d88161309c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061313b6026836123c4565b9150613146826130df565b604082019050919050565b6000602082019050818103600083015261316a8161312e565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b60006131cd6028836123c4565b91506131d882613171565b604082019050919050565b600060208201905081810360008301526131fc816131c0565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061325f6025836123c4565b915061326a82613203565b604082019050919050565b6000602082019050818103600083015261328e81613252565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b60006132f1602a836123c4565b91506132fc82613295565b604082019050919050565b60006020820190508181036000830152613320816132e4565b9050919050565b600061333282612075565b915061333d83612075565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561337257613371612e09565b5b828201905092915050565b600060408201905081810360008301526133978185612836565b905081810360208301526133ab8184612836565b90509392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006134106029836123c4565b915061341b826133b4565b604082019050919050565b6000602082019050818103600083015261343f81613403565b9050919050565b600081905092915050565b600061345c826123b9565b6134668185613446565b93506134768185602086016123d5565b80840191505092915050565b600061348e8284613451565b915081905092915050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006134f56021836123c4565b915061350082613499565b604082019050919050565b60006020820190508181036000830152613524816134e8565b9050919050565b600060408201905061354060008301856120eb565b61354d60208301846120eb565b9392505050565b7f455243313135353a206275726e20616d6f756e74206578636565647320746f7460008201527f616c537570706c79000000000000000000000000000000000000000000000000602082015250565b60006135b06028836123c4565b91506135bb82613554565b604082019050919050565b600060208201905081810360008301526135df816135a3565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061360d826135e6565b61361781856135f1565b93506136278185602086016123d5565b61363081612207565b840191505092915050565b600060a08201905061365060008301886128b6565b61365d60208301876128b6565b818103604083015261366f8186612836565b905081810360608301526136838185612836565b905081810360808301526136978184613602565b90509695505050505050565b6000815190506136b28161216e565b92915050565b6000602082840312156136ce576136cd61200d565b5b60006136dc848285016136a3565b91505092915050565b60008160e01c9050919050565b600060033d11156137115760046000803e61370e6000516136e5565b90505b90565b600060443d106137a157613726612003565b60043d036004823e80513d602482011167ffffffffffffffff8211171561374e5750506137a1565b808201805167ffffffffffffffff81111561376c57505050506137a1565b80602083010160043d0385018111156137895750505050506137a1565b61379882602001850186612247565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b60006138006034836123c4565b915061380b826137a4565b604082019050919050565b6000602082019050818103600083015261382f816137f3565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006138926028836123c4565b915061389d82613836565b604082019050919050565b600060208201905081810360008301526138c181613885565b9050919050565b600060a0820190506138dd60008301886128b6565b6138ea60208301876128b6565b6138f760408301866120eb565b61390460608301856120eb565b81810360808301526139168184613602565b9050969550505050505056fea2646970667358221220e280f275f4c42c00f07db050fc7b99b59fc6deb1017b955117fab06a005be1d664736f6c634300080d0033

Deployed Bytecode Sourcemap

43607:1379:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20862:231;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43774:47;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19885:310;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43951:89;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20606:105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22801:442;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43686:40;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21259:524;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37193:122;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40041:103;;;:::i;:::-;;39390:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21856:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43733:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44537:444;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44068:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36982:113;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22083:168;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22323:401;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40299:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20862:231;20948:7;20995:1;20976:21;;:7;:21;;;20968:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;21063:9;:13;21073:2;21063:13;;;;;;;;;;;:22;21077:7;21063:22;;;;;;;;;;;;;;;;21056:29;;20862:231;;;;:::o;43774:47::-;;;;;;;;;;;;;;;;;:::o;19885:310::-;19987:4;20039:26;20024:41;;;:11;:41;;;;:110;;;;20097:37;20082:52;;;:11;:52;;;;20024:110;:163;;;;20151:36;20175:11;20151:23;:36::i;:::-;20024:163;20004:183;;19885:310;;;:::o;43951:89::-;39621:12;:10;:12::i;:::-;39610:23;;:7;:5;:7::i;:::-;:23;;;39602:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44017:15:::1;44025:6;44017:7;:15::i;:::-;43951:89:::0;:::o;20606:105::-;20666:13;20699:4;20692:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20606:105;;;:::o;22801:442::-;23042:12;:10;:12::i;:::-;23034:20;;:4;:20;;;:60;;;;23058:36;23075:4;23081:12;:10;:12::i;:::-;23058:16;:36::i;:::-;23034:60;23012:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;23183:52;23206:4;23212:2;23216:3;23221:7;23230:4;23183:22;:52::i;:::-;22801:442;;;;;:::o;43686:40::-;43723:3;43686:40;:::o;21259:524::-;21415:16;21476:3;:10;21457:8;:15;:29;21449:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;21545:30;21592:8;:15;21578:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21545:63;;21626:9;21621:122;21645:8;:15;21641:1;:19;21621:122;;;21701:30;21711:8;21720:1;21711:11;;;;;;;;:::i;:::-;;;;;;;;21724:3;21728:1;21724:6;;;;;;;;:::i;:::-;;;;;;;;21701:9;:30::i;:::-;21682:13;21696:1;21682:16;;;;;;;;:::i;:::-;;;;;;;:49;;;;;21662:3;;;;:::i;:::-;;;21621:122;;;;21762:13;21755:20;;;21259:524;;;;:::o;37193:122::-;37250:4;37306:1;37274:29;37300:2;37274:25;:29::i;:::-;:33;37267:40;;37193:122;;;:::o;40041:103::-;39621:12;:10;:12::i;:::-;39610:23;;:7;:5;:7::i;:::-;:23;;;39602:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40106:30:::1;40133:1;40106:18;:30::i;:::-;40041:103::o:0;39390:87::-;39436:7;39463:6;;;;;;;;;;;39456:13;;39390:87;:::o;21856:155::-;21951:52;21970:12;:10;:12::i;:::-;21984:8;21994;21951:18;:52::i;:::-;21856:155;;:::o;43733:34::-;;;;:::o;44537:444::-;44597:21;44645:12;:10;:12::i;:::-;44628:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;44597:62;;44707:1;44678:11;:25;44690:12;:10;:12::i;:::-;44678:25;;;;;;;;;;;;;;;;:30;44670:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;43723:3;44754:14;44766:1;44754:11;:14::i;:::-;:27;44746:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;44823:30;44831:14;44837:7;44831:5;:14::i;:::-;44847:5;;44823:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:7;:30::i;:::-;44815:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;44932:1;44904:11;:25;44916:12;:10;:12::i;:::-;44904:25;;;;;;;;;;;;;;;:29;;;;44944;44950:12;:10;:12::i;:::-;44964:1;44967;44944:29;;;;;;;;;;;;:5;:29::i;:::-;44586:395;44537:444;;:::o;44068:142::-;39621:12;:10;:12::i;:::-;39610:23;;:7;:5;:7::i;:::-;:23;;;39602:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44182:20:::1;44160:19;:42;;;;44068:142:::0;:::o;36982:113::-;37044:7;37071:12;:16;37084:2;37071:16;;;;;;;;;;;;37064:23;;36982:113;;;:::o;22083:168::-;22182:4;22206:18;:27;22225:7;22206:27;;;;;;;;;;;;;;;:37;22234:8;22206:37;;;;;;;;;;;;;;;;;;;;;;;;;22199:44;;22083:168;;;;:::o;22323:401::-;22539:12;:10;:12::i;:::-;22531:20;;:4;:20;;;:60;;;;22555:36;22572:4;22578:12;:10;:12::i;:::-;22555:16;:36::i;:::-;22531:60;22509:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;22671:45;22689:4;22695:2;22699;22703:6;22711:4;22671:17;:45::i;:::-;22323:401;;;;;:::o;40299:201::-;39621:12;:10;:12::i;:::-;39610:23;;:7;:5;:7::i;:::-;:23;;;39602:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40408:1:::1;40388:22;;:8;:22;;::::0;40380:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;40464:28;40483:8;40464:18;:28::i;:::-;40299:201:::0;:::o;10285:157::-;10370:4;10409:25;10394:40;;;:11;:40;;;;10387:47;;10285:157;;;:::o;18579:98::-;18632:7;18659:10;18652:17;;18579:98;:::o;27029:88::-;27103:6;27096:4;:13;;;;;;;;;;;;:::i;:::-;;27029:88;:::o;25039:1146::-;25266:7;:14;25252:3;:10;:28;25244:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;25358:1;25344:16;;:2;:16;;;25336:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;25415:16;25434:12;:10;:12::i;:::-;25415:31;;25459:60;25480:8;25490:4;25496:2;25500:3;25505:7;25514:4;25459:20;:60::i;:::-;25537:9;25532:421;25556:3;:10;25552:1;:14;25532:421;;;25588:10;25601:3;25605:1;25601:6;;;;;;;;:::i;:::-;;;;;;;;25588:19;;25622:14;25639:7;25647:1;25639:10;;;;;;;;:::i;:::-;;;;;;;;25622:27;;25666:19;25688:9;:13;25698:2;25688:13;;;;;;;;;;;:19;25702:4;25688:19;;;;;;;;;;;;;;;;25666:41;;25745:6;25730:11;:21;;25722:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;25878:6;25864:11;:20;25842:9;:13;25852:2;25842:13;;;;;;;;;;;:19;25856:4;25842:19;;;;;;;;;;;;;;;:42;;;;25935:6;25914:9;:13;25924:2;25914:13;;;;;;;;;;;:17;25928:2;25914:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;25573:380;;;25568:3;;;;:::i;:::-;;;25532:421;;;;26000:2;25970:47;;25994:4;25970:47;;25984:8;25970:47;;;26004:3;26009:7;25970:47;;;;;;;:::i;:::-;;;;;;;;26030:59;26050:8;26060:4;26066:2;26070:3;26075:7;26084:4;26030:19;:59::i;:::-;26102:75;26138:8;26148:4;26154:2;26158:3;26163:7;26172:4;26102:35;:75::i;:::-;25233:952;25039:1146;;;;;:::o;40660:191::-;40734:16;40753:6;;;;;;;;;;;40734:25;;40779:8;40770:6;;:17;;;;;;;;;;;;;;;;;;40834:8;40803:40;;40824:8;40803:40;;;;;;;;;;;;40723:128;40660:191;:::o;31773:331::-;31928:8;31919:17;;:5;:17;;;31911:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;32031:8;31993:18;:25;32012:5;31993:25;;;;;;;;;;;;;;;:35;32019:8;31993:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;32077:8;32055:41;;32070:5;32055:41;;;32087:8;32055:41;;;;;;:::i;:::-;;;;;;;;31773:331;;;:::o;44216:132::-;44277:7;44331;44314:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;44304:36;;;;;;44297:43;;44216:132;;;:::o;44354:162::-;44432:4;44456:52;44475:5;44482:19;;44503:4;44456:18;:52::i;:::-;44449:59;;44354:162;;;;:::o;27503:729::-;27670:1;27656:16;;:2;:16;;;27648:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;27723:16;27742:12;:10;:12::i;:::-;27723:31;;27765:20;27788:21;27806:2;27788:17;:21::i;:::-;27765:44;;27820:24;27847:25;27865:6;27847:17;:25::i;:::-;27820:52;;27885:66;27906:8;27924:1;27928:2;27932:3;27937:7;27946:4;27885:20;:66::i;:::-;27985:6;27964:9;:13;27974:2;27964:13;;;;;;;;;;;:17;27978:2;27964:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;28044:2;28007:52;;28040:1;28007:52;;28022:8;28007:52;;;28048:2;28052:6;28007:52;;;;;;;:::i;:::-;;;;;;;;28072:65;28092:8;28110:1;28114:2;28118:3;28123:7;28132:4;28072:19;:65::i;:::-;28150:74;28181:8;28199:1;28203:2;28207;28211:6;28219:4;28150:30;:74::i;:::-;27637:595;;;27503:729;;;;:::o;23707:974::-;23909:1;23895:16;;:2;:16;;;23887:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;23966:16;23985:12;:10;:12::i;:::-;23966:31;;24008:20;24031:21;24049:2;24031:17;:21::i;:::-;24008:44;;24063:24;24090:25;24108:6;24090:17;:25::i;:::-;24063:52;;24128:60;24149:8;24159:4;24165:2;24169:3;24174:7;24183:4;24128:20;:60::i;:::-;24201:19;24223:9;:13;24233:2;24223:13;;;;;;;;;;;:19;24237:4;24223:19;;;;;;;;;;;;;;;;24201:41;;24276:6;24261:11;:21;;24253:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;24401:6;24387:11;:20;24365:9;:13;24375:2;24365:13;;;;;;;;;;;:19;24379:4;24365:19;;;;;;;;;;;;;;;:42;;;;24450:6;24429:9;:13;24439:2;24429:13;;;;;;;;;;;:17;24443:2;24429:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;24505:2;24474:46;;24499:4;24474:46;;24489:8;24474:46;;;24509:2;24513:6;24474:46;;;;;;;:::i;:::-;;;;;;;;24533:59;24553:8;24563:4;24569:2;24573:3;24578:7;24587:4;24533:19;:59::i;:::-;24605:68;24636:8;24646:4;24652:2;24656;24660:6;24668:4;24605:30;:68::i;:::-;23876:805;;;;23707:974;;;;;:::o;37390:931::-;37629:66;37656:8;37666:4;37672:2;37676:3;37681:7;37690:4;37629:26;:66::i;:::-;37728:1;37712:18;;:4;:18;;;37708:160;;37752:9;37747:110;37771:3;:10;37767:1;:14;37747:110;;;37831:7;37839:1;37831:10;;;;;;;;:::i;:::-;;;;;;;;37807:12;:20;37820:3;37824:1;37820:6;;;;;;;;:::i;:::-;;;;;;;;37807:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;37783:3;;;;:::i;:::-;;;37747:110;;;;37708:160;37898:1;37884:16;;:2;:16;;;37880:434;;37922:9;37917:386;37941:3;:10;37937:1;:14;37917:386;;;37977:10;37990:3;37994:1;37990:6;;;;;;;;:::i;:::-;;;;;;;;37977:19;;38015:14;38032:7;38040:1;38032:10;;;;;;;;:::i;:::-;;;;;;;;38015:27;;38061:14;38078:12;:16;38091:2;38078:16;;;;;;;;;;;;38061:33;;38131:6;38121;:16;;38113:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;38262:6;38253;:15;38234:12;:16;38247:2;38234:16;;;;;;;;;;;:34;;;;37958:345;;;37953:3;;;;:::i;:::-;;;37917:386;;;;37880:434;37390:931;;;;;;:::o;34236:220::-;;;;;;;:::o;35216:813::-;35456:15;:2;:13;;;:15::i;:::-;35452:570;;;35509:2;35492:43;;;35536:8;35546:4;35552:3;35557:7;35566:4;35492:79;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35488:523;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;35884:6;35877:14;;;;;;;;;;;:::i;:::-;;;;;;;;35488:523;;;35933:62;;;;;;;;;;:::i;:::-;;;;;;;;35488:523;35665:48;;;35653:60;;;:8;:60;;;;35649:159;;35738:50;;;;;;;;;;:::i;:::-;;;;;;;;35649:159;35572:251;35452:570;35216:813;;;;;;:::o;42078:190::-;42203:4;42256;42227:25;42240:5;42247:4;42227:12;:25::i;:::-;:33;42220:40;;42078:190;;;;;:::o;36037:198::-;36103:16;36132:22;36171:1;36157:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36132:41;;36195:7;36184:5;36190:1;36184:8;;;;;;;;:::i;:::-;;;;;;;:18;;;;;36222:5;36215:12;;;36037:198;;;:::o;34464:744::-;34679:15;:2;:13;;;:15::i;:::-;34675:526;;;34732:2;34715:38;;;34754:8;34764:4;34770:2;34774:6;34782:4;34715:72;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;34711:479;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;35063:6;35056:14;;;;;;;;;;;:::i;:::-;;;;;;;;34711:479;;;35112:62;;;;;;;;;;:::i;:::-;;;;;;;;34711:479;34849:43;;;34837:55;;;:8;:55;;;;34833:154;;34917:50;;;;;;;;;;:::i;:::-;;;;;;;;34833:154;34788:214;34675:526;34464:744;;;;;;:::o;33060:221::-;;;;;;;:::o;1233:326::-;1293:4;1550:1;1528:7;:19;;;:23;1521:30;;1233:326;;;:::o;42629:675::-;42712:7;42732:20;42755:4;42732:27;;42775:9;42770:497;42794:5;:12;42790:1;:16;42770:497;;;42828:20;42851:5;42857:1;42851:8;;;;;;;;:::i;:::-;;;;;;;;42828:31;;42894:12;42878;:28;42874:382;;43021:42;43036:12;43050;43021:14;:42::i;:::-;43006:57;;42874:382;;;43198:42;43213:12;43227;43198:14;:42::i;:::-;43183:57;;42874:382;42813:454;42808:3;;;;;:::i;:::-;;;;42770:497;;;;43284:12;43277:19;;;42629:675;;;;:::o;43312:224::-;43380:13;43443:1;43437:4;43430:15;43472:1;43466:4;43459:15;43513:4;43507;43497:21;43488:30;;43312:224;;;;:::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:329::-;2088:6;2137:2;2125:9;2116:7;2112:23;2108:32;2105:119;;;2143:79;;:::i;:::-;2105:119;2263:1;2288:53;2333:7;2324:6;2313:9;2309:22;2288:53;:::i;:::-;2278:63;;2234:117;2029:329;;;;:::o;2364:149::-;2400:7;2440:66;2433:5;2429:78;2418:89;;2364:149;;;:::o;2519:120::-;2591:23;2608:5;2591:23;:::i;:::-;2584:5;2581:34;2571:62;;2629:1;2626;2619:12;2571:62;2519:120;:::o;2645:137::-;2690:5;2728:6;2715:20;2706:29;;2744:32;2770:5;2744:32;:::i;:::-;2645:137;;;;:::o;2788:327::-;2846:6;2895:2;2883:9;2874:7;2870:23;2866:32;2863:119;;;2901:79;;:::i;:::-;2863:119;3021:1;3046:52;3090:7;3081:6;3070:9;3066:22;3046:52;:::i;:::-;3036:62;;2992:116;2788:327;;;;:::o;3121:90::-;3155:7;3198:5;3191:13;3184:21;3173:32;;3121:90;;;:::o;3217:109::-;3298:21;3313:5;3298:21;:::i;:::-;3293:3;3286:34;3217:109;;:::o;3332:210::-;3419:4;3457:2;3446:9;3442:18;3434:26;;3470:65;3532:1;3521:9;3517:17;3508:6;3470:65;:::i;:::-;3332:210;;;;:::o;3548:117::-;3657:1;3654;3647:12;3671:117;3780:1;3777;3770:12;3794:102;3835:6;3886:2;3882:7;3877:2;3870:5;3866:14;3862:28;3852:38;;3794:102;;;:::o;3902:180::-;3950:77;3947:1;3940:88;4047:4;4044:1;4037:15;4071:4;4068:1;4061:15;4088:281;4171:27;4193:4;4171:27;:::i;:::-;4163:6;4159:40;4301:6;4289:10;4286:22;4265:18;4253:10;4250:34;4247:62;4244:88;;;4312:18;;:::i;:::-;4244:88;4352:10;4348:2;4341:22;4131:238;4088:281;;:::o;4375:129::-;4409:6;4436:20;;:::i;:::-;4426:30;;4465:33;4493:4;4485:6;4465:33;:::i;:::-;4375:129;;;:::o;4510:308::-;4572:4;4662:18;4654:6;4651:30;4648:56;;;4684:18;;:::i;:::-;4648:56;4722:29;4744:6;4722:29;:::i;:::-;4714:37;;4806:4;4800;4796:15;4788:23;;4510:308;;;:::o;4824:154::-;4908:6;4903:3;4898;4885:30;4970:1;4961:6;4956:3;4952:16;4945:27;4824:154;;;:::o;4984:412::-;5062:5;5087:66;5103:49;5145:6;5103:49;:::i;:::-;5087:66;:::i;:::-;5078:75;;5176:6;5169:5;5162:21;5214:4;5207:5;5203:16;5252:3;5243:6;5238:3;5234:16;5231:25;5228:112;;;5259:79;;:::i;:::-;5228:112;5349:41;5383:6;5378:3;5373;5349:41;:::i;:::-;5068:328;4984:412;;;;;:::o;5416:340::-;5472:5;5521:3;5514:4;5506:6;5502:17;5498:27;5488:122;;5529:79;;:::i;:::-;5488:122;5646:6;5633:20;5671:79;5746:3;5738:6;5731:4;5723:6;5719:17;5671:79;:::i;:::-;5662:88;;5478:278;5416:340;;;;:::o;5762:509::-;5831:6;5880:2;5868:9;5859:7;5855:23;5851:32;5848:119;;;5886:79;;:::i;:::-;5848:119;6034:1;6023:9;6019:17;6006:31;6064:18;6056:6;6053:30;6050:117;;;6086:79;;:::i;:::-;6050:117;6191:63;6246:7;6237:6;6226:9;6222:22;6191:63;:::i;:::-;6181:73;;5977:287;5762:509;;;;:::o;6277:329::-;6336:6;6385:2;6373:9;6364:7;6360:23;6356:32;6353:119;;;6391:79;;:::i;:::-;6353:119;6511:1;6536:53;6581:7;6572:6;6561:9;6557:22;6536:53;:::i;:::-;6526:63;;6482:117;6277:329;;;;:::o;6612:99::-;6664:6;6698:5;6692:12;6682:22;;6612:99;;;:::o;6717:169::-;6801:11;6835:6;6830:3;6823:19;6875:4;6870:3;6866:14;6851:29;;6717:169;;;;:::o;6892:307::-;6960:1;6970:113;6984:6;6981:1;6978:13;6970:113;;;7069:1;7064:3;7060:11;7054:18;7050:1;7045:3;7041:11;7034:39;7006:2;7003:1;6999:10;6994:15;;6970:113;;;7101:6;7098:1;7095:13;7092:101;;;7181:1;7172:6;7167:3;7163:16;7156:27;7092:101;6941:258;6892:307;;;:::o;7205:364::-;7293:3;7321:39;7354:5;7321:39;:::i;:::-;7376:71;7440:6;7435:3;7376:71;:::i;:::-;7369:78;;7456:52;7501:6;7496:3;7489:4;7482:5;7478:16;7456:52;:::i;:::-;7533:29;7555:6;7533:29;:::i;:::-;7528:3;7524:39;7517:46;;7297:272;7205:364;;;;:::o;7575:313::-;7688:4;7726:2;7715:9;7711:18;7703:26;;7775:9;7769:4;7765:20;7761:1;7750:9;7746:17;7739:47;7803:78;7876:4;7867:6;7803:78;:::i;:::-;7795:86;;7575:313;;;;:::o;7894:311::-;7971:4;8061:18;8053:6;8050:30;8047:56;;;8083:18;;:::i;:::-;8047:56;8133:4;8125:6;8121:17;8113:25;;8193:4;8187;8183:15;8175:23;;7894:311;;;:::o;8211:117::-;8320:1;8317;8310:12;8351:710;8447:5;8472:81;8488:64;8545:6;8488:64;:::i;:::-;8472:81;:::i;:::-;8463:90;;8573:5;8602:6;8595:5;8588:21;8636:4;8629:5;8625:16;8618:23;;8689:4;8681:6;8677:17;8669:6;8665:30;8718:3;8710:6;8707:15;8704:122;;;8737:79;;:::i;:::-;8704:122;8852:6;8835:220;8869:6;8864:3;8861:15;8835:220;;;8944:3;8973:37;9006:3;8994:10;8973:37;:::i;:::-;8968:3;8961:50;9040:4;9035:3;9031:14;9024:21;;8911:144;8895:4;8890:3;8886:14;8879:21;;8835:220;;;8839:21;8453:608;;8351:710;;;;;:::o;9084:370::-;9155:5;9204:3;9197:4;9189:6;9185:17;9181:27;9171:122;;9212:79;;:::i;:::-;9171:122;9329:6;9316:20;9354:94;9444:3;9436:6;9429:4;9421:6;9417:17;9354:94;:::i;:::-;9345:103;;9161:293;9084:370;;;;:::o;9460:307::-;9521:4;9611:18;9603:6;9600:30;9597:56;;;9633:18;;:::i;:::-;9597:56;9671:29;9693:6;9671:29;:::i;:::-;9663:37;;9755:4;9749;9745:15;9737:23;;9460:307;;;:::o;9773:410::-;9850:5;9875:65;9891:48;9932:6;9891:48;:::i;:::-;9875:65;:::i;:::-;9866:74;;9963:6;9956:5;9949:21;10001:4;9994:5;9990:16;10039:3;10030:6;10025:3;10021:16;10018:25;10015:112;;;10046:79;;:::i;:::-;10015:112;10136:41;10170:6;10165:3;10160;10136:41;:::i;:::-;9856:327;9773:410;;;;;:::o;10202:338::-;10257:5;10306:3;10299:4;10291:6;10287:17;10283:27;10273:122;;10314:79;;:::i;:::-;10273:122;10431:6;10418:20;10456:78;10530:3;10522:6;10515:4;10507:6;10503:17;10456:78;:::i;:::-;10447:87;;10263:277;10202:338;;;;:::o;10546:1509::-;10700:6;10708;10716;10724;10732;10781:3;10769:9;10760:7;10756:23;10752:33;10749:120;;;10788:79;;:::i;:::-;10749:120;10908:1;10933:53;10978:7;10969:6;10958:9;10954:22;10933:53;:::i;:::-;10923:63;;10879:117;11035:2;11061:53;11106:7;11097:6;11086:9;11082:22;11061:53;:::i;:::-;11051:63;;11006:118;11191:2;11180:9;11176:18;11163:32;11222:18;11214:6;11211:30;11208:117;;;11244:79;;:::i;:::-;11208:117;11349:78;11419:7;11410:6;11399:9;11395:22;11349:78;:::i;:::-;11339:88;;11134:303;11504:2;11493:9;11489:18;11476:32;11535:18;11527:6;11524:30;11521:117;;;11557:79;;:::i;:::-;11521:117;11662:78;11732:7;11723:6;11712:9;11708:22;11662:78;:::i;:::-;11652:88;;11447:303;11817:3;11806:9;11802:19;11789:33;11849:18;11841:6;11838:30;11835:117;;;11871:79;;:::i;:::-;11835:117;11976:62;12030:7;12021:6;12010:9;12006:22;11976:62;:::i;:::-;11966:72;;11760:288;10546:1509;;;;;;;;:::o;12061:311::-;12138:4;12228:18;12220:6;12217:30;12214:56;;;12250:18;;:::i;:::-;12214:56;12300:4;12292:6;12288:17;12280:25;;12360:4;12354;12350:15;12342:23;;12061:311;;;:::o;12395:710::-;12491:5;12516:81;12532:64;12589:6;12532:64;:::i;:::-;12516:81;:::i;:::-;12507:90;;12617:5;12646:6;12639:5;12632:21;12680:4;12673:5;12669:16;12662:23;;12733:4;12725:6;12721:17;12713:6;12709:30;12762:3;12754:6;12751:15;12748:122;;;12781:79;;:::i;:::-;12748:122;12896:6;12879:220;12913:6;12908:3;12905:15;12879:220;;;12988:3;13017:37;13050:3;13038:10;13017:37;:::i;:::-;13012:3;13005:50;13084:4;13079:3;13075:14;13068:21;;12955:144;12939:4;12934:3;12930:14;12923:21;;12879:220;;;12883:21;12497:608;;12395:710;;;;;:::o;13128:370::-;13199:5;13248:3;13241:4;13233:6;13229:17;13225:27;13215:122;;13256:79;;:::i;:::-;13215:122;13373:6;13360:20;13398:94;13488:3;13480:6;13473:4;13465:6;13461:17;13398:94;:::i;:::-;13389:103;;13205:293;13128:370;;;;:::o;13504:894::-;13622:6;13630;13679:2;13667:9;13658:7;13654:23;13650:32;13647:119;;;13685:79;;:::i;:::-;13647:119;13833:1;13822:9;13818:17;13805:31;13863:18;13855:6;13852:30;13849:117;;;13885:79;;:::i;:::-;13849:117;13990:78;14060:7;14051:6;14040:9;14036:22;13990:78;:::i;:::-;13980:88;;13776:302;14145:2;14134:9;14130:18;14117:32;14176:18;14168:6;14165:30;14162:117;;;14198:79;;:::i;:::-;14162:117;14303:78;14373:7;14364:6;14353:9;14349:22;14303:78;:::i;:::-;14293:88;;14088:303;13504:894;;;;;:::o;14404:114::-;14471:6;14505:5;14499:12;14489:22;;14404:114;;;:::o;14524:184::-;14623:11;14657:6;14652:3;14645:19;14697:4;14692:3;14688:14;14673:29;;14524:184;;;;:::o;14714:132::-;14781:4;14804:3;14796:11;;14834:4;14829:3;14825:14;14817:22;;14714:132;;;:::o;14852:108::-;14929:24;14947:5;14929:24;:::i;:::-;14924:3;14917:37;14852:108;;:::o;14966:179::-;15035:10;15056:46;15098:3;15090:6;15056:46;:::i;:::-;15134:4;15129:3;15125:14;15111:28;;14966:179;;;;:::o;15151:113::-;15221:4;15253;15248:3;15244:14;15236:22;;15151:113;;;:::o;15300:732::-;15419:3;15448:54;15496:5;15448:54;:::i;:::-;15518:86;15597:6;15592:3;15518:86;:::i;:::-;15511:93;;15628:56;15678:5;15628:56;:::i;:::-;15707:7;15738:1;15723:284;15748:6;15745:1;15742:13;15723:284;;;15824:6;15818:13;15851:63;15910:3;15895:13;15851:63;:::i;:::-;15844:70;;15937:60;15990:6;15937:60;:::i;:::-;15927:70;;15783:224;15770:1;15767;15763:9;15758:14;;15723:284;;;15727:14;16023:3;16016:10;;15424:608;;;15300:732;;;;:::o;16038:373::-;16181:4;16219:2;16208:9;16204:18;16196:26;;16268:9;16262:4;16258:20;16254:1;16243:9;16239:17;16232:47;16296:108;16399:4;16390:6;16296:108;:::i;:::-;16288:116;;16038:373;;;;:::o;16417:118::-;16504:24;16522:5;16504:24;:::i;:::-;16499:3;16492:37;16417:118;;:::o;16541:222::-;16634:4;16672:2;16661:9;16657:18;16649:26;;16685:71;16753:1;16742:9;16738:17;16729:6;16685:71;:::i;:::-;16541:222;;;;:::o;16769:116::-;16839:21;16854:5;16839:21;:::i;:::-;16832:5;16829:32;16819:60;;16875:1;16872;16865:12;16819:60;16769:116;:::o;16891:133::-;16934:5;16972:6;16959:20;16950:29;;16988:30;17012:5;16988:30;:::i;:::-;16891:133;;;;:::o;17030:468::-;17095:6;17103;17152:2;17140:9;17131:7;17127:23;17123:32;17120:119;;;17158:79;;:::i;:::-;17120:119;17278:1;17303:53;17348:7;17339:6;17328:9;17324:22;17303:53;:::i;:::-;17293:63;;17249:117;17405:2;17431:50;17473:7;17464:6;17453:9;17449:22;17431:50;:::i;:::-;17421:60;;17376:115;17030:468;;;;;:::o;17504:77::-;17541:7;17570:5;17559:16;;17504:77;;;:::o;17587:118::-;17674:24;17692:5;17674:24;:::i;:::-;17669:3;17662:37;17587:118;;:::o;17711:222::-;17804:4;17842:2;17831:9;17827:18;17819:26;;17855:71;17923:1;17912:9;17908:17;17899:6;17855:71;:::i;:::-;17711:222;;;;:::o;17939:117::-;18048:1;18045;18038:12;18079:568;18152:8;18162:6;18212:3;18205:4;18197:6;18193:17;18189:27;18179:122;;18220:79;;:::i;:::-;18179:122;18333:6;18320:20;18310:30;;18363:18;18355:6;18352:30;18349:117;;;18385:79;;:::i;:::-;18349:117;18499:4;18491:6;18487:17;18475:29;;18553:3;18545:4;18537:6;18533:17;18523:8;18519:32;18516:41;18513:128;;;18560:79;;:::i;:::-;18513:128;18079:568;;;;;:::o;18653:559::-;18739:6;18747;18796:2;18784:9;18775:7;18771:23;18767:32;18764:119;;;18802:79;;:::i;:::-;18764:119;18950:1;18939:9;18935:17;18922:31;18980:18;18972:6;18969:30;18966:117;;;19002:79;;:::i;:::-;18966:117;19115:80;19187:7;19178:6;19167:9;19163:22;19115:80;:::i;:::-;19097:98;;;;18893:312;18653:559;;;;;:::o;19218:122::-;19291:24;19309:5;19291:24;:::i;:::-;19284:5;19281:35;19271:63;;19330:1;19327;19320:12;19271:63;19218:122;:::o;19346:139::-;19392:5;19430:6;19417:20;19408:29;;19446:33;19473:5;19446:33;:::i;:::-;19346:139;;;;:::o;19491:329::-;19550:6;19599:2;19587:9;19578:7;19574:23;19570:32;19567:119;;;19605:79;;:::i;:::-;19567:119;19725:1;19750:53;19795:7;19786:6;19775:9;19771:22;19750:53;:::i;:::-;19740:63;;19696:117;19491:329;;;;:::o;19826:474::-;19894:6;19902;19951:2;19939:9;19930:7;19926:23;19922:32;19919:119;;;19957:79;;:::i;:::-;19919:119;20077:1;20102:53;20147:7;20138:6;20127:9;20123:22;20102:53;:::i;:::-;20092:63;;20048:117;20204:2;20230:53;20275:7;20266:6;20255:9;20251:22;20230:53;:::i;:::-;20220:63;;20175:118;19826:474;;;;;:::o;20306:1089::-;20410:6;20418;20426;20434;20442;20491:3;20479:9;20470:7;20466:23;20462:33;20459:120;;;20498:79;;:::i;:::-;20459:120;20618:1;20643:53;20688:7;20679:6;20668:9;20664:22;20643:53;:::i;:::-;20633:63;;20589:117;20745:2;20771:53;20816:7;20807:6;20796:9;20792:22;20771:53;:::i;:::-;20761:63;;20716:118;20873:2;20899:53;20944:7;20935:6;20924:9;20920:22;20899:53;:::i;:::-;20889:63;;20844:118;21001:2;21027:53;21072:7;21063:6;21052:9;21048:22;21027:53;:::i;:::-;21017:63;;20972:118;21157:3;21146:9;21142:19;21129:33;21189:18;21181:6;21178:30;21175:117;;;21211:79;;:::i;:::-;21175:117;21316:62;21370:7;21361:6;21350:9;21346:22;21316:62;:::i;:::-;21306:72;;21100:288;20306:1089;;;;;;;;:::o;21401:230::-;21541:34;21537:1;21529:6;21525:14;21518:58;21610:13;21605:2;21597:6;21593:15;21586:38;21401:230;:::o;21637:366::-;21779:3;21800:67;21864:2;21859:3;21800:67;:::i;:::-;21793:74;;21876:93;21965:3;21876:93;:::i;:::-;21994:2;21989:3;21985:12;21978:19;;21637:366;;;:::o;22009:419::-;22175:4;22213:2;22202:9;22198:18;22190:26;;22262:9;22256:4;22252:20;22248:1;22237:9;22233:17;22226:47;22290:131;22416:4;22290:131;:::i;:::-;22282:139;;22009:419;;;:::o;22434:182::-;22574:34;22570:1;22562:6;22558:14;22551:58;22434:182;:::o;22622:366::-;22764:3;22785:67;22849:2;22844:3;22785:67;:::i;:::-;22778:74;;22861:93;22950:3;22861:93;:::i;:::-;22979:2;22974:3;22970:12;22963:19;;22622:366;;;:::o;22994:419::-;23160:4;23198:2;23187:9;23183:18;23175:26;;23247:9;23241:4;23237:20;23233:1;23222:9;23218:17;23211:47;23275:131;23401:4;23275:131;:::i;:::-;23267:139;;22994:419;;;:::o;23419:180::-;23467:77;23464:1;23457:88;23564:4;23561:1;23554:15;23588:4;23585:1;23578:15;23605:320;23649:6;23686:1;23680:4;23676:12;23666:22;;23733:1;23727:4;23723:12;23754:18;23744:81;;23810:4;23802:6;23798:17;23788:27;;23744:81;23872:2;23864:6;23861:14;23841:18;23838:38;23835:84;;23891:18;;:::i;:::-;23835:84;23656:269;23605:320;;;:::o;23931:237::-;24071:34;24067:1;24059:6;24055:14;24048:58;24140:20;24135:2;24127:6;24123:15;24116:45;23931:237;:::o;24174:366::-;24316:3;24337:67;24401:2;24396:3;24337:67;:::i;:::-;24330:74;;24413:93;24502:3;24413:93;:::i;:::-;24531:2;24526:3;24522:12;24515:19;;24174:366;;;:::o;24546:419::-;24712:4;24750:2;24739:9;24735:18;24727:26;;24799:9;24793:4;24789:20;24785:1;24774:9;24770:17;24763:47;24827:131;24953:4;24827:131;:::i;:::-;24819:139;;24546:419;;;:::o;24971:228::-;25111:34;25107:1;25099:6;25095:14;25088:58;25180:11;25175:2;25167:6;25163:15;25156:36;24971:228;:::o;25205:366::-;25347:3;25368:67;25432:2;25427:3;25368:67;:::i;:::-;25361:74;;25444:93;25533:3;25444:93;:::i;:::-;25562:2;25557:3;25553:12;25546:19;;25205:366;;;:::o;25577:419::-;25743:4;25781:2;25770:9;25766:18;25758:26;;25830:9;25824:4;25820:20;25816:1;25805:9;25801:17;25794:47;25858:131;25984:4;25858:131;:::i;:::-;25850:139;;25577:419;;;:::o;26002:180::-;26050:77;26047:1;26040:88;26147:4;26144:1;26137:15;26171:4;26168:1;26161:15;26188:180;26236:77;26233:1;26226:88;26333:4;26330:1;26323:15;26357:4;26354:1;26347:15;26374:233;26413:3;26436:24;26454:5;26436:24;:::i;:::-;26427:33;;26482:66;26475:5;26472:77;26469:103;;26552:18;;:::i;:::-;26469:103;26599:1;26592:5;26588:13;26581:20;;26374:233;;;:::o;26613:94::-;26646:8;26694:5;26690:2;26686:14;26665:35;;26613:94;;;:::o;26713:::-;26752:7;26781:20;26795:5;26781:20;:::i;:::-;26770:31;;26713:94;;;:::o;26813:100::-;26852:7;26881:26;26901:5;26881:26;:::i;:::-;26870:37;;26813:100;;;:::o;26919:157::-;27024:45;27044:24;27062:5;27044:24;:::i;:::-;27024:45;:::i;:::-;27019:3;27012:58;26919:157;;:::o;27082:256::-;27194:3;27209:75;27280:3;27271:6;27209:75;:::i;:::-;27309:2;27304:3;27300:12;27293:19;;27329:3;27322:10;;27082:256;;;;:::o;27344:172::-;27484:24;27480:1;27472:6;27468:14;27461:48;27344:172;:::o;27522:366::-;27664:3;27685:67;27749:2;27744:3;27685:67;:::i;:::-;27678:74;;27761:93;27850:3;27761:93;:::i;:::-;27879:2;27874:3;27870:12;27863:19;;27522:366;;;:::o;27894:419::-;28060:4;28098:2;28087:9;28083:18;28075:26;;28147:9;28141:4;28137:20;28133:1;28122:9;28118:17;28111:47;28175:131;28301:4;28175:131;:::i;:::-;28167:139;;27894:419;;;:::o;28319:168::-;28459:20;28455:1;28447:6;28443:14;28436:44;28319:168;:::o;28493:366::-;28635:3;28656:67;28720:2;28715:3;28656:67;:::i;:::-;28649:74;;28732:93;28821:3;28732:93;:::i;:::-;28850:2;28845:3;28841:12;28834:19;;28493:366;;;:::o;28865:419::-;29031:4;29069:2;29058:9;29054:18;29046:26;;29118:9;29112:4;29108:20;29104:1;29093:9;29089:17;29082:47;29146:131;29272:4;29146:131;:::i;:::-;29138:139;;28865:419;;;:::o;29290:222::-;29430:34;29426:1;29418:6;29414:14;29407:58;29499:5;29494:2;29486:6;29482:15;29475:30;29290:222;:::o;29518:366::-;29660:3;29681:67;29745:2;29740:3;29681:67;:::i;:::-;29674:74;;29757:93;29846:3;29757:93;:::i;:::-;29875:2;29870:3;29866:12;29859:19;;29518:366;;;:::o;29890:419::-;30056:4;30094:2;30083:9;30079:18;30071:26;;30143:9;30137:4;30133:20;30129:1;30118:9;30114:17;30107:47;30171:131;30297:4;30171:131;:::i;:::-;30163:139;;29890:419;;;:::o;30315:228::-;30455:34;30451:1;30443:6;30439:14;30432:58;30524:11;30519:2;30511:6;30507:15;30500:36;30315:228;:::o;30549:366::-;30691:3;30712:67;30776:2;30771:3;30712:67;:::i;:::-;30705:74;;30788:93;30877:3;30788:93;:::i;:::-;30906:2;30901:3;30897:12;30890:19;;30549:366;;;:::o;30921:419::-;31087:4;31125:2;31114:9;31110:18;31102:26;;31174:9;31168:4;31164:20;31160:1;31149:9;31145:17;31138:47;31202:131;31328:4;31202:131;:::i;:::-;31194:139;;30921:419;;;:::o;31346:225::-;31486:34;31482:1;31474:6;31470:14;31463:58;31555:8;31550:2;31542:6;31538:15;31531:33;31346:225;:::o;31577:366::-;31719:3;31740:67;31804:2;31799:3;31740:67;:::i;:::-;31733:74;;31816:93;31905:3;31816:93;:::i;:::-;31934:2;31929:3;31925:12;31918:19;;31577:366;;;:::o;31949:419::-;32115:4;32153:2;32142:9;32138:18;32130:26;;32202:9;32196:4;32192:20;32188:1;32177:9;32173:17;32166:47;32230:131;32356:4;32230:131;:::i;:::-;32222:139;;31949:419;;;:::o;32374:227::-;32514:34;32510:1;32502:6;32498:14;32491:58;32583:10;32578:2;32570:6;32566:15;32559:35;32374:227;:::o;32607:366::-;32749:3;32770:67;32834:2;32829:3;32770:67;:::i;:::-;32763:74;;32846:93;32935:3;32846:93;:::i;:::-;32964:2;32959:3;32955:12;32948:19;;32607:366;;;:::o;32979:419::-;33145:4;33183:2;33172:9;33168:18;33160:26;;33232:9;33226:4;33222:20;33218:1;33207:9;33203:17;33196:47;33260:131;33386:4;33260:131;:::i;:::-;33252:139;;32979:419;;;:::o;33404:224::-;33544:34;33540:1;33532:6;33528:14;33521:58;33613:7;33608:2;33600:6;33596:15;33589:32;33404:224;:::o;33634:366::-;33776:3;33797:67;33861:2;33856:3;33797:67;:::i;:::-;33790:74;;33873:93;33962:3;33873:93;:::i;:::-;33991:2;33986:3;33982:12;33975:19;;33634:366;;;:::o;34006:419::-;34172:4;34210:2;34199:9;34195:18;34187:26;;34259:9;34253:4;34249:20;34245:1;34234:9;34230:17;34223:47;34287:131;34413:4;34287:131;:::i;:::-;34279:139;;34006:419;;;:::o;34431:229::-;34571:34;34567:1;34559:6;34555:14;34548:58;34640:12;34635:2;34627:6;34623:15;34616:37;34431:229;:::o;34666:366::-;34808:3;34829:67;34893:2;34888:3;34829:67;:::i;:::-;34822:74;;34905:93;34994:3;34905:93;:::i;:::-;35023:2;35018:3;35014:12;35007:19;;34666:366;;;:::o;35038:419::-;35204:4;35242:2;35231:9;35227:18;35219:26;;35291:9;35285:4;35281:20;35277:1;35266:9;35262:17;35255:47;35319:131;35445:4;35319:131;:::i;:::-;35311:139;;35038:419;;;:::o;35463:305::-;35503:3;35522:20;35540:1;35522:20;:::i;:::-;35517:25;;35556:20;35574:1;35556:20;:::i;:::-;35551:25;;35710:1;35642:66;35638:74;35635:1;35632:81;35629:107;;;35716:18;;:::i;:::-;35629:107;35760:1;35757;35753:9;35746:16;;35463:305;;;;:::o;35774:634::-;35995:4;36033:2;36022:9;36018:18;36010:26;;36082:9;36076:4;36072:20;36068:1;36057:9;36053:17;36046:47;36110:108;36213:4;36204:6;36110:108;:::i;:::-;36102:116;;36265:9;36259:4;36255:20;36250:2;36239:9;36235:18;36228:48;36293:108;36396:4;36387:6;36293:108;:::i;:::-;36285:116;;35774:634;;;;;:::o;36414:228::-;36554:34;36550:1;36542:6;36538:14;36531:58;36623:11;36618:2;36610:6;36606:15;36599:36;36414:228;:::o;36648:366::-;36790:3;36811:67;36875:2;36870:3;36811:67;:::i;:::-;36804:74;;36887:93;36976:3;36887:93;:::i;:::-;37005:2;37000:3;36996:12;36989:19;;36648:366;;;:::o;37020:419::-;37186:4;37224:2;37213:9;37209:18;37201:26;;37273:9;37267:4;37263:20;37259:1;37248:9;37244:17;37237:47;37301:131;37427:4;37301:131;:::i;:::-;37293:139;;37020:419;;;:::o;37445:148::-;37547:11;37584:3;37569:18;;37445:148;;;;:::o;37599:377::-;37705:3;37733:39;37766:5;37733:39;:::i;:::-;37788:89;37870:6;37865:3;37788:89;:::i;:::-;37781:96;;37886:52;37931:6;37926:3;37919:4;37912:5;37908:16;37886:52;:::i;:::-;37963:6;37958:3;37954:16;37947:23;;37709:267;37599:377;;;;:::o;37982:275::-;38114:3;38136:95;38227:3;38218:6;38136:95;:::i;:::-;38129:102;;38248:3;38241:10;;37982:275;;;;:::o;38263:220::-;38403:34;38399:1;38391:6;38387:14;38380:58;38472:3;38467:2;38459:6;38455:15;38448:28;38263:220;:::o;38489:366::-;38631:3;38652:67;38716:2;38711:3;38652:67;:::i;:::-;38645:74;;38728:93;38817:3;38728:93;:::i;:::-;38846:2;38841:3;38837:12;38830:19;;38489:366;;;:::o;38861:419::-;39027:4;39065:2;39054:9;39050:18;39042:26;;39114:9;39108:4;39104:20;39100:1;39089:9;39085:17;39078:47;39142:131;39268:4;39142:131;:::i;:::-;39134:139;;38861:419;;;:::o;39286:332::-;39407:4;39445:2;39434:9;39430:18;39422:26;;39458:71;39526:1;39515:9;39511:17;39502:6;39458:71;:::i;:::-;39539:72;39607:2;39596:9;39592:18;39583:6;39539:72;:::i;:::-;39286:332;;;;;:::o;39624:227::-;39764:34;39760:1;39752:6;39748:14;39741:58;39833:10;39828:2;39820:6;39816:15;39809:35;39624:227;:::o;39857:366::-;39999:3;40020:67;40084:2;40079:3;40020:67;:::i;:::-;40013:74;;40096:93;40185:3;40096:93;:::i;:::-;40214:2;40209:3;40205:12;40198:19;;39857:366;;;:::o;40229:419::-;40395:4;40433:2;40422:9;40418:18;40410:26;;40482:9;40476:4;40472:20;40468:1;40457:9;40453:17;40446:47;40510:131;40636:4;40510:131;:::i;:::-;40502:139;;40229:419;;;:::o;40654:98::-;40705:6;40739:5;40733:12;40723:22;;40654:98;;;:::o;40758:168::-;40841:11;40875:6;40870:3;40863:19;40915:4;40910:3;40906:14;40891:29;;40758:168;;;;:::o;40932:360::-;41018:3;41046:38;41078:5;41046:38;:::i;:::-;41100:70;41163:6;41158:3;41100:70;:::i;:::-;41093:77;;41179:52;41224:6;41219:3;41212:4;41205:5;41201:16;41179:52;:::i;:::-;41256:29;41278:6;41256:29;:::i;:::-;41251:3;41247:39;41240:46;;41022:270;40932:360;;;;:::o;41298:1053::-;41621:4;41659:3;41648:9;41644:19;41636:27;;41673:71;41741:1;41730:9;41726:17;41717:6;41673:71;:::i;:::-;41754:72;41822:2;41811:9;41807:18;41798:6;41754:72;:::i;:::-;41873:9;41867:4;41863:20;41858:2;41847:9;41843:18;41836:48;41901:108;42004:4;41995:6;41901:108;:::i;:::-;41893:116;;42056:9;42050:4;42046:20;42041:2;42030:9;42026:18;42019:48;42084:108;42187:4;42178:6;42084:108;:::i;:::-;42076:116;;42240:9;42234:4;42230:20;42224:3;42213:9;42209:19;42202:49;42268:76;42339:4;42330:6;42268:76;:::i;:::-;42260:84;;41298:1053;;;;;;;;:::o;42357:141::-;42413:5;42444:6;42438:13;42429:22;;42460:32;42486:5;42460:32;:::i;:::-;42357:141;;;;:::o;42504:349::-;42573:6;42622:2;42610:9;42601:7;42597:23;42593:32;42590:119;;;42628:79;;:::i;:::-;42590:119;42748:1;42773:63;42828:7;42819:6;42808:9;42804:22;42773:63;:::i;:::-;42763:73;;42719:127;42504:349;;;;:::o;42859:106::-;42903:8;42952:5;42947:3;42943:15;42922:36;;42859:106;;;:::o;42971:183::-;43006:3;43044:1;43026:16;43023:23;43020:128;;;43082:1;43079;43076;43061:23;43104:34;43135:1;43129:8;43104:34;:::i;:::-;43097:41;;43020:128;42971:183;:::o;43160:711::-;43199:3;43237:4;43219:16;43216:26;43245:5;43213:39;43274:20;;:::i;:::-;43349:1;43331:16;43327:24;43324:1;43318:4;43303:49;43382:4;43376:11;43481:16;43474:4;43466:6;43462:17;43459:39;43426:18;43418:6;43415:30;43399:113;43396:146;;;43527:5;;;;43396:146;43573:6;43567:4;43563:17;43609:3;43603:10;43636:18;43628:6;43625:30;43622:43;;;43658:5;;;;;;43622:43;43706:6;43699:4;43694:3;43690:14;43686:27;43765:1;43747:16;43743:24;43737:4;43733:35;43728:3;43725:44;43722:57;;;43772:5;;;;;;;43722:57;43789;43837:6;43831:4;43827:17;43819:6;43815:30;43809:4;43789:57;:::i;:::-;43862:3;43855:10;;43203:668;;;;;43160:711;;:::o;43877:239::-;44017:34;44013:1;44005:6;44001:14;43994:58;44086:22;44081:2;44073:6;44069:15;44062:47;43877:239;:::o;44122:366::-;44264:3;44285:67;44349:2;44344:3;44285:67;:::i;:::-;44278:74;;44361:93;44450:3;44361:93;:::i;:::-;44479:2;44474:3;44470:12;44463:19;;44122:366;;;:::o;44494:419::-;44660:4;44698:2;44687:9;44683:18;44675:26;;44747:9;44741:4;44737:20;44733:1;44722:9;44718:17;44711:47;44775:131;44901:4;44775:131;:::i;:::-;44767:139;;44494:419;;;:::o;44919:227::-;45059:34;45055:1;45047:6;45043:14;45036:58;45128:10;45123:2;45115:6;45111:15;45104:35;44919:227;:::o;45152:366::-;45294:3;45315:67;45379:2;45374:3;45315:67;:::i;:::-;45308:74;;45391:93;45480:3;45391:93;:::i;:::-;45509:2;45504:3;45500:12;45493:19;;45152:366;;;:::o;45524:419::-;45690:4;45728:2;45717:9;45713:18;45705:26;;45777:9;45771:4;45767:20;45763:1;45752:9;45748:17;45741:47;45805:131;45931:4;45805:131;:::i;:::-;45797:139;;45524:419;;;:::o;45949:751::-;46172:4;46210:3;46199:9;46195:19;46187:27;;46224:71;46292:1;46281:9;46277:17;46268:6;46224:71;:::i;:::-;46305:72;46373:2;46362:9;46358:18;46349:6;46305:72;:::i;:::-;46387;46455:2;46444:9;46440:18;46431:6;46387:72;:::i;:::-;46469;46537:2;46526:9;46522:18;46513:6;46469:72;:::i;:::-;46589:9;46583:4;46579:20;46573:3;46562:9;46558:19;46551:49;46617:76;46688:4;46679:6;46617:76;:::i;:::-;46609:84;;45949:751;;;;;;;;:::o

Swarm Source

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