ETH Price: $3,259.54 (+4.64%)
Gas: 2 Gwei

Token

The Ducktail Driver Club (DDC)
 

Overview

Max Total Supply

87 DDC

Holders

20

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
A Petrolhead Story Editions: Deployer
Balance
1 DDC
0x8e5fc669251b1cbad1d9c6403c7341a6a7c618f3
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:
DucktailDriverClub

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-02
*/

/**
 *Submitted for verification at Etherscan.io on 2021-12-08
*/

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

// SPDX-License-Identifier: GPL-3.0

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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
pragma solidity ^0.8.0;
/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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


// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

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


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol



pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

pragma solidity ^0.8.0;

contract DucktailDriverClub is ERC721Enumerable, Ownable {
    using Strings for uint256;
    string public baseURI;
    string public baseExtension = ".json";
        uint256 public cost = 0.1 ether;
    uint256 public maxSupply = 4911;
    uint256 public maxMintAmount = 50;
    bool public paused = false;

    constructor() ERC721("The Ducktail Driver Club", "DDC") {}
        // internal
        function _baseURI() internal view virtual override returns (string memory) {
        return "ipfs://QmNbGrACoEU7GAbJeaEwYNgJ4ZtG81EpBA6qfEKPyXJxFq/";
    }
        // public
        function mint(address _to, uint256[] memory _tokenIds) public payable {
            uint256 supply = totalSupply();
            uint256 _mintAmount = _tokenIds.length;
            require(!paused);
            require(_mintAmount > 0);
            require(_mintAmount <= maxMintAmount);
            require(supply + _mintAmount <= maxSupply);
            
            if (msg.sender != owner()) {
            require(msg.value == cost * _mintAmount, "Please kindly send 0.1 ETH.");
            }
            
            for (uint256 i = 0; i < _mintAmount; i++) {
                _safeMint(_to, _tokenIds[i]);
            }
        }
        
        function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
        {
            uint256 ownerTokenCount = balanceOf(_owner);
            uint256[] memory tokenIds = new uint256[](ownerTokenCount);
            for (uint256 i; i < ownerTokenCount; i++) {
                tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
            }
            return tokenIds;
        }
    
        
        function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory) {
            require(
                _exists(tokenId),
                "ERC721Metadata: URI query for nonexistent token"
                );
                
                string memory currentBaseURI = _baseURI();
                return
                bytes(currentBaseURI).length > 0 
                ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
                : "";
        }
        // only owner
        
        function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner() {
            maxMintAmount = _newmaxMintAmount;
        }
        
        function setBaseURI(string memory _newBaseURI) public onlyOwner() {
            baseURI = _newBaseURI;
        }
        
        function setBaseExtension(string memory _newBaseExtension) public onlyOwner() {
            baseExtension = _newBaseExtension;
        }
        
        function pause(bool _state) public onlyOwner() {
            paused = _state;
        }
        
        function withdraw() public payable onlyOwner() {
            require(payable(msg.sender).send(address(this).balance));
        }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200005192919062000226565b5067016345785d8a0000600d5561132f600e556032600f556000601060006101000a81548160ff0219169083151502179055503480156200009157600080fd5b506040518060400160405280601881526020017f546865204475636b7461696c2044726976657220436c756200000000000000008152506040518060400160405280600381526020017f444443000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200011692919062000226565b5080600190805190602001906200012f92919062000226565b50505062000152620001466200015860201b60201c565b6200016060201b60201c565b6200033b565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200023490620002d6565b90600052602060002090601f016020900481019282620002585760008555620002a4565b82601f106200027357805160ff1916838001178555620002a4565b82800160010185558215620002a4579182015b82811115620002a357825182559160200191906001019062000286565b5b509050620002b39190620002b7565b5090565b5b80821115620002d2576000816000905550600101620002b8565b5090565b60006002820490506001821680620002ef57607f821691505b602082108114156200030657620003056200030c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614152806200034b6000396000f3fe6080604052600436106101e35760003560e01c80636352211e11610102578063b88d4fde11610095578063da3ef23f11610064578063da3ef23f146106e7578063de836ebd14610710578063e985e9c51461072c578063f2fde38b14610769576101e3565b8063b88d4fde1461062b578063c668286214610654578063c87b56dd1461067f578063d5abeb01146106bc576101e3565b80637f00c7a6116100d15780637f00c7a6146105835780638da5cb5b146105ac57806395d89b41146105d7578063a22cb46514610602576101e3565b80636352211e146104c75780636c0360eb1461050457806370a082311461052f578063715018a61461056c576101e3565b806323b872dd1161017a578063438b630011610149578063438b6300146103f95780634f6ccce71461043657806355f804b3146104735780635c975abb1461049c576101e3565b806323b872dd146103605780632f745c59146103895780633ccfd60b146103c657806342842e0e146103d0576101e3565b8063095ea7b3116101b6578063095ea7b3146102b657806313faede6146102df57806318160ddd1461030a578063239c70ae14610335576101e3565b806301ffc9a7146101e857806302329a291461022557806306fdde031461024e578063081812fc14610279575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612f22565b610792565b60405161021c9190613940565b60405180910390f35b34801561023157600080fd5b5061024c60048036038101906102479190612ef9565b61080c565b005b34801561025a57600080fd5b506102636108a5565b604051610270919061395b565b60405180910390f35b34801561028557600080fd5b506102a0600480360381019061029b9190612fb5565b610937565b6040516102ad91906138b7565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d89190612ebd565b6109bc565b005b3480156102eb57600080fd5b506102f4610ad4565b6040516103019190613bdd565b60405180910390f35b34801561031657600080fd5b5061031f610ada565b60405161032c9190613bdd565b60405180910390f35b34801561034157600080fd5b5061034a610ae7565b6040516103579190613bdd565b60405180910390f35b34801561036c57600080fd5b5061038760048036038101906103829190612d63565b610aed565b005b34801561039557600080fd5b506103b060048036038101906103ab9190612ebd565b610b4d565b6040516103bd9190613bdd565b60405180910390f35b6103ce610bf2565b005b3480156103dc57600080fd5b506103f760048036038101906103f29190612d63565b610cae565b005b34801561040557600080fd5b50610420600480360381019061041b9190612cfe565b610cce565b60405161042d919061391e565b60405180910390f35b34801561044257600080fd5b5061045d60048036038101906104589190612fb5565b610dc8565b60405161046a9190613bdd565b60405180910390f35b34801561047f57600080fd5b5061049a60048036038101906104959190612f74565b610e5f565b005b3480156104a857600080fd5b506104b1610ef5565b6040516104be9190613940565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e99190612fb5565b610f08565b6040516104fb91906138b7565b60405180910390f35b34801561051057600080fd5b50610519610fba565b604051610526919061395b565b60405180910390f35b34801561053b57600080fd5b5061055660048036038101906105519190612cfe565b611048565b6040516105639190613bdd565b60405180910390f35b34801561057857600080fd5b50610581611100565b005b34801561058f57600080fd5b506105aa60048036038101906105a59190612fb5565b611188565b005b3480156105b857600080fd5b506105c161120e565b6040516105ce91906138b7565b60405180910390f35b3480156105e357600080fd5b506105ec611238565b6040516105f9919061395b565b60405180910390f35b34801561060e57600080fd5b5061062960048036038101906106249190612e81565b6112ca565b005b34801561063757600080fd5b50610652600480360381019061064d9190612db2565b61144b565b005b34801561066057600080fd5b506106696114ad565b604051610676919061395b565b60405180910390f35b34801561068b57600080fd5b506106a660048036038101906106a19190612fb5565b61153b565b6040516106b3919061395b565b60405180910390f35b3480156106c857600080fd5b506106d16115e5565b6040516106de9190613bdd565b60405180910390f35b3480156106f357600080fd5b5061070e60048036038101906107099190612f74565b6115eb565b005b61072a60048036038101906107259190612e2d565b611681565b005b34801561073857600080fd5b50610753600480360381019061074e9190612d27565b6117dc565b6040516107609190613940565b60405180910390f35b34801561077557600080fd5b50610790600480360381019061078b9190612cfe565b611870565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610805575061080482611968565b5b9050919050565b610814611a4a565b73ffffffffffffffffffffffffffffffffffffffff1661083261120e565b73ffffffffffffffffffffffffffffffffffffffff1614610888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087f90613b1d565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6060600080546108b490613f11565b80601f01602080910402602001604051908101604052809291908181526020018280546108e090613f11565b801561092d5780601f106109025761010080835404028352916020019161092d565b820191906000526020600020905b81548152906001019060200180831161091057829003601f168201915b5050505050905090565b600061094282611a52565b610981576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097890613afd565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109c782610f08565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2f90613b7d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a57611a4a565b73ffffffffffffffffffffffffffffffffffffffff161480610a865750610a8581610a80611a4a565b6117dc565b5b610ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abc90613a7d565b60405180910390fd5b610acf8383611abe565b505050565b600d5481565b6000600880549050905090565b600f5481565b610afe610af8611a4a565b82611b77565b610b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3490613b9d565b60405180910390fd5b610b48838383611c55565b505050565b6000610b5883611048565b8210610b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b909061397d565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610bfa611a4a565b73ffffffffffffffffffffffffffffffffffffffff16610c1861120e565b73ffffffffffffffffffffffffffffffffffffffff1614610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6590613b1d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610cac57600080fd5b565b610cc98383836040518060200160405280600081525061144b565b505050565b60606000610cdb83611048565b905060008167ffffffffffffffff811115610d1f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610d4d5781602001602082028036833780820191505090505b50905060005b82811015610dbd57610d658582610b4d565b828281518110610d9e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610db590613f43565b915050610d53565b508092505050919050565b6000610dd2610ada565b8210610e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a90613bbd565b60405180910390fd5b60088281548110610e4d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610e67611a4a565b73ffffffffffffffffffffffffffffffffffffffff16610e8561120e565b73ffffffffffffffffffffffffffffffffffffffff1614610edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed290613b1d565b60405180910390fd5b80600b9080519060200190610ef1929190612a8c565b5050565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa890613abd565b60405180910390fd5b80915050919050565b600b8054610fc790613f11565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff390613f11565b80156110405780601f1061101557610100808354040283529160200191611040565b820191906000526020600020905b81548152906001019060200180831161102357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b090613a9d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611108611a4a565b73ffffffffffffffffffffffffffffffffffffffff1661112661120e565b73ffffffffffffffffffffffffffffffffffffffff161461117c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117390613b1d565b60405180910390fd5b6111866000611eb1565b565b611190611a4a565b73ffffffffffffffffffffffffffffffffffffffff166111ae61120e565b73ffffffffffffffffffffffffffffffffffffffff1614611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb90613b1d565b60405180910390fd5b80600f8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461124790613f11565b80601f016020809104026020016040519081016040528092919081815260200182805461127390613f11565b80156112c05780601f10611295576101008083540402835291602001916112c0565b820191906000526020600020905b8154815290600101906020018083116112a357829003601f168201915b5050505050905090565b6112d2611a4a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133790613a3d565b60405180910390fd5b806005600061134d611a4a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113fa611a4a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161143f9190613940565b60405180910390a35050565b61145c611456611a4a565b83611b77565b61149b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149290613b9d565b60405180910390fd5b6114a784848484611f77565b50505050565b600c80546114ba90613f11565b80601f01602080910402602001604051908101604052809291908181526020018280546114e690613f11565b80156115335780601f1061150857610100808354040283529160200191611533565b820191906000526020600020905b81548152906001019060200180831161151657829003601f168201915b505050505081565b606061154682611a52565b611585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157c90613b5d565b60405180910390fd5b600061158f611fd3565b905060008151116115af57604051806020016040528060008152506115dd565b806115b984611ff3565b600c6040516020016115cd93929190613886565b6040516020818303038152906040525b915050919050565b600e5481565b6115f3611a4a565b73ffffffffffffffffffffffffffffffffffffffff1661161161120e565b73ffffffffffffffffffffffffffffffffffffffff1614611667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165e90613b1d565b60405180910390fd5b80600c908051906020019061167d929190612a8c565b5050565b600061168b610ada565b9050600082519050601060009054906101000a900460ff16156116ad57600080fd5b600081116116ba57600080fd5b600f548111156116c957600080fd5b600e5481836116d89190613d46565b11156116e357600080fd5b6116eb61120e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461176d5780600d5461172b9190613dcd565b341461176c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611763906139dd565b60405180910390fd5b5b60005b818110156117d5576117c2858583815181106117b5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516121a0565b80806117cd90613f43565b915050611770565b5050505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611878611a4a565b73ffffffffffffffffffffffffffffffffffffffff1661189661120e565b73ffffffffffffffffffffffffffffffffffffffff16146118ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e390613b1d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561195c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611953906139bd565b60405180910390fd5b61196581611eb1565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a3357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a435750611a42826121be565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b3183610f08565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b8282611a52565b611bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb890613a5d565b60405180910390fd5b6000611bcc83610f08565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c3b57508373ffffffffffffffffffffffffffffffffffffffff16611c2384610937565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c4c5750611c4b81856117dc565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c7582610f08565b73ffffffffffffffffffffffffffffffffffffffff1614611ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc290613b3d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3290613a1d565b60405180910390fd5b611d46838383612228565b611d51600082611abe565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611da19190613e27565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611df89190613d46565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f82848484611c55565b611f8e8484848461233c565b611fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc49061399d565b60405180910390fd5b50505050565b60606040518060600160405280603681526020016140e760369139905090565b6060600082141561203b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061219b565b600082905060005b6000821461206d57808061205690613f43565b915050600a826120669190613d9c565b9150612043565b60008167ffffffffffffffff8111156120af577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120e15781602001600182028036833780820191505090505b5090505b60008514612194576001826120fa9190613e27565b9150600a856121099190613f8c565b60306121159190613d46565b60f81b818381518110612151577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561218d9190613d9c565b94506120e5565b8093505050505b919050565b6121ba8282604051806020016040528060008152506124d3565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61223383838361252e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122765761227181612533565b6122b5565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122b4576122b3838261257c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122f8576122f3816126e9565b612337565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461233657612335828261282c565b5b5b505050565b600061235d8473ffffffffffffffffffffffffffffffffffffffff166128ab565b156124c6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612386611a4a565b8786866040518563ffffffff1660e01b81526004016123a894939291906138d2565b602060405180830381600087803b1580156123c257600080fd5b505af19250505080156123f357506040513d601f19601f820116820180604052508101906123f09190612f4b565b60015b612476573d8060008114612423576040519150601f19603f3d011682016040523d82523d6000602084013e612428565b606091505b5060008151141561246e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124659061399d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124cb565b600190505b949350505050565b6124dd83836128be565b6124ea600084848461233c565b612529576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125209061399d565b60405180910390fd5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161258984611048565b6125939190613e27565b9050600060076000848152602001908152602001600020549050818114612678576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506126fd9190613e27565b9050600060096000848152602001908152602001600020549050600060088381548110612753577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811061279b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612810577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061283783611048565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561292e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292590613add565b60405180910390fd5b61293781611a52565b15612977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296e906139fd565b60405180910390fd5b61298360008383612228565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129d39190613d46565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612a9890613f11565b90600052602060002090601f016020900481019282612aba5760008555612b01565b82601f10612ad357805160ff1916838001178555612b01565b82800160010185558215612b01579182015b82811115612b00578251825591602001919060010190612ae5565b5b509050612b0e9190612b12565b5090565b5b80821115612b2b576000816000905550600101612b13565b5090565b6000612b42612b3d84613c29565b613bf8565b90508083825260208201905082856020860282011115612b6157600080fd5b60005b85811015612b915781612b778882612ce9565b845260208401935060208301925050600181019050612b64565b5050509392505050565b6000612bae612ba984613c55565b613bf8565b905082815260208101848484011115612bc657600080fd5b612bd1848285613ecf565b509392505050565b6000612bec612be784613c85565b613bf8565b905082815260208101848484011115612c0457600080fd5b612c0f848285613ecf565b509392505050565b600081359050612c268161408a565b92915050565b600082601f830112612c3d57600080fd5b8135612c4d848260208601612b2f565b91505092915050565b600081359050612c65816140a1565b92915050565b600081359050612c7a816140b8565b92915050565b600081519050612c8f816140b8565b92915050565b600082601f830112612ca657600080fd5b8135612cb6848260208601612b9b565b91505092915050565b600082601f830112612cd057600080fd5b8135612ce0848260208601612bd9565b91505092915050565b600081359050612cf8816140cf565b92915050565b600060208284031215612d1057600080fd5b6000612d1e84828501612c17565b91505092915050565b60008060408385031215612d3a57600080fd5b6000612d4885828601612c17565b9250506020612d5985828601612c17565b9150509250929050565b600080600060608486031215612d7857600080fd5b6000612d8686828701612c17565b9350506020612d9786828701612c17565b9250506040612da886828701612ce9565b9150509250925092565b60008060008060808587031215612dc857600080fd5b6000612dd687828801612c17565b9450506020612de787828801612c17565b9350506040612df887828801612ce9565b925050606085013567ffffffffffffffff811115612e1557600080fd5b612e2187828801612c95565b91505092959194509250565b60008060408385031215612e4057600080fd5b6000612e4e85828601612c17565b925050602083013567ffffffffffffffff811115612e6b57600080fd5b612e7785828601612c2c565b9150509250929050565b60008060408385031215612e9457600080fd5b6000612ea285828601612c17565b9250506020612eb385828601612c56565b9150509250929050565b60008060408385031215612ed057600080fd5b6000612ede85828601612c17565b9250506020612eef85828601612ce9565b9150509250929050565b600060208284031215612f0b57600080fd5b6000612f1984828501612c56565b91505092915050565b600060208284031215612f3457600080fd5b6000612f4284828501612c6b565b91505092915050565b600060208284031215612f5d57600080fd5b6000612f6b84828501612c80565b91505092915050565b600060208284031215612f8657600080fd5b600082013567ffffffffffffffff811115612fa057600080fd5b612fac84828501612cbf565b91505092915050565b600060208284031215612fc757600080fd5b6000612fd584828501612ce9565b91505092915050565b6000612fea8383613868565b60208301905092915050565b612fff81613e5b565b82525050565b600061301082613cda565b61301a8185613d08565b935061302583613cb5565b8060005b8381101561305657815161303d8882612fde565b975061304883613cfb565b925050600181019050613029565b5085935050505092915050565b61306c81613e6d565b82525050565b600061307d82613ce5565b6130878185613d19565b9350613097818560208601613ede565b6130a081614079565b840191505092915050565b60006130b682613cf0565b6130c08185613d2a565b93506130d0818560208601613ede565b6130d981614079565b840191505092915050565b60006130ef82613cf0565b6130f98185613d3b565b9350613109818560208601613ede565b80840191505092915050565b6000815461312281613f11565b61312c8186613d3b565b9450600182166000811461314757600181146131585761318b565b60ff1983168652818601935061318b565b61316185613cc5565b60005b8381101561318357815481890152600182019150602081019050613164565b838801955050505b50505092915050565b60006131a1602b83613d2a565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613207603283613d2a565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061326d602683613d2a565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006132d3601b83613d2a565b91507f506c65617365206b696e646c792073656e6420302e31204554482e00000000006000830152602082019050919050565b6000613313601c83613d2a565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613353602483613d2a565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006133b9601983613d2a565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006133f9602c83613d2a565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061345f603883613d2a565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006134c5602a83613d2a565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061352b602983613d2a565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613591602083613d2a565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006135d1602c83613d2a565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613637602083613d2a565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613677602983613d2a565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006136dd602f83613d2a565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613743602183613d2a565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006137a9603183613d2a565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061380f602c83613d2a565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b61387181613ec5565b82525050565b61388081613ec5565b82525050565b600061389282866130e4565b915061389e82856130e4565b91506138aa8284613115565b9150819050949350505050565b60006020820190506138cc6000830184612ff6565b92915050565b60006080820190506138e76000830187612ff6565b6138f46020830186612ff6565b6139016040830185613877565b81810360608301526139138184613072565b905095945050505050565b600060208201905081810360008301526139388184613005565b905092915050565b60006020820190506139556000830184613063565b92915050565b6000602082019050818103600083015261397581846130ab565b905092915050565b6000602082019050818103600083015261399681613194565b9050919050565b600060208201905081810360008301526139b6816131fa565b9050919050565b600060208201905081810360008301526139d681613260565b9050919050565b600060208201905081810360008301526139f6816132c6565b9050919050565b60006020820190508181036000830152613a1681613306565b9050919050565b60006020820190508181036000830152613a3681613346565b9050919050565b60006020820190508181036000830152613a56816133ac565b9050919050565b60006020820190508181036000830152613a76816133ec565b9050919050565b60006020820190508181036000830152613a9681613452565b9050919050565b60006020820190508181036000830152613ab6816134b8565b9050919050565b60006020820190508181036000830152613ad68161351e565b9050919050565b60006020820190508181036000830152613af681613584565b9050919050565b60006020820190508181036000830152613b16816135c4565b9050919050565b60006020820190508181036000830152613b368161362a565b9050919050565b60006020820190508181036000830152613b568161366a565b9050919050565b60006020820190508181036000830152613b76816136d0565b9050919050565b60006020820190508181036000830152613b9681613736565b9050919050565b60006020820190508181036000830152613bb68161379c565b9050919050565b60006020820190508181036000830152613bd681613802565b9050919050565b6000602082019050613bf26000830184613877565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613c1f57613c1e61404a565b5b8060405250919050565b600067ffffffffffffffff821115613c4457613c4361404a565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613c7057613c6f61404a565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613ca057613c9f61404a565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d5182613ec5565b9150613d5c83613ec5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d9157613d90613fbd565b5b828201905092915050565b6000613da782613ec5565b9150613db283613ec5565b925082613dc257613dc1613fec565b5b828204905092915050565b6000613dd882613ec5565b9150613de383613ec5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e1c57613e1b613fbd565b5b828202905092915050565b6000613e3282613ec5565b9150613e3d83613ec5565b925082821015613e5057613e4f613fbd565b5b828203905092915050565b6000613e6682613ea5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613efc578082015181840152602081019050613ee1565b83811115613f0b576000848401525b50505050565b60006002820490506001821680613f2957607f821691505b60208210811415613f3d57613f3c61401b565b5b50919050565b6000613f4e82613ec5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f8157613f80613fbd565b5b600182019050919050565b6000613f9782613ec5565b9150613fa283613ec5565b925082613fb257613fb1613fec565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61409381613e5b565b811461409e57600080fd5b50565b6140aa81613e6d565b81146140b557600080fd5b50565b6140c181613e79565b81146140cc57600080fd5b50565b6140d881613ec5565b81146140e357600080fd5b5056fe697066733a2f2f516d4e62477241436f4555374741624a65614577594e674a345a7447383145704241367166454b5079584a7846712fa2646970667358221220e561830984bcabdb2fc38aa42268525fdf51abd1fd0fc24e0e6eccce78446a3064736f6c63430008000033

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80636352211e11610102578063b88d4fde11610095578063da3ef23f11610064578063da3ef23f146106e7578063de836ebd14610710578063e985e9c51461072c578063f2fde38b14610769576101e3565b8063b88d4fde1461062b578063c668286214610654578063c87b56dd1461067f578063d5abeb01146106bc576101e3565b80637f00c7a6116100d15780637f00c7a6146105835780638da5cb5b146105ac57806395d89b41146105d7578063a22cb46514610602576101e3565b80636352211e146104c75780636c0360eb1461050457806370a082311461052f578063715018a61461056c576101e3565b806323b872dd1161017a578063438b630011610149578063438b6300146103f95780634f6ccce71461043657806355f804b3146104735780635c975abb1461049c576101e3565b806323b872dd146103605780632f745c59146103895780633ccfd60b146103c657806342842e0e146103d0576101e3565b8063095ea7b3116101b6578063095ea7b3146102b657806313faede6146102df57806318160ddd1461030a578063239c70ae14610335576101e3565b806301ffc9a7146101e857806302329a291461022557806306fdde031461024e578063081812fc14610279575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612f22565b610792565b60405161021c9190613940565b60405180910390f35b34801561023157600080fd5b5061024c60048036038101906102479190612ef9565b61080c565b005b34801561025a57600080fd5b506102636108a5565b604051610270919061395b565b60405180910390f35b34801561028557600080fd5b506102a0600480360381019061029b9190612fb5565b610937565b6040516102ad91906138b7565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d89190612ebd565b6109bc565b005b3480156102eb57600080fd5b506102f4610ad4565b6040516103019190613bdd565b60405180910390f35b34801561031657600080fd5b5061031f610ada565b60405161032c9190613bdd565b60405180910390f35b34801561034157600080fd5b5061034a610ae7565b6040516103579190613bdd565b60405180910390f35b34801561036c57600080fd5b5061038760048036038101906103829190612d63565b610aed565b005b34801561039557600080fd5b506103b060048036038101906103ab9190612ebd565b610b4d565b6040516103bd9190613bdd565b60405180910390f35b6103ce610bf2565b005b3480156103dc57600080fd5b506103f760048036038101906103f29190612d63565b610cae565b005b34801561040557600080fd5b50610420600480360381019061041b9190612cfe565b610cce565b60405161042d919061391e565b60405180910390f35b34801561044257600080fd5b5061045d60048036038101906104589190612fb5565b610dc8565b60405161046a9190613bdd565b60405180910390f35b34801561047f57600080fd5b5061049a60048036038101906104959190612f74565b610e5f565b005b3480156104a857600080fd5b506104b1610ef5565b6040516104be9190613940565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e99190612fb5565b610f08565b6040516104fb91906138b7565b60405180910390f35b34801561051057600080fd5b50610519610fba565b604051610526919061395b565b60405180910390f35b34801561053b57600080fd5b5061055660048036038101906105519190612cfe565b611048565b6040516105639190613bdd565b60405180910390f35b34801561057857600080fd5b50610581611100565b005b34801561058f57600080fd5b506105aa60048036038101906105a59190612fb5565b611188565b005b3480156105b857600080fd5b506105c161120e565b6040516105ce91906138b7565b60405180910390f35b3480156105e357600080fd5b506105ec611238565b6040516105f9919061395b565b60405180910390f35b34801561060e57600080fd5b5061062960048036038101906106249190612e81565b6112ca565b005b34801561063757600080fd5b50610652600480360381019061064d9190612db2565b61144b565b005b34801561066057600080fd5b506106696114ad565b604051610676919061395b565b60405180910390f35b34801561068b57600080fd5b506106a660048036038101906106a19190612fb5565b61153b565b6040516106b3919061395b565b60405180910390f35b3480156106c857600080fd5b506106d16115e5565b6040516106de9190613bdd565b60405180910390f35b3480156106f357600080fd5b5061070e60048036038101906107099190612f74565b6115eb565b005b61072a60048036038101906107259190612e2d565b611681565b005b34801561073857600080fd5b50610753600480360381019061074e9190612d27565b6117dc565b6040516107609190613940565b60405180910390f35b34801561077557600080fd5b50610790600480360381019061078b9190612cfe565b611870565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610805575061080482611968565b5b9050919050565b610814611a4a565b73ffffffffffffffffffffffffffffffffffffffff1661083261120e565b73ffffffffffffffffffffffffffffffffffffffff1614610888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087f90613b1d565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6060600080546108b490613f11565b80601f01602080910402602001604051908101604052809291908181526020018280546108e090613f11565b801561092d5780601f106109025761010080835404028352916020019161092d565b820191906000526020600020905b81548152906001019060200180831161091057829003601f168201915b5050505050905090565b600061094282611a52565b610981576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097890613afd565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109c782610f08565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2f90613b7d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a57611a4a565b73ffffffffffffffffffffffffffffffffffffffff161480610a865750610a8581610a80611a4a565b6117dc565b5b610ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abc90613a7d565b60405180910390fd5b610acf8383611abe565b505050565b600d5481565b6000600880549050905090565b600f5481565b610afe610af8611a4a565b82611b77565b610b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3490613b9d565b60405180910390fd5b610b48838383611c55565b505050565b6000610b5883611048565b8210610b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b909061397d565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610bfa611a4a565b73ffffffffffffffffffffffffffffffffffffffff16610c1861120e565b73ffffffffffffffffffffffffffffffffffffffff1614610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6590613b1d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610cac57600080fd5b565b610cc98383836040518060200160405280600081525061144b565b505050565b60606000610cdb83611048565b905060008167ffffffffffffffff811115610d1f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610d4d5781602001602082028036833780820191505090505b50905060005b82811015610dbd57610d658582610b4d565b828281518110610d9e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610db590613f43565b915050610d53565b508092505050919050565b6000610dd2610ada565b8210610e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a90613bbd565b60405180910390fd5b60088281548110610e4d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610e67611a4a565b73ffffffffffffffffffffffffffffffffffffffff16610e8561120e565b73ffffffffffffffffffffffffffffffffffffffff1614610edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed290613b1d565b60405180910390fd5b80600b9080519060200190610ef1929190612a8c565b5050565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa890613abd565b60405180910390fd5b80915050919050565b600b8054610fc790613f11565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff390613f11565b80156110405780601f1061101557610100808354040283529160200191611040565b820191906000526020600020905b81548152906001019060200180831161102357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b090613a9d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611108611a4a565b73ffffffffffffffffffffffffffffffffffffffff1661112661120e565b73ffffffffffffffffffffffffffffffffffffffff161461117c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117390613b1d565b60405180910390fd5b6111866000611eb1565b565b611190611a4a565b73ffffffffffffffffffffffffffffffffffffffff166111ae61120e565b73ffffffffffffffffffffffffffffffffffffffff1614611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb90613b1d565b60405180910390fd5b80600f8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461124790613f11565b80601f016020809104026020016040519081016040528092919081815260200182805461127390613f11565b80156112c05780601f10611295576101008083540402835291602001916112c0565b820191906000526020600020905b8154815290600101906020018083116112a357829003601f168201915b5050505050905090565b6112d2611a4a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133790613a3d565b60405180910390fd5b806005600061134d611a4a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113fa611a4a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161143f9190613940565b60405180910390a35050565b61145c611456611a4a565b83611b77565b61149b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149290613b9d565b60405180910390fd5b6114a784848484611f77565b50505050565b600c80546114ba90613f11565b80601f01602080910402602001604051908101604052809291908181526020018280546114e690613f11565b80156115335780601f1061150857610100808354040283529160200191611533565b820191906000526020600020905b81548152906001019060200180831161151657829003601f168201915b505050505081565b606061154682611a52565b611585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157c90613b5d565b60405180910390fd5b600061158f611fd3565b905060008151116115af57604051806020016040528060008152506115dd565b806115b984611ff3565b600c6040516020016115cd93929190613886565b6040516020818303038152906040525b915050919050565b600e5481565b6115f3611a4a565b73ffffffffffffffffffffffffffffffffffffffff1661161161120e565b73ffffffffffffffffffffffffffffffffffffffff1614611667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165e90613b1d565b60405180910390fd5b80600c908051906020019061167d929190612a8c565b5050565b600061168b610ada565b9050600082519050601060009054906101000a900460ff16156116ad57600080fd5b600081116116ba57600080fd5b600f548111156116c957600080fd5b600e5481836116d89190613d46565b11156116e357600080fd5b6116eb61120e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461176d5780600d5461172b9190613dcd565b341461176c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611763906139dd565b60405180910390fd5b5b60005b818110156117d5576117c2858583815181106117b5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516121a0565b80806117cd90613f43565b915050611770565b5050505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611878611a4a565b73ffffffffffffffffffffffffffffffffffffffff1661189661120e565b73ffffffffffffffffffffffffffffffffffffffff16146118ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e390613b1d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561195c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611953906139bd565b60405180910390fd5b61196581611eb1565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a3357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a435750611a42826121be565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b3183610f08565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b8282611a52565b611bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb890613a5d565b60405180910390fd5b6000611bcc83610f08565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c3b57508373ffffffffffffffffffffffffffffffffffffffff16611c2384610937565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c4c5750611c4b81856117dc565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c7582610f08565b73ffffffffffffffffffffffffffffffffffffffff1614611ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc290613b3d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3290613a1d565b60405180910390fd5b611d46838383612228565b611d51600082611abe565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611da19190613e27565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611df89190613d46565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f82848484611c55565b611f8e8484848461233c565b611fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc49061399d565b60405180910390fd5b50505050565b60606040518060600160405280603681526020016140e760369139905090565b6060600082141561203b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061219b565b600082905060005b6000821461206d57808061205690613f43565b915050600a826120669190613d9c565b9150612043565b60008167ffffffffffffffff8111156120af577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120e15781602001600182028036833780820191505090505b5090505b60008514612194576001826120fa9190613e27565b9150600a856121099190613f8c565b60306121159190613d46565b60f81b818381518110612151577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561218d9190613d9c565b94506120e5565b8093505050505b919050565b6121ba8282604051806020016040528060008152506124d3565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61223383838361252e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122765761227181612533565b6122b5565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122b4576122b3838261257c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122f8576122f3816126e9565b612337565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461233657612335828261282c565b5b5b505050565b600061235d8473ffffffffffffffffffffffffffffffffffffffff166128ab565b156124c6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612386611a4a565b8786866040518563ffffffff1660e01b81526004016123a894939291906138d2565b602060405180830381600087803b1580156123c257600080fd5b505af19250505080156123f357506040513d601f19601f820116820180604052508101906123f09190612f4b565b60015b612476573d8060008114612423576040519150601f19603f3d011682016040523d82523d6000602084013e612428565b606091505b5060008151141561246e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124659061399d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124cb565b600190505b949350505050565b6124dd83836128be565b6124ea600084848461233c565b612529576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125209061399d565b60405180910390fd5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161258984611048565b6125939190613e27565b9050600060076000848152602001908152602001600020549050818114612678576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506126fd9190613e27565b9050600060096000848152602001908152602001600020549050600060088381548110612753577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811061279b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612810577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061283783611048565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561292e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292590613add565b60405180910390fd5b61293781611a52565b15612977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296e906139fd565b60405180910390fd5b61298360008383612228565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129d39190613d46565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612a9890613f11565b90600052602060002090601f016020900481019282612aba5760008555612b01565b82601f10612ad357805160ff1916838001178555612b01565b82800160010185558215612b01579182015b82811115612b00578251825591602001919060010190612ae5565b5b509050612b0e9190612b12565b5090565b5b80821115612b2b576000816000905550600101612b13565b5090565b6000612b42612b3d84613c29565b613bf8565b90508083825260208201905082856020860282011115612b6157600080fd5b60005b85811015612b915781612b778882612ce9565b845260208401935060208301925050600181019050612b64565b5050509392505050565b6000612bae612ba984613c55565b613bf8565b905082815260208101848484011115612bc657600080fd5b612bd1848285613ecf565b509392505050565b6000612bec612be784613c85565b613bf8565b905082815260208101848484011115612c0457600080fd5b612c0f848285613ecf565b509392505050565b600081359050612c268161408a565b92915050565b600082601f830112612c3d57600080fd5b8135612c4d848260208601612b2f565b91505092915050565b600081359050612c65816140a1565b92915050565b600081359050612c7a816140b8565b92915050565b600081519050612c8f816140b8565b92915050565b600082601f830112612ca657600080fd5b8135612cb6848260208601612b9b565b91505092915050565b600082601f830112612cd057600080fd5b8135612ce0848260208601612bd9565b91505092915050565b600081359050612cf8816140cf565b92915050565b600060208284031215612d1057600080fd5b6000612d1e84828501612c17565b91505092915050565b60008060408385031215612d3a57600080fd5b6000612d4885828601612c17565b9250506020612d5985828601612c17565b9150509250929050565b600080600060608486031215612d7857600080fd5b6000612d8686828701612c17565b9350506020612d9786828701612c17565b9250506040612da886828701612ce9565b9150509250925092565b60008060008060808587031215612dc857600080fd5b6000612dd687828801612c17565b9450506020612de787828801612c17565b9350506040612df887828801612ce9565b925050606085013567ffffffffffffffff811115612e1557600080fd5b612e2187828801612c95565b91505092959194509250565b60008060408385031215612e4057600080fd5b6000612e4e85828601612c17565b925050602083013567ffffffffffffffff811115612e6b57600080fd5b612e7785828601612c2c565b9150509250929050565b60008060408385031215612e9457600080fd5b6000612ea285828601612c17565b9250506020612eb385828601612c56565b9150509250929050565b60008060408385031215612ed057600080fd5b6000612ede85828601612c17565b9250506020612eef85828601612ce9565b9150509250929050565b600060208284031215612f0b57600080fd5b6000612f1984828501612c56565b91505092915050565b600060208284031215612f3457600080fd5b6000612f4284828501612c6b565b91505092915050565b600060208284031215612f5d57600080fd5b6000612f6b84828501612c80565b91505092915050565b600060208284031215612f8657600080fd5b600082013567ffffffffffffffff811115612fa057600080fd5b612fac84828501612cbf565b91505092915050565b600060208284031215612fc757600080fd5b6000612fd584828501612ce9565b91505092915050565b6000612fea8383613868565b60208301905092915050565b612fff81613e5b565b82525050565b600061301082613cda565b61301a8185613d08565b935061302583613cb5565b8060005b8381101561305657815161303d8882612fde565b975061304883613cfb565b925050600181019050613029565b5085935050505092915050565b61306c81613e6d565b82525050565b600061307d82613ce5565b6130878185613d19565b9350613097818560208601613ede565b6130a081614079565b840191505092915050565b60006130b682613cf0565b6130c08185613d2a565b93506130d0818560208601613ede565b6130d981614079565b840191505092915050565b60006130ef82613cf0565b6130f98185613d3b565b9350613109818560208601613ede565b80840191505092915050565b6000815461312281613f11565b61312c8186613d3b565b9450600182166000811461314757600181146131585761318b565b60ff1983168652818601935061318b565b61316185613cc5565b60005b8381101561318357815481890152600182019150602081019050613164565b838801955050505b50505092915050565b60006131a1602b83613d2a565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613207603283613d2a565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061326d602683613d2a565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006132d3601b83613d2a565b91507f506c65617365206b696e646c792073656e6420302e31204554482e00000000006000830152602082019050919050565b6000613313601c83613d2a565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613353602483613d2a565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006133b9601983613d2a565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006133f9602c83613d2a565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061345f603883613d2a565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006134c5602a83613d2a565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061352b602983613d2a565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613591602083613d2a565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006135d1602c83613d2a565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613637602083613d2a565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613677602983613d2a565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006136dd602f83613d2a565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613743602183613d2a565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006137a9603183613d2a565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061380f602c83613d2a565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b61387181613ec5565b82525050565b61388081613ec5565b82525050565b600061389282866130e4565b915061389e82856130e4565b91506138aa8284613115565b9150819050949350505050565b60006020820190506138cc6000830184612ff6565b92915050565b60006080820190506138e76000830187612ff6565b6138f46020830186612ff6565b6139016040830185613877565b81810360608301526139138184613072565b905095945050505050565b600060208201905081810360008301526139388184613005565b905092915050565b60006020820190506139556000830184613063565b92915050565b6000602082019050818103600083015261397581846130ab565b905092915050565b6000602082019050818103600083015261399681613194565b9050919050565b600060208201905081810360008301526139b6816131fa565b9050919050565b600060208201905081810360008301526139d681613260565b9050919050565b600060208201905081810360008301526139f6816132c6565b9050919050565b60006020820190508181036000830152613a1681613306565b9050919050565b60006020820190508181036000830152613a3681613346565b9050919050565b60006020820190508181036000830152613a56816133ac565b9050919050565b60006020820190508181036000830152613a76816133ec565b9050919050565b60006020820190508181036000830152613a9681613452565b9050919050565b60006020820190508181036000830152613ab6816134b8565b9050919050565b60006020820190508181036000830152613ad68161351e565b9050919050565b60006020820190508181036000830152613af681613584565b9050919050565b60006020820190508181036000830152613b16816135c4565b9050919050565b60006020820190508181036000830152613b368161362a565b9050919050565b60006020820190508181036000830152613b568161366a565b9050919050565b60006020820190508181036000830152613b76816136d0565b9050919050565b60006020820190508181036000830152613b9681613736565b9050919050565b60006020820190508181036000830152613bb68161379c565b9050919050565b60006020820190508181036000830152613bd681613802565b9050919050565b6000602082019050613bf26000830184613877565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613c1f57613c1e61404a565b5b8060405250919050565b600067ffffffffffffffff821115613c4457613c4361404a565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613c7057613c6f61404a565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613ca057613c9f61404a565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d5182613ec5565b9150613d5c83613ec5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d9157613d90613fbd565b5b828201905092915050565b6000613da782613ec5565b9150613db283613ec5565b925082613dc257613dc1613fec565b5b828204905092915050565b6000613dd882613ec5565b9150613de383613ec5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e1c57613e1b613fbd565b5b828202905092915050565b6000613e3282613ec5565b9150613e3d83613ec5565b925082821015613e5057613e4f613fbd565b5b828203905092915050565b6000613e6682613ea5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613efc578082015181840152602081019050613ee1565b83811115613f0b576000848401525b50505050565b60006002820490506001821680613f2957607f821691505b60208210811415613f3d57613f3c61401b565b5b50919050565b6000613f4e82613ec5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f8157613f80613fbd565b5b600182019050919050565b6000613f9782613ec5565b9150613fa283613ec5565b925082613fb257613fb1613fec565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61409381613e5b565b811461409e57600080fd5b50565b6140aa81613e6d565b81146140b557600080fd5b50565b6140c181613e79565b81146140cc57600080fd5b50565b6140d881613ec5565b81146140e357600080fd5b5056fe697066733a2f2f516d4e62477241436f4555374741624a65614577594e674a345a7447383145704241367166454b5079584a7846712fa2646970667358221220e561830984bcabdb2fc38aa42268525fdf51abd1fd0fc24e0e6eccce78446a3064736f6c63430008000033

