ETH Price: $3,465.72 (+2.11%)
Gas: 17 Gwei

Token

BabyPickles (BABYPICKLES)
 

Overview

Max Total Supply

2,338 BABYPICKLES

Holders

280

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
wenn.eth
Balance
226 BABYPICKLES
0x4a7998df2cd16815271bb6b7d3ae7eb30f50a73a
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:
BabyPickles

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-06-29
*/

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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



pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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



pragma solidity ^0.8.0;

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

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

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

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

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

}

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



pragma solidity ^0.8.0;


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

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



pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        private returns (bool)
    {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { }
}

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



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

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



pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: contracts/BabyPickles.sol


pragma solidity ^0.8.0;




contract BabyPickles is ERC721Enumerable, Ownable {
    uint public constant MAX_PICKLES = 10000;
    string _baseTokenURI;
    bool public paused = true;

    // Truth. 
    constructor(string memory baseURI) ERC721("BabyPickles", "BABYPICKLES")  {
        setBaseURI(baseURI);
    }

    modifier saleIsOpen{
        require(totalSupply() < MAX_PICKLES, "Sale end");
        _;
    }

    function mintMyPickle(address _to, uint _count) public payable saleIsOpen {
        if(msg.sender != owner()){
          require(!paused, "Pause");
          require(_count <= 5, "Exceeds 5");
        }
        require(totalSupply() + _count <= MAX_PICKLES, "Max limit");
        require(totalSupply() < MAX_PICKLES, "Sale end");
        require(msg.value >= price(_count), "Value below price");

        for(uint i = 0; i < _count; i++){
            _safeMint(_to, totalSupply());
        }
    }

    function price(uint _count) public view returns (uint256) {
        uint _id = totalSupply();
        // free 1000
        if(_id <= 2000 ){
            return 0;
        }

        return 10000000000000000 * _count; // 0.01 ETH
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }
    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

    function walletOfOwner(address _owner) external view returns(uint256[] memory) {
        uint tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint i = 0; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }

        return tokensId;
    }

    function pause(bool val) public onlyOwner {
        paused = val;
    }

    function withdrawAll() public payable onlyOwner {
        require(payable(_msgSender()).send(address(this).balance));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"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":[],"name":"MAX_PICKLES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintMyPickle","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526001600c60006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040516200470b3803806200470b8339818101604052810190620000529190620003ba565b6040518060400160405280600b81526020017f426162795069636b6c65730000000000000000000000000000000000000000008152506040518060400160405280600b81526020017f424142595049434b4c45530000000000000000000000000000000000000000008152508160009080519060200190620000d692919062000298565b508060019080519060200190620000ef92919062000298565b505050600062000104620001bb60201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620001b481620001c360201b60201c565b50620005f2565b600033905090565b620001d3620001bb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620001f96200026e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000252576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002499062000426565b60405180910390fd5b80600b90805190602001906200026a92919062000298565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002a690620004ee565b90600052602060002090601f016020900481019282620002ca576000855562000316565b82601f10620002e557805160ff191683800117855562000316565b8280016001018555821562000316579182015b8281111562000315578251825591602001919060010190620002f8565b5b50905062000325919062000329565b5090565b5b80821115620003445760008160009055506001016200032a565b5090565b60006200035f620003598462000471565b62000448565b9050828152602081018484840111156200037857600080fd5b62000385848285620004b8565b509392505050565b600082601f8301126200039f57600080fd5b8151620003b184826020860162000348565b91505092915050565b600060208284031215620003cd57600080fd5b600082015167ffffffffffffffff811115620003e857600080fd5b620003f6848285016200038d565b91505092915050565b60006200040e602083620004a7565b91506200041b82620005c9565b602082019050919050565b600060208201905081810360008301526200044181620003ff565b9050919050565b60006200045462000467565b905062000462828262000524565b919050565b6000604051905090565b600067ffffffffffffffff8211156200048f576200048e62000589565b5b6200049a82620005b8565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620004d8578082015181840152602081019050620004bb565b83811115620004e8576000848401525b50505050565b600060028204905060018216806200050757607f821691505b602082108114156200051e576200051d6200055a565b5b50919050565b6200052f82620005b8565b810181811067ffffffffffffffff8211171562000551576200055062000589565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61410980620006026000396000f3fe60806040526004361061019c5760003560e01c80635c975abb116100ec578063a22cb4651161008a578063d1d2345011610064578063d1d23450146105dd578063d5f0494a146105f9578063e985e9c514610624578063f2fde38b146106615761019c565b8063a22cb4651461054e578063b88d4fde14610577578063c87b56dd146105a05761019c565b8063715018a6116100c6578063715018a6146104d7578063853828b6146104ee5780638da5cb5b146104f857806395d89b41146105235761019c565b80635c975abb146104325780636352211e1461045d57806370a082311461049a5761019c565b806323b872dd1161015957806342842e0e1161013357806342842e0e14610366578063438b63001461038f5780634f6ccce7146103cc57806355f804b3146104095761019c565b806323b872dd146102c357806326a49e37146102ec5780632f745c59146103295761019c565b806301ffc9a7146101a157806302329a29146101de57806306fdde0314610207578063081812fc14610232578063095ea7b31461026f57806318160ddd14610298575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612d21565b61068a565b6040516101d59190613304565b60405180910390f35b3480156101ea57600080fd5b5061020560048036038101906102009190612cf8565b610704565b005b34801561021357600080fd5b5061021c61079d565b604051610229919061331f565b60405180910390f35b34801561023e57600080fd5b5061025960048036038101906102549190612db4565b61082f565b604051610266919061327b565b60405180910390f35b34801561027b57600080fd5b5061029660048036038101906102919190612cbc565b6108b4565b005b3480156102a457600080fd5b506102ad6109cc565b6040516102ba9190613621565b60405180910390f35b3480156102cf57600080fd5b506102ea60048036038101906102e59190612bb6565b6109d9565b005b3480156102f857600080fd5b50610313600480360381019061030e9190612db4565b610a39565b6040516103209190613621565b60405180910390f35b34801561033557600080fd5b50610350600480360381019061034b9190612cbc565b610a75565b60405161035d9190613621565b60405180910390f35b34801561037257600080fd5b5061038d60048036038101906103889190612bb6565b610b1a565b005b34801561039b57600080fd5b506103b660048036038101906103b19190612b51565b610b3a565b6040516103c391906132e2565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee9190612db4565b610c34565b6040516104009190613621565b60405180910390f35b34801561041557600080fd5b50610430600480360381019061042b9190612d73565b610ccb565b005b34801561043e57600080fd5b50610447610d61565b6040516104549190613304565b60405180910390f35b34801561046957600080fd5b50610484600480360381019061047f9190612db4565b610d74565b604051610491919061327b565b60405180910390f35b3480156104a657600080fd5b506104c160048036038101906104bc9190612b51565b610e26565b6040516104ce9190613621565b60405180910390f35b3480156104e357600080fd5b506104ec610ede565b005b6104f661101b565b005b34801561050457600080fd5b5061050d6110de565b60405161051a919061327b565b60405180910390f35b34801561052f57600080fd5b50610538611108565b604051610545919061331f565b60405180910390f35b34801561055a57600080fd5b5061057560048036038101906105709190612c80565b61119a565b005b34801561058357600080fd5b5061059e60048036038101906105999190612c05565b61131b565b005b3480156105ac57600080fd5b506105c760048036038101906105c29190612db4565b61137d565b6040516105d4919061331f565b60405180910390f35b6105f760048036038101906105f29190612cbc565b611424565b005b34801561060557600080fd5b5061060e61165f565b60405161061b9190613621565b60405180910390f35b34801561063057600080fd5b5061064b60048036038101906106469190612b7a565b611665565b6040516106589190613304565b60405180910390f35b34801561066d57600080fd5b5061068860048036038101906106839190612b51565b6116f9565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106fd57506106fc826118a5565b5b9050919050565b61070c611987565b73ffffffffffffffffffffffffffffffffffffffff1661072a6110de565b73ffffffffffffffffffffffffffffffffffffffff1614610780576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077790613541565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b6060600080546107ac9061390a565b80601f01602080910402602001604051908101604052809291908181526020018280546107d89061390a565b80156108255780601f106107fa57610100808354040283529160200191610825565b820191906000526020600020905b81548152906001019060200180831161080857829003601f168201915b5050505050905090565b600061083a8261198f565b610879576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087090613501565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108bf82610d74565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610930576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610927906135c1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661094f611987565b73ffffffffffffffffffffffffffffffffffffffff16148061097e575061097d81610978611987565b611665565b5b6109bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b490613461565b60405180910390fd5b6109c783836119fb565b505050565b6000600880549050905090565b6109ea6109e4611987565b82611ab4565b610a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a20906135e1565b60405180910390fd5b610a34838383611b92565b505050565b600080610a446109cc565b90506107d08111610a59576000915050610a70565b82662386f26fc10000610a6c91906137c6565b9150505b919050565b6000610a8083610e26565b8210610ac1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab890613341565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b358383836040518060200160405280600081525061131b565b505050565b60606000610b4783610e26565b905060008167ffffffffffffffff811115610b8b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610bb95781602001602082028036833780820191505090505b50905060005b82811015610c2957610bd18582610a75565b828281518110610c0a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610c219061396d565b915050610bbf565b508092505050919050565b6000610c3e6109cc565b8210610c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7690613601565b60405180910390fd5b60088281548110610cb9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610cd3611987565b73ffffffffffffffffffffffffffffffffffffffff16610cf16110de565b73ffffffffffffffffffffffffffffffffffffffff1614610d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3e90613541565b60405180910390fd5b80600b9080519060200190610d5d929190612975565b5050565b600c60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e14906134a1565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8e90613481565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ee6611987565b73ffffffffffffffffffffffffffffffffffffffff16610f046110de565b73ffffffffffffffffffffffffffffffffffffffff1614610f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5190613541565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611023611987565b73ffffffffffffffffffffffffffffffffffffffff166110416110de565b73ffffffffffffffffffffffffffffffffffffffff1614611097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108e90613541565b60405180910390fd5b61109f611987565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050506110dc57600080fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546111179061390a565b80601f01602080910402602001604051908101604052809291908181526020018280546111439061390a565b80156111905780601f1061116557610100808354040283529160200191611190565b820191906000526020600020905b81548152906001019060200180831161117357829003601f168201915b5050505050905090565b6111a2611987565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611210576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611207906133e1565b60405180910390fd5b806005600061121d611987565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112ca611987565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161130f9190613304565b60405180910390a35050565b61132c611326611987565b83611ab4565b61136b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611362906135e1565b60405180910390fd5b61137784848484611dee565b50505050565b60606113888261198f565b6113c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113be90613581565b60405180910390fd5b60006113d1611e4a565b905060008151116113f1576040518060200160405280600081525061141c565b806113fb84611edc565b60405160200161140c929190613257565b6040516020818303038152906040525b915050919050565b61271061142f6109cc565b1061146f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611466906134e1565b60405180910390fd5b6114776110de565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461153e57600c60009054906101000a900460ff16156114f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f090613401565b60405180910390fd5b600581111561153d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153490613521565b60405180910390fd5b5b6127108161154a6109cc565b611554919061373f565b1115611595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158c90613421565b60405180910390fd5b6127106115a06109cc565b106115e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d7906134e1565b60405180910390fd5b6115e981610a39565b34101561162b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611622906135a1565b60405180910390fd5b60005b8181101561165a57611647836116426109cc565b612089565b80806116529061396d565b91505061162e565b505050565b61271081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611701611987565b73ffffffffffffffffffffffffffffffffffffffff1661171f6110de565b73ffffffffffffffffffffffffffffffffffffffff1614611775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176c90613541565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dc90613381565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061197057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611980575061197f826120a7565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a6e83610d74565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611abf8261198f565b611afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af590613441565b60405180910390fd5b6000611b0983610d74565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b7857508373ffffffffffffffffffffffffffffffffffffffff16611b608461082f565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b895750611b888185611665565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611bb282610d74565b73ffffffffffffffffffffffffffffffffffffffff1614611c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bff90613561565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6f906133c1565b60405180910390fd5b611c83838383612111565b611c8e6000826119fb565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cde9190613820565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d35919061373f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611df9848484611b92565b611e0584848484612225565b611e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3b90613361565b60405180910390fd5b50505050565b6060600b8054611e599061390a565b80601f0160208091040260200160405190810160405280929190818152602001828054611e859061390a565b8015611ed25780601f10611ea757610100808354040283529160200191611ed2565b820191906000526020600020905b815481529060010190602001808311611eb557829003601f168201915b5050505050905090565b60606000821415611f24576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612084565b600082905060005b60008214611f56578080611f3f9061396d565b915050600a82611f4f9190613795565b9150611f2c565b60008167ffffffffffffffff811115611f98577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611fca5781602001600182028036833780820191505090505b5090505b6000851461207d57600182611fe39190613820565b9150600a85611ff291906139b6565b6030611ffe919061373f565b60f81b81838151811061203a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120769190613795565b9450611fce565b8093505050505b919050565b6120a38282604051806020016040528060008152506123bc565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61211c838383612417565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561215f5761215a8161241c565b61219e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461219d5761219c8382612465565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121e1576121dc816125d2565b612220565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461221f5761221e8282612715565b5b5b505050565b60006122468473ffffffffffffffffffffffffffffffffffffffff16612794565b156123af578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261226f611987565b8786866040518563ffffffff1660e01b81526004016122919493929190613296565b602060405180830381600087803b1580156122ab57600080fd5b505af19250505080156122dc57506040513d601f19601f820116820180604052508101906122d99190612d4a565b60015b61235f573d806000811461230c576040519150601f19603f3d011682016040523d82523d6000602084013e612311565b606091505b50600081511415612357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234e90613361565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506123b4565b600190505b949350505050565b6123c683836127a7565b6123d36000848484612225565b612412576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240990613361565b60405180910390fd5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161247284610e26565b61247c9190613820565b9050600060076000848152602001908152602001600020549050818114612561576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506125e69190613820565b905060006009600084815260200190815260200160002054905060006008838154811061263c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612684577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806126f9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061272083610e26565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612817576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280e906134c1565b60405180910390fd5b6128208161198f565b15612860576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612857906133a1565b60405180910390fd5b61286c60008383612111565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128bc919061373f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546129819061390a565b90600052602060002090601f0160209004810192826129a357600085556129ea565b82601f106129bc57805160ff19168380011785556129ea565b828001600101855582156129ea579182015b828111156129e95782518255916020019190600101906129ce565b5b5090506129f791906129fb565b5090565b5b80821115612a145760008160009055506001016129fc565b5090565b6000612a2b612a2684613661565b61363c565b905082815260208101848484011115612a4357600080fd5b612a4e8482856138c8565b509392505050565b6000612a69612a6484613692565b61363c565b905082815260208101848484011115612a8157600080fd5b612a8c8482856138c8565b509392505050565b600081359050612aa381614077565b92915050565b600081359050612ab88161408e565b92915050565b600081359050612acd816140a5565b92915050565b600081519050612ae2816140a5565b92915050565b600082601f830112612af957600080fd5b8135612b09848260208601612a18565b91505092915050565b600082601f830112612b2357600080fd5b8135612b33848260208601612a56565b91505092915050565b600081359050612b4b816140bc565b92915050565b600060208284031215612b6357600080fd5b6000612b7184828501612a94565b91505092915050565b60008060408385031215612b8d57600080fd5b6000612b9b85828601612a94565b9250506020612bac85828601612a94565b9150509250929050565b600080600060608486031215612bcb57600080fd5b6000612bd986828701612a94565b9350506020612bea86828701612a94565b9250506040612bfb86828701612b3c565b9150509250925092565b60008060008060808587031215612c1b57600080fd5b6000612c2987828801612a94565b9450506020612c3a87828801612a94565b9350506040612c4b87828801612b3c565b925050606085013567ffffffffffffffff811115612c6857600080fd5b612c7487828801612ae8565b91505092959194509250565b60008060408385031215612c9357600080fd5b6000612ca185828601612a94565b9250506020612cb285828601612aa9565b9150509250929050565b60008060408385031215612ccf57600080fd5b6000612cdd85828601612a94565b9250506020612cee85828601612b3c565b9150509250929050565b600060208284031215612d0a57600080fd5b6000612d1884828501612aa9565b91505092915050565b600060208284031215612d3357600080fd5b6000612d4184828501612abe565b91505092915050565b600060208284031215612d5c57600080fd5b6000612d6a84828501612ad3565b91505092915050565b600060208284031215612d8557600080fd5b600082013567ffffffffffffffff811115612d9f57600080fd5b612dab84828501612b12565b91505092915050565b600060208284031215612dc657600080fd5b6000612dd484828501612b3c565b91505092915050565b6000612de98383613239565b60208301905092915050565b612dfe81613854565b82525050565b6000612e0f826136d3565b612e198185613701565b9350612e24836136c3565b8060005b83811015612e55578151612e3c8882612ddd565b9750612e47836136f4565b925050600181019050612e28565b5085935050505092915050565b612e6b81613866565b82525050565b6000612e7c826136de565b612e868185613712565b9350612e968185602086016138d7565b612e9f81613aa3565b840191505092915050565b6000612eb5826136e9565b612ebf8185613723565b9350612ecf8185602086016138d7565b612ed881613aa3565b840191505092915050565b6000612eee826136e9565b612ef88185613734565b9350612f088185602086016138d7565b80840191505092915050565b6000612f21602b83613723565b9150612f2c82613ab4565b604082019050919050565b6000612f44603283613723565b9150612f4f82613b03565b604082019050919050565b6000612f67602683613723565b9150612f7282613b52565b604082019050919050565b6000612f8a601c83613723565b9150612f9582613ba1565b602082019050919050565b6000612fad602483613723565b9150612fb882613bca565b604082019050919050565b6000612fd0601983613723565b9150612fdb82613c19565b602082019050919050565b6000612ff3600583613723565b9150612ffe82613c42565b602082019050919050565b6000613016600983613723565b915061302182613c6b565b602082019050919050565b6000613039602c83613723565b915061304482613c94565b604082019050919050565b600061305c603883613723565b915061306782613ce3565b604082019050919050565b600061307f602a83613723565b915061308a82613d32565b604082019050919050565b60006130a2602983613723565b91506130ad82613d81565b604082019050919050565b60006130c5602083613723565b91506130d082613dd0565b602082019050919050565b60006130e8600883613723565b91506130f382613df9565b602082019050919050565b600061310b602c83613723565b915061311682613e22565b604082019050919050565b600061312e600983613723565b915061313982613e71565b602082019050919050565b6000613151602083613723565b915061315c82613e9a565b602082019050919050565b6000613174602983613723565b915061317f82613ec3565b604082019050919050565b6000613197602f83613723565b91506131a282613f12565b604082019050919050565b60006131ba601183613723565b91506131c582613f61565b602082019050919050565b60006131dd602183613723565b91506131e882613f8a565b604082019050919050565b6000613200603183613723565b915061320b82613fd9565b604082019050919050565b6000613223602c83613723565b915061322e82614028565b604082019050919050565b613242816138be565b82525050565b613251816138be565b82525050565b60006132638285612ee3565b915061326f8284612ee3565b91508190509392505050565b60006020820190506132906000830184612df5565b92915050565b60006080820190506132ab6000830187612df5565b6132b86020830186612df5565b6132c56040830185613248565b81810360608301526132d78184612e71565b905095945050505050565b600060208201905081810360008301526132fc8184612e04565b905092915050565b60006020820190506133196000830184612e62565b92915050565b600060208201905081810360008301526133398184612eaa565b905092915050565b6000602082019050818103600083015261335a81612f14565b9050919050565b6000602082019050818103600083015261337a81612f37565b9050919050565b6000602082019050818103600083015261339a81612f5a565b9050919050565b600060208201905081810360008301526133ba81612f7d565b9050919050565b600060208201905081810360008301526133da81612fa0565b9050919050565b600060208201905081810360008301526133fa81612fc3565b9050919050565b6000602082019050818103600083015261341a81612fe6565b9050919050565b6000602082019050818103600083015261343a81613009565b9050919050565b6000602082019050818103600083015261345a8161302c565b9050919050565b6000602082019050818103600083015261347a8161304f565b9050919050565b6000602082019050818103600083015261349a81613072565b9050919050565b600060208201905081810360008301526134ba81613095565b9050919050565b600060208201905081810360008301526134da816130b8565b9050919050565b600060208201905081810360008301526134fa816130db565b9050919050565b6000602082019050818103600083015261351a816130fe565b9050919050565b6000602082019050818103600083015261353a81613121565b9050919050565b6000602082019050818103600083015261355a81613144565b9050919050565b6000602082019050818103600083015261357a81613167565b9050919050565b6000602082019050818103600083015261359a8161318a565b9050919050565b600060208201905081810360008301526135ba816131ad565b9050919050565b600060208201905081810360008301526135da816131d0565b9050919050565b600060208201905081810360008301526135fa816131f3565b9050919050565b6000602082019050818103600083015261361a81613216565b9050919050565b60006020820190506136366000830184613248565b92915050565b6000613646613657565b9050613652828261393c565b919050565b6000604051905090565b600067ffffffffffffffff82111561367c5761367b613a74565b5b61368582613aa3565b9050602081019050919050565b600067ffffffffffffffff8211156136ad576136ac613a74565b5b6136b682613aa3565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061374a826138be565b9150613755836138be565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561378a576137896139e7565b5b828201905092915050565b60006137a0826138be565b91506137ab836138be565b9250826137bb576137ba613a16565b5b828204905092915050565b60006137d1826138be565b91506137dc836138be565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613815576138146139e7565b5b828202905092915050565b600061382b826138be565b9150613836836138be565b925082821015613849576138486139e7565b5b828203905092915050565b600061385f8261389e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138f55780820151818401526020810190506138da565b83811115613904576000848401525b50505050565b6000600282049050600182168061392257607f821691505b6020821081141561393657613935613a45565b5b50919050565b61394582613aa3565b810181811067ffffffffffffffff8211171561396457613963613a74565b5b80604052505050565b6000613978826138be565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139ab576139aa6139e7565b5b600182019050919050565b60006139c1826138be565b91506139cc836138be565b9250826139dc576139db613a16565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5061757365000000000000000000000000000000000000000000000000000000600082015250565b7f4d6178206c696d69740000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f53616c6520656e64000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4578636565647320350000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f56616c75652062656c6f77207072696365000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61408081613854565b811461408b57600080fd5b50565b61409781613866565b81146140a257600080fd5b50565b6140ae81613872565b81146140b957600080fd5b50565b6140c5816138be565b81146140d057600080fd5b5056fea2646970667358221220c74a08ad3a6a6b1034df0becbef19d559bd2259980e4584afa34fd7347b262f664736f6c634300080400330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002368747470733a2f2f6d79626162797069636b6c652e636f6d2f6170692f7069636b6c650000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061019c5760003560e01c80635c975abb116100ec578063a22cb4651161008a578063d1d2345011610064578063d1d23450146105dd578063d5f0494a146105f9578063e985e9c514610624578063f2fde38b146106615761019c565b8063a22cb4651461054e578063b88d4fde14610577578063c87b56dd146105a05761019c565b8063715018a6116100c6578063715018a6146104d7578063853828b6146104ee5780638da5cb5b146104f857806395d89b41146105235761019c565b80635c975abb146104325780636352211e1461045d57806370a082311461049a5761019c565b806323b872dd1161015957806342842e0e1161013357806342842e0e14610366578063438b63001461038f5780634f6ccce7146103cc57806355f804b3146104095761019c565b806323b872dd146102c357806326a49e37146102ec5780632f745c59146103295761019c565b806301ffc9a7146101a157806302329a29146101de57806306fdde0314610207578063081812fc14610232578063095ea7b31461026f57806318160ddd14610298575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612d21565b61068a565b6040516101d59190613304565b60405180910390f35b3480156101ea57600080fd5b5061020560048036038101906102009190612cf8565b610704565b005b34801561021357600080fd5b5061021c61079d565b604051610229919061331f565b60405180910390f35b34801561023e57600080fd5b5061025960048036038101906102549190612db4565b61082f565b604051610266919061327b565b60405180910390f35b34801561027b57600080fd5b5061029660048036038101906102919190612cbc565b6108b4565b005b3480156102a457600080fd5b506102ad6109cc565b6040516102ba9190613621565b60405180910390f35b3480156102cf57600080fd5b506102ea60048036038101906102e59190612bb6565b6109d9565b005b3480156102f857600080fd5b50610313600480360381019061030e9190612db4565b610a39565b6040516103209190613621565b60405180910390f35b34801561033557600080fd5b50610350600480360381019061034b9190612cbc565b610a75565b60405161035d9190613621565b60405180910390f35b34801561037257600080fd5b5061038d60048036038101906103889190612bb6565b610b1a565b005b34801561039b57600080fd5b506103b660048036038101906103b19190612b51565b610b3a565b6040516103c391906132e2565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee9190612db4565b610c34565b6040516104009190613621565b60405180910390f35b34801561041557600080fd5b50610430600480360381019061042b9190612d73565b610ccb565b005b34801561043e57600080fd5b50610447610d61565b6040516104549190613304565b60405180910390f35b34801561046957600080fd5b50610484600480360381019061047f9190612db4565b610d74565b604051610491919061327b565b60405180910390f35b3480156104a657600080fd5b506104c160048036038101906104bc9190612b51565b610e26565b6040516104ce9190613621565b60405180910390f35b3480156104e357600080fd5b506104ec610ede565b005b6104f661101b565b005b34801561050457600080fd5b5061050d6110de565b60405161051a919061327b565b60405180910390f35b34801561052f57600080fd5b50610538611108565b604051610545919061331f565b60405180910390f35b34801561055a57600080fd5b5061057560048036038101906105709190612c80565b61119a565b005b34801561058357600080fd5b5061059e60048036038101906105999190612c05565b61131b565b005b3480156105ac57600080fd5b506105c760048036038101906105c29190612db4565b61137d565b6040516105d4919061331f565b60405180910390f35b6105f760048036038101906105f29190612cbc565b611424565b005b34801561060557600080fd5b5061060e61165f565b60405161061b9190613621565b60405180910390f35b34801561063057600080fd5b5061064b60048036038101906106469190612b7a565b611665565b6040516106589190613304565b60405180910390f35b34801561066d57600080fd5b5061068860048036038101906106839190612b51565b6116f9565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106fd57506106fc826118a5565b5b9050919050565b61070c611987565b73ffffffffffffffffffffffffffffffffffffffff1661072a6110de565b73ffffffffffffffffffffffffffffffffffffffff1614610780576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077790613541565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b6060600080546107ac9061390a565b80601f01602080910402602001604051908101604052809291908181526020018280546107d89061390a565b80156108255780601f106107fa57610100808354040283529160200191610825565b820191906000526020600020905b81548152906001019060200180831161080857829003601f168201915b5050505050905090565b600061083a8261198f565b610879576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087090613501565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108bf82610d74565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610930576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610927906135c1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661094f611987565b73ffffffffffffffffffffffffffffffffffffffff16148061097e575061097d81610978611987565b611665565b5b6109bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b490613461565b60405180910390fd5b6109c783836119fb565b505050565b6000600880549050905090565b6109ea6109e4611987565b82611ab4565b610a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a20906135e1565b60405180910390fd5b610a34838383611b92565b505050565b600080610a446109cc565b90506107d08111610a59576000915050610a70565b82662386f26fc10000610a6c91906137c6565b9150505b919050565b6000610a8083610e26565b8210610ac1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab890613341565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b358383836040518060200160405280600081525061131b565b505050565b60606000610b4783610e26565b905060008167ffffffffffffffff811115610b8b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610bb95781602001602082028036833780820191505090505b50905060005b82811015610c2957610bd18582610a75565b828281518110610c0a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610c219061396d565b915050610bbf565b508092505050919050565b6000610c3e6109cc565b8210610c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7690613601565b60405180910390fd5b60088281548110610cb9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610cd3611987565b73ffffffffffffffffffffffffffffffffffffffff16610cf16110de565b73ffffffffffffffffffffffffffffffffffffffff1614610d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3e90613541565b60405180910390fd5b80600b9080519060200190610d5d929190612975565b5050565b600c60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e14906134a1565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8e90613481565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ee6611987565b73ffffffffffffffffffffffffffffffffffffffff16610f046110de565b73ffffffffffffffffffffffffffffffffffffffff1614610f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5190613541565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611023611987565b73ffffffffffffffffffffffffffffffffffffffff166110416110de565b73ffffffffffffffffffffffffffffffffffffffff1614611097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108e90613541565b60405180910390fd5b61109f611987565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050506110dc57600080fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546111179061390a565b80601f01602080910402602001604051908101604052809291908181526020018280546111439061390a565b80156111905780601f1061116557610100808354040283529160200191611190565b820191906000526020600020905b81548152906001019060200180831161117357829003601f168201915b5050505050905090565b6111a2611987565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611210576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611207906133e1565b60405180910390fd5b806005600061121d611987565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112ca611987565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161130f9190613304565b60405180910390a35050565b61132c611326611987565b83611ab4565b61136b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611362906135e1565b60405180910390fd5b61137784848484611dee565b50505050565b60606113888261198f565b6113c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113be90613581565b60405180910390fd5b60006113d1611e4a565b905060008151116113f1576040518060200160405280600081525061141c565b806113fb84611edc565b60405160200161140c929190613257565b6040516020818303038152906040525b915050919050565b61271061142f6109cc565b1061146f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611466906134e1565b60405180910390fd5b6114776110de565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461153e57600c60009054906101000a900460ff16156114f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f090613401565b60405180910390fd5b600581111561153d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153490613521565b60405180910390fd5b5b6127108161154a6109cc565b611554919061373f565b1115611595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158c90613421565b60405180910390fd5b6127106115a06109cc565b106115e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d7906134e1565b60405180910390fd5b6115e981610a39565b34101561162b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611622906135a1565b60405180910390fd5b60005b8181101561165a57611647836116426109cc565b612089565b80806116529061396d565b91505061162e565b505050565b61271081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611701611987565b73ffffffffffffffffffffffffffffffffffffffff1661171f6110de565b73ffffffffffffffffffffffffffffffffffffffff1614611775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176c90613541565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dc90613381565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061197057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611980575061197f826120a7565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a6e83610d74565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611abf8261198f565b611afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af590613441565b60405180910390fd5b6000611b0983610d74565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b7857508373ffffffffffffffffffffffffffffffffffffffff16611b608461082f565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b895750611b888185611665565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611bb282610d74565b73ffffffffffffffffffffffffffffffffffffffff1614611c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bff90613561565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6f906133c1565b60405180910390fd5b611c83838383612111565b611c8e6000826119fb565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cde9190613820565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d35919061373f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611df9848484611b92565b611e0584848484612225565b611e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3b90613361565b60405180910390fd5b50505050565b6060600b8054611e599061390a565b80601f0160208091040260200160405190810160405280929190818152602001828054611e859061390a565b8015611ed25780601f10611ea757610100808354040283529160200191611ed2565b820191906000526020600020905b815481529060010190602001808311611eb557829003601f168201915b5050505050905090565b60606000821415611f24576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612084565b600082905060005b60008214611f56578080611f3f9061396d565b915050600a82611f4f9190613795565b9150611f2c565b60008167ffffffffffffffff811115611f98577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611fca5781602001600182028036833780820191505090505b5090505b6000851461207d57600182611fe39190613820565b9150600a85611ff291906139b6565b6030611ffe919061373f565b60f81b81838151811061203a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120769190613795565b9450611fce565b8093505050505b919050565b6120a38282604051806020016040528060008152506123bc565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61211c838383612417565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561215f5761215a8161241c565b61219e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461219d5761219c8382612465565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121e1576121dc816125d2565b612220565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461221f5761221e8282612715565b5b5b505050565b60006122468473ffffffffffffffffffffffffffffffffffffffff16612794565b156123af578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261226f611987565b8786866040518563ffffffff1660e01b81526004016122919493929190613296565b602060405180830381600087803b1580156122ab57600080fd5b505af19250505080156122dc57506040513d601f19601f820116820180604052508101906122d99190612d4a565b60015b61235f573d806000811461230c576040519150601f19603f3d011682016040523d82523d6000602084013e612311565b606091505b50600081511415612357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234e90613361565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506123b4565b600190505b949350505050565b6123c683836127a7565b6123d36000848484612225565b612412576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240990613361565b60405180910390fd5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161247284610e26565b61247c9190613820565b9050600060076000848152602001908152602001600020549050818114612561576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506125e69190613820565b905060006009600084815260200190815260200160002054905060006008838154811061263c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612684577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806126f9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061272083610e26565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612817576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280e906134c1565b60405180910390fd5b6128208161198f565b15612860576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612857906133a1565b60405180910390fd5b61286c60008383612111565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128bc919061373f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546129819061390a565b90600052602060002090601f0160209004810192826129a357600085556129ea565b82601f106129bc57805160ff19168380011785556129ea565b828001600101855582156129ea579182015b828111156129e95782518255916020019190600101906129ce565b5b5090506129f791906129fb565b5090565b5b80821115612a145760008160009055506001016129fc565b5090565b6000612a2b612a2684613661565b61363c565b905082815260208101848484011115612a4357600080fd5b612a4e8482856138c8565b509392505050565b6000612a69612a6484613692565b61363c565b905082815260208101848484011115612a8157600080fd5b612a8c8482856138c8565b509392505050565b600081359050612aa381614077565b92915050565b600081359050612ab88161408e565b92915050565b600081359050612acd816140a5565b92915050565b600081519050612ae2816140a5565b92915050565b600082601f830112612af957600080fd5b8135612b09848260208601612a18565b91505092915050565b600082601f830112612b2357600080fd5b8135612b33848260208601612a56565b91505092915050565b600081359050612b4b816140bc565b92915050565b600060208284031215612b6357600080fd5b6000612b7184828501612a94565b91505092915050565b60008060408385031215612b8d57600080fd5b6000612b9b85828601612a94565b9250506020612bac85828601612a94565b9150509250929050565b600080600060608486031215612bcb57600080fd5b6000612bd986828701612a94565b9350506020612bea86828701612a94565b9250506040612bfb86828701612b3c565b9150509250925092565b60008060008060808587031215612c1b57600080fd5b6000612c2987828801612a94565b9450506020612c3a87828801612a94565b9350506040612c4b87828801612b3c565b925050606085013567ffffffffffffffff811115612c6857600080fd5b612c7487828801612ae8565b91505092959194509250565b60008060408385031215612c9357600080fd5b6000612ca185828601612a94565b9250506020612cb285828601612aa9565b9150509250929050565b60008060408385031215612ccf57600080fd5b6000612cdd85828601612a94565b9250506020612cee85828601612b3c565b9150509250929050565b600060208284031215612d0a57600080fd5b6000612d1884828501612aa9565b91505092915050565b600060208284031215612d3357600080fd5b6000612d4184828501612abe565b91505092915050565b600060208284031215612d5c57600080fd5b6000612d6a84828501612ad3565b91505092915050565b600060208284031215612d8557600080fd5b600082013567ffffffffffffffff811115612d9f57600080fd5b612dab84828501612b12565b91505092915050565b600060208284031215612dc657600080fd5b6000612dd484828501612b3c565b91505092915050565b6000612de98383613239565b60208301905092915050565b612dfe81613854565b82525050565b6000612e0f826136d3565b612e198185613701565b9350612e24836136c3565b8060005b83811015612e55578151612e3c8882612ddd565b9750612e47836136f4565b925050600181019050612e28565b5085935050505092915050565b612e6b81613866565b82525050565b6000612e7c826136de565b612e868185613712565b9350612e968185602086016138d7565b612e9f81613aa3565b840191505092915050565b6000612eb5826136e9565b612ebf8185613723565b9350612ecf8185602086016138d7565b612ed881613aa3565b840191505092915050565b6000612eee826136e9565b612ef88185613734565b9350612f088185602086016138d7565b80840191505092915050565b6000612f21602b83613723565b9150612f2c82613ab4565b604082019050919050565b6000612f44603283613723565b9150612f4f82613b03565b604082019050919050565b6000612f67602683613723565b9150612f7282613b52565b604082019050919050565b6000612f8a601c83613723565b9150612f9582613ba1565b602082019050919050565b6000612fad602483613723565b9150612fb882613bca565b604082019050919050565b6000612fd0601983613723565b9150612fdb82613c19565b602082019050919050565b6000612ff3600583613723565b9150612ffe82613c42565b602082019050919050565b6000613016600983613723565b915061302182613c6b565b602082019050919050565b6000613039602c83613723565b915061304482613c94565b604082019050919050565b600061305c603883613723565b915061306782613ce3565b604082019050919050565b600061307f602a83613723565b915061308a82613d32565b604082019050919050565b60006130a2602983613723565b91506130ad82613d81565b604082019050919050565b60006130c5602083613723565b91506130d082613dd0565b602082019050919050565b60006130e8600883613723565b91506130f382613df9565b602082019050919050565b600061310b602c83613723565b915061311682613e22565b604082019050919050565b600061312e600983613723565b915061313982613e71565b602082019050919050565b6000613151602083613723565b915061315c82613e9a565b602082019050919050565b6000613174602983613723565b915061317f82613ec3565b604082019050919050565b6000613197602f83613723565b91506131a282613f12565b604082019050919050565b60006131ba601183613723565b91506131c582613f61565b602082019050919050565b60006131dd602183613723565b91506131e882613f8a565b604082019050919050565b6000613200603183613723565b915061320b82613fd9565b604082019050919050565b6000613223602c83613723565b915061322e82614028565b604082019050919050565b613242816138be565b82525050565b613251816138be565b82525050565b60006132638285612ee3565b915061326f8284612ee3565b91508190509392505050565b60006020820190506132906000830184612df5565b92915050565b60006080820190506132ab6000830187612df5565b6132b86020830186612df5565b6132c56040830185613248565b81810360608301526132d78184612e71565b905095945050505050565b600060208201905081810360008301526132fc8184612e04565b905092915050565b60006020820190506133196000830184612e62565b92915050565b600060208201905081810360008301526133398184612eaa565b905092915050565b6000602082019050818103600083015261335a81612f14565b9050919050565b6000602082019050818103600083015261337a81612f37565b9050919050565b6000602082019050818103600083015261339a81612f5a565b9050919050565b600060208201905081810360008301526133ba81612f7d565b9050919050565b600060208201905081810360008301526133da81612fa0565b9050919050565b600060208201905081810360008301526133fa81612fc3565b9050919050565b6000602082019050818103600083015261341a81612fe6565b9050919050565b6000602082019050818103600083015261343a81613009565b9050919050565b6000602082019050818103600083015261345a8161302c565b9050919050565b6000602082019050818103600083015261347a8161304f565b9050919050565b6000602082019050818103600083015261349a81613072565b9050919050565b600060208201905081810360008301526134ba81613095565b9050919050565b600060208201905081810360008301526134da816130b8565b9050919050565b600060208201905081810360008301526134fa816130db565b9050919050565b6000602082019050818103600083015261351a816130fe565b9050919050565b6000602082019050818103600083015261353a81613121565b9050919050565b6000602082019050818103600083015261355a81613144565b9050919050565b6000602082019050818103600083015261357a81613167565b9050919050565b6000602082019050818103600083015261359a8161318a565b9050919050565b600060208201905081810360008301526135ba816131ad565b9050919050565b600060208201905081810360008301526135da816131d0565b9050919050565b600060208201905081810360008301526135fa816131f3565b9050919050565b6000602082019050818103600083015261361a81613216565b9050919050565b60006020820190506136366000830184613248565b92915050565b6000613646613657565b9050613652828261393c565b919050565b6000604051905090565b600067ffffffffffffffff82111561367c5761367b613a74565b5b61368582613aa3565b9050602081019050919050565b600067ffffffffffffffff8211156136ad576136ac613a74565b5b6136b682613aa3565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061374a826138be565b9150613755836138be565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561378a576137896139e7565b5b828201905092915050565b60006137a0826138be565b91506137ab836138be565b9250826137bb576137ba613a16565b5b828204905092915050565b60006137d1826138be565b91506137dc836138be565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613815576138146139e7565b5b828202905092915050565b600061382b826138be565b9150613836836138be565b925082821015613849576138486139e7565b5b828203905092915050565b600061385f8261389e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138f55780820151818401526020810190506138da565b83811115613904576000848401525b50505050565b6000600282049050600182168061392257607f821691505b6020821081141561393657613935613a45565b5b50919050565b61394582613aa3565b810181811067ffffffffffffffff8211171561396457613963613a74565b5b80604052505050565b6000613978826138be565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139ab576139aa6139e7565b5b600182019050919050565b60006139c1826138be565b91506139cc836138be565b9250826139dc576139db613a16565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5061757365000000000000000000000000000000000000000000000000000000600082015250565b7f4d6178206c696d69740000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f53616c6520656e64000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4578636565647320350000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f56616c75652062656c6f77207072696365000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61408081613854565b811461408b57600080fd5b50565b61409781613866565b81146140a257600080fd5b50565b6140ae81613872565b81146140b957600080fd5b50565b6140c5816138be565b81146140d057600080fd5b5056fea2646970667358221220c74a08ad3a6a6b1034df0becbef19d559bd2259980e4584afa34fd7347b262f664736f6c63430008040033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002368747470733a2f2f6d79626162797069636b6c652e636f6d2f6170692f7069636b6c650000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://mybabypickle.com/api/pickle

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000023
Arg [2] : 68747470733a2f2f6d79626162797069636b6c652e636f6d2f6170692f706963
Arg [3] : 6b6c650000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

42823:1966:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34324:237;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44580:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21529:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22989:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22526:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34977:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23879:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43748:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34645:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24255:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44228:344;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35167:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44118:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42954:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21223:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20953:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42196:148;;;;;;;;;;;;;:::i;:::-;;44661:125;;;:::i;:::-;;41545:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21698:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23282:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24477:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21873:360;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43231:509;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42880:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23648:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42499:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34324:237;34426:4;34465:35;34450:50;;;:11;:50;;;;:103;;;;34517:36;34541:11;34517:23;:36::i;:::-;34450:103;34443:110;;34324:237;;;:::o;44580:73::-;41776:12;:10;:12::i;:::-;41765:23;;:7;:5;:7::i;:::-;:23;;;41757:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44642:3:::1;44633:6;;:12;;;;;;;;;;;;;;;;;;44580:73:::0;:::o;21529:100::-;21583:13;21616:5;21609:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21529:100;:::o;22989:221::-;23065:7;23093:16;23101:7;23093;:16::i;:::-;23085:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23178:15;:24;23194:7;23178:24;;;;;;;;;;;;;;;;;;;;;23171:31;;22989:221;;;:::o;22526:397::-;22607:13;22623:23;22638:7;22623:14;:23::i;:::-;22607:39;;22671:5;22665:11;;:2;:11;;;;22657:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22751:5;22735:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22760:37;22777:5;22784:12;:10;:12::i;:::-;22760:16;:37::i;:::-;22735:62;22727:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;22894:21;22903:2;22907:7;22894:8;:21::i;:::-;22526:397;;;:::o;34977:113::-;35038:7;35065:10;:17;;;;35058:24;;34977:113;:::o;23879:305::-;24040:41;24059:12;:10;:12::i;:::-;24073:7;24040:18;:41::i;:::-;24032:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24148:28;24158:4;24164:2;24168:7;24148:9;:28::i;:::-;23879:305;;;:::o;43748:242::-;43797:7;43817:8;43828:13;:11;:13::i;:::-;43817:24;;43884:4;43877:3;:11;43874:51;;43912:1;43905:8;;;;;43874:51;43964:6;43944:17;:26;;;;:::i;:::-;43937:33;;;43748:242;;;;:::o;34645:256::-;34742:7;34778:23;34795:5;34778:16;:23::i;:::-;34770:5;:31;34762:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;34867:12;:19;34880:5;34867:19;;;;;;;;;;;;;;;:26;34887:5;34867:26;;;;;;;;;;;;34860:33;;34645:256;;;;:::o;24255:151::-;24359:39;24376:4;24382:2;24386:7;24359:39;;;;;;;;;;;;:16;:39::i;:::-;24255:151;;;:::o;44228:344::-;44289:16;44318:15;44336:17;44346:6;44336:9;:17::i;:::-;44318:35;;44366:25;44408:10;44394:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44366:53;;44434:6;44430:107;44450:10;44446:1;:14;44430:107;;;44495:30;44515:6;44523:1;44495:19;:30::i;:::-;44481:8;44490:1;44481:11;;;;;;;;;;;;;;;;;;;;;:44;;;;;44462:3;;;;;:::i;:::-;;;;44430:107;;;;44556:8;44549:15;;;;44228:344;;;:::o;35167:233::-;35242:7;35278:30;:28;:30::i;:::-;35270:5;:38;35262:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35375:10;35386:5;35375:17;;;;;;;;;;;;;;;;;;;;;;;;35368:24;;35167:233;;;:::o;44118:102::-;41776:12;:10;:12::i;:::-;41765:23;;:7;:5;:7::i;:::-;:23;;;41757:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44205:7:::1;44189:13;:23;;;;;;;;;;;;:::i;:::-;;44118:102:::0;:::o;42954:25::-;;;;;;;;;;;;;:::o;21223:239::-;21295:7;21315:13;21331:7;:16;21339:7;21331:16;;;;;;;;;;;;;;;;;;;;;21315:32;;21383:1;21366:19;;:5;:19;;;;21358:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21449:5;21442:12;;;21223:239;;;:::o;20953:208::-;21025:7;21070:1;21053:19;;:5;:19;;;;21045:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21137:9;:16;21147:5;21137:16;;;;;;;;;;;;;;;;21130:23;;20953:208;;;:::o;42196:148::-;41776:12;:10;:12::i;:::-;41765:23;;:7;:5;:7::i;:::-;:23;;;41757:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42303:1:::1;42266:40;;42287:6;;;;;;;;;;;42266:40;;;;;;;;;;;;42334:1;42317:6;;:19;;;;;;;;;;;;;;;;;;42196:148::o:0;44661:125::-;41776:12;:10;:12::i;:::-;41765:23;;:7;:5;:7::i;:::-;:23;;;41757:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44736:12:::1;:10;:12::i;:::-;44728:26;;:49;44755:21;44728:49;;;;;;;;;;;;;;;;;;;;;;;44720:58;;;::::0;::::1;;44661:125::o:0;41545:87::-;41591:7;41618:6;;;;;;;;;;;41611:13;;41545:87;:::o;21698:104::-;21754:13;21787:7;21780:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21698:104;:::o;23282:295::-;23397:12;:10;:12::i;:::-;23385:24;;:8;:24;;;;23377:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23497:8;23452:18;:32;23471:12;:10;:12::i;:::-;23452:32;;;;;;;;;;;;;;;:42;23485:8;23452:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23550:8;23521:48;;23536:12;:10;:12::i;:::-;23521:48;;;23560:8;23521:48;;;;;;:::i;:::-;;;;;;;;23282:295;;:::o;24477:285::-;24609:41;24628:12;:10;:12::i;:::-;24642:7;24609:18;:41::i;:::-;24601:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24715:39;24729:4;24735:2;24739:7;24748:5;24715:13;:39::i;:::-;24477:285;;;;:::o;21873:360::-;21946:13;21980:16;21988:7;21980;:16::i;:::-;21972:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;22061:21;22085:10;:8;:10::i;:::-;22061:34;;22137:1;22119:7;22113:21;:25;:112;;;;;;;;;;;;;;;;;22178:7;22187:18;:7;:16;:18::i;:::-;22161:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22113:112;22106:119;;;21873:360;;;:::o;43231:509::-;42915:5;43163:13;:11;:13::i;:::-;:27;43155:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;43333:7:::1;:5;:7::i;:::-;43319:21;;:10;:21;;;43316:121;;43363:6;;;;;;;;;;;43362:7;43354:25;;;;;;;;;;;;:::i;:::-;;;;;;;;;43410:1;43400:6;:11;;43392:33;;;;;;;;;;;;:::i;:::-;;;;;;;;;43316:121;42915:5;43471:6;43455:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:37;;43447:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;42915:5;43525:13;:11;:13::i;:::-;:27;43517:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;43597:13;43603:6;43597:5;:13::i;:::-;43584:9;:26;;43576:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;43649:6;43645:88;43665:6;43661:1;:10;43645:88;;;43692:29;43702:3;43707:13;:11;:13::i;:::-;43692:9;:29::i;:::-;43673:3;;;;;:::i;:::-;;;;43645:88;;;;43231:509:::0;;:::o;42880:40::-;42915:5;42880:40;:::o;23648:164::-;23745:4;23769:18;:25;23788:5;23769:25;;;;;;;;;;;;;;;:35;23795:8;23769:35;;;;;;;;;;;;;;;;;;;;;;;;;23762:42;;23648:164;;;;:::o;42499:244::-;41776:12;:10;:12::i;:::-;41765:23;;:7;:5;:7::i;:::-;:23;;;41757:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42608:1:::1;42588:22;;:8;:22;;;;42580:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42698:8;42669:38;;42690:6;;;;;;;;;;;42669:38;;;;;;;;;;;;42727:8;42718:6;;:17;;;;;;;;;;;;;;;;;;42499:244:::0;:::o;20597:292::-;20699:4;20738:25;20723:40;;;:11;:40;;;;:105;;;;20795:33;20780:48;;;:11;:48;;;;20723:105;:158;;;;20845:36;20869:11;20845:23;:36::i;:::-;20723:158;20716:165;;20597:292;;;:::o;15885:98::-;15938:7;15965:10;15958:17;;15885:98;:::o;26229:127::-;26294:4;26346:1;26318:30;;:7;:16;26326:7;26318:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26311:37;;26229:127;;;:::o;30106:174::-;30208:2;30181:15;:24;30197:7;30181:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30264:7;30260:2;30226:46;;30235:23;30250:7;30235:14;:23::i;:::-;30226:46;;;;;;;;;;;;30106:174;;:::o;26523:348::-;26616:4;26641:16;26649:7;26641;:16::i;:::-;26633:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26717:13;26733:23;26748:7;26733:14;:23::i;:::-;26717:39;;26786:5;26775:16;;:7;:16;;;:51;;;;26819:7;26795:31;;:20;26807:7;26795:11;:20::i;:::-;:31;;;26775:51;:87;;;;26830:32;26847:5;26854:7;26830:16;:32::i;:::-;26775:87;26767:96;;;26523:348;;;;:::o;29444:544::-;29569:4;29542:31;;:23;29557:7;29542:14;:23::i;:::-;:31;;;29534:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29652:1;29638:16;;:2;:16;;;;29630:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29708:39;29729:4;29735:2;29739:7;29708:20;:39::i;:::-;29812:29;29829:1;29833:7;29812:8;:29::i;:::-;29873:1;29854:9;:15;29864:4;29854:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;29902:1;29885:9;:13;29895:2;29885:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29933:2;29914:7;:16;29922:7;29914:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29972:7;29968:2;29953:27;;29962:4;29953:27;;;;;;;;;;;;29444:544;;;:::o;25644:272::-;25758:28;25768:4;25774:2;25778:7;25758:9;:28::i;:::-;25805:48;25828:4;25834:2;25838:7;25847:5;25805:22;:48::i;:::-;25797:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25644:272;;;;:::o;43998:114::-;44058:13;44091;44084:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43998:114;:::o;16540:723::-;16596:13;16826:1;16817:5;:10;16813:53;;;16844:10;;;;;;;;;;;;;;;;;;;;;16813:53;16876:12;16891:5;16876:20;;16907:14;16932:78;16947:1;16939:4;:9;16932:78;;16965:8;;;;;:::i;:::-;;;;16996:2;16988:10;;;;;:::i;:::-;;;16932:78;;;17020:19;17052:6;17042:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17020:39;;17070:154;17086:1;17077:5;:10;17070:154;;17114:1;17104:11;;;;;:::i;:::-;;;17181:2;17173:5;:10;;;;:::i;:::-;17160:2;:24;;;;:::i;:::-;17147:39;;17130:6;17137;17130:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;17210:2;17201:11;;;;;:::i;:::-;;;17070:154;;;17248:6;17234:21;;;;;16540:723;;;;:::o;27213:110::-;27289:26;27299:2;27303:7;27289:26;;;;;;;;;;;;:9;:26::i;:::-;27213:110;;:::o;19095:157::-;19180:4;19219:25;19204:40;;;:11;:40;;;;19197:47;;19095:157;;;:::o;36013:555::-;36123:45;36150:4;36156:2;36160:7;36123:26;:45::i;:::-;36201:1;36185:18;;:4;:18;;;36181:187;;;36220:40;36252:7;36220:31;:40::i;:::-;36181:187;;;36290:2;36282:10;;:4;:10;;;36278:90;;36309:47;36342:4;36348:7;36309:32;:47::i;:::-;36278:90;36181:187;36396:1;36382:16;;:2;:16;;;36378:183;;;36415:45;36452:7;36415:36;:45::i;:::-;36378:183;;;36488:4;36482:10;;:2;:10;;;36478:83;;36509:40;36537:2;36541:7;36509:27;:40::i;:::-;36478:83;36378:183;36013:555;;;:::o;30845:843::-;30966:4;30992:15;:2;:13;;;:15::i;:::-;30988:693;;;31044:2;31028:36;;;31065:12;:10;:12::i;:::-;31079:4;31085:7;31094:5;31028:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31024:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31291:1;31274:6;:13;:18;31270:341;;;31317:60;;;;;;;;;;:::i;:::-;;;;;;;;31270:341;31561:6;31555:13;31546:6;31542:2;31538:15;31531:38;31024:602;31161:45;;;31151:55;;;:6;:55;;;;31144:62;;;;;30988:693;31665:4;31658:11;;30845:843;;;;;;;:::o;27550:250::-;27646:18;27652:2;27656:7;27646:5;:18::i;:::-;27683:54;27714:1;27718:2;27722:7;27731:5;27683:22;:54::i;:::-;27675:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;27550:250;;;:::o;32301:93::-;;;;:::o;37291:164::-;37395:10;:17;;;;37368:15;:24;37384:7;37368:24;;;;;;;;;;;:44;;;;37423:10;37439:7;37423:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37291:164;:::o;38082:988::-;38348:22;38398:1;38373:22;38390:4;38373:16;:22::i;:::-;:26;;;;:::i;:::-;38348:51;;38410:18;38431:17;:26;38449:7;38431:26;;;;;;;;;;;;38410:47;;38578:14;38564:10;:28;38560:328;;38609:19;38631:12;:18;38644:4;38631:18;;;;;;;;;;;;;;;:34;38650:14;38631:34;;;;;;;;;;;;38609:56;;38715:11;38682:12;:18;38695:4;38682:18;;;;;;;;;;;;;;;:30;38701:10;38682:30;;;;;;;;;;;:44;;;;38832:10;38799:17;:30;38817:11;38799:30;;;;;;;;;;;:43;;;;38560:328;;38984:17;:26;39002:7;38984:26;;;;;;;;;;;38977:33;;;39028:12;:18;39041:4;39028:18;;;;;;;;;;;;;;;:34;39047:14;39028:34;;;;;;;;;;;39021:41;;;38082:988;;;;:::o;39365:1079::-;39618:22;39663:1;39643:10;:17;;;;:21;;;;:::i;:::-;39618:46;;39675:18;39696:15;:24;39712:7;39696:24;;;;;;;;;;;;39675:45;;40047:19;40069:10;40080:14;40069:26;;;;;;;;;;;;;;;;;;;;;;;;40047:48;;40133:11;40108:10;40119;40108:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;40244:10;40213:15;:28;40229:11;40213:28;;;;;;;;;;;:41;;;;40385:15;:24;40401:7;40385:24;;;;;;;;;;;40378:31;;;40420:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39365:1079;;;;:::o;36869:221::-;36954:14;36971:20;36988:2;36971:16;:20::i;:::-;36954:37;;37029:7;37002:12;:16;37015:2;37002:16;;;;;;;;;;;;;;;:24;37019:6;37002:24;;;;;;;;;;;:34;;;;37076:6;37047:17;:26;37065:7;37047:26;;;;;;;;;;;:35;;;;36869:221;;;:::o;8002:422::-;8062:4;8270:12;8381:7;8369:20;8361:28;;8415:1;8408:4;:8;8401:15;;;8002:422;;;:::o;28136:382::-;28230:1;28216:16;;:2;:16;;;;28208:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28289:16;28297:7;28289;:16::i;:::-;28288:17;28280:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28351:45;28380:1;28384:2;28388:7;28351:20;:45::i;:::-;28426:1;28409:9;:13;28419:2;28409:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28457:2;28438:7;:16;28446:7;28438:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28502:7;28498:2;28477:33;;28494:1;28477:33;;;;;;;;;;;;28136:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343: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:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:256::-;4939:6;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:50;5114:7;5105:6;5094:9;5090:22;5072:50;:::i;:::-;5062:60;;5018:114;4946:193;;;;:::o;5145:260::-;5203:6;5252:2;5240:9;5231:7;5227:23;5223:32;5220:2;;;5268:1;5265;5258:12;5220:2;5311:1;5336:52;5380:7;5371:6;5360:9;5356:22;5336:52;:::i;:::-;5326:62;;5282:116;5210:195;;;;:::o;5411:282::-;5480:6;5529:2;5517:9;5508:7;5504:23;5500:32;5497:2;;;5545:1;5542;5535:12;5497:2;5588:1;5613:63;5668:7;5659:6;5648:9;5644:22;5613:63;:::i;:::-;5603:73;;5559:127;5487:206;;;;:::o;5699:375::-;5768:6;5817:2;5805:9;5796:7;5792:23;5788:32;5785:2;;;5833:1;5830;5823:12;5785:2;5904:1;5893:9;5889:17;5876:31;5934:18;5926:6;5923:30;5920:2;;;5966:1;5963;5956:12;5920:2;5994:63;6049:7;6040:6;6029:9;6025:22;5994:63;:::i;:::-;5984:73;;5847:220;5775:299;;;;:::o;6080:262::-;6139:6;6188:2;6176:9;6167:7;6163:23;6159:32;6156:2;;;6204:1;6201;6194:12;6156:2;6247:1;6272:53;6317:7;6308:6;6297:9;6293:22;6272:53;:::i;:::-;6262:63;;6218:117;6146:196;;;;:::o;6348:179::-;6417:10;6438:46;6480:3;6472:6;6438:46;:::i;:::-;6516:4;6511:3;6507:14;6493:28;;6428:99;;;;:::o;6533:118::-;6620:24;6638:5;6620:24;:::i;:::-;6615:3;6608:37;6598:53;;:::o;6687:732::-;6806:3;6835:54;6883:5;6835:54;:::i;:::-;6905:86;6984:6;6979:3;6905:86;:::i;:::-;6898:93;;7015:56;7065:5;7015:56;:::i;:::-;7094:7;7125:1;7110:284;7135:6;7132:1;7129:13;7110:284;;;7211:6;7205:13;7238:63;7297:3;7282:13;7238:63;:::i;:::-;7231:70;;7324:60;7377:6;7324:60;:::i;:::-;7314:70;;7170:224;7157:1;7154;7150:9;7145:14;;7110:284;;;7114:14;7410:3;7403:10;;6811:608;;;;;;;:::o;7425:109::-;7506:21;7521:5;7506:21;:::i;:::-;7501:3;7494:34;7484:50;;:::o;7540:360::-;7626:3;7654:38;7686:5;7654:38;:::i;:::-;7708:70;7771:6;7766:3;7708:70;:::i;:::-;7701:77;;7787:52;7832:6;7827:3;7820:4;7813:5;7809:16;7787:52;:::i;:::-;7864:29;7886:6;7864:29;:::i;:::-;7859:3;7855:39;7848:46;;7630:270;;;;;:::o;7906:364::-;7994:3;8022:39;8055:5;8022:39;:::i;:::-;8077:71;8141:6;8136:3;8077:71;:::i;:::-;8070:78;;8157:52;8202:6;8197:3;8190:4;8183:5;8179:16;8157:52;:::i;:::-;8234:29;8256:6;8234:29;:::i;:::-;8229:3;8225:39;8218:46;;7998:272;;;;;:::o;8276:377::-;8382:3;8410:39;8443:5;8410:39;:::i;:::-;8465:89;8547:6;8542:3;8465:89;:::i;:::-;8458:96;;8563:52;8608:6;8603:3;8596:4;8589:5;8585:16;8563:52;:::i;:::-;8640:6;8635:3;8631:16;8624:23;;8386:267;;;;;:::o;8659:366::-;8801:3;8822:67;8886:2;8881:3;8822:67;:::i;:::-;8815:74;;8898:93;8987:3;8898:93;:::i;:::-;9016:2;9011:3;9007:12;9000:19;;8805:220;;;:::o;9031:366::-;9173:3;9194:67;9258:2;9253:3;9194:67;:::i;:::-;9187:74;;9270:93;9359:3;9270:93;:::i;:::-;9388:2;9383:3;9379:12;9372:19;;9177:220;;;:::o;9403:366::-;9545:3;9566:67;9630:2;9625:3;9566:67;:::i;:::-;9559:74;;9642:93;9731:3;9642:93;:::i;:::-;9760:2;9755:3;9751:12;9744:19;;9549:220;;;:::o;9775:366::-;9917:3;9938:67;10002:2;9997:3;9938:67;:::i;:::-;9931:74;;10014:93;10103:3;10014:93;:::i;:::-;10132:2;10127:3;10123:12;10116:19;;9921:220;;;:::o;10147:366::-;10289:3;10310:67;10374:2;10369:3;10310:67;:::i;:::-;10303:74;;10386:93;10475:3;10386:93;:::i;:::-;10504:2;10499:3;10495:12;10488:19;;10293:220;;;:::o;10519:366::-;10661:3;10682:67;10746:2;10741:3;10682:67;:::i;:::-;10675:74;;10758:93;10847:3;10758:93;:::i;:::-;10876:2;10871:3;10867:12;10860:19;;10665:220;;;:::o;10891:365::-;11033:3;11054:66;11118:1;11113:3;11054:66;:::i;:::-;11047:73;;11129:93;11218:3;11129:93;:::i;:::-;11247:2;11242:3;11238:12;11231:19;;11037:219;;;:::o;11262:365::-;11404:3;11425:66;11489:1;11484:3;11425:66;:::i;:::-;11418:73;;11500:93;11589:3;11500:93;:::i;:::-;11618:2;11613:3;11609:12;11602:19;;11408:219;;;:::o;11633:366::-;11775:3;11796:67;11860:2;11855:3;11796:67;:::i;:::-;11789:74;;11872:93;11961:3;11872:93;:::i;:::-;11990:2;11985:3;11981:12;11974:19;;11779:220;;;:::o;12005:366::-;12147:3;12168:67;12232:2;12227:3;12168:67;:::i;:::-;12161:74;;12244:93;12333:3;12244:93;:::i;:::-;12362:2;12357:3;12353:12;12346:19;;12151:220;;;:::o;12377:366::-;12519:3;12540:67;12604:2;12599:3;12540:67;:::i;:::-;12533:74;;12616:93;12705:3;12616:93;:::i;:::-;12734:2;12729:3;12725:12;12718:19;;12523:220;;;:::o;12749:366::-;12891:3;12912:67;12976:2;12971:3;12912:67;:::i;:::-;12905:74;;12988:93;13077:3;12988:93;:::i;:::-;13106:2;13101:3;13097:12;13090:19;;12895:220;;;:::o;13121:366::-;13263:3;13284:67;13348:2;13343:3;13284:67;:::i;:::-;13277:74;;13360:93;13449:3;13360:93;:::i;:::-;13478:2;13473:3;13469:12;13462:19;;13267:220;;;:::o;13493:365::-;13635:3;13656:66;13720:1;13715:3;13656:66;:::i;:::-;13649:73;;13731:93;13820:3;13731:93;:::i;:::-;13849:2;13844:3;13840:12;13833:19;;13639:219;;;:::o;13864:366::-;14006:3;14027:67;14091:2;14086:3;14027:67;:::i;:::-;14020:74;;14103:93;14192:3;14103:93;:::i;:::-;14221:2;14216:3;14212:12;14205:19;;14010:220;;;:::o;14236:365::-;14378:3;14399:66;14463:1;14458:3;14399:66;:::i;:::-;14392:73;;14474:93;14563:3;14474:93;:::i;:::-;14592:2;14587:3;14583:12;14576:19;;14382:219;;;:::o;14607:366::-;14749:3;14770:67;14834:2;14829:3;14770:67;:::i;:::-;14763:74;;14846:93;14935:3;14846:93;:::i;:::-;14964:2;14959:3;14955:12;14948:19;;14753:220;;;:::o;14979:366::-;15121:3;15142:67;15206:2;15201:3;15142:67;:::i;:::-;15135:74;;15218:93;15307:3;15218:93;:::i;:::-;15336:2;15331:3;15327:12;15320:19;;15125:220;;;:::o;15351:366::-;15493:3;15514:67;15578:2;15573:3;15514:67;:::i;:::-;15507:74;;15590:93;15679:3;15590:93;:::i;:::-;15708:2;15703:3;15699:12;15692:19;;15497:220;;;:::o;15723:366::-;15865:3;15886:67;15950:2;15945:3;15886:67;:::i;:::-;15879:74;;15962:93;16051:3;15962:93;:::i;:::-;16080:2;16075:3;16071:12;16064:19;;15869:220;;;:::o;16095:366::-;16237:3;16258:67;16322:2;16317:3;16258:67;:::i;:::-;16251:74;;16334:93;16423:3;16334:93;:::i;:::-;16452:2;16447:3;16443:12;16436:19;;16241:220;;;:::o;16467:366::-;16609:3;16630:67;16694:2;16689:3;16630:67;:::i;:::-;16623:74;;16706:93;16795:3;16706:93;:::i;:::-;16824:2;16819:3;16815:12;16808:19;;16613:220;;;:::o;16839:366::-;16981:3;17002:67;17066:2;17061:3;17002:67;:::i;:::-;16995:74;;17078:93;17167:3;17078:93;:::i;:::-;17196:2;17191:3;17187:12;17180:19;;16985:220;;;:::o;17211:108::-;17288:24;17306:5;17288:24;:::i;:::-;17283:3;17276:37;17266:53;;:::o;17325:118::-;17412:24;17430:5;17412:24;:::i;:::-;17407:3;17400:37;17390:53;;:::o;17449:435::-;17629:3;17651:95;17742:3;17733:6;17651:95;:::i;:::-;17644:102;;17763:95;17854:3;17845:6;17763:95;:::i;:::-;17756:102;;17875:3;17868:10;;17633:251;;;;;:::o;17890:222::-;17983:4;18021:2;18010:9;18006:18;17998:26;;18034:71;18102:1;18091:9;18087:17;18078:6;18034:71;:::i;:::-;17988:124;;;;:::o;18118:640::-;18313:4;18351:3;18340:9;18336:19;18328:27;;18365:71;18433:1;18422:9;18418:17;18409:6;18365:71;:::i;:::-;18446:72;18514:2;18503:9;18499:18;18490:6;18446:72;:::i;:::-;18528;18596:2;18585:9;18581:18;18572:6;18528:72;:::i;:::-;18647:9;18641:4;18637:20;18632:2;18621:9;18617:18;18610:48;18675:76;18746:4;18737:6;18675:76;:::i;:::-;18667:84;;18318:440;;;;;;;:::o;18764:373::-;18907:4;18945:2;18934:9;18930:18;18922:26;;18994:9;18988:4;18984:20;18980:1;18969:9;18965:17;18958:47;19022:108;19125:4;19116:6;19022:108;:::i;:::-;19014:116;;18912:225;;;;:::o;19143:210::-;19230:4;19268:2;19257:9;19253:18;19245:26;;19281:65;19343:1;19332:9;19328:17;19319:6;19281:65;:::i;:::-;19235:118;;;;:::o;19359:313::-;19472:4;19510:2;19499:9;19495:18;19487:26;;19559:9;19553:4;19549:20;19545:1;19534:9;19530:17;19523:47;19587:78;19660:4;19651:6;19587:78;:::i;:::-;19579:86;;19477:195;;;;:::o;19678:419::-;19844:4;19882:2;19871:9;19867:18;19859:26;;19931:9;19925:4;19921:20;19917:1;19906:9;19902:17;19895:47;19959:131;20085:4;19959:131;:::i;:::-;19951:139;;19849:248;;;:::o;20103:419::-;20269:4;20307:2;20296:9;20292:18;20284:26;;20356:9;20350:4;20346:20;20342:1;20331:9;20327:17;20320:47;20384:131;20510:4;20384:131;:::i;:::-;20376:139;;20274:248;;;:::o;20528:419::-;20694:4;20732:2;20721:9;20717:18;20709:26;;20781:9;20775:4;20771:20;20767:1;20756:9;20752:17;20745:47;20809:131;20935:4;20809:131;:::i;:::-;20801:139;;20699:248;;;:::o;20953:419::-;21119:4;21157:2;21146:9;21142:18;21134:26;;21206:9;21200:4;21196:20;21192:1;21181:9;21177:17;21170:47;21234:131;21360:4;21234:131;:::i;:::-;21226:139;;21124:248;;;:::o;21378:419::-;21544:4;21582:2;21571:9;21567:18;21559:26;;21631:9;21625:4;21621:20;21617:1;21606:9;21602:17;21595:47;21659:131;21785:4;21659:131;:::i;:::-;21651:139;;21549:248;;;:::o;21803:419::-;21969:4;22007:2;21996:9;21992:18;21984:26;;22056:9;22050:4;22046:20;22042:1;22031:9;22027:17;22020:47;22084:131;22210:4;22084:131;:::i;:::-;22076:139;;21974:248;;;:::o;22228:419::-;22394:4;22432:2;22421:9;22417:18;22409:26;;22481:9;22475:4;22471:20;22467:1;22456:9;22452:17;22445:47;22509:131;22635:4;22509:131;:::i;:::-;22501:139;;22399:248;;;:::o;22653:419::-;22819:4;22857:2;22846:9;22842:18;22834:26;;22906:9;22900:4;22896:20;22892:1;22881:9;22877:17;22870:47;22934:131;23060:4;22934:131;:::i;:::-;22926:139;;22824:248;;;:::o;23078:419::-;23244:4;23282:2;23271:9;23267:18;23259:26;;23331:9;23325:4;23321:20;23317:1;23306:9;23302:17;23295:47;23359:131;23485:4;23359:131;:::i;:::-;23351:139;;23249:248;;;:::o;23503:419::-;23669:4;23707:2;23696:9;23692:18;23684:26;;23756:9;23750:4;23746:20;23742:1;23731:9;23727:17;23720:47;23784:131;23910:4;23784:131;:::i;:::-;23776:139;;23674:248;;;:::o;23928:419::-;24094:4;24132:2;24121:9;24117:18;24109:26;;24181:9;24175:4;24171:20;24167:1;24156:9;24152:17;24145:47;24209:131;24335:4;24209:131;:::i;:::-;24201:139;;24099:248;;;:::o;24353:419::-;24519:4;24557:2;24546:9;24542:18;24534:26;;24606:9;24600:4;24596:20;24592:1;24581:9;24577:17;24570:47;24634:131;24760:4;24634:131;:::i;:::-;24626:139;;24524:248;;;:::o;24778:419::-;24944:4;24982:2;24971:9;24967:18;24959:26;;25031:9;25025:4;25021:20;25017:1;25006:9;25002:17;24995:47;25059:131;25185:4;25059:131;:::i;:::-;25051:139;;24949:248;;;:::o;25203:419::-;25369:4;25407:2;25396:9;25392:18;25384:26;;25456:9;25450:4;25446:20;25442:1;25431:9;25427:17;25420:47;25484:131;25610:4;25484:131;:::i;:::-;25476:139;;25374:248;;;:::o;25628:419::-;25794:4;25832:2;25821:9;25817:18;25809:26;;25881:9;25875:4;25871:20;25867:1;25856:9;25852:17;25845:47;25909:131;26035:4;25909:131;:::i;:::-;25901:139;;25799:248;;;:::o;26053:419::-;26219:4;26257:2;26246:9;26242:18;26234:26;;26306:9;26300:4;26296:20;26292:1;26281:9;26277:17;26270:47;26334:131;26460:4;26334:131;:::i;:::-;26326:139;;26224:248;;;:::o;26478:419::-;26644:4;26682:2;26671:9;26667:18;26659:26;;26731:9;26725:4;26721:20;26717:1;26706:9;26702:17;26695:47;26759:131;26885:4;26759:131;:::i;:::-;26751:139;;26649:248;;;:::o;26903:419::-;27069:4;27107:2;27096:9;27092:18;27084:26;;27156:9;27150:4;27146:20;27142:1;27131:9;27127:17;27120:47;27184:131;27310:4;27184:131;:::i;:::-;27176:139;;27074:248;;;:::o;27328:419::-;27494:4;27532:2;27521:9;27517:18;27509:26;;27581:9;27575:4;27571:20;27567:1;27556:9;27552:17;27545:47;27609:131;27735:4;27609:131;:::i;:::-;27601:139;;27499:248;;;:::o;27753:419::-;27919:4;27957:2;27946:9;27942:18;27934:26;;28006:9;28000:4;27996:20;27992:1;27981:9;27977:17;27970:47;28034:131;28160:4;28034:131;:::i;:::-;28026:139;;27924:248;;;:::o;28178:419::-;28344:4;28382:2;28371:9;28367:18;28359:26;;28431:9;28425:4;28421:20;28417:1;28406:9;28402:17;28395:47;28459:131;28585:4;28459:131;:::i;:::-;28451:139;;28349:248;;;:::o;28603:419::-;28769:4;28807:2;28796:9;28792:18;28784:26;;28856:9;28850:4;28846:20;28842:1;28831:9;28827:17;28820:47;28884:131;29010:4;28884:131;:::i;:::-;28876:139;;28774:248;;;:::o;29028:419::-;29194:4;29232:2;29221:9;29217:18;29209:26;;29281:9;29275:4;29271:20;29267:1;29256:9;29252:17;29245:47;29309:131;29435:4;29309:131;:::i;:::-;29301:139;;29199:248;;;:::o;29453:222::-;29546:4;29584:2;29573:9;29569:18;29561:26;;29597:71;29665:1;29654:9;29650:17;29641:6;29597:71;:::i;:::-;29551:124;;;;:::o;29681:129::-;29715:6;29742:20;;:::i;:::-;29732:30;;29771:33;29799:4;29791:6;29771:33;:::i;:::-;29722:88;;;:::o;29816:75::-;29849:6;29882:2;29876:9;29866:19;;29856:35;:::o;29897:307::-;29958:4;30048:18;30040:6;30037:30;30034:2;;;30070:18;;:::i;:::-;30034:2;30108:29;30130:6;30108:29;:::i;:::-;30100:37;;30192:4;30186;30182:15;30174:23;;29963:241;;;:::o;30210:308::-;30272:4;30362:18;30354:6;30351:30;30348:2;;;30384:18;;:::i;:::-;30348:2;30422:29;30444:6;30422:29;:::i;:::-;30414:37;;30506:4;30500;30496:15;30488:23;;30277:241;;;:::o;30524:132::-;30591:4;30614:3;30606:11;;30644:4;30639:3;30635:14;30627:22;;30596:60;;;:::o;30662:114::-;30729:6;30763:5;30757:12;30747:22;;30736:40;;;:::o;30782:98::-;30833:6;30867:5;30861:12;30851:22;;30840:40;;;:::o;30886:99::-;30938:6;30972:5;30966:12;30956:22;;30945:40;;;:::o;30991:113::-;31061:4;31093;31088:3;31084:14;31076:22;;31066:38;;;:::o;31110:184::-;31209:11;31243:6;31238:3;31231:19;31283:4;31278:3;31274:14;31259:29;;31221:73;;;;:::o;31300:168::-;31383:11;31417:6;31412:3;31405:19;31457:4;31452:3;31448:14;31433:29;;31395:73;;;;:::o;31474:169::-;31558:11;31592:6;31587:3;31580:19;31632:4;31627:3;31623:14;31608:29;;31570:73;;;;:::o;31649:148::-;31751:11;31788:3;31773:18;;31763:34;;;;:::o;31803:305::-;31843:3;31862:20;31880:1;31862:20;:::i;:::-;31857:25;;31896:20;31914:1;31896:20;:::i;:::-;31891:25;;32050:1;31982:66;31978:74;31975:1;31972:81;31969:2;;;32056:18;;:::i;:::-;31969:2;32100:1;32097;32093:9;32086:16;;31847:261;;;;:::o;32114:185::-;32154:1;32171:20;32189:1;32171:20;:::i;:::-;32166:25;;32205:20;32223:1;32205:20;:::i;:::-;32200:25;;32244:1;32234:2;;32249:18;;:::i;:::-;32234:2;32291:1;32288;32284:9;32279:14;;32156:143;;;;:::o;32305:348::-;32345:7;32368:20;32386:1;32368:20;:::i;:::-;32363:25;;32402:20;32420:1;32402:20;:::i;:::-;32397:25;;32590:1;32522:66;32518:74;32515:1;32512:81;32507:1;32500:9;32493:17;32489:105;32486:2;;;32597:18;;:::i;:::-;32486:2;32645:1;32642;32638:9;32627:20;;32353:300;;;;:::o;32659:191::-;32699:4;32719:20;32737:1;32719:20;:::i;:::-;32714:25;;32753:20;32771:1;32753:20;:::i;:::-;32748:25;;32792:1;32789;32786:8;32783:2;;;32797:18;;:::i;:::-;32783:2;32842:1;32839;32835:9;32827:17;;32704:146;;;;:::o;32856:96::-;32893:7;32922:24;32940:5;32922:24;:::i;:::-;32911:35;;32901:51;;;:::o;32958:90::-;32992:7;33035:5;33028:13;33021:21;33010:32;;33000:48;;;:::o;33054:149::-;33090:7;33130:66;33123:5;33119:78;33108:89;;33098:105;;;:::o;33209:126::-;33246:7;33286:42;33279:5;33275:54;33264:65;;33254:81;;;:::o;33341:77::-;33378:7;33407:5;33396:16;;33386:32;;;:::o;33424:154::-;33508:6;33503:3;33498;33485:30;33570:1;33561:6;33556:3;33552:16;33545:27;33475:103;;;:::o;33584:307::-;33652:1;33662:113;33676:6;33673:1;33670:13;33662:113;;;33761:1;33756:3;33752:11;33746:18;33742:1;33737:3;33733:11;33726:39;33698:2;33695:1;33691:10;33686:15;;33662:113;;;33793:6;33790:1;33787:13;33784:2;;;33873:1;33864:6;33859:3;33855:16;33848:27;33784:2;33633:258;;;;:::o;33897:320::-;33941:6;33978:1;33972:4;33968:12;33958:22;;34025:1;34019:4;34015:12;34046:18;34036:2;;34102:4;34094:6;34090:17;34080:27;;34036:2;34164;34156:6;34153:14;34133:18;34130:38;34127:2;;;34183:18;;:::i;:::-;34127:2;33948:269;;;;:::o;34223:281::-;34306:27;34328:4;34306:27;:::i;:::-;34298:6;34294:40;34436:6;34424:10;34421:22;34400:18;34388:10;34385:34;34382:62;34379:2;;;34447:18;;:::i;:::-;34379:2;34487:10;34483:2;34476:22;34266:238;;;:::o;34510:233::-;34549:3;34572:24;34590:5;34572:24;:::i;:::-;34563:33;;34618:66;34611:5;34608:77;34605:2;;;34688:18;;:::i;:::-;34605:2;34735:1;34728:5;34724:13;34717:20;;34553:190;;;:::o;34749:176::-;34781:1;34798:20;34816:1;34798:20;:::i;:::-;34793:25;;34832:20;34850:1;34832:20;:::i;:::-;34827:25;;34871:1;34861:2;;34876:18;;:::i;:::-;34861:2;34917:1;34914;34910:9;34905:14;;34783:142;;;;:::o;34931:180::-;34979:77;34976:1;34969:88;35076:4;35073:1;35066:15;35100:4;35097:1;35090:15;35117:180;35165:77;35162:1;35155:88;35262:4;35259:1;35252:15;35286:4;35283:1;35276:15;35303:180;35351:77;35348:1;35341:88;35448:4;35445:1;35438:15;35472:4;35469:1;35462:15;35489:180;35537:77;35534:1;35527:88;35634:4;35631:1;35624:15;35658:4;35655:1;35648:15;35675:102;35716:6;35767:2;35763:7;35758:2;35751:5;35747:14;35743:28;35733:38;;35723:54;;;:::o;35783:230::-;35923:34;35919:1;35911:6;35907:14;35900:58;35992:13;35987:2;35979:6;35975:15;35968:38;35889:124;:::o;36019:237::-;36159:34;36155:1;36147:6;36143:14;36136:58;36228:20;36223:2;36215:6;36211:15;36204:45;36125:131;:::o;36262:225::-;36402:34;36398:1;36390:6;36386:14;36379:58;36471:8;36466:2;36458:6;36454:15;36447:33;36368:119;:::o;36493:178::-;36633:30;36629:1;36621:6;36617:14;36610:54;36599:72;:::o;36677:223::-;36817:34;36813:1;36805:6;36801:14;36794:58;36886:6;36881:2;36873:6;36869:15;36862:31;36783:117;:::o;36906:175::-;37046:27;37042:1;37034:6;37030:14;37023:51;37012:69;:::o;37087:155::-;37227:7;37223:1;37215:6;37211:14;37204:31;37193:49;:::o;37248:159::-;37388:11;37384:1;37376:6;37372:14;37365:35;37354:53;:::o;37413:231::-;37553:34;37549:1;37541:6;37537:14;37530:58;37622:14;37617:2;37609:6;37605:15;37598:39;37519:125;:::o;37650:243::-;37790:34;37786:1;37778:6;37774:14;37767:58;37859:26;37854:2;37846:6;37842:15;37835:51;37756:137;:::o;37899:229::-;38039:34;38035:1;38027:6;38023:14;38016:58;38108:12;38103:2;38095:6;38091:15;38084:37;38005:123;:::o;38134:228::-;38274:34;38270:1;38262:6;38258:14;38251:58;38343:11;38338:2;38330:6;38326:15;38319:36;38240:122;:::o;38368:182::-;38508:34;38504:1;38496:6;38492:14;38485:58;38474:76;:::o;38556:158::-;38696:10;38692:1;38684:6;38680:14;38673:34;38662:52;:::o;38720:231::-;38860:34;38856:1;38848:6;38844:14;38837:58;38929:14;38924:2;38916:6;38912:15;38905:39;38826:125;:::o;38957:159::-;39097:11;39093:1;39085:6;39081:14;39074:35;39063:53;:::o;39122:182::-;39262:34;39258:1;39250:6;39246:14;39239:58;39228:76;:::o;39310:228::-;39450:34;39446:1;39438:6;39434:14;39427:58;39519:11;39514:2;39506:6;39502:15;39495:36;39416:122;:::o;39544:234::-;39684:34;39680:1;39672:6;39668:14;39661:58;39753:17;39748:2;39740:6;39736:15;39729:42;39650:128;:::o;39784:167::-;39924:19;39920:1;39912:6;39908:14;39901:43;39890:61;:::o;39957:220::-;40097:34;40093:1;40085:6;40081:14;40074:58;40166:3;40161:2;40153:6;40149:15;40142:28;40063:114;:::o;40183:236::-;40323:34;40319:1;40311:6;40307:14;40300:58;40392:19;40387:2;40379:6;40375:15;40368:44;40289:130;:::o;40425:231::-;40565:34;40561:1;40553:6;40549:14;40542:58;40634:14;40629:2;40621:6;40617:15;40610:39;40531:125;:::o;40662:122::-;40735:24;40753:5;40735:24;:::i;:::-;40728:5;40725:35;40715:2;;40774:1;40771;40764:12;40715:2;40705:79;:::o;40790:116::-;40860:21;40875:5;40860:21;:::i;:::-;40853:5;40850:32;40840:2;;40896:1;40893;40886:12;40840:2;40830:76;:::o;40912:120::-;40984:23;41001:5;40984:23;:::i;:::-;40977:5;40974:34;40964:2;;41022:1;41019;41012:12;40964:2;40954:78;:::o;41038:122::-;41111:24;41129:5;41111:24;:::i;:::-;41104:5;41101:35;41091:2;;41150:1;41147;41140:12;41091:2;41081:79;:::o

Swarm Source

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