ETH Price: $3,389.82 (-1.53%)
Gas: 2 Gwei

Token

Sougen Builder Pioneer Pass (SBPP)
 

Overview

Max Total Supply

999 SBPP

Holders

467

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
0x1plus.eth
Balance
1 SBPP
0xa6ab56ecd81095bdd5c23ab09ac7299588790378
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:
SougenBuilderPioneerPass

Compiler Version
v0.8.7+commit.e28d00a7

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-25
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Counters.sol


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// 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 (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-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.7.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 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/ERC721.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

        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 overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: contracts/SougenPass.sol



pragma solidity >=0.7.0 <0.9.0;




contract SougenBuilderPioneerPass is ERC721, Ownable {
    using Strings for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private supply;

    string public uriPrefix =
        "ipfs://QmZ99CdKA43cLhNvKP1XrG3bqz68z495Hh4qkS886j1WRM/";
    string public uriSuffix = ".json";

    uint256 public cost = 0.25 ether;
    uint256 public maxSupply = 999;
    uint256 public maxMintAmountPerTx = 3;
    uint256 public maxMintPerWallet = 3;

    bool public paused = true;

    constructor() ERC721("Sougen Builder Pioneer Pass", "SBPP") {}

    function totalSupply() public view returns (uint256) {
        return supply.current();
    }

    function mint(uint256 _mintAmount) public payable {
        require(!paused, "Contract is paused");
        require(
            _mintAmount > 0 && _mintAmount <= maxMintAmountPerTx,
            "Invalid mint amount!"
        );
        require(
            supply.current() + _mintAmount <= maxSupply,
            "Max supply exceeded!"
        );
        require(
            (balanceOf(msg.sender) + _mintAmount) <= maxMintPerWallet,
            "Wallet limit exceeded!"
        );
        require(msg.value >= cost * _mintAmount, "Insufficient funds!");
        _mintLoop(msg.sender, _mintAmount);
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (
            ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply
        ) {
            address currentTokenOwner = ownerOf(currentTokenId);

            if (currentTokenOwner == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;

                ownedTokenIndex++;
            }

            currentTokenId++;
        }

        return ownedTokenIds;
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

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

    function setCost(uint256 _cost) public onlyOwner {
        cost = _cost;
    }

    function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx)
        public
        onlyOwner
    {
        maxMintAmountPerTx = _maxMintAmountPerTx;
    }

    function setUriPrefix(string memory _uriPrefix) public onlyOwner {
        uriPrefix = _uriPrefix;
    }

    function setUriSuffix(string memory _uriSuffix) public onlyOwner {
        uriSuffix = _uriSuffix;
    }

    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

    function withdraw() public onlyOwner {
        (bool fs, ) = payable(0x7c8fcBEc30A1e97EBA14E8dB5d195c1eE5f63221).call{
            value: address(this).balance * 50 / 100
        }("");
        require(fs);

        (bool os, ) = payable(0xC9ce49d16030fedA01D01F7C78e2E234daA5A2e1).call{
            value: address(this).balance
        }("");
        require(os);
    }

    function mintForGiveaway() public onlyOwner {
        _mintLoop(msg.sender, 9);
    }

    function _mintLoop(address _receiver, uint256 _mintAmount) internal {
        for (uint256 i = 0; i < _mintAmount; i++) {
            supply.increment();
            _safeMint(_receiver, supply.current());
        }
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintForGiveaway","outputs":[],"stateMutability":"nonpayable","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180606001604052806036815260200162003dbc6036913960089080519060200190620000359291906200025d565b506040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060099080519060200190620000839291906200025d565b506703782dace9d90000600a556103e7600b556003600c556003600d556001600e60006101000a81548160ff021916908315150217905550348015620000c857600080fd5b506040518060400160405280601b81526020017f536f7567656e204275696c6465722050696f6e656572205061737300000000008152506040518060400160405280600481526020017f534250500000000000000000000000000000000000000000000000000000000081525081600090805190602001906200014d9291906200025d565b508060019080519060200190620001669291906200025d565b505050620001896200017d6200018f60201b60201c565b6200019760201b60201c565b62000372565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200026b906200030d565b90600052602060002090601f0160209004810192826200028f5760008555620002db565b82601f10620002aa57805160ff1916838001178555620002db565b82800160010185558215620002db579182015b82811115620002da578251825591602001919060010190620002bd565b5b509050620002ea9190620002ee565b5090565b5b8082111562000309576000816000905550600101620002ef565b5090565b600060028204905060018216806200032657607f821691505b602082108114156200033d576200033c62000343565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613a3a80620003826000396000f3fe6080604052600436106101ee5760003560e01c80636352211e1161010d578063a0712d68116100a0578063b88d4fde1161006f578063b88d4fde146106a4578063c87b56dd146106cd578063d5abeb011461070a578063e985e9c514610735578063f2fde38b14610772576101ee565b8063a0712d681461060b578063a22cb46514610627578063b071401b14610650578063b228d92514610679576101ee565b80637ec4a659116100dc5780637ec4a659146105615780638da5cb5b1461058a57806394354fd0146105b557806395d89b41146105e0576101ee565b80636352211e146104b957806370a08231146104f6578063715018a6146105335780637b6236f81461054a576101ee565b806323b872dd1161018557806344a0d68a1161015457806344a0d68a1461040f5780635503a0e8146104385780635c975abb1461046357806362b99ad41461048e576101ee565b806323b872dd146103695780633ccfd60b1461039257806342842e0e146103a9578063438b6300146103d2576101ee565b806313faede6116101c157806313faede6146102c157806316ba10e0146102ec57806316c38b3c1461031557806318160ddd1461033e576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612782565b61079b565b6040516102279190612db1565b60405180910390f35b34801561023c57600080fd5b5061024561087d565b6040516102529190612dcc565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612825565b61090f565b60405161028f9190612d28565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612715565b610955565b005b3480156102cd57600080fd5b506102d6610a6d565b6040516102e3919061304e565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e91906127dc565b610a73565b005b34801561032157600080fd5b5061033c60048036038101906103379190612755565b610a95565b005b34801561034a57600080fd5b50610353610aba565b604051610360919061304e565b60405180910390f35b34801561037557600080fd5b50610390600480360381019061038b91906125ff565b610acb565b005b34801561039e57600080fd5b506103a7610b2b565b005b3480156103b557600080fd5b506103d060048036038101906103cb91906125ff565b610c63565b005b3480156103de57600080fd5b506103f960048036038101906103f49190612592565b610c83565b6040516104069190612d8f565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190612825565b610d8e565b005b34801561044457600080fd5b5061044d610da0565b60405161045a9190612dcc565b60405180910390f35b34801561046f57600080fd5b50610478610e2e565b6040516104859190612db1565b60405180910390f35b34801561049a57600080fd5b506104a3610e41565b6040516104b09190612dcc565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db9190612825565b610ecf565b6040516104ed9190612d28565b60405180910390f35b34801561050257600080fd5b5061051d60048036038101906105189190612592565b610f81565b60405161052a919061304e565b60405180910390f35b34801561053f57600080fd5b50610548611039565b005b34801561055657600080fd5b5061055f61104d565b005b34801561056d57600080fd5b50610588600480360381019061058391906127dc565b611062565b005b34801561059657600080fd5b5061059f611084565b6040516105ac9190612d28565b60405180910390f35b3480156105c157600080fd5b506105ca6110ae565b6040516105d7919061304e565b60405180910390f35b3480156105ec57600080fd5b506105f56110b4565b6040516106029190612dcc565b60405180910390f35b61062560048036038101906106209190612825565b611146565b005b34801561063357600080fd5b5061064e600480360381019061064991906126d5565b6112f5565b005b34801561065c57600080fd5b5061067760048036038101906106729190612825565b61130b565b005b34801561068557600080fd5b5061068e61131d565b60405161069b919061304e565b60405180910390f35b3480156106b057600080fd5b506106cb60048036038101906106c69190612652565b611323565b005b3480156106d957600080fd5b506106f460048036038101906106ef9190612825565b611385565b6040516107019190612dcc565b60405180910390f35b34801561071657600080fd5b5061071f61142f565b60405161072c919061304e565b60405180910390f35b34801561074157600080fd5b5061075c600480360381019061075791906125bf565b611435565b6040516107699190612db1565b60405180910390f35b34801561077e57600080fd5b5061079960048036038101906107949190612592565b6114c9565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061087657506108758261154d565b5b9050919050565b60606000805461088c90613357565b80601f01602080910402602001604051908101604052809291908181526020018280546108b890613357565b80156109055780601f106108da57610100808354040283529160200191610905565b820191906000526020600020905b8154815290600101906020018083116108e857829003601f168201915b5050505050905090565b600061091a826115b7565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096082610ecf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c890612fae565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109f0611602565b73ffffffffffffffffffffffffffffffffffffffff161480610a1f5750610a1e81610a19611602565b611435565b5b610a5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5590612f0e565b60405180910390fd5b610a68838361160a565b505050565b600a5481565b610a7b6116c3565b8060099080519060200190610a919291906123a6565b5050565b610a9d6116c3565b80600e60006101000a81548160ff02191690831515021790555050565b6000610ac66007611741565b905090565b610adc610ad6611602565b8261174f565b610b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b129061300e565b60405180910390fd5b610b268383836117e4565b505050565b610b336116c3565b6000737c8fcbec30a1e97eba14e8db5d195c1ee5f6322173ffffffffffffffffffffffffffffffffffffffff166064603247610b6f9190613213565b610b7991906131e2565b604051610b8590612d13565b60006040518083038185875af1925050503d8060008114610bc2576040519150601f19603f3d011682016040523d82523d6000602084013e610bc7565b606091505b5050905080610bd557600080fd5b600073c9ce49d16030feda01d01f7c78e2e234daa5a2e173ffffffffffffffffffffffffffffffffffffffff1647604051610c0f90612d13565b60006040518083038185875af1925050503d8060008114610c4c576040519150601f19603f3d011682016040523d82523d6000602084013e610c51565b606091505b5050905080610c5f57600080fd5b5050565b610c7e83838360405180602001604052806000815250611323565b505050565b60606000610c9083610f81565b905060008167ffffffffffffffff811115610cae57610cad6134f0565b5b604051908082528060200260200182016040528015610cdc5781602001602082028036833780820191505090505b50905060006001905060005b8381108015610cf95750600b548211155b15610d82576000610d0983610ecf565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d6e5782848381518110610d5357610d526134c1565b5b6020026020010181815250508180610d6a906133ba565b9250505b8280610d79906133ba565b93505050610ce8565b82945050505050919050565b610d966116c3565b80600a8190555050565b60098054610dad90613357565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd990613357565b8015610e265780601f10610dfb57610100808354040283529160200191610e26565b820191906000526020600020905b815481529060010190602001808311610e0957829003601f168201915b505050505081565b600e60009054906101000a900460ff1681565b60088054610e4e90613357565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7a90613357565b8015610ec75780601f10610e9c57610100808354040283529160200191610ec7565b820191906000526020600020905b815481529060010190602001808311610eaa57829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f90612f8e565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ff2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe990612eee565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110416116c3565b61104b6000611a4b565b565b6110556116c3565b611060336009611b11565b565b61106a6116c3565b80600890805190602001906110809291906123a6565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c5481565b6060600180546110c390613357565b80601f01602080910402602001604051908101604052809291908181526020018280546110ef90613357565b801561113c5780601f106111115761010080835404028352916020019161113c565b820191906000526020600020905b81548152906001019060200180831161111f57829003601f168201915b5050505050905090565b600e60009054906101000a900460ff1615611196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118d90612fee565b60405180910390fd5b6000811180156111a85750600c548111155b6111e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111de90612e6e565b60405180910390fd5b600b54816111f56007611741565b6111ff919061318c565b1115611240576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123790612fce565b60405180910390fd5b600d548161124d33610f81565b611257919061318c565b1115611298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128f90612ece565b60405180910390fd5b80600a546112a69190613213565b3410156112e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112df9061302e565b60405180910390fd5b6112f23382611b11565b50565b611307611300611602565b8383611b51565b5050565b6113136116c3565b80600c8190555050565b600d5481565b61133461132e611602565b8361174f565b611373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136a9061300e565b60405180910390fd5b61137f84848484611cbe565b50505050565b606061139082611d1a565b6113cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c690612f6e565b60405180910390fd5b60006113d9611d86565b905060008151116113f95760405180602001604052806000815250611427565b8061140384611e18565b600960405160200161141793929190612ce2565b6040516020818303038152906040525b915050919050565b600b5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114d16116c3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611541576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153890612e0e565b60405180910390fd5b61154a81611a4b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6115c081611d1a565b6115ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f690612f8e565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661167d83610ecf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6116cb611602565b73ffffffffffffffffffffffffffffffffffffffff166116e9611084565b73ffffffffffffffffffffffffffffffffffffffff161461173f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173690612f4e565b60405180910390fd5b565b600081600001549050919050565b60008061175b83610ecf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061179d575061179c8185611435565b5b806117db57508373ffffffffffffffffffffffffffffffffffffffff166117c38461090f565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661180482610ecf565b73ffffffffffffffffffffffffffffffffffffffff161461185a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185190612e2e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c190612e8e565b60405180910390fd5b6118d5838383611f79565b6118e060008261160a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611930919061326d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611987919061318c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a46838383611f7e565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015611b4c57611b266007611f83565b611b3983611b346007611741565b611f99565b8080611b44906133ba565b915050611b14565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb790612eae565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cb19190612db1565b60405180910390a3505050565b611cc98484846117e4565b611cd584848484611fb7565b611d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0b90612dee565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060088054611d9590613357565b80601f0160208091040260200160405190810160405280929190818152602001828054611dc190613357565b8015611e0e5780601f10611de357610100808354040283529160200191611e0e565b820191906000526020600020905b815481529060010190602001808311611df157829003601f168201915b5050505050905090565b60606000821415611e60576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f74565b600082905060005b60008214611e92578080611e7b906133ba565b915050600a82611e8b91906131e2565b9150611e68565b60008167ffffffffffffffff811115611eae57611ead6134f0565b5b6040519080825280601f01601f191660200182016040528015611ee05781602001600182028036833780820191505090505b5090505b60008514611f6d57600182611ef9919061326d565b9150600a85611f089190613403565b6030611f14919061318c565b60f81b818381518110611f2a57611f296134c1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f6691906131e2565b9450611ee4565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b611fb382826040518060200160405280600081525061214e565b5050565b6000611fd88473ffffffffffffffffffffffffffffffffffffffff166121a9565b15612141578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612001611602565b8786866040518563ffffffff1660e01b81526004016120239493929190612d43565b602060405180830381600087803b15801561203d57600080fd5b505af192505050801561206e57506040513d601f19601f8201168201806040525081019061206b91906127af565b60015b6120f1573d806000811461209e576040519150601f19603f3d011682016040523d82523d6000602084013e6120a3565b606091505b506000815114156120e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e090612dee565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612146565b600190505b949350505050565b61215883836121cc565b6121656000848484611fb7565b6121a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219b90612dee565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561223c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223390612f2e565b60405180910390fd5b61224581611d1a565b15612285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227c90612e4e565b60405180910390fd5b61229160008383611f79565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122e1919061318c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123a260008383611f7e565b5050565b8280546123b290613357565b90600052602060002090601f0160209004810192826123d4576000855561241b565b82601f106123ed57805160ff191683800117855561241b565b8280016001018555821561241b579182015b8281111561241a5782518255916020019190600101906123ff565b5b509050612428919061242c565b5090565b5b8082111561244557600081600090555060010161242d565b5090565b600061245c6124578461308e565b613069565b90508281526020810184848401111561247857612477613524565b5b612483848285613315565b509392505050565b600061249e612499846130bf565b613069565b9050828152602081018484840111156124ba576124b9613524565b5b6124c5848285613315565b509392505050565b6000813590506124dc816139a8565b92915050565b6000813590506124f1816139bf565b92915050565b600081359050612506816139d6565b92915050565b60008151905061251b816139d6565b92915050565b600082601f8301126125365761253561351f565b5b8135612546848260208601612449565b91505092915050565b600082601f8301126125645761256361351f565b5b813561257484826020860161248b565b91505092915050565b60008135905061258c816139ed565b92915050565b6000602082840312156125a8576125a761352e565b5b60006125b6848285016124cd565b91505092915050565b600080604083850312156125d6576125d561352e565b5b60006125e4858286016124cd565b92505060206125f5858286016124cd565b9150509250929050565b6000806000606084860312156126185761261761352e565b5b6000612626868287016124cd565b9350506020612637868287016124cd565b92505060406126488682870161257d565b9150509250925092565b6000806000806080858703121561266c5761266b61352e565b5b600061267a878288016124cd565b945050602061268b878288016124cd565b935050604061269c8782880161257d565b925050606085013567ffffffffffffffff8111156126bd576126bc613529565b5b6126c987828801612521565b91505092959194509250565b600080604083850312156126ec576126eb61352e565b5b60006126fa858286016124cd565b925050602061270b858286016124e2565b9150509250929050565b6000806040838503121561272c5761272b61352e565b5b600061273a858286016124cd565b925050602061274b8582860161257d565b9150509250929050565b60006020828403121561276b5761276a61352e565b5b6000612779848285016124e2565b91505092915050565b6000602082840312156127985761279761352e565b5b60006127a6848285016124f7565b91505092915050565b6000602082840312156127c5576127c461352e565b5b60006127d38482850161250c565b91505092915050565b6000602082840312156127f2576127f161352e565b5b600082013567ffffffffffffffff8111156128105761280f613529565b5b61281c8482850161254f565b91505092915050565b60006020828403121561283b5761283a61352e565b5b60006128498482850161257d565b91505092915050565b600061285e8383612cc4565b60208301905092915050565b612873816132a1565b82525050565b600061288482613115565b61288e8185613143565b9350612899836130f0565b8060005b838110156128ca5781516128b18882612852565b97506128bc83613136565b92505060018101905061289d565b5085935050505092915050565b6128e0816132b3565b82525050565b60006128f182613120565b6128fb8185613154565b935061290b818560208601613324565b61291481613533565b840191505092915050565b600061292a8261312b565b6129348185613170565b9350612944818560208601613324565b61294d81613533565b840191505092915050565b60006129638261312b565b61296d8185613181565b935061297d818560208601613324565b80840191505092915050565b6000815461299681613357565b6129a08186613181565b945060018216600081146129bb57600181146129cc576129ff565b60ff198316865281860193506129ff565b6129d585613100565b60005b838110156129f7578154818901526001820191506020810190506129d8565b838801955050505b50505092915050565b6000612a15603283613170565b9150612a2082613544565b604082019050919050565b6000612a38602683613170565b9150612a4382613593565b604082019050919050565b6000612a5b602583613170565b9150612a66826135e2565b604082019050919050565b6000612a7e601c83613170565b9150612a8982613631565b602082019050919050565b6000612aa1601483613170565b9150612aac8261365a565b602082019050919050565b6000612ac4602483613170565b9150612acf82613683565b604082019050919050565b6000612ae7601983613170565b9150612af2826136d2565b602082019050919050565b6000612b0a601683613170565b9150612b15826136fb565b602082019050919050565b6000612b2d602983613170565b9150612b3882613724565b604082019050919050565b6000612b50603e83613170565b9150612b5b82613773565b604082019050919050565b6000612b73602083613170565b9150612b7e826137c2565b602082019050919050565b6000612b96602083613170565b9150612ba1826137eb565b602082019050919050565b6000612bb9602f83613170565b9150612bc482613814565b604082019050919050565b6000612bdc601883613170565b9150612be782613863565b602082019050919050565b6000612bff602183613170565b9150612c0a8261388c565b604082019050919050565b6000612c22600083613165565b9150612c2d826138db565b600082019050919050565b6000612c45601483613170565b9150612c50826138de565b602082019050919050565b6000612c68601283613170565b9150612c7382613907565b602082019050919050565b6000612c8b602e83613170565b9150612c9682613930565b604082019050919050565b6000612cae601383613170565b9150612cb98261397f565b602082019050919050565b612ccd8161330b565b82525050565b612cdc8161330b565b82525050565b6000612cee8286612958565b9150612cfa8285612958565b9150612d068284612989565b9150819050949350505050565b6000612d1e82612c15565b9150819050919050565b6000602082019050612d3d600083018461286a565b92915050565b6000608082019050612d58600083018761286a565b612d65602083018661286a565b612d726040830185612cd3565b8181036060830152612d8481846128e6565b905095945050505050565b60006020820190508181036000830152612da98184612879565b905092915050565b6000602082019050612dc660008301846128d7565b92915050565b60006020820190508181036000830152612de6818461291f565b905092915050565b60006020820190508181036000830152612e0781612a08565b9050919050565b60006020820190508181036000830152612e2781612a2b565b9050919050565b60006020820190508181036000830152612e4781612a4e565b9050919050565b60006020820190508181036000830152612e6781612a71565b9050919050565b60006020820190508181036000830152612e8781612a94565b9050919050565b60006020820190508181036000830152612ea781612ab7565b9050919050565b60006020820190508181036000830152612ec781612ada565b9050919050565b60006020820190508181036000830152612ee781612afd565b9050919050565b60006020820190508181036000830152612f0781612b20565b9050919050565b60006020820190508181036000830152612f2781612b43565b9050919050565b60006020820190508181036000830152612f4781612b66565b9050919050565b60006020820190508181036000830152612f6781612b89565b9050919050565b60006020820190508181036000830152612f8781612bac565b9050919050565b60006020820190508181036000830152612fa781612bcf565b9050919050565b60006020820190508181036000830152612fc781612bf2565b9050919050565b60006020820190508181036000830152612fe781612c38565b9050919050565b6000602082019050818103600083015261300781612c5b565b9050919050565b6000602082019050818103600083015261302781612c7e565b9050919050565b6000602082019050818103600083015261304781612ca1565b9050919050565b60006020820190506130636000830184612cd3565b92915050565b6000613073613084565b905061307f8282613389565b919050565b6000604051905090565b600067ffffffffffffffff8211156130a9576130a86134f0565b5b6130b282613533565b9050602081019050919050565b600067ffffffffffffffff8211156130da576130d96134f0565b5b6130e382613533565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006131978261330b565b91506131a28361330b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131d7576131d6613434565b5b828201905092915050565b60006131ed8261330b565b91506131f88361330b565b92508261320857613207613463565b5b828204905092915050565b600061321e8261330b565b91506132298361330b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561326257613261613434565b5b828202905092915050565b60006132788261330b565b91506132838361330b565b92508282101561329657613295613434565b5b828203905092915050565b60006132ac826132eb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613342578082015181840152602081019050613327565b83811115613351576000848401525b50505050565b6000600282049050600182168061336f57607f821691505b6020821081141561338357613382613492565b5b50919050565b61339282613533565b810181811067ffffffffffffffff821117156133b1576133b06134f0565b5b80604052505050565b60006133c58261330b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156133f8576133f7613434565b5b600182019050919050565b600061340e8261330b565b91506134198361330b565b92508261342957613428613463565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f57616c6c6574206c696d69742065786365656465642100000000000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6139b1816132a1565b81146139bc57600080fd5b50565b6139c8816132b3565b81146139d357600080fd5b50565b6139df816132bf565b81146139ea57600080fd5b50565b6139f68161330b565b8114613a0157600080fd5b5056fea26469706673582212202eed97a8e8e93ce0ac49ede83f680682813a60968b19aea45e282d9e9c7839bc64736f6c63430008070033697066733a2f2f516d5a393943644b413433634c684e764b50315872473362717a36387a343935486834716b533838366a3157524d2f

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80636352211e1161010d578063a0712d68116100a0578063b88d4fde1161006f578063b88d4fde146106a4578063c87b56dd146106cd578063d5abeb011461070a578063e985e9c514610735578063f2fde38b14610772576101ee565b8063a0712d681461060b578063a22cb46514610627578063b071401b14610650578063b228d92514610679576101ee565b80637ec4a659116100dc5780637ec4a659146105615780638da5cb5b1461058a57806394354fd0146105b557806395d89b41146105e0576101ee565b80636352211e146104b957806370a08231146104f6578063715018a6146105335780637b6236f81461054a576101ee565b806323b872dd1161018557806344a0d68a1161015457806344a0d68a1461040f5780635503a0e8146104385780635c975abb1461046357806362b99ad41461048e576101ee565b806323b872dd146103695780633ccfd60b1461039257806342842e0e146103a9578063438b6300146103d2576101ee565b806313faede6116101c157806313faede6146102c157806316ba10e0146102ec57806316c38b3c1461031557806318160ddd1461033e576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612782565b61079b565b6040516102279190612db1565b60405180910390f35b34801561023c57600080fd5b5061024561087d565b6040516102529190612dcc565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612825565b61090f565b60405161028f9190612d28565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612715565b610955565b005b3480156102cd57600080fd5b506102d6610a6d565b6040516102e3919061304e565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e91906127dc565b610a73565b005b34801561032157600080fd5b5061033c60048036038101906103379190612755565b610a95565b005b34801561034a57600080fd5b50610353610aba565b604051610360919061304e565b60405180910390f35b34801561037557600080fd5b50610390600480360381019061038b91906125ff565b610acb565b005b34801561039e57600080fd5b506103a7610b2b565b005b3480156103b557600080fd5b506103d060048036038101906103cb91906125ff565b610c63565b005b3480156103de57600080fd5b506103f960048036038101906103f49190612592565b610c83565b6040516104069190612d8f565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190612825565b610d8e565b005b34801561044457600080fd5b5061044d610da0565b60405161045a9190612dcc565b60405180910390f35b34801561046f57600080fd5b50610478610e2e565b6040516104859190612db1565b60405180910390f35b34801561049a57600080fd5b506104a3610e41565b6040516104b09190612dcc565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db9190612825565b610ecf565b6040516104ed9190612d28565b60405180910390f35b34801561050257600080fd5b5061051d60048036038101906105189190612592565b610f81565b60405161052a919061304e565b60405180910390f35b34801561053f57600080fd5b50610548611039565b005b34801561055657600080fd5b5061055f61104d565b005b34801561056d57600080fd5b50610588600480360381019061058391906127dc565b611062565b005b34801561059657600080fd5b5061059f611084565b6040516105ac9190612d28565b60405180910390f35b3480156105c157600080fd5b506105ca6110ae565b6040516105d7919061304e565b60405180910390f35b3480156105ec57600080fd5b506105f56110b4565b6040516106029190612dcc565b60405180910390f35b61062560048036038101906106209190612825565b611146565b005b34801561063357600080fd5b5061064e600480360381019061064991906126d5565b6112f5565b005b34801561065c57600080fd5b5061067760048036038101906106729190612825565b61130b565b005b34801561068557600080fd5b5061068e61131d565b60405161069b919061304e565b60405180910390f35b3480156106b057600080fd5b506106cb60048036038101906106c69190612652565b611323565b005b3480156106d957600080fd5b506106f460048036038101906106ef9190612825565b611385565b6040516107019190612dcc565b60405180910390f35b34801561071657600080fd5b5061071f61142f565b60405161072c919061304e565b60405180910390f35b34801561074157600080fd5b5061075c600480360381019061075791906125bf565b611435565b6040516107699190612db1565b60405180910390f35b34801561077e57600080fd5b5061079960048036038101906107949190612592565b6114c9565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061087657506108758261154d565b5b9050919050565b60606000805461088c90613357565b80601f01602080910402602001604051908101604052809291908181526020018280546108b890613357565b80156109055780601f106108da57610100808354040283529160200191610905565b820191906000526020600020905b8154815290600101906020018083116108e857829003601f168201915b5050505050905090565b600061091a826115b7565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096082610ecf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c890612fae565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109f0611602565b73ffffffffffffffffffffffffffffffffffffffff161480610a1f5750610a1e81610a19611602565b611435565b5b610a5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5590612f0e565b60405180910390fd5b610a68838361160a565b505050565b600a5481565b610a7b6116c3565b8060099080519060200190610a919291906123a6565b5050565b610a9d6116c3565b80600e60006101000a81548160ff02191690831515021790555050565b6000610ac66007611741565b905090565b610adc610ad6611602565b8261174f565b610b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b129061300e565b60405180910390fd5b610b268383836117e4565b505050565b610b336116c3565b6000737c8fcbec30a1e97eba14e8db5d195c1ee5f6322173ffffffffffffffffffffffffffffffffffffffff166064603247610b6f9190613213565b610b7991906131e2565b604051610b8590612d13565b60006040518083038185875af1925050503d8060008114610bc2576040519150601f19603f3d011682016040523d82523d6000602084013e610bc7565b606091505b5050905080610bd557600080fd5b600073c9ce49d16030feda01d01f7c78e2e234daa5a2e173ffffffffffffffffffffffffffffffffffffffff1647604051610c0f90612d13565b60006040518083038185875af1925050503d8060008114610c4c576040519150601f19603f3d011682016040523d82523d6000602084013e610c51565b606091505b5050905080610c5f57600080fd5b5050565b610c7e83838360405180602001604052806000815250611323565b505050565b60606000610c9083610f81565b905060008167ffffffffffffffff811115610cae57610cad6134f0565b5b604051908082528060200260200182016040528015610cdc5781602001602082028036833780820191505090505b50905060006001905060005b8381108015610cf95750600b548211155b15610d82576000610d0983610ecf565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d6e5782848381518110610d5357610d526134c1565b5b6020026020010181815250508180610d6a906133ba565b9250505b8280610d79906133ba565b93505050610ce8565b82945050505050919050565b610d966116c3565b80600a8190555050565b60098054610dad90613357565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd990613357565b8015610e265780601f10610dfb57610100808354040283529160200191610e26565b820191906000526020600020905b815481529060010190602001808311610e0957829003601f168201915b505050505081565b600e60009054906101000a900460ff1681565b60088054610e4e90613357565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7a90613357565b8015610ec75780601f10610e9c57610100808354040283529160200191610ec7565b820191906000526020600020905b815481529060010190602001808311610eaa57829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f90612f8e565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ff2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe990612eee565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110416116c3565b61104b6000611a4b565b565b6110556116c3565b611060336009611b11565b565b61106a6116c3565b80600890805190602001906110809291906123a6565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c5481565b6060600180546110c390613357565b80601f01602080910402602001604051908101604052809291908181526020018280546110ef90613357565b801561113c5780601f106111115761010080835404028352916020019161113c565b820191906000526020600020905b81548152906001019060200180831161111f57829003601f168201915b5050505050905090565b600e60009054906101000a900460ff1615611196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118d90612fee565b60405180910390fd5b6000811180156111a85750600c548111155b6111e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111de90612e6e565b60405180910390fd5b600b54816111f56007611741565b6111ff919061318c565b1115611240576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123790612fce565b60405180910390fd5b600d548161124d33610f81565b611257919061318c565b1115611298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128f90612ece565b60405180910390fd5b80600a546112a69190613213565b3410156112e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112df9061302e565b60405180910390fd5b6112f23382611b11565b50565b611307611300611602565b8383611b51565b5050565b6113136116c3565b80600c8190555050565b600d5481565b61133461132e611602565b8361174f565b611373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136a9061300e565b60405180910390fd5b61137f84848484611cbe565b50505050565b606061139082611d1a565b6113cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c690612f6e565b60405180910390fd5b60006113d9611d86565b905060008151116113f95760405180602001604052806000815250611427565b8061140384611e18565b600960405160200161141793929190612ce2565b6040516020818303038152906040525b915050919050565b600b5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114d16116c3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611541576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153890612e0e565b60405180910390fd5b61154a81611a4b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6115c081611d1a565b6115ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f690612f8e565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661167d83610ecf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6116cb611602565b73ffffffffffffffffffffffffffffffffffffffff166116e9611084565b73ffffffffffffffffffffffffffffffffffffffff161461173f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173690612f4e565b60405180910390fd5b565b600081600001549050919050565b60008061175b83610ecf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061179d575061179c8185611435565b5b806117db57508373ffffffffffffffffffffffffffffffffffffffff166117c38461090f565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661180482610ecf565b73ffffffffffffffffffffffffffffffffffffffff161461185a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185190612e2e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c190612e8e565b60405180910390fd5b6118d5838383611f79565b6118e060008261160a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611930919061326d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611987919061318c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a46838383611f7e565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015611b4c57611b266007611f83565b611b3983611b346007611741565b611f99565b8080611b44906133ba565b915050611b14565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb790612eae565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cb19190612db1565b60405180910390a3505050565b611cc98484846117e4565b611cd584848484611fb7565b611d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0b90612dee565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060088054611d9590613357565b80601f0160208091040260200160405190810160405280929190818152602001828054611dc190613357565b8015611e0e5780601f10611de357610100808354040283529160200191611e0e565b820191906000526020600020905b815481529060010190602001808311611df157829003601f168201915b5050505050905090565b60606000821415611e60576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f74565b600082905060005b60008214611e92578080611e7b906133ba565b915050600a82611e8b91906131e2565b9150611e68565b60008167ffffffffffffffff811115611eae57611ead6134f0565b5b6040519080825280601f01601f191660200182016040528015611ee05781602001600182028036833780820191505090505b5090505b60008514611f6d57600182611ef9919061326d565b9150600a85611f089190613403565b6030611f14919061318c565b60f81b818381518110611f2a57611f296134c1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f6691906131e2565b9450611ee4565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b611fb382826040518060200160405280600081525061214e565b5050565b6000611fd88473ffffffffffffffffffffffffffffffffffffffff166121a9565b15612141578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612001611602565b8786866040518563ffffffff1660e01b81526004016120239493929190612d43565b602060405180830381600087803b15801561203d57600080fd5b505af192505050801561206e57506040513d601f19601f8201168201806040525081019061206b91906127af565b60015b6120f1573d806000811461209e576040519150601f19603f3d011682016040523d82523d6000602084013e6120a3565b606091505b506000815114156120e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e090612dee565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612146565b600190505b949350505050565b61215883836121cc565b6121656000848484611fb7565b6121a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219b90612dee565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561223c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223390612f2e565b60405180910390fd5b61224581611d1a565b15612285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227c90612e4e565b60405180910390fd5b61229160008383611f79565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122e1919061318c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123a260008383611f7e565b5050565b8280546123b290613357565b90600052602060002090601f0160209004810192826123d4576000855561241b565b82601f106123ed57805160ff191683800117855561241b565b8280016001018555821561241b579182015b8281111561241a5782518255916020019190600101906123ff565b5b509050612428919061242c565b5090565b5b8082111561244557600081600090555060010161242d565b5090565b600061245c6124578461308e565b613069565b90508281526020810184848401111561247857612477613524565b5b612483848285613315565b509392505050565b600061249e612499846130bf565b613069565b9050828152602081018484840111156124ba576124b9613524565b5b6124c5848285613315565b509392505050565b6000813590506124dc816139a8565b92915050565b6000813590506124f1816139bf565b92915050565b600081359050612506816139d6565b92915050565b60008151905061251b816139d6565b92915050565b600082601f8301126125365761253561351f565b5b8135612546848260208601612449565b91505092915050565b600082601f8301126125645761256361351f565b5b813561257484826020860161248b565b91505092915050565b60008135905061258c816139ed565b92915050565b6000602082840312156125a8576125a761352e565b5b60006125b6848285016124cd565b91505092915050565b600080604083850312156125d6576125d561352e565b5b60006125e4858286016124cd565b92505060206125f5858286016124cd565b9150509250929050565b6000806000606084860312156126185761261761352e565b5b6000612626868287016124cd565b9350506020612637868287016124cd565b92505060406126488682870161257d565b9150509250925092565b6000806000806080858703121561266c5761266b61352e565b5b600061267a878288016124cd565b945050602061268b878288016124cd565b935050604061269c8782880161257d565b925050606085013567ffffffffffffffff8111156126bd576126bc613529565b5b6126c987828801612521565b91505092959194509250565b600080604083850312156126ec576126eb61352e565b5b60006126fa858286016124cd565b925050602061270b858286016124e2565b9150509250929050565b6000806040838503121561272c5761272b61352e565b5b600061273a858286016124cd565b925050602061274b8582860161257d565b9150509250929050565b60006020828403121561276b5761276a61352e565b5b6000612779848285016124e2565b91505092915050565b6000602082840312156127985761279761352e565b5b60006127a6848285016124f7565b91505092915050565b6000602082840312156127c5576127c461352e565b5b60006127d38482850161250c565b91505092915050565b6000602082840312156127f2576127f161352e565b5b600082013567ffffffffffffffff8111156128105761280f613529565b5b61281c8482850161254f565b91505092915050565b60006020828403121561283b5761283a61352e565b5b60006128498482850161257d565b91505092915050565b600061285e8383612cc4565b60208301905092915050565b612873816132a1565b82525050565b600061288482613115565b61288e8185613143565b9350612899836130f0565b8060005b838110156128ca5781516128b18882612852565b97506128bc83613136565b92505060018101905061289d565b5085935050505092915050565b6128e0816132b3565b82525050565b60006128f182613120565b6128fb8185613154565b935061290b818560208601613324565b61291481613533565b840191505092915050565b600061292a8261312b565b6129348185613170565b9350612944818560208601613324565b61294d81613533565b840191505092915050565b60006129638261312b565b61296d8185613181565b935061297d818560208601613324565b80840191505092915050565b6000815461299681613357565b6129a08186613181565b945060018216600081146129bb57600181146129cc576129ff565b60ff198316865281860193506129ff565b6129d585613100565b60005b838110156129f7578154818901526001820191506020810190506129d8565b838801955050505b50505092915050565b6000612a15603283613170565b9150612a2082613544565b604082019050919050565b6000612a38602683613170565b9150612a4382613593565b604082019050919050565b6000612a5b602583613170565b9150612a66826135e2565b604082019050919050565b6000612a7e601c83613170565b9150612a8982613631565b602082019050919050565b6000612aa1601483613170565b9150612aac8261365a565b602082019050919050565b6000612ac4602483613170565b9150612acf82613683565b604082019050919050565b6000612ae7601983613170565b9150612af2826136d2565b602082019050919050565b6000612b0a601683613170565b9150612b15826136fb565b602082019050919050565b6000612b2d602983613170565b9150612b3882613724565b604082019050919050565b6000612b50603e83613170565b9150612b5b82613773565b604082019050919050565b6000612b73602083613170565b9150612b7e826137c2565b602082019050919050565b6000612b96602083613170565b9150612ba1826137eb565b602082019050919050565b6000612bb9602f83613170565b9150612bc482613814565b604082019050919050565b6000612bdc601883613170565b9150612be782613863565b602082019050919050565b6000612bff602183613170565b9150612c0a8261388c565b604082019050919050565b6000612c22600083613165565b9150612c2d826138db565b600082019050919050565b6000612c45601483613170565b9150612c50826138de565b602082019050919050565b6000612c68601283613170565b9150612c7382613907565b602082019050919050565b6000612c8b602e83613170565b9150612c9682613930565b604082019050919050565b6000612cae601383613170565b9150612cb98261397f565b602082019050919050565b612ccd8161330b565b82525050565b612cdc8161330b565b82525050565b6000612cee8286612958565b9150612cfa8285612958565b9150612d068284612989565b9150819050949350505050565b6000612d1e82612c15565b9150819050919050565b6000602082019050612d3d600083018461286a565b92915050565b6000608082019050612d58600083018761286a565b612d65602083018661286a565b612d726040830185612cd3565b8181036060830152612d8481846128e6565b905095945050505050565b60006020820190508181036000830152612da98184612879565b905092915050565b6000602082019050612dc660008301846128d7565b92915050565b60006020820190508181036000830152612de6818461291f565b905092915050565b60006020820190508181036000830152612e0781612a08565b9050919050565b60006020820190508181036000830152612e2781612a2b565b9050919050565b60006020820190508181036000830152612e4781612a4e565b9050919050565b60006020820190508181036000830152612e6781612a71565b9050919050565b60006020820190508181036000830152612e8781612a94565b9050919050565b60006020820190508181036000830152612ea781612ab7565b9050919050565b60006020820190508181036000830152612ec781612ada565b9050919050565b60006020820190508181036000830152612ee781612afd565b9050919050565b60006020820190508181036000830152612f0781612b20565b9050919050565b60006020820190508181036000830152612f2781612b43565b9050919050565b60006020820190508181036000830152612f4781612b66565b9050919050565b60006020820190508181036000830152612f6781612b89565b9050919050565b60006020820190508181036000830152612f8781612bac565b9050919050565b60006020820190508181036000830152612fa781612bcf565b9050919050565b60006020820190508181036000830152612fc781612bf2565b9050919050565b60006020820190508181036000830152612fe781612c38565b9050919050565b6000602082019050818103600083015261300781612c5b565b9050919050565b6000602082019050818103600083015261302781612c7e565b9050919050565b6000602082019050818103600083015261304781612ca1565b9050919050565b60006020820190506130636000830184612cd3565b92915050565b6000613073613084565b905061307f8282613389565b919050565b6000604051905090565b600067ffffffffffffffff8211156130a9576130a86134f0565b5b6130b282613533565b9050602081019050919050565b600067ffffffffffffffff8211156130da576130d96134f0565b5b6130e382613533565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006131978261330b565b91506131a28361330b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131d7576131d6613434565b5b828201905092915050565b60006131ed8261330b565b91506131f88361330b565b92508261320857613207613463565b5b828204905092915050565b600061321e8261330b565b91506132298361330b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561326257613261613434565b5b828202905092915050565b60006132788261330b565b91506132838361330b565b92508282101561329657613295613434565b5b828203905092915050565b60006132ac826132eb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613342578082015181840152602081019050613327565b83811115613351576000848401525b50505050565b6000600282049050600182168061336f57607f821691505b6020821081141561338357613382613492565b5b50919050565b61339282613533565b810181811067ffffffffffffffff821117156133b1576133b06134f0565b5b80604052505050565b60006133c58261330b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156133f8576133f7613434565b5b600182019050919050565b600061340e8261330b565b91506134198361330b565b92508261342957613428613463565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f57616c6c6574206c696d69742065786365656465642100000000000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6139b1816132a1565b81146139bc57600080fd5b50565b6139c8816132b3565b81146139d357600080fd5b50565b6139df816132bf565b81146139ea57600080fd5b50565b6139f68161330b565b8114613a0157600080fd5b5056fea26469706673582212202eed97a8e8e93ce0ac49ede83f680682813a60968b19aea45e282d9e9c7839bc64736f6c63430008070033

Deployed Bytecode Sourcemap

39499:4122:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26235:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27162:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28675:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28192:417;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39815:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42586:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42700:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40083:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29375:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42791:380;;;;;;;;;;;;;:::i;:::-;;29782:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40817:743;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42217:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39773:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39979:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39675:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26873:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26604:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6771:103;;;;;;;;;;;;;:::i;:::-;;43179:87;;;;;;;;;;;;;:::i;:::-;;42472:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6123:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39891:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27331:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40186:623;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28918:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42305:159;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39935:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30038:323;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41568:641;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39854:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29144:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7029:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26235:305;26337:4;26389:25;26374:40;;;:11;:40;;;;:105;;;;26446:33;26431:48;;;:11;:48;;;;26374:105;:158;;;;26496:36;26520:11;26496:23;:36::i;:::-;26374:158;26354:178;;26235:305;;;:::o;27162:100::-;27216:13;27249:5;27242:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27162:100;:::o;28675:171::-;28751:7;28771:23;28786:7;28771:14;:23::i;:::-;28814:15;:24;28830:7;28814:24;;;;;;;;;;;;;;;;;;;;;28807:31;;28675:171;;;:::o;28192:417::-;28273:13;28289:23;28304:7;28289:14;:23::i;:::-;28273:39;;28337:5;28331:11;;:2;:11;;;;28323:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;28431:5;28415:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28440:37;28457:5;28464:12;:10;:12::i;:::-;28440:16;:37::i;:::-;28415:62;28393:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;28580:21;28589:2;28593:7;28580:8;:21::i;:::-;28262:347;28192:417;;:::o;39815:32::-;;;;:::o;42586:106::-;6009:13;:11;:13::i;:::-;42674:10:::1;42662:9;:22;;;;;;;;;;;;:::i;:::-;;42586:106:::0;:::o;42700:83::-;6009:13;:11;:13::i;:::-;42769:6:::1;42760;;:15;;;;;;;;;;;;;;;;;;42700:83:::0;:::o;40083:95::-;40127:7;40154:16;:6;:14;:16::i;:::-;40147:23;;40083:95;:::o;29375:336::-;29570:41;29589:12;:10;:12::i;:::-;29603:7;29570:18;:41::i;:::-;29562:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;29675:28;29685:4;29691:2;29695:7;29675:9;:28::i;:::-;29375:336;;;:::o;42791:380::-;6009:13;:11;:13::i;:::-;42840:7:::1;42861:42;42853:56;;42960:3;42955:2;42931:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;42853:125;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42839:139;;;42997:2;42989:11;;;::::0;::::1;;43014:7;43035:42;43027:56;;43105:21;43027:114;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43013:128;;;43160:2;43152:11;;;::::0;::::1;;42828:343;;42791:380::o:0;29782:185::-;29920:39;29937:4;29943:2;29947:7;29920:39;;;;;;;;;;;;:16;:39::i;:::-;29782:185;;;:::o;40817:743::-;40904:16;40938:23;40964:17;40974:6;40964:9;:17::i;:::-;40938:43;;40992:30;41039:15;41025:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40992:63;;41066:22;41091:1;41066:26;;41103:23;41143:377;41182:15;41164;:33;:64;;;;;41219:9;;41201:14;:27;;41164:64;41143:377;;;41255:25;41283:23;41291:14;41283:7;:23::i;:::-;41255:51;;41348:6;41327:27;;:17;:27;;;41323:153;;;41408:14;41375:13;41389:15;41375:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;41443:17;;;;;:::i;:::-;;;;41323:153;41492:16;;;;;:::i;:::-;;;;41240:280;41143:377;;;41539:13;41532:20;;;;;;40817:743;;;:::o;42217:80::-;6009:13;:11;:13::i;:::-;42284:5:::1;42277:4;:12;;;;42217:80:::0;:::o;39773:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39979:25::-;;;;;;;;;;;;;:::o;39675:91::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26873:222::-;26945:7;26965:13;26981:7;:16;26989:7;26981:16;;;;;;;;;;;;;;;;;;;;;26965:32;;27033:1;27016:19;;:5;:19;;;;27008:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;27082:5;27075:12;;;26873:222;;;:::o;26604:207::-;26676:7;26721:1;26704:19;;:5;:19;;;;26696:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26787:9;:16;26797:5;26787:16;;;;;;;;;;;;;;;;26780:23;;26604:207;;;:::o;6771:103::-;6009:13;:11;:13::i;:::-;6836:30:::1;6863:1;6836:18;:30::i;:::-;6771:103::o:0;43179:87::-;6009:13;:11;:13::i;:::-;43234:24:::1;43244:10;43256:1;43234:9;:24::i;:::-;43179:87::o:0;42472:106::-;6009:13;:11;:13::i;:::-;42560:10:::1;42548:9;:22;;;;;;;;;;;;:::i;:::-;;42472:106:::0;:::o;6123:87::-;6169:7;6196:6;;;;;;;;;;;6189:13;;6123:87;:::o;39891:37::-;;;;:::o;27331:104::-;27387:13;27420:7;27413:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27331:104;:::o;40186:623::-;40256:6;;;;;;;;;;;40255:7;40247:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;40332:1;40318:11;:15;:52;;;;;40352:18;;40337:11;:33;;40318:52;40296:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;40485:9;;40470:11;40451:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;40429:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;40616:16;;40600:11;40576:21;40586:10;40576:9;:21::i;:::-;:35;;;;:::i;:::-;40575:57;;40553:129;;;;;;;;;;;;:::i;:::-;;;;;;;;;40721:11;40714:4;;:18;;;;:::i;:::-;40701:9;:31;;40693:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;40767:34;40777:10;40789:11;40767:9;:34::i;:::-;40186:623;:::o;28918:155::-;29013:52;29032:12;:10;:12::i;:::-;29046:8;29056;29013:18;:52::i;:::-;28918:155;;:::o;42305:159::-;6009:13;:11;:13::i;:::-;42437:19:::1;42416:18;:40;;;;42305:159:::0;:::o;39935:35::-;;;;:::o;30038:323::-;30212:41;30231:12;:10;:12::i;:::-;30245:7;30212:18;:41::i;:::-;30204:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;30315:38;30329:4;30335:2;30339:7;30348:4;30315:13;:38::i;:::-;30038:323;;;;:::o;41568:641::-;41687:13;41740:17;41748:8;41740:7;:17::i;:::-;41718:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;41845:28;41876:10;:8;:10::i;:::-;41845:41;;41948:1;41923:14;41917:28;:32;:284;;;;;;;;;;;;;;;;;42041:14;42082:19;:8;:17;:19::i;:::-;42128:9;41998:162;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41917:284;41897:304;;;41568:641;;;:::o;39854:30::-;;;;:::o;29144:164::-;29241:4;29265:18;:25;29284:5;29265:25;;;;;;;;;;;;;;;:35;29291:8;29265:35;;;;;;;;;;;;;;;;;;;;;;;;;29258:42;;29144:164;;;;:::o;7029:201::-;6009:13;:11;:13::i;:::-;7138:1:::1;7118:22;;:8;:22;;;;7110:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7194:28;7213:8;7194:18;:28::i;:::-;7029:201:::0;:::o;18977:157::-;19062:4;19101:25;19086:40;;;:11;:40;;;;19079:47;;18977:157;;;:::o;36650:135::-;36732:16;36740:7;36732;:16::i;:::-;36724:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;36650:135;:::o;4674:98::-;4727:7;4754:10;4747:17;;4674:98;:::o;35929:174::-;36031:2;36004:15;:24;36020:7;36004:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36087:7;36083:2;36049:46;;36058:23;36073:7;36058:14;:23::i;:::-;36049:46;;;;;;;;;;;;35929:174;;:::o;6288:132::-;6363:12;:10;:12::i;:::-;6352:23;;:7;:5;:7::i;:::-;:23;;;6344:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6288:132::o;905:114::-;970:7;997;:14;;;990:21;;905:114;;;:::o;32162:264::-;32255:4;32272:13;32288:23;32303:7;32288:14;:23::i;:::-;32272:39;;32341:5;32330:16;;:7;:16;;;:52;;;;32350:32;32367:5;32374:7;32350:16;:32::i;:::-;32330:52;:87;;;;32410:7;32386:31;;:20;32398:7;32386:11;:20::i;:::-;:31;;;32330:87;32322:96;;;32162:264;;;;:::o;35185:625::-;35344:4;35317:31;;:23;35332:7;35317:14;:23::i;:::-;:31;;;35309:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;35423:1;35409:16;;:2;:16;;;;35401:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35479:39;35500:4;35506:2;35510:7;35479:20;:39::i;:::-;35583:29;35600:1;35604:7;35583:8;:29::i;:::-;35644:1;35625:9;:15;35635:4;35625:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35673:1;35656:9;:13;35666:2;35656:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35704:2;35685:7;:16;35693:7;35685:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35743:7;35739:2;35724:27;;35733:4;35724:27;;;;;;;;;;;;35764:38;35784:4;35790:2;35794:7;35764:19;:38::i;:::-;35185:625;;;:::o;7390:191::-;7464:16;7483:6;;;;;;;;;;;7464:25;;7509:8;7500:6;;:17;;;;;;;;;;;;;;;;;;7564:8;7533:40;;7554:8;7533:40;;;;;;;;;;;;7453:128;7390:191;:::o;43274:226::-;43358:9;43353:140;43377:11;43373:1;:15;43353:140;;;43410:18;:6;:16;:18::i;:::-;43443:38;43453:9;43464:16;:6;:14;:16::i;:::-;43443:9;:38::i;:::-;43390:3;;;;;:::i;:::-;;;;43353:140;;;;43274:226;;:::o;36246:315::-;36401:8;36392:17;;:5;:17;;;;36384:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36488:8;36450:18;:25;36469:5;36450:25;;;;;;;;;;;;;;;:35;36476:8;36450:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36534:8;36512:41;;36527:5;36512:41;;;36544:8;36512:41;;;;;;:::i;:::-;;;;;;;;36246:315;;;:::o;31242:313::-;31398:28;31408:4;31414:2;31418:7;31398:9;:28::i;:::-;31445:47;31468:4;31474:2;31478:7;31487:4;31445:22;:47::i;:::-;31437:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;31242:313;;;;:::o;31868:127::-;31933:4;31985:1;31957:30;;:7;:16;31965:7;31957:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31950:37;;31868:127;;;:::o;43508:110::-;43568:13;43601:9;43594:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43508:110;:::o;1928:723::-;1984:13;2214:1;2205:5;:10;2201:53;;;2232:10;;;;;;;;;;;;;;;;;;;;;2201:53;2264:12;2279:5;2264:20;;2295:14;2320:78;2335:1;2327:4;:9;2320:78;;2353:8;;;;;:::i;:::-;;;;2384:2;2376:10;;;;;:::i;:::-;;;2320:78;;;2408:19;2440:6;2430:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2408:39;;2458:154;2474:1;2465:5;:10;2458:154;;2502:1;2492:11;;;;;:::i;:::-;;;2569:2;2561:5;:10;;;;:::i;:::-;2548:2;:24;;;;:::i;:::-;2535:39;;2518:6;2525;2518:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2598:2;2589:11;;;;;:::i;:::-;;;2458:154;;;2636:6;2622:21;;;;;1928:723;;;;:::o;38774:126::-;;;;:::o;39285:125::-;;;;:::o;1027:127::-;1134:1;1116:7;:14;;;:19;;;;;;;;;;;1027:127;:::o;32768:110::-;32844:26;32854:2;32858:7;32844:26;;;;;;;;;;;;:9;:26::i;:::-;32768:110;;:::o;37349:853::-;37503:4;37524:15;:2;:13;;;:15::i;:::-;37520:675;;;37576:2;37560:36;;;37597:12;:10;:12::i;:::-;37611:4;37617:7;37626:4;37560:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37556:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37818:1;37801:6;:13;:18;37797:328;;;37844:60;;;;;;;;;;:::i;:::-;;;;;;;;37797:328;38075:6;38069:13;38060:6;38056:2;38052:15;38045:38;37556:584;37692:41;;;37682:51;;;:6;:51;;;;37675:58;;;;;37520:675;38179:4;38172:11;;37349:853;;;;;;;:::o;33105:319::-;33234:18;33240:2;33244:7;33234:5;:18::i;:::-;33285:53;33316:1;33320:2;33324:7;33333:4;33285:22;:53::i;:::-;33263:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;33105:319;;;:::o;8821:326::-;8881:4;9138:1;9116:7;:19;;;:23;9109:30;;8821:326;;;:::o;33760:439::-;33854:1;33840:16;;:2;:16;;;;33832:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33913:16;33921:7;33913;:16::i;:::-;33912:17;33904:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33975:45;34004:1;34008:2;34012:7;33975:20;:45::i;:::-;34050:1;34033:9;:13;34043:2;34033:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34081:2;34062:7;:16;34070:7;34062:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34126:7;34122:2;34101:33;;34118:1;34101:33;;;;;;;;;;;;34147:44;34175:1;34179:2;34183:7;34147:19;:44::i;:::-;33760:439;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;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:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:179::-;7556:10;7577:46;7619:3;7611:6;7577:46;:::i;:::-;7655:4;7650:3;7646:14;7632:28;;7487:179;;;;:::o;7672:118::-;7759:24;7777:5;7759:24;:::i;:::-;7754:3;7747:37;7672:118;;:::o;7826:732::-;7945:3;7974:54;8022:5;7974:54;:::i;:::-;8044:86;8123:6;8118:3;8044:86;:::i;:::-;8037:93;;8154:56;8204:5;8154:56;:::i;:::-;8233:7;8264:1;8249:284;8274:6;8271:1;8268:13;8249:284;;;8350:6;8344:13;8377:63;8436:3;8421:13;8377:63;:::i;:::-;8370:70;;8463:60;8516:6;8463:60;:::i;:::-;8453:70;;8309:224;8296:1;8293;8289:9;8284:14;;8249:284;;;8253:14;8549:3;8542:10;;7950:608;;;7826:732;;;;:::o;8564:109::-;8645:21;8660:5;8645:21;:::i;:::-;8640:3;8633:34;8564:109;;:::o;8679:360::-;8765:3;8793:38;8825:5;8793:38;:::i;:::-;8847:70;8910:6;8905:3;8847:70;:::i;:::-;8840:77;;8926:52;8971:6;8966:3;8959:4;8952:5;8948:16;8926:52;:::i;:::-;9003:29;9025:6;9003:29;:::i;:::-;8998:3;8994:39;8987:46;;8769:270;8679:360;;;;:::o;9045:364::-;9133:3;9161:39;9194:5;9161:39;:::i;:::-;9216:71;9280:6;9275:3;9216:71;:::i;:::-;9209:78;;9296:52;9341:6;9336:3;9329:4;9322:5;9318:16;9296:52;:::i;:::-;9373:29;9395:6;9373:29;:::i;:::-;9368:3;9364:39;9357:46;;9137:272;9045:364;;;;:::o;9415:377::-;9521:3;9549:39;9582:5;9549:39;:::i;:::-;9604:89;9686:6;9681:3;9604:89;:::i;:::-;9597:96;;9702:52;9747:6;9742:3;9735:4;9728:5;9724:16;9702:52;:::i;:::-;9779:6;9774:3;9770:16;9763:23;;9525:267;9415:377;;;;:::o;9822:845::-;9925:3;9962:5;9956:12;9991:36;10017:9;9991:36;:::i;:::-;10043:89;10125:6;10120:3;10043:89;:::i;:::-;10036:96;;10163:1;10152:9;10148:17;10179:1;10174:137;;;;10325:1;10320:341;;;;10141:520;;10174:137;10258:4;10254:9;10243;10239:25;10234:3;10227:38;10294:6;10289:3;10285:16;10278:23;;10174:137;;10320:341;10387:38;10419:5;10387:38;:::i;:::-;10447:1;10461:154;10475:6;10472:1;10469:13;10461:154;;;10549:7;10543:14;10539:1;10534:3;10530:11;10523:35;10599:1;10590:7;10586:15;10575:26;;10497:4;10494:1;10490:12;10485:17;;10461:154;;;10644:6;10639:3;10635:16;10628:23;;10327:334;;10141:520;;9929:738;;9822:845;;;;:::o;10673:366::-;10815:3;10836:67;10900:2;10895:3;10836:67;:::i;:::-;10829:74;;10912:93;11001:3;10912:93;:::i;:::-;11030:2;11025:3;11021:12;11014:19;;10673:366;;;:::o;11045:::-;11187:3;11208:67;11272:2;11267:3;11208:67;:::i;:::-;11201:74;;11284:93;11373:3;11284:93;:::i;:::-;11402:2;11397:3;11393:12;11386:19;;11045:366;;;:::o;11417:::-;11559:3;11580:67;11644:2;11639:3;11580:67;:::i;:::-;11573:74;;11656:93;11745:3;11656:93;:::i;:::-;11774:2;11769:3;11765:12;11758:19;;11417:366;;;:::o;11789:::-;11931:3;11952:67;12016:2;12011:3;11952:67;:::i;:::-;11945:74;;12028:93;12117:3;12028:93;:::i;:::-;12146:2;12141:3;12137:12;12130:19;;11789:366;;;:::o;12161:::-;12303:3;12324:67;12388:2;12383:3;12324:67;:::i;:::-;12317:74;;12400:93;12489:3;12400:93;:::i;:::-;12518:2;12513:3;12509:12;12502:19;;12161:366;;;:::o;12533:::-;12675:3;12696:67;12760:2;12755:3;12696:67;:::i;:::-;12689:74;;12772:93;12861:3;12772:93;:::i;:::-;12890:2;12885:3;12881:12;12874:19;;12533:366;;;:::o;12905:::-;13047:3;13068:67;13132:2;13127:3;13068:67;:::i;:::-;13061:74;;13144:93;13233:3;13144:93;:::i;:::-;13262:2;13257:3;13253:12;13246:19;;12905:366;;;:::o;13277:::-;13419:3;13440:67;13504:2;13499:3;13440:67;:::i;:::-;13433:74;;13516:93;13605:3;13516:93;:::i;:::-;13634:2;13629:3;13625:12;13618:19;;13277:366;;;:::o;13649:::-;13791:3;13812:67;13876:2;13871:3;13812:67;:::i;:::-;13805:74;;13888:93;13977:3;13888:93;:::i;:::-;14006:2;14001:3;13997:12;13990:19;;13649:366;;;:::o;14021:::-;14163:3;14184:67;14248:2;14243:3;14184:67;:::i;:::-;14177:74;;14260:93;14349:3;14260:93;:::i;:::-;14378:2;14373:3;14369:12;14362:19;;14021:366;;;:::o;14393:::-;14535:3;14556:67;14620:2;14615:3;14556:67;:::i;:::-;14549:74;;14632:93;14721:3;14632:93;:::i;:::-;14750:2;14745:3;14741:12;14734:19;;14393:366;;;:::o;14765:::-;14907:3;14928:67;14992:2;14987:3;14928:67;:::i;:::-;14921:74;;15004:93;15093:3;15004:93;:::i;:::-;15122:2;15117:3;15113:12;15106:19;;14765:366;;;:::o;15137:::-;15279:3;15300:67;15364:2;15359:3;15300:67;:::i;:::-;15293:74;;15376:93;15465:3;15376:93;:::i;:::-;15494:2;15489:3;15485:12;15478:19;;15137:366;;;:::o;15509:::-;15651:3;15672:67;15736:2;15731:3;15672:67;:::i;:::-;15665:74;;15748:93;15837:3;15748:93;:::i;:::-;15866:2;15861:3;15857:12;15850:19;;15509:366;;;:::o;15881:::-;16023:3;16044:67;16108:2;16103:3;16044:67;:::i;:::-;16037:74;;16120:93;16209:3;16120:93;:::i;:::-;16238:2;16233:3;16229:12;16222:19;;15881:366;;;:::o;16253:398::-;16412:3;16433:83;16514:1;16509:3;16433:83;:::i;:::-;16426:90;;16525:93;16614:3;16525:93;:::i;:::-;16643:1;16638:3;16634:11;16627:18;;16253:398;;;:::o;16657:366::-;16799:3;16820:67;16884:2;16879:3;16820:67;:::i;:::-;16813:74;;16896:93;16985:3;16896:93;:::i;:::-;17014:2;17009:3;17005:12;16998:19;;16657:366;;;:::o;17029:::-;17171:3;17192:67;17256:2;17251:3;17192:67;:::i;:::-;17185:74;;17268:93;17357:3;17268:93;:::i;:::-;17386:2;17381:3;17377:12;17370:19;;17029:366;;;:::o;17401:::-;17543:3;17564:67;17628:2;17623:3;17564:67;:::i;:::-;17557:74;;17640:93;17729:3;17640:93;:::i;:::-;17758:2;17753:3;17749:12;17742:19;;17401:366;;;:::o;17773:::-;17915:3;17936:67;18000:2;17995:3;17936:67;:::i;:::-;17929:74;;18012:93;18101:3;18012:93;:::i;:::-;18130:2;18125:3;18121:12;18114:19;;17773:366;;;:::o;18145:108::-;18222:24;18240:5;18222:24;:::i;:::-;18217:3;18210:37;18145:108;;:::o;18259:118::-;18346:24;18364:5;18346:24;:::i;:::-;18341:3;18334:37;18259:118;;:::o;18383:589::-;18608:3;18630:95;18721:3;18712:6;18630:95;:::i;:::-;18623:102;;18742:95;18833:3;18824:6;18742:95;:::i;:::-;18735:102;;18854:92;18942:3;18933:6;18854:92;:::i;:::-;18847:99;;18963:3;18956:10;;18383:589;;;;;;:::o;18978:379::-;19162:3;19184:147;19327:3;19184:147;:::i;:::-;19177:154;;19348:3;19341:10;;18978:379;;;:::o;19363:222::-;19456:4;19494:2;19483:9;19479:18;19471:26;;19507:71;19575:1;19564:9;19560:17;19551:6;19507:71;:::i;:::-;19363:222;;;;:::o;19591:640::-;19786:4;19824:3;19813:9;19809:19;19801:27;;19838:71;19906:1;19895:9;19891:17;19882:6;19838:71;:::i;:::-;19919:72;19987:2;19976:9;19972:18;19963:6;19919:72;:::i;:::-;20001;20069:2;20058:9;20054:18;20045:6;20001:72;:::i;:::-;20120:9;20114:4;20110:20;20105:2;20094:9;20090:18;20083:48;20148:76;20219:4;20210:6;20148:76;:::i;:::-;20140:84;;19591:640;;;;;;;:::o;20237:373::-;20380:4;20418:2;20407:9;20403:18;20395:26;;20467:9;20461:4;20457:20;20453:1;20442:9;20438:17;20431:47;20495:108;20598:4;20589:6;20495:108;:::i;:::-;20487:116;;20237:373;;;;:::o;20616:210::-;20703:4;20741:2;20730:9;20726:18;20718:26;;20754:65;20816:1;20805:9;20801:17;20792:6;20754:65;:::i;:::-;20616:210;;;;:::o;20832:313::-;20945:4;20983:2;20972:9;20968:18;20960:26;;21032:9;21026:4;21022:20;21018:1;21007:9;21003:17;20996:47;21060:78;21133:4;21124:6;21060:78;:::i;:::-;21052:86;;20832:313;;;;:::o;21151:419::-;21317:4;21355:2;21344:9;21340:18;21332:26;;21404:9;21398:4;21394:20;21390:1;21379:9;21375:17;21368:47;21432:131;21558:4;21432:131;:::i;:::-;21424:139;;21151:419;;;:::o;21576:::-;21742:4;21780:2;21769:9;21765:18;21757:26;;21829:9;21823:4;21819:20;21815:1;21804:9;21800:17;21793:47;21857:131;21983:4;21857:131;:::i;:::-;21849:139;;21576:419;;;:::o;22001:::-;22167:4;22205:2;22194:9;22190:18;22182:26;;22254:9;22248:4;22244:20;22240:1;22229:9;22225:17;22218:47;22282:131;22408:4;22282:131;:::i;:::-;22274:139;;22001:419;;;:::o;22426:::-;22592:4;22630:2;22619:9;22615:18;22607:26;;22679:9;22673:4;22669:20;22665:1;22654:9;22650:17;22643:47;22707:131;22833:4;22707:131;:::i;:::-;22699:139;;22426:419;;;:::o;22851:::-;23017:4;23055:2;23044:9;23040:18;23032:26;;23104:9;23098:4;23094:20;23090:1;23079:9;23075:17;23068:47;23132:131;23258:4;23132:131;:::i;:::-;23124:139;;22851:419;;;:::o;23276:::-;23442:4;23480:2;23469:9;23465:18;23457:26;;23529:9;23523:4;23519:20;23515:1;23504:9;23500:17;23493:47;23557:131;23683:4;23557:131;:::i;:::-;23549:139;;23276:419;;;:::o;23701:::-;23867:4;23905:2;23894:9;23890:18;23882:26;;23954:9;23948:4;23944:20;23940:1;23929:9;23925:17;23918:47;23982:131;24108:4;23982:131;:::i;:::-;23974:139;;23701:419;;;:::o;24126:::-;24292:4;24330:2;24319:9;24315:18;24307:26;;24379:9;24373:4;24369:20;24365:1;24354:9;24350:17;24343:47;24407:131;24533:4;24407:131;:::i;:::-;24399:139;;24126:419;;;:::o;24551:::-;24717:4;24755:2;24744:9;24740:18;24732:26;;24804:9;24798:4;24794:20;24790:1;24779:9;24775:17;24768:47;24832:131;24958:4;24832:131;:::i;:::-;24824:139;;24551:419;;;:::o;24976:::-;25142:4;25180:2;25169:9;25165:18;25157:26;;25229:9;25223:4;25219:20;25215:1;25204:9;25200:17;25193:47;25257:131;25383:4;25257:131;:::i;:::-;25249:139;;24976:419;;;:::o;25401:::-;25567:4;25605:2;25594:9;25590:18;25582:26;;25654:9;25648:4;25644:20;25640:1;25629:9;25625:17;25618:47;25682:131;25808:4;25682:131;:::i;:::-;25674:139;;25401:419;;;:::o;25826:::-;25992:4;26030:2;26019:9;26015:18;26007:26;;26079:9;26073:4;26069:20;26065:1;26054:9;26050:17;26043:47;26107:131;26233:4;26107:131;:::i;:::-;26099:139;;25826:419;;;:::o;26251:::-;26417:4;26455:2;26444:9;26440:18;26432:26;;26504:9;26498:4;26494:20;26490:1;26479:9;26475:17;26468:47;26532:131;26658:4;26532:131;:::i;:::-;26524:139;;26251:419;;;:::o;26676:::-;26842:4;26880:2;26869:9;26865:18;26857:26;;26929:9;26923:4;26919:20;26915:1;26904:9;26900:17;26893:47;26957:131;27083:4;26957:131;:::i;:::-;26949:139;;26676:419;;;:::o;27101:::-;27267:4;27305:2;27294:9;27290:18;27282:26;;27354:9;27348:4;27344:20;27340:1;27329:9;27325:17;27318:47;27382:131;27508:4;27382:131;:::i;:::-;27374:139;;27101:419;;;:::o;27526:::-;27692:4;27730:2;27719:9;27715:18;27707:26;;27779:9;27773:4;27769:20;27765:1;27754:9;27750:17;27743:47;27807:131;27933:4;27807:131;:::i;:::-;27799:139;;27526:419;;;:::o;27951:::-;28117:4;28155:2;28144:9;28140:18;28132:26;;28204:9;28198:4;28194:20;28190:1;28179:9;28175:17;28168:47;28232:131;28358:4;28232:131;:::i;:::-;28224:139;;27951:419;;;:::o;28376:::-;28542:4;28580:2;28569:9;28565:18;28557:26;;28629:9;28623:4;28619:20;28615:1;28604:9;28600:17;28593:47;28657:131;28783:4;28657:131;:::i;:::-;28649:139;;28376:419;;;:::o;28801:::-;28967:4;29005:2;28994:9;28990:18;28982:26;;29054:9;29048:4;29044:20;29040:1;29029:9;29025:17;29018:47;29082:131;29208:4;29082:131;:::i;:::-;29074:139;;28801:419;;;:::o;29226:222::-;29319:4;29357:2;29346:9;29342:18;29334:26;;29370:71;29438:1;29427:9;29423:17;29414:6;29370:71;:::i;:::-;29226:222;;;;:::o;29454:129::-;29488:6;29515:20;;:::i;:::-;29505:30;;29544:33;29572:4;29564:6;29544:33;:::i;:::-;29454:129;;;:::o;29589:75::-;29622:6;29655:2;29649:9;29639:19;;29589:75;:::o;29670:307::-;29731:4;29821:18;29813:6;29810:30;29807:56;;;29843:18;;:::i;:::-;29807:56;29881:29;29903:6;29881:29;:::i;:::-;29873:37;;29965:4;29959;29955:15;29947:23;;29670:307;;;:::o;29983:308::-;30045:4;30135:18;30127:6;30124:30;30121:56;;;30157:18;;:::i;:::-;30121:56;30195:29;30217:6;30195:29;:::i;:::-;30187:37;;30279:4;30273;30269:15;30261:23;;29983:308;;;:::o;30297:132::-;30364:4;30387:3;30379:11;;30417:4;30412:3;30408:14;30400:22;;30297:132;;;:::o;30435:141::-;30484:4;30507:3;30499:11;;30530:3;30527:1;30520:14;30564:4;30561:1;30551:18;30543:26;;30435:141;;;:::o;30582:114::-;30649:6;30683:5;30677:12;30667:22;;30582:114;;;:::o;30702:98::-;30753:6;30787:5;30781:12;30771:22;;30702:98;;;:::o;30806:99::-;30858:6;30892:5;30886:12;30876:22;;30806:99;;;:::o;30911:113::-;30981:4;31013;31008:3;31004:14;30996:22;;30911:113;;;:::o;31030:184::-;31129:11;31163:6;31158:3;31151:19;31203:4;31198:3;31194:14;31179:29;;31030:184;;;;:::o;31220:168::-;31303:11;31337:6;31332:3;31325:19;31377:4;31372:3;31368:14;31353:29;;31220:168;;;;:::o;31394:147::-;31495:11;31532:3;31517:18;;31394:147;;;;:::o;31547:169::-;31631:11;31665:6;31660:3;31653:19;31705:4;31700:3;31696:14;31681:29;;31547:169;;;;:::o;31722:148::-;31824:11;31861:3;31846:18;;31722:148;;;;:::o;31876:305::-;31916:3;31935:20;31953:1;31935:20;:::i;:::-;31930:25;;31969:20;31987:1;31969:20;:::i;:::-;31964:25;;32123:1;32055:66;32051:74;32048:1;32045:81;32042:107;;;32129:18;;:::i;:::-;32042:107;32173:1;32170;32166:9;32159:16;;31876:305;;;;:::o;32187:185::-;32227:1;32244:20;32262:1;32244:20;:::i;:::-;32239:25;;32278:20;32296:1;32278:20;:::i;:::-;32273:25;;32317:1;32307:35;;32322:18;;:::i;:::-;32307:35;32364:1;32361;32357:9;32352:14;;32187:185;;;;:::o;32378:348::-;32418:7;32441:20;32459:1;32441:20;:::i;:::-;32436:25;;32475:20;32493:1;32475:20;:::i;:::-;32470:25;;32663:1;32595:66;32591:74;32588:1;32585:81;32580:1;32573:9;32566:17;32562:105;32559:131;;;32670:18;;:::i;:::-;32559:131;32718:1;32715;32711:9;32700:20;;32378:348;;;;:::o;32732:191::-;32772:4;32792:20;32810:1;32792:20;:::i;:::-;32787:25;;32826:20;32844:1;32826:20;:::i;:::-;32821:25;;32865:1;32862;32859:8;32856:34;;;32870:18;;:::i;:::-;32856:34;32915:1;32912;32908:9;32900:17;;32732:191;;;;:::o;32929:96::-;32966:7;32995:24;33013:5;32995:24;:::i;:::-;32984:35;;32929:96;;;:::o;33031:90::-;33065:7;33108:5;33101:13;33094:21;33083:32;;33031:90;;;:::o;33127:149::-;33163:7;33203:66;33196:5;33192:78;33181:89;;33127:149;;;:::o;33282:126::-;33319:7;33359:42;33352:5;33348:54;33337:65;;33282:126;;;:::o;33414:77::-;33451:7;33480:5;33469:16;;33414:77;;;:::o;33497:154::-;33581:6;33576:3;33571;33558:30;33643:1;33634:6;33629:3;33625:16;33618:27;33497:154;;;:::o;33657:307::-;33725:1;33735:113;33749:6;33746:1;33743:13;33735:113;;;33834:1;33829:3;33825:11;33819:18;33815:1;33810:3;33806:11;33799:39;33771:2;33768:1;33764:10;33759:15;;33735:113;;;33866:6;33863:1;33860:13;33857:101;;;33946:1;33937:6;33932:3;33928:16;33921:27;33857:101;33706:258;33657:307;;;:::o;33970:320::-;34014:6;34051:1;34045:4;34041:12;34031:22;;34098:1;34092:4;34088:12;34119:18;34109:81;;34175:4;34167:6;34163:17;34153:27;;34109:81;34237:2;34229:6;34226:14;34206:18;34203:38;34200:84;;;34256:18;;:::i;:::-;34200:84;34021:269;33970:320;;;:::o;34296:281::-;34379:27;34401:4;34379:27;:::i;:::-;34371:6;34367:40;34509:6;34497:10;34494:22;34473:18;34461:10;34458:34;34455:62;34452:88;;;34520:18;;:::i;:::-;34452:88;34560:10;34556:2;34549:22;34339:238;34296:281;;:::o;34583:233::-;34622:3;34645:24;34663:5;34645:24;:::i;:::-;34636:33;;34691:66;34684:5;34681:77;34678:103;;;34761:18;;:::i;:::-;34678:103;34808:1;34801:5;34797:13;34790:20;;34583:233;;;:::o;34822:176::-;34854:1;34871:20;34889:1;34871:20;:::i;:::-;34866:25;;34905:20;34923:1;34905:20;:::i;:::-;34900:25;;34944:1;34934:35;;34949:18;;:::i;:::-;34934:35;34990:1;34987;34983:9;34978:14;;34822:176;;;;:::o;35004:180::-;35052:77;35049:1;35042:88;35149:4;35146:1;35139:15;35173:4;35170:1;35163:15;35190:180;35238:77;35235:1;35228:88;35335:4;35332:1;35325:15;35359:4;35356:1;35349:15;35376:180;35424:77;35421:1;35414:88;35521:4;35518:1;35511:15;35545:4;35542:1;35535:15;35562:180;35610:77;35607:1;35600:88;35707:4;35704:1;35697:15;35731:4;35728:1;35721:15;35748:180;35796:77;35793:1;35786:88;35893:4;35890:1;35883:15;35917:4;35914:1;35907:15;35934:117;36043:1;36040;36033:12;36057:117;36166:1;36163;36156:12;36180:117;36289:1;36286;36279:12;36303:117;36412:1;36409;36402:12;36426:102;36467:6;36518:2;36514:7;36509:2;36502:5;36498:14;36494:28;36484:38;;36426:102;;;:::o;36534:237::-;36674:34;36670:1;36662:6;36658:14;36651:58;36743:20;36738:2;36730:6;36726:15;36719:45;36534:237;:::o;36777:225::-;36917:34;36913:1;36905:6;36901:14;36894:58;36986:8;36981:2;36973:6;36969:15;36962:33;36777:225;:::o;37008:224::-;37148:34;37144:1;37136:6;37132:14;37125:58;37217:7;37212:2;37204:6;37200:15;37193:32;37008:224;:::o;37238:178::-;37378:30;37374:1;37366:6;37362:14;37355:54;37238:178;:::o;37422:170::-;37562:22;37558:1;37550:6;37546:14;37539:46;37422:170;:::o;37598:223::-;37738:34;37734:1;37726:6;37722:14;37715:58;37807:6;37802:2;37794:6;37790:15;37783:31;37598:223;:::o;37827:175::-;37967:27;37963:1;37955:6;37951:14;37944:51;37827:175;:::o;38008:172::-;38148:24;38144:1;38136:6;38132:14;38125:48;38008:172;:::o;38186:228::-;38326:34;38322:1;38314:6;38310:14;38303:58;38395:11;38390:2;38382:6;38378:15;38371:36;38186:228;:::o;38420:249::-;38560:34;38556:1;38548:6;38544:14;38537:58;38629:32;38624:2;38616:6;38612:15;38605:57;38420:249;:::o;38675:182::-;38815:34;38811:1;38803:6;38799:14;38792:58;38675:182;:::o;38863:::-;39003:34;38999:1;38991:6;38987:14;38980:58;38863:182;:::o;39051:234::-;39191:34;39187:1;39179:6;39175:14;39168:58;39260:17;39255:2;39247:6;39243:15;39236:42;39051:234;:::o;39291:174::-;39431:26;39427:1;39419:6;39415:14;39408:50;39291:174;:::o;39471:220::-;39611:34;39607:1;39599:6;39595:14;39588:58;39680:3;39675:2;39667:6;39663:15;39656:28;39471:220;:::o;39697:114::-;;:::o;39817:170::-;39957:22;39953:1;39945:6;39941:14;39934:46;39817:170;:::o;39993:168::-;40133:20;40129:1;40121:6;40117:14;40110:44;39993:168;:::o;40167:233::-;40307:34;40303:1;40295:6;40291:14;40284:58;40376:16;40371:2;40363:6;40359:15;40352:41;40167:233;:::o;40406:169::-;40546:21;40542:1;40534:6;40530:14;40523:45;40406:169;:::o;40581:122::-;40654:24;40672:5;40654:24;:::i;:::-;40647:5;40644:35;40634:63;;40693:1;40690;40683:12;40634:63;40581:122;:::o;40709:116::-;40779:21;40794:5;40779:21;:::i;:::-;40772:5;40769:32;40759:60;;40815:1;40812;40805:12;40759:60;40709:116;:::o;40831:120::-;40903:23;40920:5;40903:23;:::i;:::-;40896:5;40893:34;40883:62;;40941:1;40938;40931:12;40883:62;40831:120;:::o;40957:122::-;41030:24;41048:5;41030:24;:::i;:::-;41023:5;41020:35;41010:63;;41069:1;41066;41059:12;41010:63;40957:122;:::o

Swarm Source

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