Deployed Bytecode Sourcemap

43285:3004:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34832:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46047:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22724:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24283:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23806:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43457:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35472:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43533:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25173:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35140:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46156:130;;;:::i;:::-;;25583:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44552:422;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35662:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45755:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43573:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22418:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43381:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22148:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42629:94;;;;;;;;;;;;;:::i;:::-;;45603:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41978:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22893:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24576:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25839:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43409:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45000:560;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43495:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45889:138;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43883:649;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24942:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42878:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34832:224;34934:4;34973:35;34958:50;;;:11;:50;;;;:90;;;;35012:36;35036:11;35012:23;:36::i;:::-;34958:90;34951:97;;34832:224;;;:::o;46047:89::-;42209:12;:10;:12::i;:::-;42198:23;;:7;:5;:7::i;:::-;:23;;;42190:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46118:6:::1;46109;;:15;;;;;;;;;;;;;;;;;;46047:89:::0;:::o;22724:100::-;22778:13;22811:5;22804:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22724:100;:::o;24283:221::-;24359:7;24387:16;24395:7;24387;:16::i;:::-;24379:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24472:15;:24;24488:7;24472:24;;;;;;;;;;;;;;;;;;;;;24465:31;;24283:221;;;:::o;23806:411::-;23887:13;23903:23;23918:7;23903:14;:23::i;:::-;23887:39;;23951:5;23945:11;;:2;:11;;;;23937:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;24045:5;24029:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;24054:37;24071:5;24078:12;:10;:12::i;:::-;24054:16;:37::i;:::-;24029:62;24007:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;24188:21;24197:2;24201:7;24188:8;:21::i;:::-;23806:411;;;:::o;43457:31::-;;;;:::o;35472:113::-;35533:7;35560:10;:17;;;;35553:24;;35472:113;:::o;43533:33::-;;;;:::o;25173:339::-;25368:41;25387:12;:10;:12::i;:::-;25401:7;25368:18;:41::i;:::-;25360:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25476:28;25486:4;25492:2;25496:7;25476:9;:28::i;:::-;25173:339;;;:::o;35140:256::-;35237:7;35273:23;35290:5;35273:16;:23::i;:::-;35265:5;:31;35257:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;35362:12;:19;35375:5;35362:19;;;;;;;;;;;;;;;:26;35382:5;35362:26;;;;;;;;;;;;35355:33;;35140:256;;;;:::o;46156:130::-;42209:12;:10;:12::i;:::-;42198:23;;:7;:5;:7::i;:::-;:23;;;42190:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46234:10:::1;46226:24;;:47;46251:21;46226:47;;;;;;;;;;;;;;;;;;;;;;;46218:56;;;::::0;::::1;;46156:130::o:0;25583:185::-;25721:39;25738:4;25744:2;25748:7;25721:39;;;;;;;;;;;;:16;:39::i;:::-;25583:185;;;:::o;44552:422::-;44639:16;44681:23;44707:17;44717:6;44707:9;:17::i;:::-;44681:43;;44739:25;44781:15;44767:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44739:58;;44817:9;44812:121;44832:15;44828:1;:19;44812:121;;;44887:30;44907:6;44915:1;44887:19;:30::i;:::-;44873:8;44882:1;44873:11;;;;;;;;;;;;;;;;;;;;;:44;;;;;44849:3;;;;;:::i;:::-;;;;44812:121;;;;44954:8;44947:15;;;;44552:422;;;:::o;35662:233::-;35737:7;35773:30;:28;:30::i;:::-;35765:5;:38;35757:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35870:10;35881:5;35870:17;;;;;;;;;;;;;;;;;;;;;;;;35863:24;;35662:233;;;:::o;45755:114::-;42209:12;:10;:12::i;:::-;42198:23;;:7;:5;:7::i;:::-;:23;;;42190:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45846:11:::1;45836:7;:21;;;;;;;;;;;;:::i;:::-;;45755:114:::0;:::o;43573:26::-;;;;;;;;;;;;;:::o;22418:239::-;22490:7;22510:13;22526:7;:16;22534:7;22526:16;;;;;;;;;;;;;;;;;;;;;22510:32;;22578:1;22561:19;;:5;:19;;;;22553:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22644:5;22637:12;;;22418:239;;;:::o;43381:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22148:208::-;22220:7;22265:1;22248:19;;:5;:19;;;;22240:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;22332:9;:16;22342:5;22332:16;;;;;;;;;;;;;;;;22325:23;;22148:208;;;:::o;42629:94::-;42209:12;:10;:12::i;:::-;42198:23;;:7;:5;:7::i;:::-;:23;;;42190:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42694:21:::1;42712:1;42694:9;:21::i;:::-;42629:94::o:0;45603:132::-;42209:12;:10;:12::i;:::-;42198:23;;:7;:5;:7::i;:::-;:23;;;42190:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45706:17:::1;45690:13;:33;;;;45603:132:::0;:::o;41978:87::-;42024:7;42051:6;;;;;;;;;;;42044:13;;41978:87;:::o;22893:104::-;22949:13;22982:7;22975:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22893:104;:::o;24576:295::-;24691:12;:10;:12::i;:::-;24679:24;;:8;:24;;;;24671:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;24791:8;24746:18;:32;24765:12;:10;:12::i;:::-;24746:32;;;;;;;;;;;;;;;:42;24779:8;24746:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;24844:8;24815:48;;24830:12;:10;:12::i;:::-;24815:48;;;24854:8;24815:48;;;;;;:::i;:::-;;;;;;;;24576:295;;:::o;25839:328::-;26014:41;26033:12;:10;:12::i;:::-;26047:7;26014:18;:41::i;:::-;26006:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;26120:39;26134:4;26140:2;26144:7;26153:5;26120:13;:39::i;:::-;25839:328;;;;:::o;43409:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45000:560::-;45118:13;45174:16;45182:7;45174;:16::i;:::-;45148:129;;;;;;;;;;;;:::i;:::-;;;;;;;;;45314:28;45345:10;:8;:10::i;:::-;45314:41;;45429:1;45404:14;45398:28;:32;:150;;;;;;;;;;;;;;;;;45475:14;45491:18;:7;:16;:18::i;:::-;45511:13;45458:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45398:150;45374:174;;;45000:560;;;:::o;43495:31::-;;;;:::o;45889:138::-;42209:12;:10;:12::i;:::-;42198:23;;:7;:5;:7::i;:::-;:23;;;42190:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45998:17:::1;45982:13;:33;;;;;;;;;;;;:::i;:::-;;45889:138:::0;:::o;43883:649::-;43968:14;43985:13;:11;:13::i;:::-;43968:30;;44013:19;44035:9;:16;44013:38;;44075:6;;;;;;;;;;;44074:7;44066:16;;;;;;44119:1;44105:11;:15;44097:24;;;;;;44159:13;;44144:11;:28;;44136:37;;;;;;44220:9;;44205:11;44196:6;:20;;;;:::i;:::-;:33;;44188:42;;;;;;44277:7;:5;:7::i;:::-;44263:21;;:10;:21;;;44259:129;;44329:11;44322:4;;:18;;;;:::i;:::-;44309:9;:31;44301:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;44259:129;44421:9;44416:105;44440:11;44436:1;:15;44416:105;;;44477:28;44487:3;44492:9;44502:1;44492:12;;;;;;;;;;;;;;;;;;;;;;44477:9;:28::i;:::-;44453:3;;;;;:::i;:::-;;;;44416:105;;;;43883:649;;;;:::o;24942:164::-;25039:4;25063:18;:25;25082:5;25063:25;;;;;;;;;;;;;;;:35;25089:8;25063:35;;;;;;;;;;;;;;;;;;;;;;;;;25056:42;;24942:164;;;;:::o;42878:192::-;42209:12;:10;:12::i;:::-;42198:23;;:7;:5;:7::i;:::-;:23;;;42190:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42987:1:::1;42967:22;;:8;:22;;;;42959:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;43043:19;43053:8;43043:9;:19::i;:::-;42878:192:::0;:::o;21779:305::-;21881:4;21933:25;21918:40;;;:11;:40;;;;:105;;;;21990:33;21975:48;;;:11;:48;;;;21918:105;:158;;;;22040:36;22064:11;22040:23;:36::i;:::-;21918:158;21898:178;;21779:305;;;:::o;802:98::-;855:7;882:10;875:17;;802:98;:::o;27677:127::-;27742:4;27794:1;27766:30;;:7;:16;27774:7;27766:16;;;;;;;;;;;;;;;;;;;;;:30;;;;27759:37;;27677:127;;;:::o;31659:174::-;31761:2;31734:15;:24;31750:7;31734:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;31817:7;31813:2;31779:46;;31788:23;31803:7;31788:14;:23::i;:::-;31779:46;;;;;;;;;;;;31659:174;;:::o;27971:348::-;28064:4;28089:16;28097:7;28089;:16::i;:::-;28081:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28165:13;28181:23;28196:7;28181:14;:23::i;:::-;28165:39;;28234:5;28223:16;;:7;:16;;;:51;;;;28267:7;28243:31;;:20;28255:7;28243:11;:20::i;:::-;:31;;;28223:51;:87;;;;28278:32;28295:5;28302:7;28278:16;:32::i;:::-;28223:87;28215:96;;;27971:348;;;;:::o;30963:578::-;31122:4;31095:31;;:23;31110:7;31095:14;:23::i;:::-;:31;;;31087:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;31205:1;31191:16;;:2;:16;;;;31183:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;31261:39;31282:4;31288:2;31292:7;31261:20;:39::i;:::-;31365:29;31382:1;31386:7;31365:8;:29::i;:::-;31426:1;31407:9;:15;31417:4;31407:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;31455:1;31438:9;:13;31448:2;31438:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31486:2;31467:7;:16;31475:7;31467:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31525:7;31521:2;31506:27;;31515:4;31506:27;;;;;;;;;;;;30963:578;;;:::o;43078:173::-;43134:16;43153:6;;;;;;;;;;;43134:25;;43179:8;43170:6;;:17;;;;;;;;;;;;;;;;;;43234:8;43203:40;;43224:8;43203:40;;;;;;;;;;;;43078:173;;:::o;27049:315::-;27206:28;27216:4;27222:2;27226:7;27206:9;:28::i;:::-;27253:48;27276:4;27282:2;27286:7;27295:5;27253:22;:48::i;:::-;27245:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;27049:315;;;;:::o;43697:157::-;43757:13;43783:63;;;;;;;;;;;;;;;;;;;43697:157;:::o;8916:723::-;8972:13;9202:1;9193:5;:10;9189:53;;;9220:10;;;;;;;;;;;;;;;;;;;;;9189:53;9252:12;9267:5;9252:20;;9283:14;9308:78;9323:1;9315:4;:9;9308:78;;9341:8;;;;;:::i;:::-;;;;9372:2;9364:10;;;;;:::i;:::-;;;9308:78;;;9396:19;9428:6;9418:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9396:39;;9446:154;9462:1;9453:5;:10;9446:154;;9490:1;9480:11;;;;;:::i;:::-;;;9557:2;9549:5;:10;;;;:::i;:::-;9536:2;:24;;;;:::i;:::-;9523:39;;9506:6;9513;9506:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;9586:2;9577:11;;;;;:::i;:::-;;;9446:154;;;9624:6;9610:21;;;;;8916:723;;;;:::o;28661:110::-;28737:26;28747:2;28751:7;28737:26;;;;;;;;;;;;:9;:26::i;:::-;28661:110;;:::o;8441:157::-;8526:4;8565:25;8550:40;;;:11;:40;;;;8543:47;;8441:157;;;:::o;36508:589::-;36652:45;36679:4;36685:2;36689:7;36652:26;:45::i;:::-;36730:1;36714:18;;:4;:18;;;36710:187;;;36749:40;36781:7;36749:31;:40::i;:::-;36710:187;;;36819:2;36811:10;;:4;:10;;;36807:90;;36838:47;36871:4;36877:7;36838:32;:47::i;:::-;36807:90;36710:187;36925:1;36911:16;;:2;:16;;;36907:183;;;36944:45;36981:7;36944:36;:45::i;:::-;36907:183;;;37017:4;37011:10;;:2;:10;;;37007:83;;37038:40;37066:2;37070:7;37038:27;:40::i;:::-;37007:83;36907:183;36508:589;;;:::o;32398:799::-;32553:4;32574:15;:2;:13;;;:15::i;:::-;32570:620;;;32626:2;32610:36;;;32647:12;:10;:12::i;:::-;32661:4;32667:7;32676:5;32610:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;32606:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32869:1;32852:6;:13;:18;32848:272;;;32895:60;;;;;;;;;;:::i;:::-;;;;;;;;32848:272;33070:6;33064:13;33055:6;33051:2;33047:15;33040:38;32606:529;32743:41;;;32733:51;;;:6;:51;;;;32726:58;;;;;32570:620;33174:4;33167:11;;32398:799;;;;;;;:::o;28998:321::-;29128:18;29134:2;29138:7;29128:5;:18::i;:::-;29179:54;29210:1;29214:2;29218:7;29227:5;29179:22;:54::i;:::-;29157:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;28998:321;;;:::o;33769:126::-;;;;:::o;37820:164::-;37924:10;:17;;;;37897:15;:24;37913:7;37897:24;;;;;;;;;;;:44;;;;37952:10;37968:7;37952:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37820:164;:::o;38611:988::-;38877:22;38927:1;38902:22;38919:4;38902:16;:22::i;:::-;:26;;;;:::i;:::-;38877:51;;38939:18;38960:17;:26;38978:7;38960:26;;;;;;;;;;;;38939:47;;39107:14;39093:10;:28;39089:328;;39138:19;39160:12;:18;39173:4;39160:18;;;;;;;;;;;;;;;:34;39179:14;39160:34;;;;;;;;;;;;39138:56;;39244:11;39211:12;:18;39224:4;39211:18;;;;;;;;;;;;;;;:30;39230:10;39211:30;;;;;;;;;;;:44;;;;39361:10;39328:17;:30;39346:11;39328:30;;;;;;;;;;;:43;;;;39089:328;;39513:17;:26;39531:7;39513:26;;;;;;;;;;;39506:33;;;39557:12;:18;39570:4;39557:18;;;;;;;;;;;;;;;:34;39576:14;39557:34;;;;;;;;;;;39550:41;;;38611:988;;;;:::o;39894:1079::-;40147:22;40192:1;40172:10;:17;;;;:21;;;;:::i;:::-;40147:46;;40204:18;40225:15;:24;40241:7;40225:24;;;;;;;;;;;;40204:45;;40576:19;40598:10;40609:14;40598:26;;;;;;;;;;;;;;;;;;;;;;;;40576:48;;40662:11;40637:10;40648;40637:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;40773:10;40742:15;:28;40758:11;40742:28;;;;;;;;;;;:41;;;;40914:15;:24;40930:7;40914:24;;;;;;;;;;;40907:31;;;40949:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39894:1079;;;;:::o;37398:221::-;37483:14;37500:20;37517:2;37500:16;:20::i;:::-;37483:37;;37558:7;37531:12;:16;37544:2;37531:16;;;;;;;;;;;;;;;:24;37548:6;37531:24;;;;;;;;;;;:34;;;;37605:6;37576:17;:26;37594:7;37576:26;;;;;;;;;;;:35;;;;37398:221;;;:::o;11441:387::-;11501:4;11709:12;11776:7;11764:20;11756:28;;11819:1;11812:4;:8;11805:15;;;11441:387;;;:::o;29655:382::-;29749:1;29735:16;;:2;:16;;;;29727:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;29808:16;29816:7;29808;:16::i;:::-;29807:17;29799:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;29870:45;29899:1;29903:2;29907:7;29870:20;:45::i;:::-;29945:1;29928:9;:13;29938:2;29928:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29976:2;29957:7;:16;29965:7;29957:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30021:7;30017:2;29996:33;;30013:1;29996:33;;;;;;;;;;;;29655:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:622:1:-;;145:80;160:64;217:6;160:64;:::i;:::-;145:80;:::i;:::-;136:89;;245:5;273:6;266:5;259:21;299:4;292:5;288:16;281:23;;324:6;374:3;366:4;358:6;354:17;349:3;345:27;342:36;339:2;;;391:1;388;381:12;339:2;419:1;404:236;429:6;426:1;423:13;404:236;;;496:3;524:37;557:3;545:10;524:37;:::i;:::-;519:3;512:50;591:4;586:3;582:14;575:21;;625:4;620:3;616:14;609:21;;464:176;451:1;448;444:9;439:14;;404:236;;;408:14;126:520;;;;;;;:::o;652:342::-;;754:64;769:48;810:6;769:48;:::i;:::-;754:64;:::i;:::-;745:73;;841:6;834:5;827:21;879:4;872:5;868:16;917:3;908:6;903:3;899:16;896:25;893:2;;;934:1;931;924:12;893:2;947:41;981:6;976:3;971;947:41;:::i;:::-;735:259;;;;;;:::o;1000:344::-;;1103:65;1118:49;1160:6;1118:49;:::i;:::-;1103:65;:::i;:::-;1094:74;;1191:6;1184:5;1177:21;1229:4;1222:5;1218:16;1267:3;1258:6;1253:3;1249:16;1246:25;1243:2;;;1284:1;1281;1274:12;1243:2;1297:41;1331:6;1326:3;1321;1297:41;:::i;:::-;1084:260;;;;;;:::o;1350:139::-;;1434:6;1421:20;1412:29;;1450:33;1477:5;1450:33;:::i;:::-;1402:87;;;;:::o;1512:303::-;;1632:3;1625:4;1617:6;1613:17;1609:27;1599:2;;1650:1;1647;1640:12;1599:2;1690:6;1677:20;1715:94;1805:3;1797:6;1790:4;1782:6;1778:17;1715:94;:::i;:::-;1706:103;;1589:226;;;;;:::o;1821:133::-;;1902:6;1889:20;1880:29;;1918:30;1942:5;1918:30;:::i;:::-;1870:84;;;;:::o;1960:137::-;;2043:6;2030:20;2021:29;;2059:32;2085:5;2059:32;:::i;:::-;2011:86;;;;:::o;2103:141::-;;2190:6;2184:13;2175:22;;2206:32;2232:5;2206:32;:::i;:::-;2165:79;;;;:::o;2263:271::-;;2367:3;2360:4;2352:6;2348:17;2344:27;2334:2;;2385:1;2382;2375:12;2334:2;2425:6;2412:20;2450:78;2524:3;2516:6;2509:4;2501:6;2497:17;2450:78;:::i;:::-;2441:87;;2324:210;;;;;:::o;2554:273::-;;2659:3;2652:4;2644:6;2640:17;2636:27;2626:2;;2677:1;2674;2667:12;2626:2;2717:6;2704:20;2742:79;2817:3;2809:6;2802:4;2794:6;2790:17;2742:79;:::i;:::-;2733:88;;2616:211;;;;;:::o;2833:139::-;;2917:6;2904:20;2895:29;;2933:33;2960:5;2933:33;:::i;:::-;2885:87;;;;:::o;2978:262::-;;3086:2;3074:9;3065:7;3061:23;3057:32;3054:2;;;3102:1;3099;3092:12;3054:2;3145:1;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3116:117;3044:196;;;;:::o;3246:407::-;;;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3387:1;3384;3377:12;3339:2;3430:1;3455:53;3500:7;3491:6;3480:9;3476:22;3455:53;:::i;:::-;3445:63;;3401:117;3557:2;3583:53;3628:7;3619:6;3608:9;3604:22;3583:53;:::i;:::-;3573:63;;3528:118;3329:324;;;;;:::o;3659:552::-;;;;3801:2;3789:9;3780:7;3776:23;3772:32;3769:2;;;3817:1;3814;3807:12;3769:2;3860:1;3885:53;3930:7;3921:6;3910:9;3906:22;3885:53;:::i;:::-;3875:63;;3831:117;3987:2;4013:53;4058:7;4049:6;4038:9;4034:22;4013:53;:::i;:::-;4003:63;;3958:118;4115:2;4141:53;4186:7;4177:6;4166:9;4162:22;4141:53;:::i;:::-;4131:63;;4086:118;3759:452;;;;;:::o;4217:809::-;;;;;4385:3;4373:9;4364:7;4360:23;4356:33;4353:2;;;4402:1;4399;4392:12;4353:2;4445:1;4470:53;4515:7;4506:6;4495:9;4491:22;4470:53;:::i;:::-;4460:63;;4416:117;4572:2;4598:53;4643:7;4634:6;4623:9;4619:22;4598:53;:::i;:::-;4588:63;;4543:118;4700:2;4726:53;4771:7;4762:6;4751:9;4747:22;4726:53;:::i;:::-;4716:63;;4671:118;4856:2;4845:9;4841:18;4828:32;4887:18;4879:6;4876:30;4873:2;;;4919:1;4916;4909:12;4873:2;4947:62;5001:7;4992:6;4981:9;4977:22;4947:62;:::i;:::-;4937:72;;4799:220;4343:683;;;;;;;:::o;5032:550::-;;;5182:2;5170:9;5161:7;5157:23;5153:32;5150:2;;;5198:1;5195;5188:12;5150:2;5241:1;5266:53;5311:7;5302:6;5291:9;5287:22;5266:53;:::i;:::-;5256:63;;5212:117;5396:2;5385:9;5381:18;5368:32;5427:18;5419:6;5416:30;5413:2;;;5459:1;5456;5449:12;5413:2;5487:78;5557:7;5548:6;5537:9;5533:22;5487:78;:::i;:::-;5477:88;;5339:236;5140:442;;;;;:::o;5588:401::-;;;5710:2;5698:9;5689:7;5685:23;5681:32;5678:2;;;5726:1;5723;5716:12;5678:2;5769:1;5794:53;5839:7;5830:6;5819:9;5815:22;5794:53;:::i;:::-;5784:63;;5740:117;5896:2;5922:50;5964:7;5955:6;5944:9;5940:22;5922:50;:::i;:::-;5912:60;;5867:115;5668:321;;;;;:::o;5995:407::-;;;6120:2;6108:9;6099:7;6095:23;6091:32;6088:2;;;6136:1;6133;6126:12;6088:2;6179:1;6204:53;6249:7;6240:6;6229:9;6225:22;6204:53;:::i;:::-;6194:63;;6150:117;6306:2;6332:53;6377:7;6368:6;6357:9;6353:22;6332:53;:::i;:::-;6322:63;;6277:118;6078:324;;;;;:::o;6408:256::-;;6513:2;6501:9;6492:7;6488:23;6484:32;6481:2;;;6529:1;6526;6519:12;6481:2;6572:1;6597:50;6639:7;6630:6;6619:9;6615:22;6597:50;:::i;:::-;6587:60;;6543:114;6471:193;;;;:::o;6670:260::-;;6777:2;6765:9;6756:7;6752:23;6748:32;6745:2;;;6793:1;6790;6783:12;6745:2;6836:1;6861:52;6905:7;6896:6;6885:9;6881:22;6861:52;:::i;:::-;6851:62;;6807:116;6735:195;;;;:::o;6936:282::-;;7054:2;7042:9;7033:7;7029:23;7025:32;7022:2;;;7070:1;7067;7060:12;7022:2;7113:1;7138:63;7193:7;7184:6;7173:9;7169:22;7138:63;:::i;:::-;7128:73;;7084:127;7012:206;;;;:::o;7224:375::-;;7342:2;7330:9;7321:7;7317:23;7313:32;7310:2;;;7358:1;7355;7348:12;7310:2;7429:1;7418:9;7414:17;7401:31;7459:18;7451:6;7448:30;7445:2;;;7491:1;7488;7481:12;7445:2;7519:63;7574:7;7565:6;7554:9;7550:22;7519:63;:::i;:::-;7509:73;;7372:220;7300:299;;;;:::o;7605:262::-;;7713:2;7701:9;7692:7;7688:23;7684:32;7681:2;;;7729:1;7726;7719:12;7681:2;7772:1;7797:53;7842:7;7833:6;7822:9;7818:22;7797:53;:::i;:::-;7787:63;;7743:117;7671:196;;;;:::o;7873:179::-;;7963:46;8005:3;7997:6;7963:46;:::i;:::-;8041:4;8036:3;8032:14;8018:28;;7953:99;;;;:::o;8058:118::-;8145:24;8163:5;8145:24;:::i;:::-;8140:3;8133:37;8123:53;;:::o;8212:732::-;;8360:54;8408:5;8360:54;:::i;:::-;8430:86;8509:6;8504:3;8430:86;:::i;:::-;8423:93;;8540:56;8590:5;8540:56;:::i;:::-;8619:7;8650:1;8635:284;8660:6;8657:1;8654:13;8635:284;;;8736:6;8730:13;8763:63;8822:3;8807:13;8763:63;:::i;:::-;8756:70;;8849:60;8902:6;8849:60;:::i;:::-;8839:70;;8695:224;8682:1;8679;8675:9;8670:14;;8635:284;;;8639:14;8935:3;8928:10;;8336:608;;;;;;;:::o;8950:109::-;9031:21;9046:5;9031:21;:::i;:::-;9026:3;9019:34;9009:50;;:::o;9065:360::-;;9179:38;9211:5;9179:38;:::i;:::-;9233:70;9296:6;9291:3;9233:70;:::i;:::-;9226:77;;9312:52;9357:6;9352:3;9345:4;9338:5;9334:16;9312:52;:::i;:::-;9389:29;9411:6;9389:29;:::i;:::-;9384:3;9380:39;9373:46;;9155:270;;;;;:::o;9431:364::-;;9547:39;9580:5;9547:39;:::i;:::-;9602:71;9666:6;9661:3;9602:71;:::i;:::-;9595:78;;9682:52;9727:6;9722:3;9715:4;9708:5;9704:16;9682:52;:::i;:::-;9759:29;9781:6;9759:29;:::i;:::-;9754:3;9750:39;9743:46;;9523:272;;;;;:::o;9801:377::-;;9935:39;9968:5;9935:39;:::i;:::-;9990:89;10072:6;10067:3;9990:89;:::i;:::-;9983:96;;10088:52;10133:6;10128:3;10121:4;10114:5;10110:16;10088:52;:::i;:::-;10165:6;10160:3;10156:16;10149:23;;9911:267;;;;;:::o;10208:845::-;;10348:5;10342:12;10377:36;10403:9;10377:36;:::i;:::-;10429:89;10511:6;10506:3;10429:89;:::i;:::-;10422:96;;10549:1;10538:9;10534:17;10565:1;10560:137;;;;10711:1;10706:341;;;;10527:520;;10560:137;10644:4;10640:9;10629;10625:25;10620:3;10613:38;10680:6;10675:3;10671:16;10664:23;;10560:137;;10706:341;10773:38;10805:5;10773:38;:::i;:::-;10833:1;10847:154;10861:6;10858:1;10855:13;10847:154;;;10935:7;10929:14;10925:1;10920:3;10916:11;10909:35;10985:1;10976:7;10972:15;10961:26;;10883:4;10880:1;10876:12;10871:17;;10847:154;;;11030:6;11025:3;11021:16;11014:23;;10713:334;;10527:520;;10315:738;;;;;;:::o;11059:375::-;;11222:67;11286:2;11281:3;11222:67;:::i;:::-;11215:74;;11319:34;11315:1;11310:3;11306:11;11299:55;11385:13;11380:2;11375:3;11371:12;11364:35;11425:2;11420:3;11416:12;11409:19;;11205:229;;;:::o;11440:382::-;;11603:67;11667:2;11662:3;11603:67;:::i;:::-;11596:74;;11700:34;11696:1;11691:3;11687:11;11680:55;11766:20;11761:2;11756:3;11752:12;11745:42;11813:2;11808:3;11804:12;11797:19;;11586:236;;;:::o;11828:370::-;;11991:67;12055:2;12050:3;11991:67;:::i;:::-;11984:74;;12088:34;12084:1;12079:3;12075:11;12068:55;12154:8;12149:2;12144:3;12140:12;12133:30;12189:2;12184:3;12180:12;12173:19;;11974:224;;;:::o;12204:325::-;;12367:67;12431:2;12426:3;12367:67;:::i;:::-;12360:74;;12464:29;12460:1;12455:3;12451:11;12444:50;12520:2;12515:3;12511:12;12504:19;;12350:179;;;:::o;12535:326::-;;12698:67;12762:2;12757:3;12698:67;:::i;:::-;12691:74;;12795:30;12791:1;12786:3;12782:11;12775:51;12852:2;12847:3;12843:12;12836:19;;12681:180;;;:::o;12867:368::-;;13030:67;13094:2;13089:3;13030:67;:::i;:::-;13023:74;;13127:34;13123:1;13118:3;13114:11;13107:55;13193:6;13188:2;13183:3;13179:12;13172:28;13226:2;13221:3;13217:12;13210:19;;13013:222;;;:::o;13241:323::-;;13404:67;13468:2;13463:3;13404:67;:::i;:::-;13397:74;;13501:27;13497:1;13492:3;13488:11;13481:48;13555:2;13550:3;13546:12;13539:19;;13387:177;;;:::o;13570:376::-;;13733:67;13797:2;13792:3;13733:67;:::i;:::-;13726:74;;13830:34;13826:1;13821:3;13817:11;13810:55;13896:14;13891:2;13886:3;13882:12;13875:36;13937:2;13932:3;13928:12;13921:19;;13716:230;;;:::o;13952:388::-;;14115:67;14179:2;14174:3;14115:67;:::i;:::-;14108:74;;14212:34;14208:1;14203:3;14199:11;14192:55;14278:26;14273:2;14268:3;14264:12;14257:48;14331:2;14326:3;14322:12;14315:19;;14098:242;;;:::o;14346:374::-;;14509:67;14573:2;14568:3;14509:67;:::i;:::-;14502:74;;14606:34;14602:1;14597:3;14593:11;14586:55;14672:12;14667:2;14662:3;14658:12;14651:34;14711:2;14706:3;14702:12;14695:19;;14492:228;;;:::o;14726:373::-;;14889:67;14953:2;14948:3;14889:67;:::i;:::-;14882:74;;14986:34;14982:1;14977:3;14973:11;14966:55;15052:11;15047:2;15042:3;15038:12;15031:33;15090:2;15085:3;15081:12;15074:19;;14872:227;;;:::o;15105:330::-;;15268:67;15332:2;15327:3;15268:67;:::i;:::-;15261:74;;15365:34;15361:1;15356:3;15352:11;15345:55;15426:2;15421:3;15417:12;15410:19;;15251:184;;;:::o;15441:376::-;;15604:67;15668:2;15663:3;15604:67;:::i;:::-;15597:74;;15701:34;15697:1;15692:3;15688:11;15681:55;15767:14;15762:2;15757:3;15753:12;15746:36;15808:2;15803:3;15799:12;15792:19;;15587:230;;;:::o;15823:330::-;;15986:67;16050:2;16045:3;15986:67;:::i;:::-;15979:74;;16083:34;16079:1;16074:3;16070:11;16063:55;16144:2;16139:3;16135:12;16128:19;;15969:184;;;:::o;16159:373::-;;16322:67;16386:2;16381:3;16322:67;:::i;:::-;16315:74;;16419:34;16415:1;16410:3;16406:11;16399:55;16485:11;16480:2;16475:3;16471:12;16464:33;16523:2;16518:3;16514:12;16507:19;;16305:227;;;:::o;16538:379::-;;16701:67;16765:2;16760:3;16701:67;:::i;:::-;16694:74;;16798:34;16794:1;16789:3;16785:11;16778:55;16864:17;16859:2;16854:3;16850:12;16843:39;16908:2;16903:3;16899:12;16892:19;;16684:233;;;:::o;16923:365::-;;17086:67;17150:2;17145:3;17086:67;:::i;:::-;17079:74;;17183:34;17179:1;17174:3;17170:11;17163:55;17249:3;17244:2;17239:3;17235:12;17228:25;17279:2;17274:3;17270:12;17263:19;;17069:219;;;:::o;17294:381::-;;17457:67;17521:2;17516:3;17457:67;:::i;:::-;17450:74;;17554:34;17550:1;17545:3;17541:11;17534:55;17620:19;17615:2;17610:3;17606:12;17599:41;17666:2;17661:3;17657:12;17650:19;;17440:235;;;:::o;17681:376::-;;17844:67;17908:2;17903:3;17844:67;:::i;:::-;17837:74;;17941:34;17937:1;17932:3;17928:11;17921:55;18007:14;18002:2;17997:3;17993:12;17986:36;18048:2;18043:3;18039:12;18032:19;;17827:230;;;:::o;18063:108::-;18140:24;18158:5;18140:24;:::i;:::-;18135:3;18128:37;18118:53;;:::o;18177:118::-;18264:24;18282:5;18264:24;:::i;:::-;18259:3;18252:37;18242:53;;:::o;18301:589::-;;18548:95;18639:3;18630:6;18548:95;:::i;:::-;18541:102;;18660:95;18751:3;18742:6;18660:95;:::i;:::-;18653:102;;18772:92;18860:3;18851:6;18772:92;:::i;:::-;18765:99;;18881:3;18874:10;;18530:360;;;;;;:::o;18896:222::-;;19027:2;19016:9;19012:18;19004:26;;19040:71;19108:1;19097:9;19093:17;19084:6;19040:71;:::i;:::-;18994:124;;;;:::o;19124:640::-;;19357:3;19346:9;19342:19;19334:27;;19371:71;19439:1;19428:9;19424:17;19415:6;19371:71;:::i;:::-;19452:72;19520:2;19509:9;19505:18;19496:6;19452:72;:::i;:::-;19534;19602:2;19591:9;19587:18;19578:6;19534:72;:::i;:::-;19653:9;19647:4;19643:20;19638:2;19627:9;19623:18;19616:48;19681:76;19752:4;19743:6;19681:76;:::i;:::-;19673:84;;19324:440;;;;;;;:::o;19770:373::-;;19951:2;19940:9;19936:18;19928:26;;20000:9;19994:4;19990:20;19986:1;19975:9;19971:17;19964:47;20028:108;20131:4;20122:6;20028:108;:::i;:::-;20020:116;;19918:225;;;;:::o;20149:210::-;;20274:2;20263:9;20259:18;20251:26;;20287:65;20349:1;20338:9;20334:17;20325:6;20287:65;:::i;:::-;20241:118;;;;:::o;20365:313::-;;20516:2;20505:9;20501:18;20493:26;;20565:9;20559:4;20555:20;20551:1;20540:9;20536:17;20529:47;20593:78;20666:4;20657:6;20593:78;:::i;:::-;20585:86;;20483:195;;;;:::o;20684:419::-;;20888:2;20877:9;20873:18;20865:26;;20937:9;20931:4;20927:20;20923:1;20912:9;20908:17;20901:47;20965:131;21091:4;20965:131;:::i;:::-;20957:139;;20855:248;;;:::o;21109:419::-;;21313:2;21302:9;21298:18;21290:26;;21362:9;21356:4;21352:20;21348:1;21337:9;21333:17;21326:47;21390:131;21516:4;21390:131;:::i;:::-;21382:139;;21280:248;;;:::o;21534:419::-;;21738:2;21727:9;21723:18;21715:26;;21787:9;21781:4;21777:20;21773:1;21762:9;21758:17;21751:47;21815:131;21941:4;21815:131;:::i;:::-;21807:139;;21705:248;;;:::o;21959:419::-;;22163:2;22152:9;22148:18;22140:26;;22212:9;22206:4;22202:20;22198:1;22187:9;22183:17;22176:47;22240:131;22366:4;22240:131;:::i;:::-;22232:139;;22130:248;;;:::o;22384:419::-;;22588:2;22577:9;22573:18;22565:26;;22637:9;22631:4;22627:20;22623:1;22612:9;22608:17;22601:47;22665:131;22791:4;22665:131;:::i;:::-;22657:139;;22555:248;;;:::o;22809:419::-;;23013:2;23002:9;22998:18;22990:26;;23062:9;23056:4;23052:20;23048:1;23037:9;23033:17;23026:47;23090:131;23216:4;23090:131;:::i;:::-;23082:139;;22980:248;;;:::o;23234:419::-;;23438:2;23427:9;23423:18;23415:26;;23487:9;23481:4;23477:20;23473:1;23462:9;23458:17;23451:47;23515:131;23641:4;23515:131;:::i;:::-;23507:139;;23405:248;;;:::o;23659:419::-;;23863:2;23852:9;23848:18;23840:26;;23912:9;23906:4;23902:20;23898:1;23887:9;23883:17;23876:47;23940:131;24066:4;23940:131;:::i;:::-;23932:139;;23830:248;;;:::o;24084:419::-;;24288:2;24277:9;24273:18;24265:26;;24337:9;24331:4;24327:20;24323:1;24312:9;24308:17;24301:47;24365:131;24491:4;24365:131;:::i;:::-;24357:139;;24255:248;;;:::o;24509:419::-;;24713:2;24702:9;24698:18;24690:26;;24762:9;24756:4;24752:20;24748:1;24737:9;24733:17;24726:47;24790:131;24916:4;24790:131;:::i;:::-;24782:139;;24680:248;;;:::o;24934:419::-;;25138:2;25127:9;25123:18;25115:26;;25187:9;25181:4;25177:20;25173:1;25162:9;25158:17;25151:47;25215:131;25341:4;25215:131;:::i;:::-;25207:139;;25105:248;;;:::o;25359:419::-;;25563:2;25552:9;25548:18;25540:26;;25612:9;25606:4;25602:20;25598:1;25587:9;25583:17;25576:47;25640:131;25766:4;25640:131;:::i;:::-;25632:139;;25530:248;;;:::o;25784:419::-;;25988:2;25977:9;25973:18;25965:26;;26037:9;26031:4;26027:20;26023:1;26012:9;26008:17;26001:47;26065:131;26191:4;26065:131;:::i;:::-;26057:139;;25955:248;;;:::o;26209:419::-;;26413:2;26402:9;26398:18;26390:26;;26462:9;26456:4;26452:20;26448:1;26437:9;26433:17;26426:47;26490:131;26616:4;26490:131;:::i;:::-;26482:139;;26380:248;;;:::o;26634:419::-;;26838:2;26827:9;26823:18;26815:26;;26887:9;26881:4;26877:20;26873:1;26862:9;26858:17;26851:47;26915:131;27041:4;26915:131;:::i;:::-;26907:139;;26805:248;;;:::o;27059:419::-;;27263:2;27252:9;27248:18;27240:26;;27312:9;27306:4;27302:20;27298:1;27287:9;27283:17;27276:47;27340:131;27466:4;27340:131;:::i;:::-;27332:139;;27230:248;;;:::o;27484:419::-;;27688:2;27677:9;27673:18;27665:26;;27737:9;27731:4;27727:20;27723:1;27712:9;27708:17;27701:47;27765:131;27891:4;27765:131;:::i;:::-;27757:139;;27655:248;;;:::o;27909:419::-;;28113:2;28102:9;28098:18;28090:26;;28162:9;28156:4;28152:20;28148:1;28137:9;28133:17;28126:47;28190:131;28316:4;28190:131;:::i;:::-;28182:139;;28080:248;;;:::o;28334:419::-;;28538:2;28527:9;28523:18;28515:26;;28587:9;28581:4;28577:20;28573:1;28562:9;28558:17;28551:47;28615:131;28741:4;28615:131;:::i;:::-;28607:139;;28505:248;;;:::o;28759:222::-;;28890:2;28879:9;28875:18;28867:26;;28903:71;28971:1;28960:9;28956:17;28947:6;28903:71;:::i;:::-;28857:124;;;;:::o;28987:283::-;;29053:2;29047:9;29037:19;;29095:4;29087:6;29083:17;29202:6;29190:10;29187:22;29166:18;29154:10;29151:34;29148:62;29145:2;;;29213:18;;:::i;:::-;29145:2;29253:10;29249:2;29242:22;29027:243;;;;:::o;29276:311::-;;29443:18;29435:6;29432:30;29429:2;;;29465:18;;:::i;:::-;29429:2;29515:4;29507:6;29503:17;29495:25;;29575:4;29569;29565:15;29557:23;;29358:229;;;:::o;29593:331::-;;29744:18;29736:6;29733:30;29730:2;;;29766:18;;:::i;:::-;29730:2;29851:4;29847:9;29840:4;29832:6;29828:17;29824:33;29816:41;;29912:4;29906;29902:15;29894:23;;29659:265;;;:::o;29930:332::-;;30082:18;30074:6;30071:30;30068:2;;;30104:18;;:::i;:::-;30068:2;30189:4;30185:9;30178:4;30170:6;30166:17;30162:33;30154:41;;30250:4;30244;30240:15;30232:23;;29997:265;;;:::o;30268:132::-;;30358:3;30350:11;;30388:4;30383:3;30379:14;30371:22;;30340:60;;;:::o;30406:141::-;;30478:3;30470:11;;30501:3;30498:1;30491:14;30535:4;30532:1;30522:18;30514:26;;30460:87;;;:::o;30553:114::-;;30654:5;30648:12;30638:22;;30627:40;;;:::o;30673:98::-;;30758:5;30752:12;30742:22;;30731:40;;;:::o;30777:99::-;;30863:5;30857:12;30847:22;;30836:40;;;:::o;30882:113::-;;30984:4;30979:3;30975:14;30967:22;;30957:38;;;:::o;31001:184::-;;31134:6;31129:3;31122:19;31174:4;31169:3;31165:14;31150:29;;31112:73;;;;:::o;31191:168::-;;31308:6;31303:3;31296:19;31348:4;31343:3;31339:14;31324:29;;31286:73;;;;:::o;31365:169::-;;31483:6;31478:3;31471:19;31523:4;31518:3;31514:14;31499:29;;31461:73;;;;:::o;31540:148::-;;31679:3;31664:18;;31654:34;;;;:::o;31694:305::-;;31753:20;31771:1;31753:20;:::i;:::-;31748:25;;31787:20;31805:1;31787:20;:::i;:::-;31782:25;;31941:1;31873:66;31869:74;31866:1;31863:81;31860:2;;;31947:18;;:::i;:::-;31860:2;31991:1;31988;31984:9;31977:16;;31738:261;;;;:::o;32005:185::-;;32062:20;32080:1;32062:20;:::i;:::-;32057:25;;32096:20;32114:1;32096:20;:::i;:::-;32091:25;;32135:1;32125:2;;32140:18;;:::i;:::-;32125:2;32182:1;32179;32175:9;32170:14;;32047:143;;;;:::o;32196:348::-;;32259:20;32277:1;32259:20;:::i;:::-;32254:25;;32293:20;32311:1;32293:20;:::i;:::-;32288:25;;32481:1;32413:66;32409:74;32406:1;32403:81;32398:1;32391:9;32384:17;32380:105;32377:2;;;32488:18;;:::i;:::-;32377:2;32536:1;32533;32529:9;32518:20;;32244:300;;;;:::o;32550:191::-;;32610:20;32628:1;32610:20;:::i;:::-;32605:25;;32644:20;32662:1;32644:20;:::i;:::-;32639:25;;32683:1;32680;32677:8;32674:2;;;32688:18;;:::i;:::-;32674:2;32733:1;32730;32726:9;32718:17;;32595:146;;;;:::o;32747:96::-;;32813:24;32831:5;32813:24;:::i;:::-;32802:35;;32792:51;;;:::o;32849:90::-;;32926:5;32919:13;32912:21;32901:32;;32891:48;;;:::o;32945:149::-;;33021:66;33014:5;33010:78;32999:89;;32989:105;;;:::o;33100:126::-;;33177:42;33170:5;33166:54;33155:65;;33145:81;;;:::o;33232:77::-;;33298:5;33287:16;;33277:32;;;:::o;33315:154::-;33399:6;33394:3;33389;33376:30;33461:1;33452:6;33447:3;33443:16;33436:27;33366:103;;;:::o;33475:307::-;33543:1;33553:113;33567:6;33564:1;33561:13;33553:113;;;33652:1;33647:3;33643:11;33637:18;33633:1;33628:3;33624:11;33617:39;33589:2;33586:1;33582:10;33577:15;;33553:113;;;33684:6;33681:1;33678:13;33675:2;;;33764:1;33755:6;33750:3;33746:16;33739:27;33675:2;33524:258;;;;:::o;33788:320::-;;33869:1;33863:4;33859:12;33849:22;;33916:1;33910:4;33906:12;33937:18;33927:2;;33993:4;33985:6;33981:17;33971:27;;33927:2;34055;34047:6;34044:14;34024:18;34021:38;34018:2;;;34074:18;;:::i;:::-;34018:2;33839:269;;;;:::o;34114:233::-;;34176:24;34194:5;34176:24;:::i;:::-;34167:33;;34222:66;34215:5;34212:77;34209:2;;;34292:18;;:::i;:::-;34209:2;34339:1;34332:5;34328:13;34321:20;;34157:190;;;:::o;34353:176::-;;34402:20;34420:1;34402:20;:::i;:::-;34397:25;;34436:20;34454:1;34436:20;:::i;:::-;34431:25;;34475:1;34465:2;;34480:18;;:::i;:::-;34465:2;34521:1;34518;34514:9;34509:14;;34387:142;;;;:::o;34535:180::-;34583:77;34580:1;34573:88;34680:4;34677:1;34670:15;34704:4;34701:1;34694:15;34721:180;34769:77;34766:1;34759:88;34866:4;34863:1;34856:15;34890:4;34887:1;34880:15;34907:180;34955:77;34952:1;34945:88;35052:4;35049:1;35042:15;35076:4;35073:1;35066:15;35093:180;35141:77;35138:1;35131:88;35238:4;35235:1;35228:15;35262:4;35259:1;35252:15;35279:102;;35371:2;35367:7;35362:2;35355:5;35351:14;35347:28;35337:38;;35327:54;;;:::o;35387:122::-;35460:24;35478:5;35460:24;:::i;:::-;35453:5;35450:35;35440:2;;35499:1;35496;35489:12;35440:2;35430:79;:::o;35515:116::-;35585:21;35600:5;35585:21;:::i;:::-;35578:5;35575:32;35565:2;;35621:1;35618;35611:12;35565:2;35555:76;:::o;35637:120::-;35709:23;35726:5;35709:23;:::i;:::-;35702:5;35699:34;35689:2;;35747:1;35744;35737:12;35689:2;35679:78;:::o;35763:122::-;35836:24;35854:5;35836:24;:::i;:::-;35829:5;35826:35;35816:2;;35875:1;35872;35865:12;35816:2;35806:79;:::o

Swarm Source

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