ETH Price: $3,384.34 (-1.55%)
Gas: 1 Gwei

Token

Untamed Elephants (UE)
 

Overview

Max Total Supply

7,500 UE

Holders

2,983

Market

Volume (24H)

0.0094 ETH

Min Price (24H)

$31.81 @ 0.009400 ETH

Max Price (24H)

$31.81 @ 0.009400 ETH
Filtered by Token Holder
oneloveonelink.eth
Balance
1 UE
0xB49b4a2d614a340818e43C4769a303eECcD040Fc
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Saving the elephants through community and NFTs.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
UE

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-07-03
*/

// SPDX-License-Identifier: Unlimited
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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

contract UE is ERC721Enumerable, Ownable {
    uint public constant MAX = 7500;
	string _baseTokenURI;
	bool _didWeGetTheReserves = false;
	uint _saleTime = 1625346000;
	mapping (uint256 => string) public _tokenURI;
	
    constructor(string memory baseURI) ERC721("Untamed Elephants", "UE")  {
        setBaseURI(baseURI);
    }

    modifier saleIsOpen{
        require(totalSupply() < MAX, "UntamedElephants: Sale ended");
        _;
    }

    function mint(address _to, uint _count) public payable saleIsOpen {
        require(totalSupply() + _count <= MAX, "UntamedElephants: Not enough left to mint");
        require(totalSupply() < MAX, "UntamedElephants: Not enough left to mint");
        require(_count <= 10, "UntamedElephants: Exceeds the max you can mint");
        require(msg.value >= price(_count), "UntamedElephants: Value below price");
        require(block.timestamp >= _saleTime, "UntamedElephants: Sale opens on the 3rd of July");
        
        for(uint x = 0; x < _count; x++){
            _safeMint(_to, totalSupply());
        }
    }

    function price(uint _count) public pure returns (uint256) {
        return 60000000000000000 * _count;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }
    
    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }
    
    function changeSaleTime(uint time) public onlyOwner {
        _saleTime = time;
    }
    
    function getReserves() public onlyOwner {
        require(_didWeGetTheReserves == false, "UntamedElephants: Reserves taken already!");
        for(uint x = 0; x < 55; x++){
            _safeMint(msg.sender, totalSupply());
        }
        _didWeGetTheReserves = true;
    }

    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 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","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"time","type":"uint256"}],"name":"changeSaleTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReserves","outputs":[],"stateMutability":"nonpayable","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":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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"}]

60806040526000600c60006101000a81548160ff0219169083151502179055506360e0cfd0600d553480156200003457600080fd5b506040516200491e3803806200491e83398181016040528101906200005a9190620003f7565b6040518060400160405280601181526020017f556e74616d656420456c657068616e74730000000000000000000000000000008152506040518060400160405280600281526020017f55450000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000de929190620002d5565b508060019080519060200190620000f7929190620002d5565b5050506200011a6200010e6200013260201b60201c565b6200013a60201b60201c565b6200012b816200020060201b60201c565b506200062f565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002106200013260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000236620002ab60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200028f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002869062000463565b60405180910390fd5b80600b9080519060200190620002a7929190620002d5565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002e3906200052b565b90600052602060002090601f01602090048101928262000307576000855562000353565b82601f106200032257805160ff191683800117855562000353565b8280016001018555821562000353579182015b828111156200035257825182559160200191906001019062000335565b5b50905062000362919062000366565b5090565b5b808211156200038157600081600090555060010162000367565b5090565b60006200039c6200039684620004ae565b62000485565b905082815260208101848484011115620003b557600080fd5b620003c2848285620004f5565b509392505050565b600082601f830112620003dc57600080fd5b8151620003ee84826020860162000385565b91505092915050565b6000602082840312156200040a57600080fd5b600082015167ffffffffffffffff8111156200042557600080fd5b6200043384828501620003ca565b91505092915050565b60006200044b602083620004e4565b9150620004588262000606565b602082019050919050565b600060208201905081810360008301526200047e816200043c565b9050919050565b600062000491620004a4565b90506200049f828262000561565b919050565b6000604051905090565b600067ffffffffffffffff821115620004cc57620004cb620005c6565b5b620004d782620005f5565b9050602081019050919050565b600082825260208201905092915050565b60005b8381101562000515578082015181840152602081019050620004f8565b8381111562000525576000848401525b50505050565b600060028204905060018216806200054457607f821691505b602082108114156200055b576200055a62000597565b5b50919050565b6200056c82620005f5565b810181811067ffffffffffffffff821117156200058e576200058d620005c6565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6142df806200063f6000396000f3fe6080604052600436106101b75760003560e01c80636352211e116100ec578063a22cb4651161008a578063d49d518111610064578063d49d518114610614578063d5ae7ad61461063f578063e985e9c514610668578063f2fde38b146106a5576101b7565b8063a22cb46514610585578063b88d4fde146105ae578063c87b56dd146105d7576101b7565b8063853828b6116100c6578063853828b6146104e85780638d17e712146104f25780638da5cb5b1461052f57806395d89b411461055a576101b7565b80636352211e1461045757806370a0823114610494578063715018a6146104d1576101b7565b806326a49e371161015957806342842e0e1161013357806342842e0e1461038b578063438b6300146103b45780634f6ccce7146103f157806355f804b31461042e576101b7565b806326a49e37146102f55780632f745c591461033257806340c10f191461036f576101b7565b80630902f1ac116101955780630902f1ac14610261578063095ea7b31461027857806318160ddd146102a157806323b872dd146102cc576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612dcd565b6106ce565b6040516101f091906133d3565b60405180910390f35b34801561020557600080fd5b5061020e610748565b60405161021b91906133ee565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612e60565b6107da565b604051610258919061334a565b60405180910390f35b34801561026d57600080fd5b5061027661085f565b005b34801561028457600080fd5b5061029f600480360381019061029a9190612d91565b61097f565b005b3480156102ad57600080fd5b506102b6610a97565b6040516102c39190613710565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee9190612c8b565b610aa4565b005b34801561030157600080fd5b5061031c60048036038101906103179190612e60565b610b04565b6040516103299190613710565b60405180910390f35b34801561033e57600080fd5b5061035960048036038101906103549190612d91565b610b20565b6040516103669190613710565b60405180910390f35b61038960048036038101906103849190612d91565b610bc5565b005b34801561039757600080fd5b506103b260048036038101906103ad9190612c8b565b610dba565b005b3480156103c057600080fd5b506103db60048036038101906103d69190612c26565b610dda565b6040516103e891906133b1565b60405180910390f35b3480156103fd57600080fd5b5061041860048036038101906104139190612e60565b610ed4565b6040516104259190613710565b60405180910390f35b34801561043a57600080fd5b5061045560048036038101906104509190612e1f565b610f6b565b005b34801561046357600080fd5b5061047e60048036038101906104799190612e60565b611001565b60405161048b919061334a565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b69190612c26565b6110b3565b6040516104c89190613710565b60405180910390f35b3480156104dd57600080fd5b506104e661116b565b005b6104f06111f3565b005b3480156104fe57600080fd5b5061051960048036038101906105149190612e60565b6112b6565b60405161052691906133ee565b60405180910390f35b34801561053b57600080fd5b50610544611356565b604051610551919061334a565b60405180910390f35b34801561056657600080fd5b5061056f611380565b60405161057c91906133ee565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a79190612d55565b611412565b005b3480156105ba57600080fd5b506105d560048036038101906105d09190612cda565b611593565b005b3480156105e357600080fd5b506105fe60048036038101906105f99190612e60565b6115f5565b60405161060b91906133ee565b60405180910390f35b34801561062057600080fd5b5061062961169c565b6040516106369190613710565b60405180910390f35b34801561064b57600080fd5b5061066660048036038101906106619190612e60565b6116a2565b005b34801561067457600080fd5b5061068f600480360381019061068a9190612c4f565b611728565b60405161069c91906133d3565b60405180910390f35b3480156106b157600080fd5b506106cc60048036038101906106c79190612c26565b6117bc565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107415750610740826118b4565b5b9050919050565b606060008054610757906139f9565b80601f0160208091040260200160405190810160405280929190818152602001828054610783906139f9565b80156107d05780601f106107a5576101008083540402835291602001916107d0565b820191906000526020600020905b8154815290600101906020018083116107b357829003601f168201915b5050505050905090565b60006107e582611996565b610824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081b906135f0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610867611a02565b73ffffffffffffffffffffffffffffffffffffffff16610885611356565b73ffffffffffffffffffffffffffffffffffffffff16146108db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d290613610565b60405180910390fd5b60001515600c60009054906101000a900460ff16151514610931576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610928906134b0565b60405180910390fd5b60005b60378110156109615761094e33610949610a97565b611a0a565b808061095990613a5c565b915050610934565b506001600c60006101000a81548160ff021916908315150217905550565b600061098a82611001565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f290613670565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a1a611a02565b73ffffffffffffffffffffffffffffffffffffffff161480610a495750610a4881610a43611a02565b611728565b5b610a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7f90613570565b60405180910390fd5b610a928383611a28565b505050565b6000600880549050905090565b610ab5610aaf611a02565b82611ae1565b610af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aeb90613690565b60405180910390fd5b610aff838383611bbf565b505050565b60008166d529ae9e860000610b1991906138b5565b9050919050565b6000610b2b836110b3565b8210610b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6390613410565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b611d4c610bd0610a97565b10610c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c07906136f0565b60405180910390fd5b611d4c81610c1c610a97565b610c26919061382e565b1115610c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5e90613530565b60405180910390fd5b611d4c610c72610a97565b10610cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca990613530565b60405180910390fd5b600a811115610cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ced90613450565b60405180910390fd5b610cff81610b04565b341015610d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3890613550565b60405180910390fd5b600d54421015610d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7d906136d0565b60405180910390fd5b60005b81811015610db557610da283610d9d610a97565b611a0a565b8080610dad90613a5c565b915050610d89565b505050565b610dd583838360405180602001604052806000815250611593565b505050565b60606000610de7836110b3565b905060008167ffffffffffffffff811115610e2b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610e595781602001602082028036833780820191505090505b50905060005b82811015610ec957610e718582610b20565b828281518110610eaa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610ec190613a5c565b915050610e5f565b508092505050919050565b6000610ede610a97565b8210610f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f16906136b0565b60405180910390fd5b60088281548110610f59577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610f73611a02565b73ffffffffffffffffffffffffffffffffffffffff16610f91611356565b73ffffffffffffffffffffffffffffffffffffffff1614610fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fde90613610565b60405180910390fd5b80600b9080519060200190610ffd929190612a4a565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a1906135b0565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111b90613590565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611173611a02565b73ffffffffffffffffffffffffffffffffffffffff16611191611356565b73ffffffffffffffffffffffffffffffffffffffff16146111e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111de90613610565b60405180910390fd5b6111f16000611e1b565b565b6111fb611a02565b73ffffffffffffffffffffffffffffffffffffffff16611219611356565b73ffffffffffffffffffffffffffffffffffffffff161461126f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126690613610565b60405180910390fd5b611277611a02565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050506112b457600080fd5b565b600e60205280600052604060002060009150905080546112d5906139f9565b80601f0160208091040260200160405190810160405280929190818152602001828054611301906139f9565b801561134e5780601f106113235761010080835404028352916020019161134e565b820191906000526020600020905b81548152906001019060200180831161133157829003601f168201915b505050505081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461138f906139f9565b80601f01602080910402602001604051908101604052809291908181526020018280546113bb906139f9565b80156114085780601f106113dd57610100808354040283529160200191611408565b820191906000526020600020905b8154815290600101906020018083116113eb57829003601f168201915b5050505050905090565b61141a611a02565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147f906134f0565b60405180910390fd5b8060056000611495611a02565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611542611a02565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161158791906133d3565b60405180910390a35050565b6115a461159e611a02565b83611ae1565b6115e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115da90613690565b60405180910390fd5b6115ef84848484611ee1565b50505050565b606061160082611996565b61163f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163690613650565b60405180910390fd5b6000611649611f3d565b905060008151116116695760405180602001604052806000815250611694565b8061167384611fcf565b604051602001611684929190613326565b6040516020818303038152906040525b915050919050565b611d4c81565b6116aa611a02565b73ffffffffffffffffffffffffffffffffffffffff166116c8611356565b73ffffffffffffffffffffffffffffffffffffffff161461171e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171590613610565b60405180910390fd5b80600d8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117c4611a02565b73ffffffffffffffffffffffffffffffffffffffff166117e2611356565b73ffffffffffffffffffffffffffffffffffffffff1614611838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182f90613610565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189f90613470565b60405180910390fd5b6118b181611e1b565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061197f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061198f575061198e8261217c565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b611a248282604051806020016040528060008152506121e6565b5050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a9b83611001565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611aec82611996565b611b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2290613510565b60405180910390fd5b6000611b3683611001565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ba557508373ffffffffffffffffffffffffffffffffffffffff16611b8d846107da565b73ffffffffffffffffffffffffffffffffffffffff16145b80611bb65750611bb58185611728565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611bdf82611001565b73ffffffffffffffffffffffffffffffffffffffff1614611c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2c90613630565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9c906134d0565b60405180910390fd5b611cb0838383612241565b611cbb600082611a28565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d0b919061390f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d62919061382e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611eec848484611bbf565b611ef884848484612355565b611f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2e90613430565b60405180910390fd5b50505050565b6060600b8054611f4c906139f9565b80601f0160208091040260200160405190810160405280929190818152602001828054611f78906139f9565b8015611fc55780601f10611f9a57610100808354040283529160200191611fc5565b820191906000526020600020905b815481529060010190602001808311611fa857829003601f168201915b5050505050905090565b60606000821415612017576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612177565b600082905060005b6000821461204957808061203290613a5c565b915050600a826120429190613884565b915061201f565b60008167ffffffffffffffff81111561208b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120bd5781602001600182028036833780820191505090505b5090505b60008514612170576001826120d6919061390f565b9150600a856120e59190613aa5565b60306120f1919061382e565b60f81b81838151811061212d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121699190613884565b94506120c1565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6121f083836124ec565b6121fd6000848484612355565b61223c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223390613430565b60405180910390fd5b505050565b61224c8383836126ba565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561228f5761228a816126bf565b6122ce565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122cd576122cc8382612708565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123115761230c81612875565b612350565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461234f5761234e82826129b8565b5b5b505050565b60006123768473ffffffffffffffffffffffffffffffffffffffff16612a37565b156124df578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261239f611a02565b8786866040518563ffffffff1660e01b81526004016123c19493929190613365565b602060405180830381600087803b1580156123db57600080fd5b505af192505050801561240c57506040513d601f19601f820116820180604052508101906124099190612df6565b60015b61248f573d806000811461243c576040519150601f19603f3d011682016040523d82523d6000602084013e612441565b606091505b50600081511415612487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247e90613430565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124e4565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561255c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612553906135d0565b60405180910390fd5b61256581611996565b156125a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259c90613490565b60405180910390fd5b6125b160008383612241565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612601919061382e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612715846110b3565b61271f919061390f565b9050600060076000848152602001908152602001600020549050818114612804576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612889919061390f565b90506000600960008481526020019081526020016000205490506000600883815481106128df577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612927577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061299c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006129c3836110b3565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054612a56906139f9565b90600052602060002090601f016020900481019282612a785760008555612abf565b82601f10612a9157805160ff1916838001178555612abf565b82800160010185558215612abf579182015b82811115612abe578251825591602001919060010190612aa3565b5b509050612acc9190612ad0565b5090565b5b80821115612ae9576000816000905550600101612ad1565b5090565b6000612b00612afb84613750565b61372b565b905082815260208101848484011115612b1857600080fd5b612b238482856139b7565b509392505050565b6000612b3e612b3984613781565b61372b565b905082815260208101848484011115612b5657600080fd5b612b618482856139b7565b509392505050565b600081359050612b788161424d565b92915050565b600081359050612b8d81614264565b92915050565b600081359050612ba28161427b565b92915050565b600081519050612bb78161427b565b92915050565b600082601f830112612bce57600080fd5b8135612bde848260208601612aed565b91505092915050565b600082601f830112612bf857600080fd5b8135612c08848260208601612b2b565b91505092915050565b600081359050612c2081614292565b92915050565b600060208284031215612c3857600080fd5b6000612c4684828501612b69565b91505092915050565b60008060408385031215612c6257600080fd5b6000612c7085828601612b69565b9250506020612c8185828601612b69565b9150509250929050565b600080600060608486031215612ca057600080fd5b6000612cae86828701612b69565b9350506020612cbf86828701612b69565b9250506040612cd086828701612c11565b9150509250925092565b60008060008060808587031215612cf057600080fd5b6000612cfe87828801612b69565b9450506020612d0f87828801612b69565b9350506040612d2087828801612c11565b925050606085013567ffffffffffffffff811115612d3d57600080fd5b612d4987828801612bbd565b91505092959194509250565b60008060408385031215612d6857600080fd5b6000612d7685828601612b69565b9250506020612d8785828601612b7e565b9150509250929050565b60008060408385031215612da457600080fd5b6000612db285828601612b69565b9250506020612dc385828601612c11565b9150509250929050565b600060208284031215612ddf57600080fd5b6000612ded84828501612b93565b91505092915050565b600060208284031215612e0857600080fd5b6000612e1684828501612ba8565b91505092915050565b600060208284031215612e3157600080fd5b600082013567ffffffffffffffff811115612e4b57600080fd5b612e5784828501612be7565b91505092915050565b600060208284031215612e7257600080fd5b6000612e8084828501612c11565b91505092915050565b6000612e958383613308565b60208301905092915050565b612eaa81613943565b82525050565b6000612ebb826137c2565b612ec581856137f0565b9350612ed0836137b2565b8060005b83811015612f01578151612ee88882612e89565b9750612ef3836137e3565b925050600181019050612ed4565b5085935050505092915050565b612f1781613955565b82525050565b6000612f28826137cd565b612f328185613801565b9350612f428185602086016139c6565b612f4b81613b92565b840191505092915050565b6000612f61826137d8565b612f6b8185613812565b9350612f7b8185602086016139c6565b612f8481613b92565b840191505092915050565b6000612f9a826137d8565b612fa48185613823565b9350612fb48185602086016139c6565b80840191505092915050565b6000612fcd602b83613812565b9150612fd882613ba3565b604082019050919050565b6000612ff0603283613812565b9150612ffb82613bf2565b604082019050919050565b6000613013602e83613812565b915061301e82613c41565b604082019050919050565b6000613036602683613812565b915061304182613c90565b604082019050919050565b6000613059601c83613812565b915061306482613cdf565b602082019050919050565b600061307c602983613812565b915061308782613d08565b604082019050919050565b600061309f602483613812565b91506130aa82613d57565b604082019050919050565b60006130c2601983613812565b91506130cd82613da6565b602082019050919050565b60006130e5602c83613812565b91506130f082613dcf565b604082019050919050565b6000613108602983613812565b915061311382613e1e565b604082019050919050565b600061312b602383613812565b915061313682613e6d565b604082019050919050565b600061314e603883613812565b915061315982613ebc565b604082019050919050565b6000613171602a83613812565b915061317c82613f0b565b604082019050919050565b6000613194602983613812565b915061319f82613f5a565b604082019050919050565b60006131b7602083613812565b91506131c282613fa9565b602082019050919050565b60006131da602c83613812565b91506131e582613fd2565b604082019050919050565b60006131fd602083613812565b915061320882614021565b602082019050919050565b6000613220602983613812565b915061322b8261404a565b604082019050919050565b6000613243602f83613812565b915061324e82614099565b604082019050919050565b6000613266602183613812565b9150613271826140e8565b604082019050919050565b6000613289603183613812565b915061329482614137565b604082019050919050565b60006132ac602c83613812565b91506132b782614186565b604082019050919050565b60006132cf602f83613812565b91506132da826141d5565b604082019050919050565b60006132f2601c83613812565b91506132fd82614224565b602082019050919050565b613311816139ad565b82525050565b613320816139ad565b82525050565b60006133328285612f8f565b915061333e8284612f8f565b91508190509392505050565b600060208201905061335f6000830184612ea1565b92915050565b600060808201905061337a6000830187612ea1565b6133876020830186612ea1565b6133946040830185613317565b81810360608301526133a68184612f1d565b905095945050505050565b600060208201905081810360008301526133cb8184612eb0565b905092915050565b60006020820190506133e86000830184612f0e565b92915050565b600060208201905081810360008301526134088184612f56565b905092915050565b6000602082019050818103600083015261342981612fc0565b9050919050565b6000602082019050818103600083015261344981612fe3565b9050919050565b6000602082019050818103600083015261346981613006565b9050919050565b6000602082019050818103600083015261348981613029565b9050919050565b600060208201905081810360008301526134a98161304c565b9050919050565b600060208201905081810360008301526134c98161306f565b9050919050565b600060208201905081810360008301526134e981613092565b9050919050565b60006020820190508181036000830152613509816130b5565b9050919050565b60006020820190508181036000830152613529816130d8565b9050919050565b60006020820190508181036000830152613549816130fb565b9050919050565b600060208201905081810360008301526135698161311e565b9050919050565b6000602082019050818103600083015261358981613141565b9050919050565b600060208201905081810360008301526135a981613164565b9050919050565b600060208201905081810360008301526135c981613187565b9050919050565b600060208201905081810360008301526135e9816131aa565b9050919050565b60006020820190508181036000830152613609816131cd565b9050919050565b60006020820190508181036000830152613629816131f0565b9050919050565b6000602082019050818103600083015261364981613213565b9050919050565b6000602082019050818103600083015261366981613236565b9050919050565b6000602082019050818103600083015261368981613259565b9050919050565b600060208201905081810360008301526136a98161327c565b9050919050565b600060208201905081810360008301526136c98161329f565b9050919050565b600060208201905081810360008301526136e9816132c2565b9050919050565b60006020820190508181036000830152613709816132e5565b9050919050565b60006020820190506137256000830184613317565b92915050565b6000613735613746565b90506137418282613a2b565b919050565b6000604051905090565b600067ffffffffffffffff82111561376b5761376a613b63565b5b61377482613b92565b9050602081019050919050565b600067ffffffffffffffff82111561379c5761379b613b63565b5b6137a582613b92565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613839826139ad565b9150613844836139ad565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561387957613878613ad6565b5b828201905092915050565b600061388f826139ad565b915061389a836139ad565b9250826138aa576138a9613b05565b5b828204905092915050565b60006138c0826139ad565b91506138cb836139ad565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561390457613903613ad6565b5b828202905092915050565b600061391a826139ad565b9150613925836139ad565b92508282101561393857613937613ad6565b5b828203905092915050565b600061394e8261398d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156139e45780820151818401526020810190506139c9565b838111156139f3576000848401525b50505050565b60006002820490506001821680613a1157607f821691505b60208210811415613a2557613a24613b34565b5b50919050565b613a3482613b92565b810181811067ffffffffffffffff82111715613a5357613a52613b63565b5b80604052505050565b6000613a67826139ad565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a9a57613a99613ad6565b5b600182019050919050565b6000613ab0826139ad565b9150613abb836139ad565b925082613acb57613aca613b05565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f556e74616d6564456c657068616e74733a204578636565647320746865206d6160008201527f7820796f752063616e206d696e74000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f556e74616d6564456c657068616e74733a2052657365727665732074616b656e60008201527f20616c7265616479210000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f556e74616d6564456c657068616e74733a204e6f7420656e6f756768206c656660008201527f7420746f206d696e740000000000000000000000000000000000000000000000602082015250565b7f556e74616d6564456c657068616e74733a2056616c75652062656c6f7720707260008201527f6963650000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f556e74616d6564456c657068616e74733a2053616c65206f70656e73206f6e2060008201527f74686520337264206f66204a756c790000000000000000000000000000000000602082015250565b7f556e74616d6564456c657068616e74733a2053616c6520656e64656400000000600082015250565b61425681613943565b811461426157600080fd5b50565b61426d81613955565b811461427857600080fd5b50565b61428481613961565b811461428f57600080fd5b50565b61429b816139ad565b81146142a657600080fd5b5056fea2646970667358221220920bb712015659feb75c158d52dcd636afea102abbb9a04c4af1d2e6d8dd109664736f6c634300080400330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5168584c51636143516577753365614b59384b486745564a6a77704c5a704d65576265426d3756506947644d2f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80636352211e116100ec578063a22cb4651161008a578063d49d518111610064578063d49d518114610614578063d5ae7ad61461063f578063e985e9c514610668578063f2fde38b146106a5576101b7565b8063a22cb46514610585578063b88d4fde146105ae578063c87b56dd146105d7576101b7565b8063853828b6116100c6578063853828b6146104e85780638d17e712146104f25780638da5cb5b1461052f57806395d89b411461055a576101b7565b80636352211e1461045757806370a0823114610494578063715018a6146104d1576101b7565b806326a49e371161015957806342842e0e1161013357806342842e0e1461038b578063438b6300146103b45780634f6ccce7146103f157806355f804b31461042e576101b7565b806326a49e37146102f55780632f745c591461033257806340c10f191461036f576101b7565b80630902f1ac116101955780630902f1ac14610261578063095ea7b31461027857806318160ddd146102a157806323b872dd146102cc576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612dcd565b6106ce565b6040516101f091906133d3565b60405180910390f35b34801561020557600080fd5b5061020e610748565b60405161021b91906133ee565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612e60565b6107da565b604051610258919061334a565b60405180910390f35b34801561026d57600080fd5b5061027661085f565b005b34801561028457600080fd5b5061029f600480360381019061029a9190612d91565b61097f565b005b3480156102ad57600080fd5b506102b6610a97565b6040516102c39190613710565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee9190612c8b565b610aa4565b005b34801561030157600080fd5b5061031c60048036038101906103179190612e60565b610b04565b6040516103299190613710565b60405180910390f35b34801561033e57600080fd5b5061035960048036038101906103549190612d91565b610b20565b6040516103669190613710565b60405180910390f35b61038960048036038101906103849190612d91565b610bc5565b005b34801561039757600080fd5b506103b260048036038101906103ad9190612c8b565b610dba565b005b3480156103c057600080fd5b506103db60048036038101906103d69190612c26565b610dda565b6040516103e891906133b1565b60405180910390f35b3480156103fd57600080fd5b5061041860048036038101906104139190612e60565b610ed4565b6040516104259190613710565b60405180910390f35b34801561043a57600080fd5b5061045560048036038101906104509190612e1f565b610f6b565b005b34801561046357600080fd5b5061047e60048036038101906104799190612e60565b611001565b60405161048b919061334a565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b69190612c26565b6110b3565b6040516104c89190613710565b60405180910390f35b3480156104dd57600080fd5b506104e661116b565b005b6104f06111f3565b005b3480156104fe57600080fd5b5061051960048036038101906105149190612e60565b6112b6565b60405161052691906133ee565b60405180910390f35b34801561053b57600080fd5b50610544611356565b604051610551919061334a565b60405180910390f35b34801561056657600080fd5b5061056f611380565b60405161057c91906133ee565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a79190612d55565b611412565b005b3480156105ba57600080fd5b506105d560048036038101906105d09190612cda565b611593565b005b3480156105e357600080fd5b506105fe60048036038101906105f99190612e60565b6115f5565b60405161060b91906133ee565b60405180910390f35b34801561062057600080fd5b5061062961169c565b6040516106369190613710565b60405180910390f35b34801561064b57600080fd5b5061066660048036038101906106619190612e60565b6116a2565b005b34801561067457600080fd5b5061068f600480360381019061068a9190612c4f565b611728565b60405161069c91906133d3565b60405180910390f35b3480156106b157600080fd5b506106cc60048036038101906106c79190612c26565b6117bc565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107415750610740826118b4565b5b9050919050565b606060008054610757906139f9565b80601f0160208091040260200160405190810160405280929190818152602001828054610783906139f9565b80156107d05780601f106107a5576101008083540402835291602001916107d0565b820191906000526020600020905b8154815290600101906020018083116107b357829003601f168201915b5050505050905090565b60006107e582611996565b610824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081b906135f0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610867611a02565b73ffffffffffffffffffffffffffffffffffffffff16610885611356565b73ffffffffffffffffffffffffffffffffffffffff16146108db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d290613610565b60405180910390fd5b60001515600c60009054906101000a900460ff16151514610931576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610928906134b0565b60405180910390fd5b60005b60378110156109615761094e33610949610a97565b611a0a565b808061095990613a5c565b915050610934565b506001600c60006101000a81548160ff021916908315150217905550565b600061098a82611001565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f290613670565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a1a611a02565b73ffffffffffffffffffffffffffffffffffffffff161480610a495750610a4881610a43611a02565b611728565b5b610a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7f90613570565b60405180910390fd5b610a928383611a28565b505050565b6000600880549050905090565b610ab5610aaf611a02565b82611ae1565b610af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aeb90613690565b60405180910390fd5b610aff838383611bbf565b505050565b60008166d529ae9e860000610b1991906138b5565b9050919050565b6000610b2b836110b3565b8210610b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6390613410565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b611d4c610bd0610a97565b10610c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c07906136f0565b60405180910390fd5b611d4c81610c1c610a97565b610c26919061382e565b1115610c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5e90613530565b60405180910390fd5b611d4c610c72610a97565b10610cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca990613530565b60405180910390fd5b600a811115610cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ced90613450565b60405180910390fd5b610cff81610b04565b341015610d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3890613550565b60405180910390fd5b600d54421015610d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7d906136d0565b60405180910390fd5b60005b81811015610db557610da283610d9d610a97565b611a0a565b8080610dad90613a5c565b915050610d89565b505050565b610dd583838360405180602001604052806000815250611593565b505050565b60606000610de7836110b3565b905060008167ffffffffffffffff811115610e2b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610e595781602001602082028036833780820191505090505b50905060005b82811015610ec957610e718582610b20565b828281518110610eaa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610ec190613a5c565b915050610e5f565b508092505050919050565b6000610ede610a97565b8210610f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f16906136b0565b60405180910390fd5b60088281548110610f59577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610f73611a02565b73ffffffffffffffffffffffffffffffffffffffff16610f91611356565b73ffffffffffffffffffffffffffffffffffffffff1614610fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fde90613610565b60405180910390fd5b80600b9080519060200190610ffd929190612a4a565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a1906135b0565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111b90613590565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611173611a02565b73ffffffffffffffffffffffffffffffffffffffff16611191611356565b73ffffffffffffffffffffffffffffffffffffffff16146111e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111de90613610565b60405180910390fd5b6111f16000611e1b565b565b6111fb611a02565b73ffffffffffffffffffffffffffffffffffffffff16611219611356565b73ffffffffffffffffffffffffffffffffffffffff161461126f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126690613610565b60405180910390fd5b611277611a02565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050506112b457600080fd5b565b600e60205280600052604060002060009150905080546112d5906139f9565b80601f0160208091040260200160405190810160405280929190818152602001828054611301906139f9565b801561134e5780601f106113235761010080835404028352916020019161134e565b820191906000526020600020905b81548152906001019060200180831161133157829003601f168201915b505050505081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461138f906139f9565b80601f01602080910402602001604051908101604052809291908181526020018280546113bb906139f9565b80156114085780601f106113dd57610100808354040283529160200191611408565b820191906000526020600020905b8154815290600101906020018083116113eb57829003601f168201915b5050505050905090565b61141a611a02565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147f906134f0565b60405180910390fd5b8060056000611495611a02565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611542611a02565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161158791906133d3565b60405180910390a35050565b6115a461159e611a02565b83611ae1565b6115e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115da90613690565b60405180910390fd5b6115ef84848484611ee1565b50505050565b606061160082611996565b61163f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163690613650565b60405180910390fd5b6000611649611f3d565b905060008151116116695760405180602001604052806000815250611694565b8061167384611fcf565b604051602001611684929190613326565b6040516020818303038152906040525b915050919050565b611d4c81565b6116aa611a02565b73ffffffffffffffffffffffffffffffffffffffff166116c8611356565b73ffffffffffffffffffffffffffffffffffffffff161461171e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171590613610565b60405180910390fd5b80600d8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117c4611a02565b73ffffffffffffffffffffffffffffffffffffffff166117e2611356565b73ffffffffffffffffffffffffffffffffffffffff1614611838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182f90613610565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189f90613470565b60405180910390fd5b6118b181611e1b565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061197f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061198f575061198e8261217c565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b611a248282604051806020016040528060008152506121e6565b5050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a9b83611001565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611aec82611996565b611b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2290613510565b60405180910390fd5b6000611b3683611001565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ba557508373ffffffffffffffffffffffffffffffffffffffff16611b8d846107da565b73ffffffffffffffffffffffffffffffffffffffff16145b80611bb65750611bb58185611728565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611bdf82611001565b73ffffffffffffffffffffffffffffffffffffffff1614611c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2c90613630565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9c906134d0565b60405180910390fd5b611cb0838383612241565b611cbb600082611a28565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d0b919061390f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d62919061382e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611eec848484611bbf565b611ef884848484612355565b611f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2e90613430565b60405180910390fd5b50505050565b6060600b8054611f4c906139f9565b80601f0160208091040260200160405190810160405280929190818152602001828054611f78906139f9565b8015611fc55780601f10611f9a57610100808354040283529160200191611fc5565b820191906000526020600020905b815481529060010190602001808311611fa857829003601f168201915b5050505050905090565b60606000821415612017576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612177565b600082905060005b6000821461204957808061203290613a5c565b915050600a826120429190613884565b915061201f565b60008167ffffffffffffffff81111561208b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120bd5781602001600182028036833780820191505090505b5090505b60008514612170576001826120d6919061390f565b9150600a856120e59190613aa5565b60306120f1919061382e565b60f81b81838151811061212d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121699190613884565b94506120c1565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6121f083836124ec565b6121fd6000848484612355565b61223c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223390613430565b60405180910390fd5b505050565b61224c8383836126ba565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561228f5761228a816126bf565b6122ce565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122cd576122cc8382612708565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123115761230c81612875565b612350565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461234f5761234e82826129b8565b5b5b505050565b60006123768473ffffffffffffffffffffffffffffffffffffffff16612a37565b156124df578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261239f611a02565b8786866040518563ffffffff1660e01b81526004016123c19493929190613365565b602060405180830381600087803b1580156123db57600080fd5b505af192505050801561240c57506040513d601f19601f820116820180604052508101906124099190612df6565b60015b61248f573d806000811461243c576040519150601f19603f3d011682016040523d82523d6000602084013e612441565b606091505b50600081511415612487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247e90613430565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124e4565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561255c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612553906135d0565b60405180910390fd5b61256581611996565b156125a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259c90613490565b60405180910390fd5b6125b160008383612241565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612601919061382e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612715846110b3565b61271f919061390f565b9050600060076000848152602001908152602001600020549050818114612804576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612889919061390f565b90506000600960008481526020019081526020016000205490506000600883815481106128df577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612927577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061299c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006129c3836110b3565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054612a56906139f9565b90600052602060002090601f016020900481019282612a785760008555612abf565b82601f10612a9157805160ff1916838001178555612abf565b82800160010185558215612abf579182015b82811115612abe578251825591602001919060010190612aa3565b5b509050612acc9190612ad0565b5090565b5b80821115612ae9576000816000905550600101612ad1565b5090565b6000612b00612afb84613750565b61372b565b905082815260208101848484011115612b1857600080fd5b612b238482856139b7565b509392505050565b6000612b3e612b3984613781565b61372b565b905082815260208101848484011115612b5657600080fd5b612b618482856139b7565b509392505050565b600081359050612b788161424d565b92915050565b600081359050612b8d81614264565b92915050565b600081359050612ba28161427b565b92915050565b600081519050612bb78161427b565b92915050565b600082601f830112612bce57600080fd5b8135612bde848260208601612aed565b91505092915050565b600082601f830112612bf857600080fd5b8135612c08848260208601612b2b565b91505092915050565b600081359050612c2081614292565b92915050565b600060208284031215612c3857600080fd5b6000612c4684828501612b69565b91505092915050565b60008060408385031215612c6257600080fd5b6000612c7085828601612b69565b9250506020612c8185828601612b69565b9150509250929050565b600080600060608486031215612ca057600080fd5b6000612cae86828701612b69565b9350506020612cbf86828701612b69565b9250506040612cd086828701612c11565b9150509250925092565b60008060008060808587031215612cf057600080fd5b6000612cfe87828801612b69565b9450506020612d0f87828801612b69565b9350506040612d2087828801612c11565b925050606085013567ffffffffffffffff811115612d3d57600080fd5b612d4987828801612bbd565b91505092959194509250565b60008060408385031215612d6857600080fd5b6000612d7685828601612b69565b9250506020612d8785828601612b7e565b9150509250929050565b60008060408385031215612da457600080fd5b6000612db285828601612b69565b9250506020612dc385828601612c11565b9150509250929050565b600060208284031215612ddf57600080fd5b6000612ded84828501612b93565b91505092915050565b600060208284031215612e0857600080fd5b6000612e1684828501612ba8565b91505092915050565b600060208284031215612e3157600080fd5b600082013567ffffffffffffffff811115612e4b57600080fd5b612e5784828501612be7565b91505092915050565b600060208284031215612e7257600080fd5b6000612e8084828501612c11565b91505092915050565b6000612e958383613308565b60208301905092915050565b612eaa81613943565b82525050565b6000612ebb826137c2565b612ec581856137f0565b9350612ed0836137b2565b8060005b83811015612f01578151612ee88882612e89565b9750612ef3836137e3565b925050600181019050612ed4565b5085935050505092915050565b612f1781613955565b82525050565b6000612f28826137cd565b612f328185613801565b9350612f428185602086016139c6565b612f4b81613b92565b840191505092915050565b6000612f61826137d8565b612f6b8185613812565b9350612f7b8185602086016139c6565b612f8481613b92565b840191505092915050565b6000612f9a826137d8565b612fa48185613823565b9350612fb48185602086016139c6565b80840191505092915050565b6000612fcd602b83613812565b9150612fd882613ba3565b604082019050919050565b6000612ff0603283613812565b9150612ffb82613bf2565b604082019050919050565b6000613013602e83613812565b915061301e82613c41565b604082019050919050565b6000613036602683613812565b915061304182613c90565b604082019050919050565b6000613059601c83613812565b915061306482613cdf565b602082019050919050565b600061307c602983613812565b915061308782613d08565b604082019050919050565b600061309f602483613812565b91506130aa82613d57565b604082019050919050565b60006130c2601983613812565b91506130cd82613da6565b602082019050919050565b60006130e5602c83613812565b91506130f082613dcf565b604082019050919050565b6000613108602983613812565b915061311382613e1e565b604082019050919050565b600061312b602383613812565b915061313682613e6d565b604082019050919050565b600061314e603883613812565b915061315982613ebc565b604082019050919050565b6000613171602a83613812565b915061317c82613f0b565b604082019050919050565b6000613194602983613812565b915061319f82613f5a565b604082019050919050565b60006131b7602083613812565b91506131c282613fa9565b602082019050919050565b60006131da602c83613812565b91506131e582613fd2565b604082019050919050565b60006131fd602083613812565b915061320882614021565b602082019050919050565b6000613220602983613812565b915061322b8261404a565b604082019050919050565b6000613243602f83613812565b915061324e82614099565b604082019050919050565b6000613266602183613812565b9150613271826140e8565b604082019050919050565b6000613289603183613812565b915061329482614137565b604082019050919050565b60006132ac602c83613812565b91506132b782614186565b604082019050919050565b60006132cf602f83613812565b91506132da826141d5565b604082019050919050565b60006132f2601c83613812565b91506132fd82614224565b602082019050919050565b613311816139ad565b82525050565b613320816139ad565b82525050565b60006133328285612f8f565b915061333e8284612f8f565b91508190509392505050565b600060208201905061335f6000830184612ea1565b92915050565b600060808201905061337a6000830187612ea1565b6133876020830186612ea1565b6133946040830185613317565b81810360608301526133a68184612f1d565b905095945050505050565b600060208201905081810360008301526133cb8184612eb0565b905092915050565b60006020820190506133e86000830184612f0e565b92915050565b600060208201905081810360008301526134088184612f56565b905092915050565b6000602082019050818103600083015261342981612fc0565b9050919050565b6000602082019050818103600083015261344981612fe3565b9050919050565b6000602082019050818103600083015261346981613006565b9050919050565b6000602082019050818103600083015261348981613029565b9050919050565b600060208201905081810360008301526134a98161304c565b9050919050565b600060208201905081810360008301526134c98161306f565b9050919050565b600060208201905081810360008301526134e981613092565b9050919050565b60006020820190508181036000830152613509816130b5565b9050919050565b60006020820190508181036000830152613529816130d8565b9050919050565b60006020820190508181036000830152613549816130fb565b9050919050565b600060208201905081810360008301526135698161311e565b9050919050565b6000602082019050818103600083015261358981613141565b9050919050565b600060208201905081810360008301526135a981613164565b9050919050565b600060208201905081810360008301526135c981613187565b9050919050565b600060208201905081810360008301526135e9816131aa565b9050919050565b60006020820190508181036000830152613609816131cd565b9050919050565b60006020820190508181036000830152613629816131f0565b9050919050565b6000602082019050818103600083015261364981613213565b9050919050565b6000602082019050818103600083015261366981613236565b9050919050565b6000602082019050818103600083015261368981613259565b9050919050565b600060208201905081810360008301526136a98161327c565b9050919050565b600060208201905081810360008301526136c98161329f565b9050919050565b600060208201905081810360008301526136e9816132c2565b9050919050565b60006020820190508181036000830152613709816132e5565b9050919050565b60006020820190506137256000830184613317565b92915050565b6000613735613746565b90506137418282613a2b565b919050565b6000604051905090565b600067ffffffffffffffff82111561376b5761376a613b63565b5b61377482613b92565b9050602081019050919050565b600067ffffffffffffffff82111561379c5761379b613b63565b5b6137a582613b92565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613839826139ad565b9150613844836139ad565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561387957613878613ad6565b5b828201905092915050565b600061388f826139ad565b915061389a836139ad565b9250826138aa576138a9613b05565b5b828204905092915050565b60006138c0826139ad565b91506138cb836139ad565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561390457613903613ad6565b5b828202905092915050565b600061391a826139ad565b9150613925836139ad565b92508282101561393857613937613ad6565b5b828203905092915050565b600061394e8261398d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156139e45780820151818401526020810190506139c9565b838111156139f3576000848401525b50505050565b60006002820490506001821680613a1157607f821691505b60208210811415613a2557613a24613b34565b5b50919050565b613a3482613b92565b810181811067ffffffffffffffff82111715613a5357613a52613b63565b5b80604052505050565b6000613a67826139ad565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a9a57613a99613ad6565b5b600182019050919050565b6000613ab0826139ad565b9150613abb836139ad565b925082613acb57613aca613b05565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f556e74616d6564456c657068616e74733a204578636565647320746865206d6160008201527f7820796f752063616e206d696e74000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f556e74616d6564456c657068616e74733a2052657365727665732074616b656e60008201527f20616c7265616479210000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f556e74616d6564456c657068616e74733a204e6f7420656e6f756768206c656660008201527f7420746f206d696e740000000000000000000000000000000000000000000000602082015250565b7f556e74616d6564456c657068616e74733a2056616c75652062656c6f7720707260008201527f6963650000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f556e74616d6564456c657068616e74733a2053616c65206f70656e73206f6e2060008201527f74686520337264206f66204a756c790000000000000000000000000000000000602082015250565b7f556e74616d6564456c657068616e74733a2053616c6520656e64656400000000600082015250565b61425681613943565b811461426157600080fd5b50565b61426d81613955565b811461427857600080fd5b50565b61428481613961565b811461428f57600080fd5b50565b61429b816139ad565b81146142a657600080fd5b5056fea2646970667358221220920bb712015659feb75c158d52dcd636afea102abbb9a04c4af1d2e6d8dd109664736f6c63430008040033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5168584c51636143516577753365614b59384b486745564a6a77704c5a704d65576265426d3756506947644d2f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://gateway.pinata.cloud/ipfs/QmQhXLQcaCQewu3eaKY8KHgEVJjwpLZpMeWbeBm7VPiGdM/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [2] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [3] : 732f516d5168584c51636143516577753365614b59384b486745564a6a77704c
Arg [4] : 5a704d65576265426d3756506947644d2f000000000000000000000000000000


Deployed Bytecode Sourcemap

41782:2319:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35634:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23638:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25197:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43336:281;;;;;;;;;;;;;:::i;:::-;;24720:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36274:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26087:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42879:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35942:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42245:626;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26497:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43625:340;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36464:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43123:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23332:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23062:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20837:94;;;;;;;;;;;;;:::i;:::-;;43973:125;;;:::i;:::-;;41957:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20186:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23807:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25490:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26753:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23982:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41830:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43237:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25856:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21086:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35634:224;35736:4;35775:35;35760:50;;;:11;:50;;;;:90;;;;35814:36;35838:11;35814:23;:36::i;:::-;35760:90;35753:97;;35634:224;;;:::o;23638:100::-;23692:13;23725:5;23718:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23638:100;:::o;25197:221::-;25273:7;25301:16;25309:7;25301;:16::i;:::-;25293:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25386:15;:24;25402:7;25386:24;;;;;;;;;;;;;;;;;;;;;25379:31;;25197:221;;;:::o;43336:281::-;20417:12;:10;:12::i;:::-;20406:23;;:7;:5;:7::i;:::-;:23;;;20398:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43419:5:::1;43395:29;;:20;;;;;;;;;;;:29;;;43387:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;43485:6;43481:91;43501:2;43497:1;:6;43481:91;;;43524:36;43534:10;43546:13;:11;:13::i;:::-;43524:9;:36::i;:::-;43505:3;;;;;:::i;:::-;;;;43481:91;;;;43605:4;43582:20;;:27;;;;;;;;;;;;;;;;;;43336:281::o:0;24720:411::-;24801:13;24817:23;24832:7;24817:14;:23::i;:::-;24801:39;;24865:5;24859:11;;:2;:11;;;;24851:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;24959:5;24943:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;24968:37;24985:5;24992:12;:10;:12::i;:::-;24968:16;:37::i;:::-;24943:62;24921:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;25102:21;25111:2;25115:7;25102:8;:21::i;:::-;24720:411;;;:::o;36274:113::-;36335:7;36362:10;:17;;;;36355:24;;36274:113;:::o;26087:339::-;26282:41;26301:12;:10;:12::i;:::-;26315:7;26282:18;:41::i;:::-;26274:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;26390:28;26400:4;26406:2;26410:7;26390:9;:28::i;:::-;26087:339;;;:::o;42879:110::-;42928:7;42975:6;42955:17;:26;;;;:::i;:::-;42948:33;;42879:110;;;:::o;35942:256::-;36039:7;36075:23;36092:5;36075:16;:23::i;:::-;36067:5;:31;36059:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;36164:12;:19;36177:5;36164:19;;;;;;;;;;;;;;;:26;36184:5;36164:26;;;;;;;;;;;;36157:33;;35942:256;;;;:::o;42245:626::-;41857:4;42165:13;:11;:13::i;:::-;:19;42157:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;41857:4:::1;42346:6;42330:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:29;;42322:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;41857:4;42424:13;:11;:13::i;:::-;:19;42416:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42518:2;42508:6;:12;;42500:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;42603:13;42609:6;42603:5;:13::i;:::-;42590:9;:26;;42582:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;42694:9;;42675:15;:28;;42667:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;42780:6;42776:88;42796:6;42792:1;:10;42776:88;;;42823:29;42833:3;42838:13;:11;:13::i;:::-;42823:9;:29::i;:::-;42804:3;;;;;:::i;:::-;;;;42776:88;;;;42245:626:::0;;:::o;26497:185::-;26635:39;26652:4;26658:2;26662:7;26635:39;;;;;;;;;;;;:16;:39::i;:::-;26497:185;;;:::o;43625:340::-;43686:16;43715:15;43733:17;43743:6;43733:9;:17::i;:::-;43715:35;;43761:25;43803:10;43789:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43761:53;;43829:6;43825:107;43845:10;43841:1;:14;43825:107;;;43890:30;43910:6;43918:1;43890:19;:30::i;:::-;43876:8;43885:1;43876:11;;;;;;;;;;;;;;;;;;;;;:44;;;;;43857:3;;;;;:::i;:::-;;;;43825:107;;;;43949:8;43942:15;;;;43625:340;;;:::o;36464:233::-;36539:7;36575:30;:28;:30::i;:::-;36567:5;:38;36559:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;36672:10;36683:5;36672:17;;;;;;;;;;;;;;;;;;;;;;;;36665:24;;36464:233;;;:::o;43123:102::-;20417:12;:10;:12::i;:::-;20406:23;;:7;:5;:7::i;:::-;:23;;;20398:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43210:7:::1;43194:13;:23;;;;;;;;;;;;:::i;:::-;;43123:102:::0;:::o;23332:239::-;23404:7;23424:13;23440:7;:16;23448:7;23440:16;;;;;;;;;;;;;;;;;;;;;23424:32;;23492:1;23475:19;;:5;:19;;;;23467:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23558:5;23551:12;;;23332:239;;;:::o;23062:208::-;23134:7;23179:1;23162:19;;:5;:19;;;;23154:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;23246:9;:16;23256:5;23246:16;;;;;;;;;;;;;;;;23239:23;;23062:208;;;:::o;20837:94::-;20417:12;:10;:12::i;:::-;20406:23;;:7;:5;:7::i;:::-;:23;;;20398:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20902:21:::1;20920:1;20902:9;:21::i;:::-;20837:94::o:0;43973:125::-;20417:12;:10;:12::i;:::-;20406:23;;:7;:5;:7::i;:::-;:23;;;20398:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44048:12:::1;:10;:12::i;:::-;44040:26;;:49;44067:21;44040:49;;;;;;;;;;;;;;;;;;;;;;;44032:58;;;::::0;::::1;;43973:125::o:0;41957:44::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20186:87::-;20232:7;20259:6;;;;;;;;;;;20252:13;;20186:87;:::o;23807:104::-;23863:13;23896:7;23889:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23807:104;:::o;25490:295::-;25605:12;:10;:12::i;:::-;25593:24;;:8;:24;;;;25585:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;25705:8;25660:18;:32;25679:12;:10;:12::i;:::-;25660:32;;;;;;;;;;;;;;;:42;25693:8;25660:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;25758:8;25729:48;;25744:12;:10;:12::i;:::-;25729:48;;;25768:8;25729:48;;;;;;:::i;:::-;;;;;;;;25490:295;;:::o;26753:328::-;26928:41;26947:12;:10;:12::i;:::-;26961:7;26928:18;:41::i;:::-;26920:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;27034:39;27048:4;27054:2;27058:7;27067:5;27034:13;:39::i;:::-;26753:328;;;;:::o;23982:334::-;24055:13;24089:16;24097:7;24089;:16::i;:::-;24081:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;24170:21;24194:10;:8;:10::i;:::-;24170:34;;24246:1;24228:7;24222:21;:25;:86;;;;;;;;;;;;;;;;;24274:7;24283:18;:7;:16;:18::i;:::-;24257:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24222:86;24215:93;;;23982:334;;;:::o;41830:31::-;41857:4;41830:31;:::o;43237:87::-;20417:12;:10;:12::i;:::-;20406:23;;:7;:5;:7::i;:::-;:23;;;20398:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43312:4:::1;43300:9;:16;;;;43237:87:::0;:::o;25856:164::-;25953:4;25977:18;:25;25996:5;25977:25;;;;;;;;;;;;;;;:35;26003:8;25977:35;;;;;;;;;;;;;;;;;;;;;;;;;25970:42;;25856:164;;;;:::o;21086:192::-;20417:12;:10;:12::i;:::-;20406:23;;:7;:5;:7::i;:::-;:23;;;20398:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21195:1:::1;21175:22;;:8;:22;;;;21167:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21251:19;21261:8;21251:9;:19::i;:::-;21086:192:::0;:::o;22693:305::-;22795:4;22847:25;22832:40;;;:11;:40;;;;:105;;;;22904:33;22889:48;;;:11;:48;;;;22832:105;:158;;;;22954:36;22978:11;22954:23;:36::i;:::-;22832:158;22812:178;;22693:305;;;:::o;28591:127::-;28656:4;28708:1;28680:30;;:7;:16;28688:7;28680:16;;;;;;;;;;;;;;;;;;;;;:30;;;;28673:37;;28591:127;;;:::o;16201:98::-;16254:7;16281:10;16274:17;;16201:98;:::o;29575:110::-;29651:26;29661:2;29665:7;29651:26;;;;;;;;;;;;:9;:26::i;:::-;29575:110;;:::o;32573:174::-;32675:2;32648:15;:24;32664:7;32648:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;32731:7;32727:2;32693:46;;32702:23;32717:7;32702:14;:23::i;:::-;32693:46;;;;;;;;;;;;32573:174;;:::o;28885:348::-;28978:4;29003:16;29011:7;29003;:16::i;:::-;28995:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29079:13;29095:23;29110:7;29095:14;:23::i;:::-;29079:39;;29148:5;29137:16;;:7;:16;;;:51;;;;29181:7;29157:31;;:20;29169:7;29157:11;:20::i;:::-;:31;;;29137:51;:87;;;;29192:32;29209:5;29216:7;29192:16;:32::i;:::-;29137:87;29129:96;;;28885:348;;;;:::o;31877:578::-;32036:4;32009:31;;:23;32024:7;32009:14;:23::i;:::-;:31;;;32001:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;32119:1;32105:16;;:2;:16;;;;32097:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;32175:39;32196:4;32202:2;32206:7;32175:20;:39::i;:::-;32279:29;32296:1;32300:7;32279:8;:29::i;:::-;32340:1;32321:9;:15;32331:4;32321:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;32369:1;32352:9;:13;32362:2;32352:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32400:2;32381:7;:16;32389:7;32381:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32439:7;32435:2;32420:27;;32429:4;32420:27;;;;;;;;;;;;31877:578;;;:::o;21286:173::-;21342:16;21361:6;;;;;;;;;;;21342:25;;21387:8;21378:6;;:17;;;;;;;;;;;;;;;;;;21442:8;21411:40;;21432:8;21411:40;;;;;;;;;;;;21286:173;;:::o;27963:315::-;28120:28;28130:4;28136:2;28140:7;28120:9;:28::i;:::-;28167:48;28190:4;28196:2;28200:7;28209:5;28167:22;:48::i;:::-;28159:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;27963:315;;;;:::o;42997:114::-;43057:13;43090;43083:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42997:114;:::o;16641:723::-;16697:13;16927:1;16918:5;:10;16914:53;;;16945:10;;;;;;;;;;;;;;;;;;;;;16914:53;16977:12;16992:5;16977:20;;17008:14;17033:78;17048:1;17040:4;:9;17033:78;;17066:8;;;;;:::i;:::-;;;;17097:2;17089:10;;;;;:::i;:::-;;;17033:78;;;17121:19;17153:6;17143:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17121:39;;17171:154;17187:1;17178:5;:10;17171:154;;17215:1;17205:11;;;;;:::i;:::-;;;17282:2;17274:5;:10;;;;:::i;:::-;17261:2;:24;;;;:::i;:::-;17248:39;;17231:6;17238;17231:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;17311:2;17302:11;;;;;:::i;:::-;;;17171:154;;;17349:6;17335:21;;;;;16641:723;;;;:::o;1514:157::-;1599:4;1638:25;1623:40;;;:11;:40;;;;1616:47;;1514:157;;;:::o;29912:321::-;30042:18;30048:2;30052:7;30042:5;:18::i;:::-;30093:54;30124:1;30128:2;30132:7;30141:5;30093:22;:54::i;:::-;30071:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;29912:321;;;:::o;37310:589::-;37454:45;37481:4;37487:2;37491:7;37454:26;:45::i;:::-;37532:1;37516:18;;:4;:18;;;37512:187;;;37551:40;37583:7;37551:31;:40::i;:::-;37512:187;;;37621:2;37613:10;;:4;:10;;;37609:90;;37640:47;37673:4;37679:7;37640:32;:47::i;:::-;37609:90;37512:187;37727:1;37713:16;;:2;:16;;;37709:183;;;37746:45;37783:7;37746:36;:45::i;:::-;37709:183;;;37819:4;37813:10;;:2;:10;;;37809:83;;37840:40;37868:2;37872:7;37840:27;:40::i;:::-;37809:83;37709:183;37310:589;;;:::o;33312:803::-;33467:4;33488:15;:2;:13;;;:15::i;:::-;33484:624;;;33540:2;33524:36;;;33561:12;:10;:12::i;:::-;33575:4;33581:7;33590:5;33524:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33520:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33787:1;33770:6;:13;:18;33766:272;;;33813:60;;;;;;;;;;:::i;:::-;;;;;;;;33766:272;33988:6;33982:13;33973:6;33969:2;33965:15;33958:38;33520:533;33657:45;;;33647:55;;;:6;:55;;;;33640:62;;;;;33484:624;34092:4;34085:11;;33312:803;;;;;;;:::o;30569:382::-;30663:1;30649:16;;:2;:16;;;;30641:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;30722:16;30730:7;30722;:16::i;:::-;30721:17;30713:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;30784:45;30813:1;30817:2;30821:7;30784:20;:45::i;:::-;30859:1;30842:9;:13;30852:2;30842:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30890:2;30871:7;:16;30879:7;30871:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30935:7;30931:2;30910:33;;30927:1;30910:33;;;;;;;;;;;;30569:382;;:::o;34687:126::-;;;;:::o;38622:164::-;38726:10;:17;;;;38699:15;:24;38715:7;38699:24;;;;;;;;;;;:44;;;;38754:10;38770:7;38754:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38622:164;:::o;39413:988::-;39679:22;39729:1;39704:22;39721:4;39704:16;:22::i;:::-;:26;;;;:::i;:::-;39679:51;;39741:18;39762:17;:26;39780:7;39762:26;;;;;;;;;;;;39741:47;;39909:14;39895:10;:28;39891:328;;39940:19;39962:12;:18;39975:4;39962:18;;;;;;;;;;;;;;;:34;39981:14;39962:34;;;;;;;;;;;;39940:56;;40046:11;40013:12;:18;40026:4;40013:18;;;;;;;;;;;;;;;:30;40032:10;40013:30;;;;;;;;;;;:44;;;;40163:10;40130:17;:30;40148:11;40130:30;;;;;;;;;;;:43;;;;39891:328;;40315:17;:26;40333:7;40315:26;;;;;;;;;;;40308:33;;;40359:12;:18;40372:4;40359:18;;;;;;;;;;;;;;;:34;40378:14;40359:34;;;;;;;;;;;40352:41;;;39413:988;;;;:::o;40696:1079::-;40949:22;40994:1;40974:10;:17;;;;:21;;;;:::i;:::-;40949:46;;41006:18;41027:15;:24;41043:7;41027:24;;;;;;;;;;;;41006:45;;41378:19;41400:10;41411:14;41400:26;;;;;;;;;;;;;;;;;;;;;;;;41378:48;;41464:11;41439:10;41450;41439:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;41575:10;41544:15;:28;41560:11;41544:28;;;;;;;;;;;:41;;;;41716:15;:24;41732:7;41716:24;;;;;;;;;;;41709:31;;;41751:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40696:1079;;;;:::o;38200:221::-;38285:14;38302:20;38319:2;38302:16;:20::i;:::-;38285:37;;38360:7;38333:12;:16;38346:2;38333:16;;;;;;;;;;;;;;;:24;38350:6;38333:24;;;;;;;;;;;:34;;;;38407:6;38378:17;:26;38396:7;38378:26;;;;;;;;;;;:35;;;;38200:221;;;:::o;8548:387::-;8608:4;8816:12;8883:7;8871:20;8863:28;;8926:1;8919:4;:8;8912:15;;;8548:387;;;:::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:260::-;4941:6;4990:2;4978:9;4969:7;4965:23;4961:32;4958:2;;;5006:1;5003;4996:12;4958:2;5049:1;5074:52;5118:7;5109:6;5098:9;5094:22;5074:52;:::i;:::-;5064:62;;5020:116;4948:195;;;;:::o;5149:282::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:2;;;5283:1;5280;5273:12;5235:2;5326:1;5351:63;5406:7;5397:6;5386:9;5382:22;5351:63;:::i;:::-;5341:73;;5297:127;5225:206;;;;:::o;5437:375::-;5506:6;5555:2;5543:9;5534:7;5530:23;5526:32;5523:2;;;5571:1;5568;5561:12;5523:2;5642:1;5631:9;5627:17;5614:31;5672:18;5664:6;5661:30;5658:2;;;5704:1;5701;5694:12;5658:2;5732:63;5787:7;5778:6;5767:9;5763:22;5732:63;:::i;:::-;5722:73;;5585:220;5513:299;;;;:::o;5818:262::-;5877:6;5926:2;5914:9;5905:7;5901:23;5897:32;5894:2;;;5942:1;5939;5932:12;5894:2;5985:1;6010:53;6055:7;6046:6;6035:9;6031:22;6010:53;:::i;:::-;6000:63;;5956:117;5884:196;;;;:::o;6086:179::-;6155:10;6176:46;6218:3;6210:6;6176:46;:::i;:::-;6254:4;6249:3;6245:14;6231:28;;6166:99;;;;:::o;6271:118::-;6358:24;6376:5;6358:24;:::i;:::-;6353:3;6346:37;6336:53;;:::o;6425:732::-;6544:3;6573:54;6621:5;6573:54;:::i;:::-;6643:86;6722:6;6717:3;6643:86;:::i;:::-;6636:93;;6753:56;6803:5;6753:56;:::i;:::-;6832:7;6863:1;6848:284;6873:6;6870:1;6867:13;6848:284;;;6949:6;6943:13;6976:63;7035:3;7020:13;6976:63;:::i;:::-;6969:70;;7062:60;7115:6;7062:60;:::i;:::-;7052:70;;6908:224;6895:1;6892;6888:9;6883:14;;6848:284;;;6852:14;7148:3;7141:10;;6549:608;;;;;;;:::o;7163:109::-;7244:21;7259:5;7244:21;:::i;:::-;7239:3;7232:34;7222:50;;:::o;7278:360::-;7364:3;7392:38;7424:5;7392:38;:::i;:::-;7446:70;7509:6;7504:3;7446:70;:::i;:::-;7439:77;;7525:52;7570:6;7565:3;7558:4;7551:5;7547:16;7525:52;:::i;:::-;7602:29;7624:6;7602:29;:::i;:::-;7597:3;7593:39;7586:46;;7368:270;;;;;:::o;7644:364::-;7732:3;7760:39;7793:5;7760:39;:::i;:::-;7815:71;7879:6;7874:3;7815:71;:::i;:::-;7808:78;;7895:52;7940:6;7935:3;7928:4;7921:5;7917:16;7895:52;:::i;:::-;7972:29;7994:6;7972:29;:::i;:::-;7967:3;7963:39;7956:46;;7736:272;;;;;:::o;8014:377::-;8120:3;8148:39;8181:5;8148:39;:::i;:::-;8203:89;8285:6;8280:3;8203:89;:::i;:::-;8196:96;;8301:52;8346:6;8341:3;8334:4;8327:5;8323:16;8301:52;:::i;:::-;8378:6;8373:3;8369:16;8362:23;;8124:267;;;;;:::o;8397:366::-;8539:3;8560:67;8624:2;8619:3;8560:67;:::i;:::-;8553:74;;8636:93;8725:3;8636:93;:::i;:::-;8754:2;8749:3;8745:12;8738:19;;8543:220;;;:::o;8769:366::-;8911:3;8932:67;8996:2;8991:3;8932:67;:::i;:::-;8925:74;;9008:93;9097:3;9008:93;:::i;:::-;9126:2;9121:3;9117:12;9110:19;;8915:220;;;:::o;9141:366::-;9283:3;9304:67;9368:2;9363:3;9304:67;:::i;:::-;9297:74;;9380:93;9469:3;9380:93;:::i;:::-;9498:2;9493:3;9489:12;9482:19;;9287:220;;;:::o;9513:366::-;9655:3;9676:67;9740:2;9735:3;9676:67;:::i;:::-;9669:74;;9752:93;9841:3;9752:93;:::i;:::-;9870:2;9865:3;9861:12;9854:19;;9659:220;;;:::o;9885:366::-;10027:3;10048:67;10112:2;10107:3;10048:67;:::i;:::-;10041:74;;10124:93;10213:3;10124:93;:::i;:::-;10242:2;10237:3;10233:12;10226:19;;10031:220;;;:::o;10257:366::-;10399:3;10420:67;10484:2;10479:3;10420:67;:::i;:::-;10413:74;;10496:93;10585:3;10496:93;:::i;:::-;10614:2;10609:3;10605:12;10598:19;;10403:220;;;:::o;10629:366::-;10771:3;10792:67;10856:2;10851:3;10792:67;:::i;:::-;10785:74;;10868:93;10957:3;10868:93;:::i;:::-;10986:2;10981:3;10977:12;10970:19;;10775:220;;;:::o;11001:366::-;11143:3;11164:67;11228:2;11223:3;11164:67;:::i;:::-;11157:74;;11240:93;11329:3;11240:93;:::i;:::-;11358:2;11353:3;11349:12;11342:19;;11147:220;;;:::o;11373:366::-;11515:3;11536:67;11600:2;11595:3;11536:67;:::i;:::-;11529:74;;11612:93;11701:3;11612:93;:::i;:::-;11730:2;11725:3;11721:12;11714:19;;11519:220;;;:::o;11745:366::-;11887:3;11908:67;11972:2;11967:3;11908:67;:::i;:::-;11901:74;;11984:93;12073:3;11984:93;:::i;:::-;12102:2;12097:3;12093:12;12086:19;;11891:220;;;:::o;12117:366::-;12259:3;12280:67;12344:2;12339:3;12280:67;:::i;:::-;12273:74;;12356:93;12445:3;12356:93;:::i;:::-;12474:2;12469:3;12465:12;12458:19;;12263:220;;;:::o;12489:366::-;12631:3;12652:67;12716:2;12711:3;12652:67;:::i;:::-;12645:74;;12728:93;12817:3;12728:93;:::i;:::-;12846:2;12841:3;12837:12;12830:19;;12635:220;;;:::o;12861:366::-;13003:3;13024:67;13088:2;13083:3;13024:67;:::i;:::-;13017:74;;13100:93;13189:3;13100:93;:::i;:::-;13218:2;13213:3;13209:12;13202:19;;13007:220;;;:::o;13233:366::-;13375:3;13396:67;13460:2;13455:3;13396:67;:::i;:::-;13389:74;;13472:93;13561:3;13472:93;:::i;:::-;13590:2;13585:3;13581:12;13574:19;;13379:220;;;:::o;13605:366::-;13747:3;13768:67;13832:2;13827:3;13768:67;:::i;:::-;13761:74;;13844:93;13933:3;13844:93;:::i;:::-;13962:2;13957:3;13953:12;13946:19;;13751:220;;;:::o;13977:366::-;14119:3;14140:67;14204:2;14199:3;14140:67;:::i;:::-;14133:74;;14216:93;14305:3;14216:93;:::i;:::-;14334:2;14329:3;14325:12;14318:19;;14123:220;;;:::o;14349:366::-;14491:3;14512:67;14576:2;14571:3;14512:67;:::i;:::-;14505:74;;14588:93;14677:3;14588:93;:::i;:::-;14706:2;14701:3;14697:12;14690:19;;14495:220;;;:::o;14721:366::-;14863:3;14884:67;14948:2;14943:3;14884:67;:::i;:::-;14877:74;;14960:93;15049:3;14960:93;:::i;:::-;15078:2;15073:3;15069:12;15062:19;;14867:220;;;:::o;15093:366::-;15235:3;15256:67;15320:2;15315:3;15256:67;:::i;:::-;15249:74;;15332:93;15421:3;15332:93;:::i;:::-;15450:2;15445:3;15441:12;15434:19;;15239:220;;;:::o;15465:366::-;15607:3;15628:67;15692:2;15687:3;15628:67;:::i;:::-;15621:74;;15704:93;15793:3;15704:93;:::i;:::-;15822:2;15817:3;15813:12;15806:19;;15611:220;;;:::o;15837:366::-;15979:3;16000:67;16064:2;16059:3;16000:67;:::i;:::-;15993:74;;16076:93;16165:3;16076:93;:::i;:::-;16194:2;16189:3;16185:12;16178:19;;15983:220;;;:::o;16209:366::-;16351:3;16372:67;16436:2;16431:3;16372:67;:::i;:::-;16365:74;;16448:93;16537:3;16448:93;:::i;:::-;16566:2;16561:3;16557:12;16550:19;;16355:220;;;:::o;16581:366::-;16723:3;16744:67;16808:2;16803:3;16744:67;:::i;:::-;16737:74;;16820:93;16909:3;16820:93;:::i;:::-;16938:2;16933:3;16929:12;16922:19;;16727:220;;;:::o;16953:366::-;17095:3;17116:67;17180:2;17175:3;17116:67;:::i;:::-;17109:74;;17192:93;17281:3;17192:93;:::i;:::-;17310:2;17305:3;17301:12;17294:19;;17099:220;;;:::o;17325:108::-;17402:24;17420:5;17402:24;:::i;:::-;17397:3;17390:37;17380:53;;:::o;17439:118::-;17526:24;17544:5;17526:24;:::i;:::-;17521:3;17514:37;17504:53;;:::o;17563:435::-;17743:3;17765:95;17856:3;17847:6;17765:95;:::i;:::-;17758:102;;17877:95;17968:3;17959:6;17877:95;:::i;:::-;17870:102;;17989:3;17982:10;;17747:251;;;;;:::o;18004:222::-;18097:4;18135:2;18124:9;18120:18;18112:26;;18148:71;18216:1;18205:9;18201:17;18192:6;18148:71;:::i;:::-;18102:124;;;;:::o;18232:640::-;18427:4;18465:3;18454:9;18450:19;18442:27;;18479:71;18547:1;18536:9;18532:17;18523:6;18479:71;:::i;:::-;18560:72;18628:2;18617:9;18613:18;18604:6;18560:72;:::i;:::-;18642;18710:2;18699:9;18695:18;18686:6;18642:72;:::i;:::-;18761:9;18755:4;18751:20;18746:2;18735:9;18731:18;18724:48;18789:76;18860:4;18851:6;18789:76;:::i;:::-;18781:84;;18432:440;;;;;;;:::o;18878:373::-;19021:4;19059:2;19048:9;19044:18;19036:26;;19108:9;19102:4;19098:20;19094:1;19083:9;19079:17;19072:47;19136:108;19239:4;19230:6;19136:108;:::i;:::-;19128:116;;19026:225;;;;:::o;19257:210::-;19344:4;19382:2;19371:9;19367:18;19359:26;;19395:65;19457:1;19446:9;19442:17;19433:6;19395:65;:::i;:::-;19349:118;;;;:::o;19473:313::-;19586:4;19624:2;19613:9;19609:18;19601:26;;19673:9;19667:4;19663:20;19659:1;19648:9;19644:17;19637:47;19701:78;19774:4;19765:6;19701:78;:::i;:::-;19693:86;;19591:195;;;;:::o;19792:419::-;19958:4;19996:2;19985:9;19981:18;19973:26;;20045:9;20039:4;20035:20;20031:1;20020:9;20016:17;20009:47;20073:131;20199:4;20073:131;:::i;:::-;20065:139;;19963:248;;;:::o;20217:419::-;20383:4;20421:2;20410:9;20406:18;20398:26;;20470:9;20464:4;20460:20;20456:1;20445:9;20441:17;20434:47;20498:131;20624:4;20498:131;:::i;:::-;20490:139;;20388:248;;;:::o;20642:419::-;20808:4;20846:2;20835:9;20831:18;20823:26;;20895:9;20889:4;20885:20;20881:1;20870:9;20866:17;20859:47;20923:131;21049:4;20923:131;:::i;:::-;20915:139;;20813:248;;;:::o;21067:419::-;21233:4;21271:2;21260:9;21256:18;21248:26;;21320:9;21314:4;21310:20;21306:1;21295:9;21291:17;21284:47;21348:131;21474:4;21348:131;:::i;:::-;21340:139;;21238:248;;;:::o;21492:419::-;21658:4;21696:2;21685:9;21681:18;21673:26;;21745:9;21739:4;21735:20;21731:1;21720:9;21716:17;21709:47;21773:131;21899:4;21773:131;:::i;:::-;21765:139;;21663:248;;;:::o;21917:419::-;22083:4;22121:2;22110:9;22106:18;22098:26;;22170:9;22164:4;22160:20;22156:1;22145:9;22141:17;22134:47;22198:131;22324:4;22198:131;:::i;:::-;22190:139;;22088:248;;;:::o;22342:419::-;22508:4;22546:2;22535:9;22531:18;22523:26;;22595:9;22589:4;22585:20;22581:1;22570:9;22566:17;22559:47;22623:131;22749:4;22623:131;:::i;:::-;22615:139;;22513:248;;;:::o;22767:419::-;22933:4;22971:2;22960:9;22956:18;22948:26;;23020:9;23014:4;23010:20;23006:1;22995:9;22991:17;22984:47;23048:131;23174:4;23048:131;:::i;:::-;23040:139;;22938:248;;;:::o;23192:419::-;23358:4;23396:2;23385:9;23381:18;23373:26;;23445:9;23439:4;23435:20;23431:1;23420:9;23416:17;23409:47;23473:131;23599:4;23473:131;:::i;:::-;23465:139;;23363:248;;;:::o;23617:419::-;23783:4;23821:2;23810:9;23806:18;23798:26;;23870:9;23864:4;23860:20;23856:1;23845:9;23841:17;23834:47;23898:131;24024:4;23898:131;:::i;:::-;23890:139;;23788:248;;;:::o;24042:419::-;24208:4;24246:2;24235:9;24231:18;24223:26;;24295:9;24289:4;24285:20;24281:1;24270:9;24266:17;24259:47;24323:131;24449:4;24323:131;:::i;:::-;24315:139;;24213:248;;;:::o;24467:419::-;24633:4;24671:2;24660:9;24656:18;24648:26;;24720:9;24714:4;24710:20;24706:1;24695:9;24691:17;24684:47;24748:131;24874:4;24748:131;:::i;:::-;24740:139;;24638:248;;;:::o;24892:419::-;25058:4;25096:2;25085:9;25081:18;25073:26;;25145:9;25139:4;25135:20;25131:1;25120:9;25116:17;25109:47;25173:131;25299:4;25173:131;:::i;:::-;25165:139;;25063:248;;;:::o;25317:419::-;25483:4;25521:2;25510:9;25506:18;25498:26;;25570:9;25564:4;25560:20;25556:1;25545:9;25541:17;25534:47;25598:131;25724:4;25598:131;:::i;:::-;25590:139;;25488:248;;;:::o;25742:419::-;25908:4;25946:2;25935:9;25931:18;25923:26;;25995:9;25989:4;25985:20;25981:1;25970:9;25966:17;25959:47;26023:131;26149:4;26023:131;:::i;:::-;26015:139;;25913:248;;;:::o;26167:419::-;26333:4;26371:2;26360:9;26356:18;26348:26;;26420:9;26414:4;26410:20;26406:1;26395:9;26391:17;26384:47;26448:131;26574:4;26448:131;:::i;:::-;26440:139;;26338:248;;;:::o;26592:419::-;26758:4;26796:2;26785:9;26781:18;26773:26;;26845:9;26839:4;26835:20;26831:1;26820:9;26816:17;26809:47;26873:131;26999:4;26873:131;:::i;:::-;26865:139;;26763:248;;;:::o;27017:419::-;27183:4;27221:2;27210:9;27206:18;27198:26;;27270:9;27264:4;27260:20;27256:1;27245:9;27241:17;27234:47;27298:131;27424:4;27298:131;:::i;:::-;27290:139;;27188:248;;;:::o;27442:419::-;27608:4;27646:2;27635:9;27631:18;27623:26;;27695:9;27689:4;27685:20;27681:1;27670:9;27666:17;27659:47;27723:131;27849:4;27723:131;:::i;:::-;27715:139;;27613:248;;;:::o;27867:419::-;28033:4;28071:2;28060:9;28056:18;28048:26;;28120:9;28114:4;28110:20;28106:1;28095:9;28091:17;28084:47;28148:131;28274:4;28148:131;:::i;:::-;28140:139;;28038:248;;;:::o;28292:419::-;28458:4;28496:2;28485:9;28481:18;28473:26;;28545:9;28539:4;28535:20;28531:1;28520:9;28516:17;28509:47;28573:131;28699:4;28573:131;:::i;:::-;28565:139;;28463:248;;;:::o;28717:419::-;28883:4;28921:2;28910:9;28906:18;28898:26;;28970:9;28964:4;28960:20;28956:1;28945:9;28941:17;28934:47;28998:131;29124:4;28998:131;:::i;:::-;28990:139;;28888:248;;;:::o;29142:419::-;29308:4;29346:2;29335:9;29331:18;29323:26;;29395:9;29389:4;29385:20;29381:1;29370:9;29366:17;29359:47;29423:131;29549:4;29423:131;:::i;:::-;29415:139;;29313:248;;;:::o;29567:419::-;29733:4;29771:2;29760:9;29756:18;29748:26;;29820:9;29814:4;29810:20;29806:1;29795:9;29791:17;29784:47;29848:131;29974:4;29848:131;:::i;:::-;29840:139;;29738:248;;;:::o;29992:222::-;30085:4;30123:2;30112:9;30108:18;30100:26;;30136:71;30204:1;30193:9;30189:17;30180:6;30136:71;:::i;:::-;30090:124;;;;:::o;30220:129::-;30254:6;30281:20;;:::i;:::-;30271:30;;30310:33;30338:4;30330:6;30310:33;:::i;:::-;30261:88;;;:::o;30355:75::-;30388:6;30421:2;30415:9;30405:19;;30395:35;:::o;30436:307::-;30497:4;30587:18;30579:6;30576:30;30573:2;;;30609:18;;:::i;:::-;30573:2;30647:29;30669:6;30647:29;:::i;:::-;30639:37;;30731:4;30725;30721:15;30713:23;;30502:241;;;:::o;30749:308::-;30811:4;30901:18;30893:6;30890:30;30887:2;;;30923:18;;:::i;:::-;30887:2;30961:29;30983:6;30961:29;:::i;:::-;30953:37;;31045:4;31039;31035:15;31027:23;;30816:241;;;:::o;31063:132::-;31130:4;31153:3;31145:11;;31183:4;31178:3;31174:14;31166:22;;31135:60;;;:::o;31201:114::-;31268:6;31302:5;31296:12;31286:22;;31275:40;;;:::o;31321:98::-;31372:6;31406:5;31400:12;31390:22;;31379:40;;;:::o;31425:99::-;31477:6;31511:5;31505:12;31495:22;;31484:40;;;:::o;31530:113::-;31600:4;31632;31627:3;31623:14;31615:22;;31605:38;;;:::o;31649:184::-;31748:11;31782:6;31777:3;31770:19;31822:4;31817:3;31813:14;31798:29;;31760:73;;;;:::o;31839:168::-;31922:11;31956:6;31951:3;31944:19;31996:4;31991:3;31987:14;31972:29;;31934:73;;;;:::o;32013:169::-;32097:11;32131:6;32126:3;32119:19;32171:4;32166:3;32162:14;32147:29;;32109:73;;;;:::o;32188:148::-;32290:11;32327:3;32312:18;;32302:34;;;;:::o;32342:305::-;32382:3;32401:20;32419:1;32401:20;:::i;:::-;32396:25;;32435:20;32453:1;32435:20;:::i;:::-;32430:25;;32589:1;32521:66;32517:74;32514:1;32511:81;32508:2;;;32595:18;;:::i;:::-;32508:2;32639:1;32636;32632:9;32625:16;;32386:261;;;;:::o;32653:185::-;32693:1;32710:20;32728:1;32710:20;:::i;:::-;32705:25;;32744:20;32762:1;32744:20;:::i;:::-;32739:25;;32783:1;32773:2;;32788:18;;:::i;:::-;32773:2;32830:1;32827;32823:9;32818:14;;32695:143;;;;:::o;32844:348::-;32884:7;32907:20;32925:1;32907:20;:::i;:::-;32902:25;;32941:20;32959:1;32941:20;:::i;:::-;32936:25;;33129:1;33061:66;33057:74;33054:1;33051:81;33046:1;33039:9;33032:17;33028:105;33025:2;;;33136:18;;:::i;:::-;33025:2;33184:1;33181;33177:9;33166:20;;32892:300;;;;:::o;33198:191::-;33238:4;33258:20;33276:1;33258:20;:::i;:::-;33253:25;;33292:20;33310:1;33292:20;:::i;:::-;33287:25;;33331:1;33328;33325:8;33322:2;;;33336:18;;:::i;:::-;33322:2;33381:1;33378;33374:9;33366:17;;33243:146;;;;:::o;33395:96::-;33432:7;33461:24;33479:5;33461:24;:::i;:::-;33450:35;;33440:51;;;:::o;33497:90::-;33531:7;33574:5;33567:13;33560:21;33549:32;;33539:48;;;:::o;33593:149::-;33629:7;33669:66;33662:5;33658:78;33647:89;;33637:105;;;:::o;33748:126::-;33785:7;33825:42;33818:5;33814:54;33803:65;;33793:81;;;:::o;33880:77::-;33917:7;33946:5;33935:16;;33925:32;;;:::o;33963:154::-;34047:6;34042:3;34037;34024:30;34109:1;34100:6;34095:3;34091:16;34084:27;34014:103;;;:::o;34123:307::-;34191:1;34201:113;34215:6;34212:1;34209:13;34201:113;;;34300:1;34295:3;34291:11;34285:18;34281:1;34276:3;34272:11;34265:39;34237:2;34234:1;34230:10;34225:15;;34201:113;;;34332:6;34329:1;34326:13;34323:2;;;34412:1;34403:6;34398:3;34394:16;34387:27;34323:2;34172:258;;;;:::o;34436:320::-;34480:6;34517:1;34511:4;34507:12;34497:22;;34564:1;34558:4;34554:12;34585:18;34575:2;;34641:4;34633:6;34629:17;34619:27;;34575:2;34703;34695:6;34692:14;34672:18;34669:38;34666:2;;;34722:18;;:::i;:::-;34666:2;34487:269;;;;:::o;34762:281::-;34845:27;34867:4;34845:27;:::i;:::-;34837:6;34833:40;34975:6;34963:10;34960:22;34939:18;34927:10;34924:34;34921:62;34918:2;;;34986:18;;:::i;:::-;34918:2;35026:10;35022:2;35015:22;34805:238;;;:::o;35049:233::-;35088:3;35111:24;35129:5;35111:24;:::i;:::-;35102:33;;35157:66;35150:5;35147:77;35144:2;;;35227:18;;:::i;:::-;35144:2;35274:1;35267:5;35263:13;35256:20;;35092:190;;;:::o;35288:176::-;35320:1;35337:20;35355:1;35337:20;:::i;:::-;35332:25;;35371:20;35389:1;35371:20;:::i;:::-;35366:25;;35410:1;35400:2;;35415:18;;:::i;:::-;35400:2;35456:1;35453;35449:9;35444:14;;35322:142;;;;:::o;35470:180::-;35518:77;35515:1;35508:88;35615:4;35612:1;35605:15;35639:4;35636:1;35629:15;35656:180;35704:77;35701:1;35694:88;35801:4;35798:1;35791:15;35825:4;35822:1;35815:15;35842:180;35890:77;35887:1;35880:88;35987:4;35984:1;35977:15;36011:4;36008:1;36001:15;36028:180;36076:77;36073:1;36066:88;36173:4;36170:1;36163:15;36197:4;36194:1;36187:15;36214:102;36255:6;36306:2;36302:7;36297:2;36290:5;36286:14;36282:28;36272:38;;36262:54;;;:::o;36322:230::-;36462:34;36458:1;36450:6;36446:14;36439:58;36531:13;36526:2;36518:6;36514:15;36507:38;36428:124;:::o;36558:237::-;36698:34;36694:1;36686:6;36682:14;36675:58;36767:20;36762:2;36754:6;36750:15;36743:45;36664:131;:::o;36801:233::-;36941:34;36937:1;36929:6;36925:14;36918:58;37010:16;37005:2;36997:6;36993:15;36986:41;36907:127;:::o;37040:225::-;37180:34;37176:1;37168:6;37164:14;37157:58;37249:8;37244:2;37236:6;37232:15;37225:33;37146:119;:::o;37271:178::-;37411:30;37407:1;37399:6;37395:14;37388:54;37377:72;:::o;37455:228::-;37595:34;37591:1;37583:6;37579:14;37572:58;37664:11;37659:2;37651:6;37647:15;37640:36;37561:122;:::o;37689:223::-;37829:34;37825:1;37817:6;37813:14;37806:58;37898:6;37893:2;37885:6;37881:15;37874:31;37795:117;:::o;37918:175::-;38058:27;38054:1;38046:6;38042:14;38035:51;38024:69;:::o;38099:231::-;38239:34;38235:1;38227:6;38223:14;38216:58;38308:14;38303:2;38295:6;38291:15;38284:39;38205:125;:::o;38336:228::-;38476:34;38472:1;38464:6;38460:14;38453:58;38545:11;38540:2;38532:6;38528:15;38521:36;38442:122;:::o;38570:222::-;38710:34;38706:1;38698:6;38694:14;38687:58;38779:5;38774:2;38766:6;38762:15;38755:30;38676:116;:::o;38798:243::-;38938:34;38934:1;38926:6;38922:14;38915:58;39007:26;39002:2;38994:6;38990:15;38983:51;38904:137;:::o;39047:229::-;39187:34;39183:1;39175:6;39171:14;39164:58;39256:12;39251:2;39243:6;39239:15;39232:37;39153:123;:::o;39282:228::-;39422:34;39418:1;39410:6;39406:14;39399:58;39491:11;39486:2;39478:6;39474:15;39467:36;39388:122;:::o;39516:182::-;39656:34;39652:1;39644:6;39640:14;39633:58;39622:76;:::o;39704:231::-;39844:34;39840:1;39832:6;39828:14;39821:58;39913:14;39908:2;39900:6;39896:15;39889:39;39810:125;:::o;39941:182::-;40081:34;40077:1;40069:6;40065:14;40058:58;40047:76;:::o;40129:228::-;40269:34;40265:1;40257:6;40253:14;40246:58;40338:11;40333:2;40325:6;40321:15;40314:36;40235:122;:::o;40363:234::-;40503:34;40499:1;40491:6;40487:14;40480:58;40572:17;40567:2;40559:6;40555:15;40548:42;40469:128;:::o;40603:220::-;40743:34;40739:1;40731:6;40727:14;40720:58;40812:3;40807:2;40799:6;40795:15;40788:28;40709:114;:::o;40829:236::-;40969:34;40965:1;40957:6;40953:14;40946:58;41038:19;41033:2;41025:6;41021:15;41014:44;40935:130;:::o;41071:231::-;41211:34;41207:1;41199:6;41195:14;41188:58;41280:14;41275:2;41267:6;41263:15;41256:39;41177:125;:::o;41308:234::-;41448:34;41444:1;41436:6;41432:14;41425:58;41517:17;41512:2;41504:6;41500:15;41493:42;41414:128;:::o;41548:178::-;41688:30;41684:1;41676:6;41672:14;41665:54;41654:72;:::o;41732:122::-;41805:24;41823:5;41805:24;:::i;:::-;41798:5;41795:35;41785:2;;41844:1;41841;41834:12;41785:2;41775:79;:::o;41860:116::-;41930:21;41945:5;41930:21;:::i;:::-;41923:5;41920:32;41910:2;;41966:1;41963;41956:12;41910:2;41900:76;:::o;41982:120::-;42054:23;42071:5;42054:23;:::i;:::-;42047:5;42044:34;42034:2;;42092:1;42089;42082:12;42034:2;42024:78;:::o;42108:122::-;42181:24;42199:5;42181:24;:::i;:::-;42174:5;42171:35;42161:2;;42220:1;42217;42210:12;42161:2;42151:79;:::o

Swarm Source

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