ETH Price: $3,278.53 (-0.04%)
Gas: 9 Gwei

Token

0xApes (0xApe)
 

Overview

Max Total Supply

2,273 0xApe

Holders

64

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
3 0xApe
0x605519CF79a14018359F42BE1edb571e011A0905
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ApesPunk

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 100 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-10
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/access/[email protected]



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/security/[email protected]



pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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


// File @openzeppelin/contracts/utils/introspection/[email protected]



pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]



pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/utils/[email protected]



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]



pragma solidity ^0.8.0;

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]



pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]



pragma solidity ^0.8.0;







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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File contracts/ApesPunk.sol


pragma solidity ^0.8.0;
contract ApesPunk is Ownable, ERC721Enumerable, ReentrancyGuard {
    using Strings for uint256;

    // variables for mint
    bool public isMintOn = false;

    bool public saleHasBeenStarted = false;

    uint256 public constant MAX_MINTABLE_AT_ONCE = 50;

    uint256[10000] private _availableTokens;
    uint256 private _numAvailableTokens = 10000;
    
    uint256 private _lastTokenIdMintedInInitialSet = 10000;

    // variables for market
    struct Offer {
        bool isForSale;
        uint tokenId;
        address seller;
        uint minValue;          // in ether
        address onlySellTo;     // specify to sell only to a specific person
    }

    struct Bid {
        bool hasBid;
        uint tokenId;
        address bidder;
        uint value;
    }

    // A record of punks that are offered for sale at a specific minimum value, and perhaps to a specific person
    mapping (uint => Offer) public punksOfferedForSale;

    // A record of the highest punk bid
    mapping (uint => Bid) public punkBids;

    mapping (address => uint) public pendingWithdrawals;

    event PunkOffered(uint indexed tokenId, uint minValue, address indexed toAddress);
    event PunkBidEntered(uint indexed tokenId, uint value, address indexed fromAddress);
    event PunkBidWithdrawn(uint indexed tokenId, uint value, address indexed fromAddress);
    event PunkBought(uint indexed tokenId, uint value, address indexed fromAddress, address indexed toAddress);
    event PunkNoLongerForSale(uint indexed tokenId);


    constructor() ERC721("0xApes", "0xApe") {}
    
    function numTotalPhunks() public view virtual returns (uint256) {
        return 10000;
    }

    function mint(uint256 _numToMint) public payable nonReentrant() {
        require(isMintOn, "Sale hasn't started.");
        uint256 totalSupply = totalSupply();
        require(
            totalSupply + _numToMint <= numTotalPhunks(),
            "There aren't this many phunks left."
        );
        uint256 costForMintingPhunks = getCostForMintingPhunks(_numToMint);
        require(
            msg.value >= costForMintingPhunks,
            "Too little sent, please send more eth."
        );
        if (msg.value > costForMintingPhunks) {
            require(_safeTransferETH(msg.sender, msg.value - costForMintingPhunks));
        }

        // transfer cost for mint to owner address
        require(_safeTransferETH(owner(), costForMintingPhunks), "failed to transfer minting cost");

        _mint(_numToMint);
    }

    // internal minting function
    function _mint(uint256 _numToMint) internal {
        require(_numToMint <= MAX_MINTABLE_AT_ONCE, "Minting too many at once.");

        uint256 updatedNumAvailableTokens = _numAvailableTokens;
        for (uint256 i = 0; i < _numToMint; i++) {
            uint256 newTokenId = useRandomAvailableToken(_numToMint, i);
            _safeMint(msg.sender, newTokenId + 10000);
            updatedNumAvailableTokens--;
        }
        _numAvailableTokens = updatedNumAvailableTokens;
    }

    function useRandomAvailableToken(uint256 _numToFetch, uint256 _i)
        internal
        returns (uint256)
    {
        uint256 randomNum =
        uint256(
            keccak256(
            abi.encode(
                msg.sender,
                tx.gasprice,
                block.number,
                block.timestamp,
                blockhash(block.number - 1),
                _numToFetch,
                _i
            )
            )
        );
        uint256 randomIndex = randomNum % _numAvailableTokens;
        return useAvailableTokenAtIndex(randomIndex);
    }

    function useAvailableTokenAtIndex(uint256 indexToUse)
        internal
        returns (uint256)
    {
        uint256 valAtIndex = _availableTokens[indexToUse];
        uint256 result;
        if (valAtIndex == 0) {
            // This means the index itself is still an available token
            result = indexToUse;
        } else {
            // This means the index itself is not an available token, but the val at that index is.
            result = valAtIndex;
        }

        uint256 lastIndex = _numAvailableTokens - 1;
        if (indexToUse != lastIndex) {
            // Replace the value at indexToUse, now that it's been used.
            // Replace it with the data from the last index in the array, since we are going to decrease the array size afterwards.
            uint256 lastValInArray = _availableTokens[lastIndex];
            if (lastValInArray == 0) {
                // This means the index itself is still an available token
                _availableTokens[indexToUse] = lastIndex;
            } else {
                // This means the index itself is not an available token, but the val at that index is.
                _availableTokens[indexToUse] = lastValInArray;
            }
        }

        _numAvailableTokens--;
        return result;
    }

    function getCostForMintingPhunks(uint256 _numToMint)
        public
        view
        returns (uint256)
    {
        require(
            totalSupply() + _numToMint <= numTotalPhunks(),
            "There aren't this many phunks left."
        );
        return 0.05 ether * _numToMint;
    }

    function getPhunksBelongingToOwner(address _owner)
        external
        view
        returns (uint256[] memory)
    {
        uint256 numPhunks = balanceOf(_owner);
        if (numPhunks == 0) {
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](numPhunks);
            for (uint256 i = 0; i < numPhunks; i++) {
                result[i] = tokenOfOwnerByIndex(_owner, i);
            }
            return result;
        }
    }

    /*
    * Dev stuff.
    */

    // metadata URI
    string private _baseTokenURI;

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

    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        string memory base = _baseURI();
        string memory _tokenURI = Strings.toString(_tokenId);

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }

        return string(abi.encodePacked(base, _tokenURI));
    }

    // contract metadata URI for opensea
    string public contractURI;

    /*
    * Owner stuff
    */

    function startMinting() public onlyOwner {
        isMintOn = true;
        saleHasBeenStarted = true;
    }

    function endMinting() public onlyOwner {
        isMintOn = false;
    }

    // for seeding the v2 contract with v1 state
    // details on seeding info here: https://gist.github.com/cryptophunks/7f542feaee510e12464da3bb2a922713
    function seedInitialContractState(
        address[] memory tokenOwners,
        uint256[] memory tokens
    ) public onlyOwner {
        require(
            !saleHasBeenStarted,
            "cannot initial phunk mint if sale has started"
        );
        require(
            tokenOwners.length == tokens.length,
            "tokenOwners does not match tokens length"
        );

        uint256 lastTokenIdMintedInInitialSetCopy = _lastTokenIdMintedInInitialSet;
        for (uint256 i = 0; i < tokenOwners.length; i++) {
            uint256 token = tokens[i];
            require(
                lastTokenIdMintedInInitialSetCopy > token,
                "initial phunk mints must be in decreasing order for our availableToken index to work"
            );
            lastTokenIdMintedInInitialSetCopy = token;

            useAvailableTokenAtIndex(token);
            _safeMint(tokenOwners[i], token + 10000);
        }
        _lastTokenIdMintedInInitialSet = lastTokenIdMintedInInitialSetCopy;
    }

    // URIs
    function setBaseURI(string memory baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    function setContractURI(string memory _contractURI) external onlyOwner {
        contractURI = _contractURI;
    }

    /***********************************************************************************************************************
     *   Punk Market
     * 
    ***********************************************************************************************************************/

    function punkNoLongerForSale(uint tokenId) public onlyPunkOwner(tokenId) {
        punksOfferedForSale[tokenId] = Offer(false, tokenId, msg.sender, 0, address(0x0));
        emit PunkNoLongerForSale(tokenId);
    }

    function offerPunkForSale(uint tokenId, uint minSalePriceInWei) public onlyPunkOwner(tokenId) {
        punksOfferedForSale[tokenId] = Offer(true, tokenId, msg.sender, minSalePriceInWei, address(0x0));
        emit PunkOffered(tokenId, minSalePriceInWei, address(0x0));
    }

    function offerPunkForSaleToAddress(uint tokenId, uint minSalePriceInWei, address toAddress) public onlyPunkOwner(tokenId) {
        punksOfferedForSale[tokenId] = Offer(true, tokenId, msg.sender, minSalePriceInWei, toAddress);
        emit PunkOffered(tokenId, minSalePriceInWei, toAddress);
    }

    function buyPunk(uint tokenId) public payable nonReentrant() {
        Offer memory offer = punksOfferedForSale[tokenId];
        require (offer.isForSale, "this token is not for sale");                // punk not actually for sale
        require (offer.onlySellTo == address(0x0) || offer.onlySellTo == msg.sender, "not available for you");  // punk not supposed to be sold to this user
        require (msg.value >= offer.minValue, "invalid eth value");      // Didn't send enough ETH
        require (offer.seller == ownerOf(tokenId), "seller is not owner"); // Seller no longer owner of punk

        address seller = offer.seller;

        _safeTransfer(seller, msg.sender, tokenId, "buying punk");

        punkNoLongerForSale(tokenId);
        pendingWithdrawals[seller] += msg.value;
        emit PunkBought(tokenId, msg.value, seller, msg.sender);

        // Check for the case where there is a bid from the new owner and refund it.
        // Any other bid can stay in place.
        Bid memory bid = punkBids[tokenId];
        if (bid.bidder == msg.sender) {
            // Kill bid and refund value
            pendingWithdrawals[msg.sender] += bid.value;
            punkBids[tokenId] = Bid(false, tokenId, address(0x0), 0);
        }
    }

    function withdraw() public nonReentrant() {
        uint amount = pendingWithdrawals[msg.sender];
        // Remember to zero the pending refund before
        // sending to prevent re-entrancy attacks
        pendingWithdrawals[msg.sender] = 0;
        _safeTransferETH(msg.sender, amount);
    }

    function enterBidForPunk(uint tokenId) public payable {
        require(ownerOf(tokenId) != address(0x0), "not minted token");
        require(ownerOf(tokenId) != address(msg.sender), "impossible for owned token");
        require (msg.value > 0, "not enough eth");
        
        Bid memory existing = punkBids[tokenId];
        require(msg.value > existing.value, "low than previous");
    
        if (existing.value > 0) {
            // Refund the failing bid
            pendingWithdrawals[existing.bidder] += existing.value;
        }
        punkBids[tokenId] = Bid(true, tokenId, msg.sender, msg.value);
        emit PunkBidEntered(tokenId, msg.value, msg.sender);
    }

    function acceptBidForPunk(uint tokenId, uint minPrice) public onlyPunkOwner(tokenId) {
        address seller = msg.sender;
        Bid memory bid = punkBids[tokenId];
        require(bid.value > 0 && bid.value > minPrice, "invalid bid price");
        
        _safeTransfer(seller, bid.bidder, tokenId, "win");
        
        punksOfferedForSale[tokenId] = Offer(false, tokenId, bid.bidder, 0, address(0x0));
        uint amount = bid.value;
        punkBids[tokenId] = Bid(false, tokenId, address(0x0), 0);
        pendingWithdrawals[seller] += amount;
        emit PunkBought(tokenId, bid.value, seller, bid.bidder);
    }

    function withdrawBidForPunk(uint tokenId) public nonReentrant() {
        require(ownerOf(tokenId) != address(0x0), "not minted token");
        require(ownerOf(tokenId) != address(msg.sender), "impossible for owned token");

        Bid memory bid = punkBids[tokenId];
        require (bid.bidder == msg.sender, "not bidder");

        emit PunkBidWithdrawn(tokenId, bid.value, msg.sender);
        uint amount = bid.value;
        punkBids[tokenId] = Bid(false, tokenId, address(0x0), 0);
        // Refund the bid money
        require(_safeTransferETH(msg.sender, amount), "failed to refund");
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override(ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);

        if (punksOfferedForSale[tokenId].isForSale) {
            punkNoLongerForSale(tokenId);
        }
        
        // Check for the case where there is a bid from the new owner and refund it.
        // Any other bid can stay in place.
        Bid memory bid = punkBids[tokenId];
        if (bid.bidder == to) {
            // Kill bid and refund value
            pendingWithdrawals[to] += bid.value;
            punkBids[tokenId] = Bid(false, tokenId, address(0x0), 0);
        }
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    receive() external payable {}

    function _safeTransferETH(address to, uint256 value) internal returns(bool) {
		(bool success, ) = to.call{value: value}(new bytes(0));
		return success;
    }

    modifier onlyPunkOwner(uint256 tokenId) {
        require(ownerOf(tokenId) == msg.sender, "only for punk owner");
        _;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":true,"internalType":"address","name":"fromAddress","type":"address"}],"name":"PunkBidEntered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":true,"internalType":"address","name":"fromAddress","type":"address"}],"name":"PunkBidWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":true,"internalType":"address","name":"fromAddress","type":"address"},{"indexed":true,"internalType":"address","name":"toAddress","type":"address"}],"name":"PunkBought","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"PunkNoLongerForSale","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"minValue","type":"uint256"},{"indexed":true,"internalType":"address","name":"toAddress","type":"address"}],"name":"PunkOffered","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_MINTABLE_AT_ONCE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"minPrice","type":"uint256"}],"name":"acceptBidForPunk","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"buyPunk","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"enterBidForPunk","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numToMint","type":"uint256"}],"name":"getCostForMintingPhunks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getPhunksBelongingToOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numToMint","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTotalPhunks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"minSalePriceInWei","type":"uint256"}],"name":"offerPunkForSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"minSalePriceInWei","type":"uint256"},{"internalType":"address","name":"toAddress","type":"address"}],"name":"offerPunkForSaleToAddress","outputs":[],"stateMutability":"nonpayable","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":"address","name":"","type":"address"}],"name":"pendingWithdrawals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"punkBids","outputs":[{"internalType":"bool","name":"hasBid","type":"bool"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"bidder","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"punkNoLongerForSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"punksOfferedForSale","outputs":[{"internalType":"bool","name":"isForSale","type":"bool"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"seller","type":"address"},{"internalType":"uint256","name":"minValue","type":"uint256"},{"internalType":"address","name":"onlySellTo","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleHasBeenStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"tokenOwners","type":"address[]"},{"internalType":"uint256[]","name":"tokens","type":"uint256[]"}],"name":"seedInitialContractState","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":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startMinting","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"withdrawBidForPunk","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600c805461ffff1916905561271061271d81905561271e553480156200002957600080fd5b506040518060400160405280600681526020016530784170657360d01b81525060405180604001604052806005815260200164307841706560d81b815250620000816200007b620000ba60201b60201c565b620000be565b8151620000969060019060208501906200010e565b508051620000ac9060029060208401906200010e565b50506001600b5550620001f1565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200011c90620001b4565b90600052602060002090601f0160209004810192826200014057600085556200018b565b82601f106200015b57805160ff19168380011785556200018b565b828001600101855582156200018b579182015b828111156200018b5782518255916020019190600101906200016e565b50620001999291506200019d565b5090565b5b808211156200019957600081556001016200019e565b600281046001821680620001c957607f821691505b60208210811415620001eb57634e487b7160e01b600052602260045260246000fd5b50919050565b613e2280620002016000396000f3fe6080604052600436106102605760003560e01c80638264fe9811610144578063c44193c3116100b6578063e985e9c51161007a578063e985e9c5146106c1578063ee64c8d0146106e1578063ef70aebf1461070e578063f2fde38b14610723578063f3f4370314610743578063f6eeff1e1461076357610267565b8063c44193c314610637578063c87b56dd14610657578063cbf775b214610677578063dfe352f71461068c578063e8a3d485146106ac57610267565b80639a65ea26116101085780639a65ea261461059a578063a0712d68146105af578063a1d89819146105c2578063a22cb465146105d7578063b88d4fde146105f7578063bf31196f1461061757610267565b80638264fe981461051d5780638da5cb5b14610530578063938e3d7b1461054557806395d89b4114610565578063979bc6381461057a57610267565b80632f745c59116101dd57806355f804b3116101a157806355f804b3146104635780636352211e146104835780636e060624146104a35780636e743fa9146104b857806370a08231146104e8578063715018a61461050857610267565b80632f745c59146103d957806339ca05ec146103f95780633ccfd60b1461040e57806342842e0e146104235780634f6ccce71461044357610267565b8063095ea7b311610224578063095ea7b31461033757806317d50bd01461035757806318160ddd1461037757806323165b751461039957806323b872dd146103b957610267565b806301ffc9a71461026c57806306fdde03146102a2578063081812fc146102c4578063088f11f3146102f1578063091dbfd21461032257610267565b3661026757005b600080fd5b34801561027857600080fd5b5061028c61028736600461306f565b610783565b60405161029991906132a0565b60405180910390f35b3480156102ae57600080fd5b506102b7610796565b60405161029991906132ff565b3480156102d057600080fd5b506102e46102df3660046130ec565b610828565b60405161029991906131d0565b3480156102fd57600080fd5b5061031161030c3660046130ec565b610874565b6040516102999594939291906132d1565b6103356103303660046130ec565b6108b3565b005b34801561034357600080fd5b50610335610352366004612f89565b610a9e565b34801561036357600080fd5b50610335610372366004612fb2565b610b36565b34801561038357600080fd5b5061038c610c80565b6040516102999190613c36565b3480156103a557600080fd5b506103356103b4366004613104565b610c86565b3480156103c557600080fd5b506103356103d4366004612e9c565b610f94565b3480156103e557600080fd5b5061038c6103f4366004612f89565b610fcc565b34801561040557600080fd5b5061038c61101e565b34801561041a57600080fd5b50610335611024565b34801561042f57600080fd5b5061033561043e366004612e9c565b611075565b34801561044f57600080fd5b5061038c61045e3660046130ec565b611090565b34801561046f57600080fd5b5061033561047e3660046130a7565b6110eb565b34801561048f57600080fd5b506102e461049e3660046130ec565b611142565b3480156104af57600080fd5b5061028c611177565b3480156104c457600080fd5b506104d86104d33660046130ec565b611180565b60405161029994939291906132ab565b3480156104f457600080fd5b5061038c610503366004612e49565b6111b8565b34801561051457600080fd5b506103356111fc565b61033561052b3660046130ec565b611247565b34801561053c57600080fd5b506102e4611546565b34801561055157600080fd5b506103356105603660046130a7565b611555565b34801561057157600080fd5b506102b76115a8565b34801561058657600080fd5b506103356105953660046130ec565b6115b7565b3480156105a657600080fd5b5061033561179c565b6103356105bd3660046130ec565b6117f5565b3480156105ce57600080fd5b5061028c611902565b3480156105e357600080fd5b506103356105f2366004612f4f565b611910565b34801561060357600080fd5b50610335610612366004612ed7565b6119d2565b34801561062357600080fd5b50610335610632366004613125565b611a11565b34801561064357600080fd5b50610335610652366004613104565b611b18565b34801561066357600080fd5b506102b76106723660046130ec565b611c17565b34801561068357600080fd5b5061038c611c70565b34801561069857600080fd5b5061038c6106a73660046130ec565b611c75565b3480156106b857600080fd5b506102b7611cc1565b3480156106cd57600080fd5b5061028c6106dc366004612e6a565b611d50565b3480156106ed57600080fd5b506107016106fc366004612e49565b611d7e565b604051610299919061325c565b34801561071a57600080fd5b50610335611e5e565b34801561072f57600080fd5b5061033561073e366004612e49565b611ea9565b34801561074f57600080fd5b5061038c61075e366004612e49565b611f1a565b34801561076f57600080fd5b5061033561077e3660046130ec565b611f2d565b600061078e82612016565b90505b919050565b6060600180546107a590613d30565b80601f01602080910402602001604051908101604052809291908181526020018280546107d190613d30565b801561081e5780601f106107f35761010080835404028352916020019161081e565b820191906000526020600020905b81548152906001019060200180831161080157829003601f168201915b5050505050905090565b60006108338261203b565b6108585760405162461bcd60e51b815260040161084f90613798565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b61271f602052600090815260409020805460018201546002830154600384015460049094015460ff9093169391926001600160a01b0391821692911685565b60006108be82611142565b6001600160a01b031614156108e55760405162461bcd60e51b815260040161084f9061395c565b336108ef82611142565b6001600160a01b031614156109165760405162461bcd60e51b815260040161084f906135c4565b600034116109365760405162461bcd60e51b815260040161084f90613c0e565b600081815261272060209081526040918290208251608081018452815460ff161515815260018201549281019290925260028101546001600160a01b0316928201929092526003909101546060820181905234116109a65760405162461bcd60e51b815260040161084f90613986565b6060810151156109e85760608101516040808301516001600160a01b0316600090815261272160205290812080549091906109e2908490613c8b565b90915550505b604080516080810182526001808252602080830186815233848601818152346060870181815260008b8152612720909652948890209651875460ff191690151517875592519486019490945592516002850180546001600160a01b0319166001600160a01b039092169190911790559051600390930192909255915184917f5b859394fabae0c1ba88baffe67e751ab5248d2e879028b8c8d6897b0519f56a91610a929190613c36565b60405180910390a35050565b6000610aa982611142565b9050806001600160a01b0316836001600160a01b03161415610add5760405162461bcd60e51b815260040161084f9061391b565b806001600160a01b0316610aef612058565b6001600160a01b03161480610b0b5750610b0b816106dc612058565b610b275760405162461bcd60e51b815260040161084f906135fb565b610b31838361205c565b505050565b610b3e612058565b6001600160a01b0316610b4f611546565b6001600160a01b031614610b755760405162461bcd60e51b815260040161084f906137e4565b600c54610100900460ff1615610b9d5760405162461bcd60e51b815260040161084f90613a4e565b8051825114610bbe5760405162461bcd60e51b815260040161084f90613b8f565b61271e5460005b8351811015610c77576000838281518110610bf057634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311610c195760405162461bcd60e51b815260040161084f90613a9b565b809250610c25816120ca565b50610c64858381518110610c4957634e487b7160e01b600052603260045260246000fd5b602002602001015182612710610c5f9190613c8b565b6121bd565b5080610c6f81613d65565b915050610bc5565b5061271e555050565b60095490565b8133610c9182611142565b6001600160a01b031614610cb75760405162461bcd60e51b815260040161084f906134a9565b600083815261272060209081526040918290208251608081018452815460ff161515815260018201549281019290925260028101546001600160a01b0316928201929092526003909101546060820181905233919015801590610d1d5750838160600151115b610d395760405162461bcd60e51b815260040161084f90613599565b610d6482826040015187604051806040016040528060038152602001623bb4b760e91b8152506121d7565b6040518060a0016040528060001515815260200186815260200182604001516001600160a01b031681526020016000815260200160006001600160a01b031681525061271f600087815260200190815260200160002060008201518160000160006101000a81548160ff0219169083151502179055506020820151816001015560408201518160020160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506060820151816003015560808201518160040160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550905050600081606001519050604051806080016040528060001515815260200187815260200160006001600160a01b031681526020016000815250612720600088815260200190815260200160002060008201518160000160006101000a81548160ff0219169083151502179055506020820151816001015560408201518160020160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060608201518160030155905050806127216000856001600160a01b03166001600160a01b031681526020019081526020016000206000828254610f319190613c8b565b9250508190555081604001516001600160a01b0316836001600160a01b0316877f58e5d5a525e3b40bc15abaa38b5882678db1ee68befd2f60bafe3a7fd06db9e38560600151604051610f849190613c36565b60405180910390a4505050505050565b610fa5610f9f612058565b8261220a565b610fc15760405162461bcd60e51b815260040161084f906139b1565b610b3183838361228f565b6000610fd7836111b8565b8210610ff55760405162461bcd60e51b815260040161084f90613364565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b61271090565b6002600b5414156110475760405162461bcd60e51b815260040161084f90613bd7565b6002600b553360008181526127216020526040812080549190559061106c90826123bc565b50506001600b55565b610b31838383604051806020016040528060008152506119d2565b600061109a610c80565b82106110b85760405162461bcd60e51b815260040161084f90613a02565b600982815481106110d957634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6110f3612058565b6001600160a01b0316611104611546565b6001600160a01b03161461112a5760405162461bcd60e51b815260040161084f906137e4565b805161113e90612722906020840190612cd6565b5050565b6000818152600360205260408120546001600160a01b03168061078e5760405162461bcd60e51b815260040161084f9061369d565b600c5460ff1681565b61272060205260009081526040902080546001820154600283015460039093015460ff9092169290916001600160a01b039091169084565b60006001600160a01b0382166111e05760405162461bcd60e51b815260040161084f90613653565b506001600160a01b031660009081526004602052604090205490565b611204612058565b6001600160a01b0316611215611546565b6001600160a01b03161461123b5760405162461bcd60e51b815260040161084f906137e4565b6112456000612433565b565b6002600b54141561126a5760405162461bcd60e51b815260040161084f90613bd7565b6002600b819055600082815261271f6020908152604091829020825160a081018452815460ff161515808252600183015493820193909352938101546001600160a01b0390811693850193909352600381015460608501526004015490911660808301526112ea5760405162461bcd60e51b815260040161084f90613b15565b60808101516001600160a01b03161580611310575060808101516001600160a01b031633145b61132c5760405162461bcd60e51b815260040161084f90613819565b80606001513410156113505760405162461bcd60e51b815260040161084f9061347e565b61135982611142565b6001600160a01b031681604001516001600160a01b03161461138d5760405162461bcd60e51b815260040161084f90613891565b6000816040015190506113c58133856040518060400160405280600b81526020016a627579696e672070756e6b60a81b8152506121d7565b6113ce83611f2d565b6001600160a01b03811660009081526127216020526040812080543492906113f7908490613c8b565b92505081905550336001600160a01b0316816001600160a01b0316847f58e5d5a525e3b40bc15abaa38b5882678db1ee68befd2f60bafe3a7fd06db9e3346040516114429190613c36565b60405180910390a4600083815261272060209081526040918290208251608081018452815460ff161515815260018201549281019290925260028101546001600160a01b03169282018390526003015460608201529033141561153b5760608101513360009081526127216020526040812080549091906114c4908490613c8b565b90915550506040805160808101825260008082526020808301888152838501838152606085018481528a8552612720909352949092209251835460ff19169015151783559051600183015591516002820180546001600160a01b0319166001600160a01b0390921691909117905590516003909101555b50506001600b555050565b6000546001600160a01b031690565b61155d612058565b6001600160a01b031661156e611546565b6001600160a01b0316146115945760405162461bcd60e51b815260040161084f906137e4565b805161113e90612723906020840190612cd6565b6060600280546107a590613d30565b6002600b5414156115da5760405162461bcd60e51b815260040161084f90613bd7565b6002600b5560006115ea82611142565b6001600160a01b031614156116115760405162461bcd60e51b815260040161084f9061395c565b3361161b82611142565b6001600160a01b031614156116425760405162461bcd60e51b815260040161084f906135c4565b600081815261272060209081526040918290208251608081018452815460ff161515815260018201549281019290925260028101546001600160a01b03169282018390526003015460608201529033146116ae5760405162461bcd60e51b815260040161084f90613340565b336001600160a01b0316827f6f30e1ee4d81dcc7a8a478577f65d2ed2edb120565960ac45fe7c50551c8793283606001516040516116ec9190613c36565b60405180910390a36060818101516040805160808101825260008082526020808301888152838501838152968401838152898452612720909252939091209151825460ff19169015151782559151600182015592516002840180546001600160a01b0319166001600160a01b039092169190911790555160039092019190915561177633826123bc565b6117925760405162461bcd60e51b815260040161084f906138be565b50506001600b5550565b6117a4612058565b6001600160a01b03166117b5611546565b6001600160a01b0316146117db5760405162461bcd60e51b815260040161084f906137e4565b600c805461ff001960ff1990911660011716610100179055565b6002600b5414156118185760405162461bcd60e51b815260040161084f90613bd7565b6002600b55600c5460ff1661183f5760405162461bcd60e51b815260040161084f90613312565b6000611849610c80565b905061185361101e565b61185d8383613c8b565b111561187b5760405162461bcd60e51b815260040161084f90613b4c565b600061188683611c75565b9050803410156118a85760405162461bcd60e51b815260040161084f906136e6565b803411156118cc576118c3336118be8334613cd6565b6123bc565b6118cc57600080fd5b6118dd6118d7611546565b826123bc565b6118f95760405162461bcd60e51b815260040161084f9061372c565b61179283612483565b600c54610100900460ff1681565b611918612058565b6001600160a01b0316826001600160a01b031614156119495760405162461bcd60e51b815260040161084f9061351a565b8060066000611956612058565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561199a612058565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610a9291906132a0565b6119e36119dd612058565b8361220a565b6119ff5760405162461bcd60e51b815260040161084f906139b1565b611a0b848484846121d7565b50505050565b8233611a1c82611142565b6001600160a01b031614611a425760405162461bcd60e51b815260040161084f906134a9565b6040805160a0810182526001808252602080830188815233848601908152606085018981526001600160a01b038981166080880181815260008e815261271f909752958990209751885490151560ff1990911617885593519587019590955590516002860180549186166001600160a01b0319928316179055905160038601559151600490940180549490931693909116929092179055905185907f3c7b682d5da98001a9b8cbda6c647d2c63d698a4184fd1d55e2ce7b66f5d21eb90611b0a908790613c36565b60405180910390a350505050565b8133611b2382611142565b6001600160a01b031614611b495760405162461bcd60e51b815260040161084f906134a9565b6040805160a0810182526001808252602080830187815233848601908152606085018881526000608087018181528b825261271f9095528781209651875460ff1916901515178755925194860194909455516002850180546001600160a01b03199081166001600160a01b03938416179091559351600386015591516004909401805490931693909116929092179055905184907f3c7b682d5da98001a9b8cbda6c647d2c63d698a4184fd1d55e2ce7b66f5d21eb90611c0a908690613c36565b60405180910390a3505050565b60606000611c236124fa565b90506000611c308461250a565b9050815160001415611c455791506107919050565b8181604051602001611c589291906131a1565b60405160208183030381529060405292505050919050565b603281565b6000611c7f61101e565b82611c88610c80565b611c929190613c8b565b1115611cb05760405162461bcd60e51b815260040161084f90613b4c565b61078e8266b1a2bc2ec50000613cb7565b6127238054611ccf90613d30565b80601f0160208091040260200160405190810160405280929190818152602001828054611cfb90613d30565b8015611d485780601f10611d1d57610100808354040283529160200191611d48565b820191906000526020600020905b815481529060010190602001808311611d2b57829003601f168201915b505050505081565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b60606000611d8b836111b8565b905080611da8575050604080516000815260208101909152610791565b6000816001600160401b03811115611dd057634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611df9578160200160208202803683370190505b50905060005b82811015611e4e57611e118582610fcc565b828281518110611e3157634e487b7160e01b600052603260045260246000fd5b602090810291909101015280611e4681613d65565b915050611dff565b5091506107919050565b50919050565b611e66612058565b6001600160a01b0316611e77611546565b6001600160a01b031614611e9d5760405162461bcd60e51b815260040161084f906137e4565b600c805460ff19169055565b611eb1612058565b6001600160a01b0316611ec2611546565b6001600160a01b031614611ee85760405162461bcd60e51b815260040161084f906137e4565b6001600160a01b038116611f0e5760405162461bcd60e51b815260040161084f90613401565b611f1781612433565b50565b6127216020526000908152604090205481565b8033611f3882611142565b6001600160a01b031614611f5e5760405162461bcd60e51b815260040161084f906134a9565b6040805160a0810182526000808252602080830186815233848601908152606085018481526080860185815289865261271f9094528685209551865460ff191690151517865591516001860155516002850180546001600160a01b03199081166001600160a01b0393841617909155915160038601559151600490940180549091169390911692909217909155905183917fb0e0a660b4e50f26f0b7ce75c24655fc76cc66e3334a54ff410277229fa10bd491a25050565b60006001600160e01b0319821663780e9d6360e01b148061078e575061078e82612624565b6000908152600360205260409020546001600160a01b0316151590565b3390565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061209182611142565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080600d8361271081106120ef57634e487b7160e01b600052603260045260246000fd5b01549050600081612101575082612104565b50805b6000600161271d546121169190613cd6565b905080851461219e576000600d82612710811061214357634e487b7160e01b600052603260045260246000fd5b01549050806121765781600d87612710811061216f57634e487b7160e01b600052603260045260246000fd5b015561219c565b80600d87612710811061219957634e487b7160e01b600052603260045260246000fd5b01555b505b61271d80549060006121af83613d19565b909155509195945050505050565b61113e828260405180602001604052806000815250612664565b6121e284848461228f565b6121ee84848484612697565b611a0b5760405162461bcd60e51b815260040161084f906133af565b60006122158261203b565b6122315760405162461bcd60e51b815260040161084f9061354d565b600061223c83611142565b9050806001600160a01b0316846001600160a01b031614806122775750836001600160a01b031661226c84610828565b6001600160a01b0316145b8061228757506122878185611d50565b949350505050565b826001600160a01b03166122a282611142565b6001600160a01b0316146122c85760405162461bcd60e51b815260040161084f90613848565b6001600160a01b0382166122ee5760405162461bcd60e51b815260040161084f906134d6565b6122f98383836127b2565b61230460008261205c565b6001600160a01b038316600090815260046020526040812080546001929061232d908490613cd6565b90915550506001600160a01b038216600090815260046020526040812080546001929061235b908490613c8b565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60408051600080825260208201928390529182916001600160a01b0386169185916123e691613185565b60006040518083038185875af1925050503d8060008114612423576040519150601f19603f3d011682016040523d82523d6000602084013e612428565b606091505b509095945050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60328111156124a45760405162461bcd60e51b815260040161084f906138e8565b61271d5460005b828110156124f25760006124bf84836128e6565b90506124d133610c5f83612710613c8b565b826124db81613d19565b9350505080806124ea90613d65565b9150506124ab565b5061271d5550565b606061272280546107a590613d30565b60608161252f57506040805180820190915260018152600360fc1b6020820152610791565b8160005b8115612559578061254381613d65565b91506125529050600a83613ca3565b9150612533565b6000816001600160401b0381111561258157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156125ab576020820181803683370190505b5090505b8415612287576125c0600183613cd6565b91506125cd600a86613d80565b6125d8906030613c8b565b60f81b8183815181106125fb57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061261d600a86613ca3565b94506125af565b60006001600160e01b031982166380ac58cd60e01b148061265557506001600160e01b03198216635b5e139f60e01b145b8061078e575061078e82612951565b61266e838361296a565b61267b6000848484612697565b610b315760405162461bcd60e51b815260040161084f906133af565b60006126ab846001600160a01b0316612a49565b156127a757836001600160a01b031663150b7a026126c7612058565b8786866040518563ffffffff1660e01b81526004016126e994939291906131e4565b602060405180830381600087803b15801561270357600080fd5b505af1925050508015612733575060408051601f3d908101601f191682019092526127309181019061308b565b60015b61278d573d808015612761576040519150601f19603f3d011682016040523d82523d6000602084013e612766565b606091505b5080516127855760405162461bcd60e51b815260040161084f906133af565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612287565b506001949350505050565b6127bd838383612a4f565b600081815261271f602052604090205460ff16156127de576127de81611f2d565b600081815261272060209081526040918290208251608081018452815460ff161515815260018201549281019290925260028101546001600160a01b03908116938301849052600390910154606083015290919084161415611a0b5760608101516001600160a01b0384166000908152612721602052604081208054909190612868908490613c8b565b9091555050604080516080810182526000808252602080830186815283850183815260608501848152978452612720909252939091209151825460ff19169015151782559151600182015590516002820180546001600160a01b0319166001600160a01b039092169190911790559151600390920191909155505050565b600080333a43426128f8600183613cd6565b4088886040516020016129119796959493929190613221565b6040516020818303038152906040528051906020012060001c9050600061271d548261293d9190613d80565b9050612948816120ca565b95945050505050565b6001600160e01b031981166301ffc9a760e01b14919050565b6001600160a01b0382166129905760405162461bcd60e51b815260040161084f90613763565b6129998161203b565b156129b65760405162461bcd60e51b815260040161084f90613447565b6129c2600083836127b2565b6001600160a01b03821660009081526004602052604081208054600192906129eb908490613c8b565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b612a5a838383610b31565b6001600160a01b038316612a7657612a7181612ad8565b612a99565b816001600160a01b0316836001600160a01b031614612a9957612a998382612b1c565b6001600160a01b038216612ab557612ab081612bb9565b610b31565b826001600160a01b0316826001600160a01b031614610b3157610b318282612c92565b600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b60006001612b29846111b8565b612b339190613cd6565b600083815260086020526040902054909150808214612b86576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090612bcb90600190613cd6565b6000838152600a602052604081205460098054939450909284908110612c0157634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060098381548110612c3057634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480612c7657634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612c9d836111b8565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b828054612ce290613d30565b90600052602060002090601f016020900481019282612d045760008555612d4a565b82601f10612d1d57805160ff1916838001178555612d4a565b82800160010185558215612d4a579182015b82811115612d4a578251825591602001919060010190612d2f565b50612d56929150612d5a565b5090565b5b80821115612d565760008155600101612d5b565b60006001600160401b03831115612d8857612d88613dc0565b612d9b601f8401601f1916602001613c3f565b9050828152838383011115612daf57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461079157600080fd5b600082601f830112612ded578081fd5b81356020612e02612dfd83613c68565b613c3f565b8281528181019085830183850287018401881015612e1e578586fd5b855b85811015612e3c57813584529284019290840190600101612e20565b5090979650505050505050565b600060208284031215612e5a578081fd5b612e6382612dc6565b9392505050565b60008060408385031215612e7c578081fd5b612e8583612dc6565b9150612e9360208401612dc6565b90509250929050565b600080600060608486031215612eb0578081fd5b612eb984612dc6565b9250612ec760208501612dc6565b9150604084013590509250925092565b60008060008060808587031215612eec578081fd5b612ef585612dc6565b9350612f0360208601612dc6565b92506040850135915060608501356001600160401b03811115612f24578182fd5b8501601f81018713612f34578182fd5b612f4387823560208401612d6f565b91505092959194509250565b60008060408385031215612f61578182fd5b612f6a83612dc6565b915060208301358015158114612f7e578182fd5b809150509250929050565b60008060408385031215612f9b578182fd5b612fa483612dc6565b946020939093013593505050565b60008060408385031215612fc4578182fd5b82356001600160401b0380821115612fda578384fd5b818501915085601f830112612fed578384fd5b81356020612ffd612dfd83613c68565b82815281810190858301838502870184018b1015613019578889fd5b8896505b848710156130425761302e81612dc6565b83526001969096019591830191830161301d565b5096505086013592505080821115613058578283fd5b5061306585828601612ddd565b9150509250929050565b600060208284031215613080578081fd5b8135612e6381613dd6565b60006020828403121561309c578081fd5b8151612e6381613dd6565b6000602082840312156130b8578081fd5b81356001600160401b038111156130cd578182fd5b8201601f810184136130dd578182fd5b61228784823560208401612d6f565b6000602082840312156130fd578081fd5b5035919050565b60008060408385031215613116578182fd5b50508035926020909101359150565b600080600060608486031215613139578081fd5b833592506020840135915061315060408501612dc6565b90509250925092565b60008151808452613171816020860160208601613ced565b601f01601f19169290920160200192915050565b60008251613197818460208701613ced565b9190910192915050565b600083516131b3818460208801613ced565b8351908301906131c7818360208801613ced565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061321790830184613159565b9695505050505050565b6001600160a01b03979097168752602087019590955260408601939093526060850191909152608084015260a083015260c082015260e00190565b6020808252825182820181905260009190848201906040850190845b8181101561329457835183529284019291840191600101613278565b50909695505050505050565b901515815260200190565b931515845260208401929092526001600160a01b03166040830152606082015260800190565b941515855260208501939093526001600160a01b039182166040850152606084015216608082015260a00190565b600060208252612e636020830184613159565b60208082526014908201527329b0b632903430b9b713ba1039ba30b93a32b21760611b604082015260600190565b6020808252600a90820152693737ba103134b23232b960b11b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b602080825260119082015270696e76616c6964206574682076616c756560781b604082015260600190565b60208082526013908201527237b7363c903337b910383ab7359037bbb732b960691b604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b602080825260119082015270696e76616c69642062696420707269636560781b604082015260600190565b6020808252601a908201527f696d706f737369626c6520666f72206f776e656420746f6b656e000000000000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776040820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526026908201527f546f6f206c6974746c652073656e742c20706c656173652073656e64206d6f72604082015265329032ba341760d11b606082015260800190565b6020808252601f908201527f6661696c656420746f207472616e73666572206d696e74696e6720636f737400604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601590820152746e6f7420617661696c61626c6520666f7220796f7560581b604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526013908201527239b2b63632b91034b9903737ba1037bbb732b960691b604082015260600190565b60208082526010908201526f19985a5b1959081d1bc81c99599d5b9960821b604082015260600190565b60208082526019908201527826b4b73a34b733903a37b79036b0b73c9030ba1037b731b29760391b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526010908201526f3737ba1036b4b73a32b2103a37b5b2b760811b604082015260600190565b6020808252601190820152706c6f77207468616e2070726576696f757360781b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252602d908201527f63616e6e6f7420696e697469616c207068756e6b206d696e742069662073616c60408201526c19481a185cc81cdd185c9d1959609a1b606082015260800190565b60208082526054908201527f696e697469616c207068756e6b206d696e7473206d75737420626520696e206460408201527f656372656173696e67206f7264657220666f72206f757220617661696c61626c60608201527365546f6b656e20696e64657820746f20776f726b60601b608082015260a00190565b6020808252601a908201527f7468697320746f6b656e206973206e6f7420666f722073616c65000000000000604082015260600190565b60208082526023908201527f5468657265206172656e27742074686973206d616e79207068756e6b73206c65604082015262333a1760e91b606082015260800190565b60208082526028908201527f746f6b656e4f776e65727320646f6573206e6f74206d6174636820746f6b656e6040820152670e640d8cadccee8d60c31b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252600e908201526d0dcdee840cadcdeeaced040cae8d60931b604082015260600190565b90815260200190565b6040518181016001600160401b0381118282101715613c6057613c60613dc0565b604052919050565b60006001600160401b03821115613c8157613c81613dc0565b5060209081020190565b60008219821115613c9e57613c9e613d94565b500190565b600082613cb257613cb2613daa565b500490565b6000816000190483118215151615613cd157613cd1613d94565b500290565b600082821015613ce857613ce8613d94565b500390565b60005b83811015613d08578181015183820152602001613cf0565b83811115611a0b5750506000910152565b600081613d2857613d28613d94565b506000190190565b600281046001821680613d4457607f821691505b60208210811415611e5857634e487b7160e01b600052602260045260246000fd5b6000600019821415613d7957613d79613d94565b5060010190565b600082613d8f57613d8f613daa565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611f1757600080fdfea2646970667358221220011a280f1a82c40483c1cbcab5a09fa1ac03544284a10116382775547b25ec8964736f6c63430008000033

Deployed Bytecode

0x6080604052600436106102605760003560e01c80638264fe9811610144578063c44193c3116100b6578063e985e9c51161007a578063e985e9c5146106c1578063ee64c8d0146106e1578063ef70aebf1461070e578063f2fde38b14610723578063f3f4370314610743578063f6eeff1e1461076357610267565b8063c44193c314610637578063c87b56dd14610657578063cbf775b214610677578063dfe352f71461068c578063e8a3d485146106ac57610267565b80639a65ea26116101085780639a65ea261461059a578063a0712d68146105af578063a1d89819146105c2578063a22cb465146105d7578063b88d4fde146105f7578063bf31196f1461061757610267565b80638264fe981461051d5780638da5cb5b14610530578063938e3d7b1461054557806395d89b4114610565578063979bc6381461057a57610267565b80632f745c59116101dd57806355f804b3116101a157806355f804b3146104635780636352211e146104835780636e060624146104a35780636e743fa9146104b857806370a08231146104e8578063715018a61461050857610267565b80632f745c59146103d957806339ca05ec146103f95780633ccfd60b1461040e57806342842e0e146104235780634f6ccce71461044357610267565b8063095ea7b311610224578063095ea7b31461033757806317d50bd01461035757806318160ddd1461037757806323165b751461039957806323b872dd146103b957610267565b806301ffc9a71461026c57806306fdde03146102a2578063081812fc146102c4578063088f11f3146102f1578063091dbfd21461032257610267565b3661026757005b600080fd5b34801561027857600080fd5b5061028c61028736600461306f565b610783565b60405161029991906132a0565b60405180910390f35b3480156102ae57600080fd5b506102b7610796565b60405161029991906132ff565b3480156102d057600080fd5b506102e46102df3660046130ec565b610828565b60405161029991906131d0565b3480156102fd57600080fd5b5061031161030c3660046130ec565b610874565b6040516102999594939291906132d1565b6103356103303660046130ec565b6108b3565b005b34801561034357600080fd5b50610335610352366004612f89565b610a9e565b34801561036357600080fd5b50610335610372366004612fb2565b610b36565b34801561038357600080fd5b5061038c610c80565b6040516102999190613c36565b3480156103a557600080fd5b506103356103b4366004613104565b610c86565b3480156103c557600080fd5b506103356103d4366004612e9c565b610f94565b3480156103e557600080fd5b5061038c6103f4366004612f89565b610fcc565b34801561040557600080fd5b5061038c61101e565b34801561041a57600080fd5b50610335611024565b34801561042f57600080fd5b5061033561043e366004612e9c565b611075565b34801561044f57600080fd5b5061038c61045e3660046130ec565b611090565b34801561046f57600080fd5b5061033561047e3660046130a7565b6110eb565b34801561048f57600080fd5b506102e461049e3660046130ec565b611142565b3480156104af57600080fd5b5061028c611177565b3480156104c457600080fd5b506104d86104d33660046130ec565b611180565b60405161029994939291906132ab565b3480156104f457600080fd5b5061038c610503366004612e49565b6111b8565b34801561051457600080fd5b506103356111fc565b61033561052b3660046130ec565b611247565b34801561053c57600080fd5b506102e4611546565b34801561055157600080fd5b506103356105603660046130a7565b611555565b34801561057157600080fd5b506102b76115a8565b34801561058657600080fd5b506103356105953660046130ec565b6115b7565b3480156105a657600080fd5b5061033561179c565b6103356105bd3660046130ec565b6117f5565b3480156105ce57600080fd5b5061028c611902565b3480156105e357600080fd5b506103356105f2366004612f4f565b611910565b34801561060357600080fd5b50610335610612366004612ed7565b6119d2565b34801561062357600080fd5b50610335610632366004613125565b611a11565b34801561064357600080fd5b50610335610652366004613104565b611b18565b34801561066357600080fd5b506102b76106723660046130ec565b611c17565b34801561068357600080fd5b5061038c611c70565b34801561069857600080fd5b5061038c6106a73660046130ec565b611c75565b3480156106b857600080fd5b506102b7611cc1565b3480156106cd57600080fd5b5061028c6106dc366004612e6a565b611d50565b3480156106ed57600080fd5b506107016106fc366004612e49565b611d7e565b604051610299919061325c565b34801561071a57600080fd5b50610335611e5e565b34801561072f57600080fd5b5061033561073e366004612e49565b611ea9565b34801561074f57600080fd5b5061038c61075e366004612e49565b611f1a565b34801561076f57600080fd5b5061033561077e3660046130ec565b611f2d565b600061078e82612016565b90505b919050565b6060600180546107a590613d30565b80601f01602080910402602001604051908101604052809291908181526020018280546107d190613d30565b801561081e5780601f106107f35761010080835404028352916020019161081e565b820191906000526020600020905b81548152906001019060200180831161080157829003601f168201915b5050505050905090565b60006108338261203b565b6108585760405162461bcd60e51b815260040161084f90613798565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b61271f602052600090815260409020805460018201546002830154600384015460049094015460ff9093169391926001600160a01b0391821692911685565b60006108be82611142565b6001600160a01b031614156108e55760405162461bcd60e51b815260040161084f9061395c565b336108ef82611142565b6001600160a01b031614156109165760405162461bcd60e51b815260040161084f906135c4565b600034116109365760405162461bcd60e51b815260040161084f90613c0e565b600081815261272060209081526040918290208251608081018452815460ff161515815260018201549281019290925260028101546001600160a01b0316928201929092526003909101546060820181905234116109a65760405162461bcd60e51b815260040161084f90613986565b6060810151156109e85760608101516040808301516001600160a01b0316600090815261272160205290812080549091906109e2908490613c8b565b90915550505b604080516080810182526001808252602080830186815233848601818152346060870181815260008b8152612720909652948890209651875460ff191690151517875592519486019490945592516002850180546001600160a01b0319166001600160a01b039092169190911790559051600390930192909255915184917f5b859394fabae0c1ba88baffe67e751ab5248d2e879028b8c8d6897b0519f56a91610a929190613c36565b60405180910390a35050565b6000610aa982611142565b9050806001600160a01b0316836001600160a01b03161415610add5760405162461bcd60e51b815260040161084f9061391b565b806001600160a01b0316610aef612058565b6001600160a01b03161480610b0b5750610b0b816106dc612058565b610b275760405162461bcd60e51b815260040161084f906135fb565b610b31838361205c565b505050565b610b3e612058565b6001600160a01b0316610b4f611546565b6001600160a01b031614610b755760405162461bcd60e51b815260040161084f906137e4565b600c54610100900460ff1615610b9d5760405162461bcd60e51b815260040161084f90613a4e565b8051825114610bbe5760405162461bcd60e51b815260040161084f90613b8f565b61271e5460005b8351811015610c77576000838281518110610bf057634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311610c195760405162461bcd60e51b815260040161084f90613a9b565b809250610c25816120ca565b50610c64858381518110610c4957634e487b7160e01b600052603260045260246000fd5b602002602001015182612710610c5f9190613c8b565b6121bd565b5080610c6f81613d65565b915050610bc5565b5061271e555050565b60095490565b8133610c9182611142565b6001600160a01b031614610cb75760405162461bcd60e51b815260040161084f906134a9565b600083815261272060209081526040918290208251608081018452815460ff161515815260018201549281019290925260028101546001600160a01b0316928201929092526003909101546060820181905233919015801590610d1d5750838160600151115b610d395760405162461bcd60e51b815260040161084f90613599565b610d6482826040015187604051806040016040528060038152602001623bb4b760e91b8152506121d7565b6040518060a0016040528060001515815260200186815260200182604001516001600160a01b031681526020016000815260200160006001600160a01b031681525061271f600087815260200190815260200160002060008201518160000160006101000a81548160ff0219169083151502179055506020820151816001015560408201518160020160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506060820151816003015560808201518160040160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550905050600081606001519050604051806080016040528060001515815260200187815260200160006001600160a01b031681526020016000815250612720600088815260200190815260200160002060008201518160000160006101000a81548160ff0219169083151502179055506020820151816001015560408201518160020160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060608201518160030155905050806127216000856001600160a01b03166001600160a01b031681526020019081526020016000206000828254610f319190613c8b565b9250508190555081604001516001600160a01b0316836001600160a01b0316877f58e5d5a525e3b40bc15abaa38b5882678db1ee68befd2f60bafe3a7fd06db9e38560600151604051610f849190613c36565b60405180910390a4505050505050565b610fa5610f9f612058565b8261220a565b610fc15760405162461bcd60e51b815260040161084f906139b1565b610b3183838361228f565b6000610fd7836111b8565b8210610ff55760405162461bcd60e51b815260040161084f90613364565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b61271090565b6002600b5414156110475760405162461bcd60e51b815260040161084f90613bd7565b6002600b553360008181526127216020526040812080549190559061106c90826123bc565b50506001600b55565b610b31838383604051806020016040528060008152506119d2565b600061109a610c80565b82106110b85760405162461bcd60e51b815260040161084f90613a02565b600982815481106110d957634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6110f3612058565b6001600160a01b0316611104611546565b6001600160a01b03161461112a5760405162461bcd60e51b815260040161084f906137e4565b805161113e90612722906020840190612cd6565b5050565b6000818152600360205260408120546001600160a01b03168061078e5760405162461bcd60e51b815260040161084f9061369d565b600c5460ff1681565b61272060205260009081526040902080546001820154600283015460039093015460ff9092169290916001600160a01b039091169084565b60006001600160a01b0382166111e05760405162461bcd60e51b815260040161084f90613653565b506001600160a01b031660009081526004602052604090205490565b611204612058565b6001600160a01b0316611215611546565b6001600160a01b03161461123b5760405162461bcd60e51b815260040161084f906137e4565b6112456000612433565b565b6002600b54141561126a5760405162461bcd60e51b815260040161084f90613bd7565b6002600b819055600082815261271f6020908152604091829020825160a081018452815460ff161515808252600183015493820193909352938101546001600160a01b0390811693850193909352600381015460608501526004015490911660808301526112ea5760405162461bcd60e51b815260040161084f90613b15565b60808101516001600160a01b03161580611310575060808101516001600160a01b031633145b61132c5760405162461bcd60e51b815260040161084f90613819565b80606001513410156113505760405162461bcd60e51b815260040161084f9061347e565b61135982611142565b6001600160a01b031681604001516001600160a01b03161461138d5760405162461bcd60e51b815260040161084f90613891565b6000816040015190506113c58133856040518060400160405280600b81526020016a627579696e672070756e6b60a81b8152506121d7565b6113ce83611f2d565b6001600160a01b03811660009081526127216020526040812080543492906113f7908490613c8b565b92505081905550336001600160a01b0316816001600160a01b0316847f58e5d5a525e3b40bc15abaa38b5882678db1ee68befd2f60bafe3a7fd06db9e3346040516114429190613c36565b60405180910390a4600083815261272060209081526040918290208251608081018452815460ff161515815260018201549281019290925260028101546001600160a01b03169282018390526003015460608201529033141561153b5760608101513360009081526127216020526040812080549091906114c4908490613c8b565b90915550506040805160808101825260008082526020808301888152838501838152606085018481528a8552612720909352949092209251835460ff19169015151783559051600183015591516002820180546001600160a01b0319166001600160a01b0390921691909117905590516003909101555b50506001600b555050565b6000546001600160a01b031690565b61155d612058565b6001600160a01b031661156e611546565b6001600160a01b0316146115945760405162461bcd60e51b815260040161084f906137e4565b805161113e90612723906020840190612cd6565b6060600280546107a590613d30565b6002600b5414156115da5760405162461bcd60e51b815260040161084f90613bd7565b6002600b5560006115ea82611142565b6001600160a01b031614156116115760405162461bcd60e51b815260040161084f9061395c565b3361161b82611142565b6001600160a01b031614156116425760405162461bcd60e51b815260040161084f906135c4565b600081815261272060209081526040918290208251608081018452815460ff161515815260018201549281019290925260028101546001600160a01b03169282018390526003015460608201529033146116ae5760405162461bcd60e51b815260040161084f90613340565b336001600160a01b0316827f6f30e1ee4d81dcc7a8a478577f65d2ed2edb120565960ac45fe7c50551c8793283606001516040516116ec9190613c36565b60405180910390a36060818101516040805160808101825260008082526020808301888152838501838152968401838152898452612720909252939091209151825460ff19169015151782559151600182015592516002840180546001600160a01b0319166001600160a01b039092169190911790555160039092019190915561177633826123bc565b6117925760405162461bcd60e51b815260040161084f906138be565b50506001600b5550565b6117a4612058565b6001600160a01b03166117b5611546565b6001600160a01b0316146117db5760405162461bcd60e51b815260040161084f906137e4565b600c805461ff001960ff1990911660011716610100179055565b6002600b5414156118185760405162461bcd60e51b815260040161084f90613bd7565b6002600b55600c5460ff1661183f5760405162461bcd60e51b815260040161084f90613312565b6000611849610c80565b905061185361101e565b61185d8383613c8b565b111561187b5760405162461bcd60e51b815260040161084f90613b4c565b600061188683611c75565b9050803410156118a85760405162461bcd60e51b815260040161084f906136e6565b803411156118cc576118c3336118be8334613cd6565b6123bc565b6118cc57600080fd5b6118dd6118d7611546565b826123bc565b6118f95760405162461bcd60e51b815260040161084f9061372c565b61179283612483565b600c54610100900460ff1681565b611918612058565b6001600160a01b0316826001600160a01b031614156119495760405162461bcd60e51b815260040161084f9061351a565b8060066000611956612058565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561199a612058565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610a9291906132a0565b6119e36119dd612058565b8361220a565b6119ff5760405162461bcd60e51b815260040161084f906139b1565b611a0b848484846121d7565b50505050565b8233611a1c82611142565b6001600160a01b031614611a425760405162461bcd60e51b815260040161084f906134a9565b6040805160a0810182526001808252602080830188815233848601908152606085018981526001600160a01b038981166080880181815260008e815261271f909752958990209751885490151560ff1990911617885593519587019590955590516002860180549186166001600160a01b0319928316179055905160038601559151600490940180549490931693909116929092179055905185907f3c7b682d5da98001a9b8cbda6c647d2c63d698a4184fd1d55e2ce7b66f5d21eb90611b0a908790613c36565b60405180910390a350505050565b8133611b2382611142565b6001600160a01b031614611b495760405162461bcd60e51b815260040161084f906134a9565b6040805160a0810182526001808252602080830187815233848601908152606085018881526000608087018181528b825261271f9095528781209651875460ff1916901515178755925194860194909455516002850180546001600160a01b03199081166001600160a01b03938416179091559351600386015591516004909401805490931693909116929092179055905184907f3c7b682d5da98001a9b8cbda6c647d2c63d698a4184fd1d55e2ce7b66f5d21eb90611c0a908690613c36565b60405180910390a3505050565b60606000611c236124fa565b90506000611c308461250a565b9050815160001415611c455791506107919050565b8181604051602001611c589291906131a1565b60405160208183030381529060405292505050919050565b603281565b6000611c7f61101e565b82611c88610c80565b611c929190613c8b565b1115611cb05760405162461bcd60e51b815260040161084f90613b4c565b61078e8266b1a2bc2ec50000613cb7565b6127238054611ccf90613d30565b80601f0160208091040260200160405190810160405280929190818152602001828054611cfb90613d30565b8015611d485780601f10611d1d57610100808354040283529160200191611d48565b820191906000526020600020905b815481529060010190602001808311611d2b57829003601f168201915b505050505081565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b60606000611d8b836111b8565b905080611da8575050604080516000815260208101909152610791565b6000816001600160401b03811115611dd057634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611df9578160200160208202803683370190505b50905060005b82811015611e4e57611e118582610fcc565b828281518110611e3157634e487b7160e01b600052603260045260246000fd5b602090810291909101015280611e4681613d65565b915050611dff565b5091506107919050565b50919050565b611e66612058565b6001600160a01b0316611e77611546565b6001600160a01b031614611e9d5760405162461bcd60e51b815260040161084f906137e4565b600c805460ff19169055565b611eb1612058565b6001600160a01b0316611ec2611546565b6001600160a01b031614611ee85760405162461bcd60e51b815260040161084f906137e4565b6001600160a01b038116611f0e5760405162461bcd60e51b815260040161084f90613401565b611f1781612433565b50565b6127216020526000908152604090205481565b8033611f3882611142565b6001600160a01b031614611f5e5760405162461bcd60e51b815260040161084f906134a9565b6040805160a0810182526000808252602080830186815233848601908152606085018481526080860185815289865261271f9094528685209551865460ff191690151517865591516001860155516002850180546001600160a01b03199081166001600160a01b0393841617909155915160038601559151600490940180549091169390911692909217909155905183917fb0e0a660b4e50f26f0b7ce75c24655fc76cc66e3334a54ff410277229fa10bd491a25050565b60006001600160e01b0319821663780e9d6360e01b148061078e575061078e82612624565b6000908152600360205260409020546001600160a01b0316151590565b3390565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061209182611142565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080600d8361271081106120ef57634e487b7160e01b600052603260045260246000fd5b01549050600081612101575082612104565b50805b6000600161271d546121169190613cd6565b905080851461219e576000600d82612710811061214357634e487b7160e01b600052603260045260246000fd5b01549050806121765781600d87612710811061216f57634e487b7160e01b600052603260045260246000fd5b015561219c565b80600d87612710811061219957634e487b7160e01b600052603260045260246000fd5b01555b505b61271d80549060006121af83613d19565b909155509195945050505050565b61113e828260405180602001604052806000815250612664565b6121e284848461228f565b6121ee84848484612697565b611a0b5760405162461bcd60e51b815260040161084f906133af565b60006122158261203b565b6122315760405162461bcd60e51b815260040161084f9061354d565b600061223c83611142565b9050806001600160a01b0316846001600160a01b031614806122775750836001600160a01b031661226c84610828565b6001600160a01b0316145b8061228757506122878185611d50565b949350505050565b826001600160a01b03166122a282611142565b6001600160a01b0316146122c85760405162461bcd60e51b815260040161084f90613848565b6001600160a01b0382166122ee5760405162461bcd60e51b815260040161084f906134d6565b6122f98383836127b2565b61230460008261205c565b6001600160a01b038316600090815260046020526040812080546001929061232d908490613cd6565b90915550506001600160a01b038216600090815260046020526040812080546001929061235b908490613c8b565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60408051600080825260208201928390529182916001600160a01b0386169185916123e691613185565b60006040518083038185875af1925050503d8060008114612423576040519150601f19603f3d011682016040523d82523d6000602084013e612428565b606091505b509095945050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60328111156124a45760405162461bcd60e51b815260040161084f906138e8565b61271d5460005b828110156124f25760006124bf84836128e6565b90506124d133610c5f83612710613c8b565b826124db81613d19565b9350505080806124ea90613d65565b9150506124ab565b5061271d5550565b606061272280546107a590613d30565b60608161252f57506040805180820190915260018152600360fc1b6020820152610791565b8160005b8115612559578061254381613d65565b91506125529050600a83613ca3565b9150612533565b6000816001600160401b0381111561258157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156125ab576020820181803683370190505b5090505b8415612287576125c0600183613cd6565b91506125cd600a86613d80565b6125d8906030613c8b565b60f81b8183815181106125fb57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061261d600a86613ca3565b94506125af565b60006001600160e01b031982166380ac58cd60e01b148061265557506001600160e01b03198216635b5e139f60e01b145b8061078e575061078e82612951565b61266e838361296a565b61267b6000848484612697565b610b315760405162461bcd60e51b815260040161084f906133af565b60006126ab846001600160a01b0316612a49565b156127a757836001600160a01b031663150b7a026126c7612058565b8786866040518563ffffffff1660e01b81526004016126e994939291906131e4565b602060405180830381600087803b15801561270357600080fd5b505af1925050508015612733575060408051601f3d908101601f191682019092526127309181019061308b565b60015b61278d573d808015612761576040519150601f19603f3d011682016040523d82523d6000602084013e612766565b606091505b5080516127855760405162461bcd60e51b815260040161084f906133af565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612287565b506001949350505050565b6127bd838383612a4f565b600081815261271f602052604090205460ff16156127de576127de81611f2d565b600081815261272060209081526040918290208251608081018452815460ff161515815260018201549281019290925260028101546001600160a01b03908116938301849052600390910154606083015290919084161415611a0b5760608101516001600160a01b0384166000908152612721602052604081208054909190612868908490613c8b565b9091555050604080516080810182526000808252602080830186815283850183815260608501848152978452612720909252939091209151825460ff19169015151782559151600182015590516002820180546001600160a01b0319166001600160a01b039092169190911790559151600390920191909155505050565b600080333a43426128f8600183613cd6565b4088886040516020016129119796959493929190613221565b6040516020818303038152906040528051906020012060001c9050600061271d548261293d9190613d80565b9050612948816120ca565b95945050505050565b6001600160e01b031981166301ffc9a760e01b14919050565b6001600160a01b0382166129905760405162461bcd60e51b815260040161084f90613763565b6129998161203b565b156129b65760405162461bcd60e51b815260040161084f90613447565b6129c2600083836127b2565b6001600160a01b03821660009081526004602052604081208054600192906129eb908490613c8b565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b612a5a838383610b31565b6001600160a01b038316612a7657612a7181612ad8565b612a99565b816001600160a01b0316836001600160a01b031614612a9957612a998382612b1c565b6001600160a01b038216612ab557612ab081612bb9565b610b31565b826001600160a01b0316826001600160a01b031614610b3157610b318282612c92565b600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b60006001612b29846111b8565b612b339190613cd6565b600083815260086020526040902054909150808214612b86576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090612bcb90600190613cd6565b6000838152600a602052604081205460098054939450909284908110612c0157634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060098381548110612c3057634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480612c7657634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612c9d836111b8565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b828054612ce290613d30565b90600052602060002090601f016020900481019282612d045760008555612d4a565b82601f10612d1d57805160ff1916838001178555612d4a565b82800160010185558215612d4a579182015b82811115612d4a578251825591602001919060010190612d2f565b50612d56929150612d5a565b5090565b5b80821115612d565760008155600101612d5b565b60006001600160401b03831115612d8857612d88613dc0565b612d9b601f8401601f1916602001613c3f565b9050828152838383011115612daf57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461079157600080fd5b600082601f830112612ded578081fd5b81356020612e02612dfd83613c68565b613c3f565b8281528181019085830183850287018401881015612e1e578586fd5b855b85811015612e3c57813584529284019290840190600101612e20565b5090979650505050505050565b600060208284031215612e5a578081fd5b612e6382612dc6565b9392505050565b60008060408385031215612e7c578081fd5b612e8583612dc6565b9150612e9360208401612dc6565b90509250929050565b600080600060608486031215612eb0578081fd5b612eb984612dc6565b9250612ec760208501612dc6565b9150604084013590509250925092565b60008060008060808587031215612eec578081fd5b612ef585612dc6565b9350612f0360208601612dc6565b92506040850135915060608501356001600160401b03811115612f24578182fd5b8501601f81018713612f34578182fd5b612f4387823560208401612d6f565b91505092959194509250565b60008060408385031215612f61578182fd5b612f6a83612dc6565b915060208301358015158114612f7e578182fd5b809150509250929050565b60008060408385031215612f9b578182fd5b612fa483612dc6565b946020939093013593505050565b60008060408385031215612fc4578182fd5b82356001600160401b0380821115612fda578384fd5b818501915085601f830112612fed578384fd5b81356020612ffd612dfd83613c68565b82815281810190858301838502870184018b1015613019578889fd5b8896505b848710156130425761302e81612dc6565b83526001969096019591830191830161301d565b5096505086013592505080821115613058578283fd5b5061306585828601612ddd565b9150509250929050565b600060208284031215613080578081fd5b8135612e6381613dd6565b60006020828403121561309c578081fd5b8151612e6381613dd6565b6000602082840312156130b8578081fd5b81356001600160401b038111156130cd578182fd5b8201601f810184136130dd578182fd5b61228784823560208401612d6f565b6000602082840312156130fd578081fd5b5035919050565b60008060408385031215613116578182fd5b50508035926020909101359150565b600080600060608486031215613139578081fd5b833592506020840135915061315060408501612dc6565b90509250925092565b60008151808452613171816020860160208601613ced565b601f01601f19169290920160200192915050565b60008251613197818460208701613ced565b9190910192915050565b600083516131b3818460208801613ced565b8351908301906131c7818360208801613ced565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061321790830184613159565b9695505050505050565b6001600160a01b03979097168752602087019590955260408601939093526060850191909152608084015260a083015260c082015260e00190565b6020808252825182820181905260009190848201906040850190845b8181101561329457835183529284019291840191600101613278565b50909695505050505050565b901515815260200190565b931515845260208401929092526001600160a01b03166040830152606082015260800190565b941515855260208501939093526001600160a01b039182166040850152606084015216608082015260a00190565b600060208252612e636020830184613159565b60208082526014908201527329b0b632903430b9b713ba1039ba30b93a32b21760611b604082015260600190565b6020808252600a90820152693737ba103134b23232b960b11b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b602080825260119082015270696e76616c6964206574682076616c756560781b604082015260600190565b60208082526013908201527237b7363c903337b910383ab7359037bbb732b960691b604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b602080825260119082015270696e76616c69642062696420707269636560781b604082015260600190565b6020808252601a908201527f696d706f737369626c6520666f72206f776e656420746f6b656e000000000000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776040820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526026908201527f546f6f206c6974746c652073656e742c20706c656173652073656e64206d6f72604082015265329032ba341760d11b606082015260800190565b6020808252601f908201527f6661696c656420746f207472616e73666572206d696e74696e6720636f737400604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601590820152746e6f7420617661696c61626c6520666f7220796f7560581b604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526013908201527239b2b63632b91034b9903737ba1037bbb732b960691b604082015260600190565b60208082526010908201526f19985a5b1959081d1bc81c99599d5b9960821b604082015260600190565b60208082526019908201527826b4b73a34b733903a37b79036b0b73c9030ba1037b731b29760391b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526010908201526f3737ba1036b4b73a32b2103a37b5b2b760811b604082015260600190565b6020808252601190820152706c6f77207468616e2070726576696f757360781b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252602d908201527f63616e6e6f7420696e697469616c207068756e6b206d696e742069662073616c60408201526c19481a185cc81cdd185c9d1959609a1b606082015260800190565b60208082526054908201527f696e697469616c207068756e6b206d696e7473206d75737420626520696e206460408201527f656372656173696e67206f7264657220666f72206f757220617661696c61626c60608201527365546f6b656e20696e64657820746f20776f726b60601b608082015260a00190565b6020808252601a908201527f7468697320746f6b656e206973206e6f7420666f722073616c65000000000000604082015260600190565b60208082526023908201527f5468657265206172656e27742074686973206d616e79207068756e6b73206c65604082015262333a1760e91b606082015260800190565b60208082526028908201527f746f6b656e4f776e65727320646f6573206e6f74206d6174636820746f6b656e6040820152670e640d8cadccee8d60c31b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252600e908201526d0dcdee840cadcdeeaced040cae8d60931b604082015260600190565b90815260200190565b6040518181016001600160401b0381118282101715613c6057613c60613dc0565b604052919050565b60006001600160401b03821115613c8157613c81613dc0565b5060209081020190565b60008219821115613c9e57613c9e613d94565b500190565b600082613cb257613cb2613daa565b500490565b6000816000190483118215151615613cd157613cd1613d94565b500290565b600082821015613ce857613ce8613d94565b500390565b60005b83811015613d08578181015183820152602001613cf0565b83811115611a0b5750506000910152565b600081613d2857613d28613d94565b506000190190565b600281046001821680613d4457607f821691505b60208210811415611e5857634e487b7160e01b600052602260045260246000fd5b6000600019821415613d7957613d79613d94565b5060010190565b600082613d8f57613d8f613daa565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611f1757600080fdfea2646970667358221220011a280f1a82c40483c1cbcab5a09fa1ac03544284a10116382775547b25ec8964736f6c63430008000033

Deployed Bytecode Sourcemap

45929:14288:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59645:221;;;;;;;;;;-1:-1:-1;59645:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26607:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28166:221::-;;;;;;;;;;-1:-1:-1;28166:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46854:50::-;;;;;;;;;;-1:-1:-1;46854:50:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;:::i;56944:695::-;;;;;;:::i;:::-;;:::i;:::-;;27689:411;;;;;;;;;;-1:-1:-1;27689:411:0;;;;;:::i;:::-;;:::i;52950:1036::-;;;;;;;;;;-1:-1:-1;52950:1036:0;;;;;:::i;:::-;;:::i;40358:113::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;57647:640::-;;;;;;;;;;-1:-1:-1;57647:640:0;;;;;:::i;:::-;;:::i;29056:339::-;;;;;;;;;;-1:-1:-1;29056:339:0;;;;;:::i;:::-;;:::i;40026:256::-;;;;;;;;;;-1:-1:-1;40026:256:0;;;;;:::i;:::-;;:::i;47555:95::-;;;;;;;;;;;;;:::i;56633:303::-;;;;;;;;;;;;;:::i;29466:185::-;;;;;;;;;;-1:-1:-1;29466:185:0;;;;;:::i;:::-;;:::i;40548:233::-;;;;;;;;;;-1:-1:-1;40548:233:0;;;;;:::i;:::-;;:::i;54007:104::-;;;;;;;;;;-1:-1:-1;54007:104:0;;;;;:::i;:::-;;:::i;26301:239::-;;;;;;;;;;-1:-1:-1;26301:239:0;;;;;:::i;:::-;;:::i;46061:28::-;;;;;;;;;;;;;:::i;46954:37::-;;;;;;;;;;-1:-1:-1;46954:37:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;:::i;26031:208::-;;;;;;;;;;-1:-1:-1;26031:208:0;;;;;:::i;:::-;;:::i;2471:94::-;;;;;;;;;;;;;:::i;55347:1278::-;;;;;;:::i;:::-;;:::i;1820:87::-;;;;;;;;;;;;;:::i;54119:116::-;;;;;;;;;;-1:-1:-1;54119:116:0;;;;;:::i;:::-;;:::i;26776:104::-;;;;;;;;;;;;;:::i;58295:615::-;;;;;;;;;;-1:-1:-1;58295:615:0;;;;;:::i;:::-;;:::i;52591:111::-;;;;;;;;;;;;;:::i;47658:851::-;;;;;;:::i;:::-;;:::i;46098:38::-;;;;;;;;;;;;;:::i;28459:295::-;;;;;;;;;;-1:-1:-1;28459:295:0;;;;;:::i;:::-;;:::i;29722:328::-;;;;;;;;;;-1:-1:-1;29722:328:0;;;;;:::i;:::-;;:::i;55039:300::-;;;;;;;;;;-1:-1:-1;55039:300:0;;;;;:::i;:::-;;:::i;54753:278::-;;;;;;;;;;-1:-1:-1;54753:278:0;;;;;:::i;:::-;;:::i;52031:439::-;;;;;;;;;;-1:-1:-1;52031:439:0;;;;;:::i;:::-;;:::i;46145:49::-;;;;;;;;;;;;;:::i;50991:306::-;;;;;;;;;;-1:-1:-1;50991:306:0;;;;;:::i;:::-;;:::i;52520:25::-;;;;;;;;;;;;;:::i;28825:164::-;;;;;;;;;;-1:-1:-1;28825:164:0;;;;;:::i;:::-;;:::i;51305:502::-;;;;;;;;;;-1:-1:-1;51305:502:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;52710:74::-;;;;;;;;;;;;;:::i;2720:192::-;;;;;;;;;;-1:-1:-1;2720:192:0;;;;;:::i;:::-;;:::i;47000:51::-;;;;;;;;;;-1:-1:-1;47000:51:0;;;;;:::i;:::-;;:::i;54528:217::-;;;;;;;;;;-1:-1:-1;54528:217:0;;;;;:::i;:::-;;:::i;59645:221::-;59793:4;59822:36;59846:11;59822:23;:36::i;:::-;59815:43;;59645:221;;;;:::o;26607:100::-;26661:13;26694:5;26687:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26607:100;:::o;28166:221::-;28242:7;28270:16;28278:7;28270;:16::i;:::-;28262:73;;;;-1:-1:-1;;;28262:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;28355:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28355:24:0;;28166:221::o;46854:50::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46854:50:0;;;;;;;:::o;56944:695::-;57045:3;57017:16;57025:7;57017;:16::i;:::-;-1:-1:-1;;;;;57017:32:0;;;57009:61;;;;-1:-1:-1;;;57009:61:0;;;;;;;:::i;:::-;57117:10;57089:16;57097:7;57089;:16::i;:::-;-1:-1:-1;;;;;57089:39:0;;;57081:78;;;;-1:-1:-1;;;57081:78:0;;;;;;;:::i;:::-;57191:1;57179:9;:13;57170:41;;;;-1:-1:-1;;;57170:41:0;;;;;;;:::i;:::-;57232:19;57254:17;;;:8;:17;;;;;;;;;57232:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;57232:39:0;;;;;;;;;;;;;;;;;;;57290:9;:26;57282:56;;;;-1:-1:-1;;;57282:56:0;;;;;;;:::i;:::-;57359:14;;;;:18;57355:143;;57472:14;;;;57452:15;;;;;-1:-1:-1;;;;;57433:35:0;;;;;:18;:35;;;;;:53;;:35;;;:53;;57472:14;;57433:53;:::i;:::-;;;;-1:-1:-1;;57355:143:0;57528:41;;;;;;;;57532:4;57528:41;;;;;;;;;;57547:10;57528:41;;;;;;57559:9;57528:41;;;;;;-1:-1:-1;57508:17:0;;;:8;:17;;;;;;;:61;;;;-1:-1:-1;;57508:61:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;57508:61:0;-1:-1:-1;;;;;57508:61:0;;;;;;;;;;;;;;;;;;;57585:46;;57528:41;;57585:46;;;;57559:9;57585:46;:::i;:::-;;;;;;;;56944:695;;:::o;27689:411::-;27770:13;27786:23;27801:7;27786:14;:23::i;:::-;27770:39;;27834:5;-1:-1:-1;;;;;27828:11:0;:2;-1:-1:-1;;;;;27828:11:0;;;27820:57;;;;-1:-1:-1;;;27820:57:0;;;;;;;:::i;:::-;27928:5;-1:-1:-1;;;;;27912:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;27912:21:0;;:62;;;;27937:37;27954:5;27961:12;:10;:12::i;27937:37::-;27890:168;;;;-1:-1:-1;;;27890:168:0;;;;;;;:::i;:::-;28071:21;28080:2;28084:7;28071:8;:21::i;:::-;27689:411;;;:::o;52950:1036::-;2051:12;:10;:12::i;:::-;-1:-1:-1;;;;;2040:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2040:23:0;;2032:68;;;;-1:-1:-1;;;2032:68:0;;;;;;;:::i;:::-;53115:18:::1;::::0;::::1;::::0;::::1;;;53114:19;53092:114;;;;-1:-1:-1::0;;;53092:114:0::1;;;;;;;:::i;:::-;53261:6;:13;53239:11;:18;:35;53217:125;;;;-1:-1:-1::0;;;53217:125:0::1;;;;;;;:::i;:::-;53399:30;::::0;53355:41:::1;53440:462;53464:11;:18;53460:1;:22;53440:462;;;53504:13;53520:6;53527:1;53520:9;;;;;;-1:-1:-1::0;;;53520:9:0::1;;;;;;;;;;;;;;;53504:25;;53606:5;53570:33;:41;53544:187;;;;-1:-1:-1::0;;;53544:187:0::1;;;;;;;:::i;:::-;53782:5;53746:41;;53804:31;53829:5;53804:24;:31::i;:::-;;53850:40;53860:11;53872:1;53860:14;;;;;;-1:-1:-1::0;;;53860:14:0::1;;;;;;;;;;;;;;;53876:5;53884;53876:13;;;;:::i;:::-;53850:9;:40::i;:::-;-1:-1:-1::0;53484:3:0;::::1;::::0;::::1;:::i;:::-;;;;53440:462;;;-1:-1:-1::0;53912:30:0::1;:66:::0;-1:-1:-1;;52950:1036:0:o;40358:113::-;40446:10;:17;40358:113;:::o;57647:640::-;57723:7;60160:10;60140:16;57723:7;60140;:16::i;:::-;-1:-1:-1;;;;;60140:30:0;;60132:62;;;;-1:-1:-1;;;60132:62:0;;;;;;;:::i;:::-;57743:14:::1;57798:17:::0;;;:8:::1;:17;::::0;;;;;;;;57781:34;;::::1;::::0;::::1;::::0;;;;::::1;;;;::::0;;;;::::1;::::0;;;::::1;::::0;;;;::::1;::::0;::::1;::::0;-1:-1:-1;;;;;57781:34:0::1;::::0;;;;;;;::::1;::::0;;::::1;::::0;;;;;;;57760:10:::1;::::0;57781:34;57834:13;;;;:37:::1;;;57863:8;57851:3;:9;;;:20;57834:37;57826:67;;;;-1:-1:-1::0;;;57826:67:0::1;;;;;;;:::i;:::-;57914:49;57928:6;57936:3;:10;;;57948:7;57914:49;;;;;;;;;;;;;-1:-1:-1::0;;;57914:49:0::1;;::::0;:13:::1;:49::i;:::-;58015:50;;;;;;;;58021:5;58015:50;;;;;;58028:7;58015:50;;;;58037:3;:10;;;-1:-1:-1::0;;;;;58015:50:0::1;;;;;58049:1;58015:50;;;;58060:3;-1:-1:-1::0;;;;;58015:50:0::1;;;::::0;57984:19:::1;:28;58004:7;57984:28;;;;;;;;;;;:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;57984:81:0::1;;;;;-1:-1:-1::0;;;;;57984:81:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;57984:81:0::1;;;;;-1:-1:-1::0;;;;;57984:81:0::1;;;;;;;;;58076:11;58090:3;:9;;;58076:23;;58130:36;;;;;;;;58134:5;58130:36;;;;;;58141:7;58130:36;;;;58158:3;-1:-1:-1::0;;;;;58130:36:0::1;;;;;58164:1;58130:36;;::::0;58110:8:::1;:17;58119:7;58110:17;;;;;;;;;;;:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;58110:56:0::1;;;;;-1:-1:-1::0;;;;;58110:56:0::1;;;;;;;;;;;;;;;;;58207:6;58177:18;:26;58196:6;-1:-1:-1::0;;;;;58177:26:0::1;-1:-1:-1::0;;;;;58177:26:0::1;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;58268:3;:10;;;-1:-1:-1::0;;;;;58229:50:0::1;58260:6;-1:-1:-1::0;;;;;58229:50:0::1;58240:7;58229:50;58249:3;:9;;;58229:50;;;;;;:::i;:::-;;;;;;;;60205:1;;;57647:640:::0;;;:::o;29056:339::-;29251:41;29270:12;:10;:12::i;:::-;29284:7;29251:18;:41::i;:::-;29243:103;;;;-1:-1:-1;;;29243:103:0;;;;;;;:::i;:::-;29359:28;29369:4;29375:2;29379:7;29359:9;:28::i;40026:256::-;40123:7;40159:23;40176:5;40159:16;:23::i;:::-;40151:5;:31;40143:87;;;;-1:-1:-1;;;40143:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;40248:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40026:256::o;47555:95::-;47637:5;47555:95;:::o;56633:303::-;4855:1;5451:7;;:19;;5443:63;;;;-1:-1:-1;;;5443:63:0;;;;;;;:::i;:::-;4855:1;5584:7;:18;56719:10:::1;56686:11;56700:30:::0;;;:18:::1;:30;::::0;;;;;;56847:34;;;56700:30;56892:36:::1;::::0;56700:30;56892:16:::1;:36::i;:::-;-1:-1:-1::0;;4811:1:0;5763:7;:22;56633:303::o;29466:185::-;29604:39;29621:4;29627:2;29631:7;29604:39;;;;;;;;;;;;:16;:39::i;40548:233::-;40623:7;40659:30;:28;:30::i;:::-;40651:5;:38;40643:95;;;;-1:-1:-1;;;40643:95:0;;;;;;;:::i;:::-;40756:10;40767:5;40756:17;;;;;;-1:-1:-1;;;40756:17:0;;;;;;;;;;;;;;;;;40749:24;;40548:233;;;:::o;54007:104::-;2051:12;:10;:12::i;:::-;-1:-1:-1;;;;;2040:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2040:23:0;;2032:68;;;;-1:-1:-1;;;2032:68:0;;;;;;;:::i;:::-;54080:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;54007:104:::0;:::o;26301:239::-;26373:7;26409:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26409:16:0;26444:19;26436:73;;;;-1:-1:-1;;;26436:73:0;;;;;;;:::i;46061:28::-;;;;;;:::o;46954:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46954:37:0;;;;;:::o;26031:208::-;26103:7;-1:-1:-1;;;;;26131:19:0;;26123:74;;;;-1:-1:-1;;;26123:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;26215:16:0;;;;;:9;:16;;;;;;;26031:208::o;2471:94::-;2051:12;:10;:12::i;:::-;-1:-1:-1;;;;;2040:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2040:23:0;;2032:68;;;;-1:-1:-1;;;2032:68:0;;;;;;;:::i;:::-;2536:21:::1;2554:1;2536:9;:21::i;:::-;2471:94::o:0;55347:1278::-;4855:1;5451:7;;:19;;5443:63;;;;-1:-1:-1;;;5443:63:0;;;;;;;:::i;:::-;4855:1;5584:7;:18;;;55419::::1;55440:28:::0;;;:19:::1;:28;::::0;;;;;;;;55419:49;;::::1;::::0;::::1;::::0;;;;::::1;;;;::::0;;;;;::::1;::::0;;;::::1;::::0;;;;;;::::1;::::0;-1:-1:-1;;;;;55419:49:0;;::::1;::::0;;;;;;;::::1;::::0;::::1;::::0;;;;;::::1;;::::0;;;::::1;::::0;;;;55479:55:::1;;;;-1:-1:-1::0;;;55479:55:0::1;;;;;;;:::i;:::-;55599:16;::::0;::::1;::::0;-1:-1:-1;;;;;55599:32:0::1;::::0;;:66:::1;;-1:-1:-1::0;55635:16:0::1;::::0;::::1;::::0;-1:-1:-1;;;;;55635:30:0::1;55655:10;55635:30;55599:66;55590:101;;;;-1:-1:-1::0;;;55590:101:0::1;;;;;;;:::i;:::-;55770:5;:14;;;55757:9;:27;;55748:58;;;;-1:-1:-1::0;;;55748:58:0::1;;;;;;;:::i;:::-;55873:16;55881:7;55873;:16::i;:::-;-1:-1:-1::0;;;;;55857:32:0::1;:5;:12;;;-1:-1:-1::0;;;;;55857:32:0::1;;55848:65;;;;-1:-1:-1::0;;;55848:65:0::1;;;;;;;:::i;:::-;55960:14;55977:5;:12;;;55960:29;;56002:57;56016:6;56024:10;56036:7;56002:57;;;;;;;;;;;;;-1:-1:-1::0;;;56002:57:0::1;;::::0;:13:::1;:57::i;:::-;56072:28;56092:7;56072:19;:28::i;:::-;-1:-1:-1::0;;;;;56111:26:0;::::1;;::::0;;;:18:::1;:26;::::0;;;;:39;;56141:9:::1;::::0;56111:26;:39:::1;::::0;56141:9;;56111:39:::1;:::i;:::-;;;;;;;;56205:10;-1:-1:-1::0;;;;;56166:50:0::1;56197:6;-1:-1:-1::0;;;;;56166:50:0::1;56177:7;56166:50;56186:9;56166:50;;;;;;:::i;:::-;;;;;;;;56360:14;56377:17:::0;;;:8:::1;:17;::::0;;;;;;;;56360:34;;::::1;::::0;::::1;::::0;;;;::::1;;;;::::0;;;;::::1;::::0;;;::::1;::::0;;;;::::1;::::0;::::1;::::0;-1:-1:-1;;;;;56360:34:0::1;::::0;;;;;;::::1;;::::0;;;;;;56423:10:::1;56409:24;56405:213;;;56526:9;::::0;::::1;::::0;56511:10:::1;56492:30;::::0;;;:18:::1;:30;::::0;;;;:43;;:30;;;:43:::1;::::0;56526:9;;56492:43:::1;:::i;:::-;::::0;;;-1:-1:-1;;56570:36:0::1;::::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;56570:36:0;;;::::1;::::0;;::::1;::::0;;;;;;;;;;;;;;;56550:17;;;:8:::1;:17:::0;;;;;;;:56;;;;-1:-1:-1;;56550:56:0::1;::::0;::::1;;;::::0;;;;-1:-1:-1;56550:56:0;::::1;::::0;;;::::1;::::0;::::1;::::0;;-1:-1:-1;;;;;;56550:56:0::1;-1:-1:-1::0;;;;;56550:56:0;;::::1;::::0;;;::::1;::::0;;;;::::1;::::0;;::::1;::::0;56405:213:::1;-1:-1:-1::0;;4811:1:0;5763:7;:22;-1:-1:-1;;55347:1278:0:o;1820:87::-;1866:7;1893:6;-1:-1:-1;;;;;1893:6:0;1820:87;:::o;54119:116::-;2051:12;:10;:12::i;:::-;-1:-1:-1;;;;;2040:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2040:23:0;;2032:68;;;;-1:-1:-1;;;2032:68:0;;;;;;;:::i;:::-;54201:26;;::::1;::::0;:11:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;26776:104::-:0;26832:13;26865:7;26858:14;;;;;:::i;58295:615::-;4855:1;5451:7;;:19;;5443:63;;;;-1:-1:-1;;;5443:63:0;;;;;;;:::i;:::-;4855:1;5584:7;:18;58406:3:::1;58378:16;58386:7:::0;58378::::1;:16::i;:::-;-1:-1:-1::0;;;;;58378:32:0::1;;;58370:61;;;;-1:-1:-1::0;;;58370:61:0::1;;;;;;;:::i;:::-;58478:10;58450:16;58458:7:::0;58450::::1;:16::i;:::-;-1:-1:-1::0;;;;;58450:39:0::1;;;58442:78;;;;-1:-1:-1::0;;;58442:78:0::1;;;;;;;:::i;:::-;58533:14;58550:17:::0;;;:8:::1;:17;::::0;;;;;;;;58533:34;;::::1;::::0;::::1;::::0;;;;::::1;;;;::::0;;;;::::1;::::0;;;::::1;::::0;;;;::::1;::::0;::::1;::::0;-1:-1:-1;;;;;58533:34:0::1;::::0;;;;;;::::1;;::::0;;;;;;58601:10:::1;58587:24;58578:48;;;;-1:-1:-1::0;;;58578:48:0::1;;;;;;;:::i;:::-;58681:10;-1:-1:-1::0;;;;;58644:48:0::1;58661:7;58644:48;58670:3;:9;;;58644:48;;;;;;:::i;:::-;;;;;;;;58717:9;::::0;;::::1;::::0;58757:36:::1;::::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;58757:36:0;;;-1:-1:-1;58757:36:0;;::::1;::::0;;;;;;;;;;;;;;;58737:17;;;:8:::1;:17:::0;;;;;;;:56;;;;-1:-1:-1;;58737:56:0::1;::::0;::::1;;;::::0;;;;-1:-1:-1;58737:56:0;::::1;::::0;;;::::1;::::0;::::1;::::0;;-1:-1:-1;;;;;;58737:56:0::1;-1:-1:-1::0;;;;;58737:56:0;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;::::0;;;;58845:36:::1;58862:10;58717:9:::0;58845:16:::1;:36::i;:::-;58837:65;;;;-1:-1:-1::0;;;58837:65:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;4811:1:0;5763:7;:22;-1:-1:-1;58295:615:0:o;52591:111::-;2051:12;:10;:12::i;:::-;-1:-1:-1;;;;;2040:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2040:23:0;;2032:68;;;;-1:-1:-1;;;2032:68:0;;;;;;;:::i;:::-;52643:8:::1;:15:::0;;-1:-1:-1;;;;52643:15:0;;::::1;52654:4;52643:15;52669:25;52643:15;52669:25;::::0;;52591:111::o;47658:851::-;4855:1;5451:7;;:19;;5443:63;;;;-1:-1:-1;;;5443:63:0;;;;;;;:::i;:::-;4855:1;5584:7;:18;47741:8:::1;::::0;::::1;;47733:41;;;;-1:-1:-1::0;;;47733:41:0::1;;;;;;;:::i;:::-;47785:19;47807:13;:11;:13::i;:::-;47785:35;;47881:16;:14;:16::i;:::-;47853:24;47867:10:::0;47853:11;:24:::1;:::i;:::-;:44;;47831:129;;;;-1:-1:-1::0;;;47831:129:0::1;;;;;;;:::i;:::-;47971:28;48002:35;48026:10;48002:23;:35::i;:::-;47971:66;;48083:20;48070:9;:33;;48048:121;;;;-1:-1:-1::0;;;48048:121:0::1;;;;;;;:::i;:::-;48196:20;48184:9;:32;48180:136;;;48241:62;48258:10;48270:32;48282:20:::0;48270:9:::1;:32;:::i;:::-;48241:16;:62::i;:::-;48233:71;;;::::0;::::1;;48388:47;48405:7;:5;:7::i;:::-;48414:20;48388:16;:47::i;:::-;48380:91;;;;-1:-1:-1::0;;;48380:91:0::1;;;;;;;:::i;:::-;48484:17;48490:10;48484:5;:17::i;46098:38::-:0;;;;;;;;;:::o;28459:295::-;28574:12;:10;:12::i;:::-;-1:-1:-1;;;;;28562:24:0;:8;-1:-1:-1;;;;;28562:24:0;;;28554:62;;;;-1:-1:-1;;;28554:62:0;;;;;;;:::i;:::-;28674:8;28629:18;:32;28648:12;:10;:12::i;:::-;-1:-1:-1;;;;;28629:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;28629:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;28629:53:0;;;;;;;;;;;28713:12;:10;:12::i;:::-;-1:-1:-1;;;;;28698:48:0;;28737:8;28698:48;;;;;;:::i;29722:328::-;29897:41;29916:12;:10;:12::i;:::-;29930:7;29897:18;:41::i;:::-;29889:103;;;;-1:-1:-1;;;29889:103:0;;;;;;;:::i;:::-;30003:39;30017:4;30023:2;30027:7;30036:5;30003:13;:39::i;:::-;29722:328;;;;:::o;55039:300::-;55152:7;60160:10;60140:16;55152:7;60140;:16::i;:::-;-1:-1:-1;;;;;60140:30:0;;60132:62;;;;-1:-1:-1;;;60132:62:0;;;;;;;:::i;:::-;55203::::1;::::0;;::::1;::::0;::::1;::::0;;55209:4:::1;55203:62:::0;;;::::1;::::0;;::::1;::::0;;;55224:10:::1;55203:62:::0;;;;;;;;;;;;-1:-1:-1;;;;;55203:62:0;;::::1;::::0;;;;;;-1:-1:-1;55172:28:0;;;:19:::1;:28:::0;;;;;;;:93;;;;;::::1;;-1:-1:-1::0;;55172:93:0;;::::1;;::::0;;;;;;::::1;::::0;;;;;;::::1;::::0;::::1;::::0;;;;::::1;-1:-1:-1::0;;;;;;55172:93:0;;::::1;;::::0;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;::::1;::::0;;;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;55281:50;;55215:7;;55281:50:::1;::::0;::::1;::::0;55236:17;;55281:50:::1;:::i;:::-;;;;;;;;55039:300:::0;;;;:::o;54753:278::-;54838:7;60160:10;60140:16;54838:7;60140;:16::i;:::-;-1:-1:-1;;;;;60140:30:0;;60132:62;;;;-1:-1:-1;;;60132:62:0;;;;;;;:::i;:::-;54889:65:::1;::::0;;::::1;::::0;::::1;::::0;;54895:4:::1;54889:65:::0;;;::::1;::::0;;::::1;::::0;;;54910:10:::1;54889:65:::0;;;;;;;;;;;;-1:-1:-1;54889:65:0;;;;;;54858:28;;;:19:::1;:28:::0;;;;;;:96;;;;-1:-1:-1;;54858:96:0::1;::::0;::::1;;;::::0;;;;;;::::1;::::0;;;;;::::1;::::0;::::1;::::0;;-1:-1:-1;;;;;;54858:96:0;;::::1;-1:-1:-1::0;;;;;54858:96:0;;::::1;;::::0;;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;::::1;::::0;;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;54970:53;;54889:65;;54970:53:::1;::::0;::::1;::::0;54889:65;;54970:53:::1;:::i;:::-;;;;;;;;54753:278:::0;;;:::o;52031:439::-;52133:13;52164:18;52185:10;:8;:10::i;:::-;52164:31;;52206:23;52232:26;52249:8;52232:16;:26::i;:::-;52206:52;;52340:4;52334:18;52356:1;52334:23;52330:72;;;52381:9;-1:-1:-1;52374:16:0;;-1:-1:-1;52374:16:0;52330:72;52445:4;52451:9;52428:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52414:48;;;;52031:439;;;:::o;46145:49::-;46192:2;46145:49;:::o;50991:306::-;51092:7;51169:16;:14;:16::i;:::-;51155:10;51139:13;:11;:13::i;:::-;:26;;;;:::i;:::-;:46;;51117:131;;;;-1:-1:-1;;;51117:131:0;;;;;;;:::i;:::-;51266:23;51279:10;51266;:23;:::i;52520:25::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28825:164::-;-1:-1:-1;;;;;28946:25:0;;;28922:4;28946:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28825:164::o;51305:502::-;51406:16;51440:17;51460;51470:6;51460:9;:17::i;:::-;51440:37;-1:-1:-1;51492:14:0;51488:312;;-1:-1:-1;;51530:16:0;;;51544:1;51530:16;;;;;;;;51523:23;;51488:312;51579:23;51619:9;-1:-1:-1;;;;;51605:24:0;;;;;-1:-1:-1;;;51605:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51605:24:0;;51579:50;;51649:9;51644:117;51668:9;51664:1;:13;51644:117;;;51715:30;51735:6;51743:1;51715:19;:30::i;:::-;51703:6;51710:1;51703:9;;;;;;-1:-1:-1;;;51703:9:0;;;;;;;;;;;;;;;;;;:42;51679:3;;;;:::i;:::-;;;;51644:117;;;-1:-1:-1;51782:6:0;-1:-1:-1;51775:13:0;;-1:-1:-1;51775:13:0;51488:312;51305:502;;;;:::o;52710:74::-;2051:12;:10;:12::i;:::-;-1:-1:-1;;;;;2040:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2040:23:0;;2032:68;;;;-1:-1:-1;;;2032:68:0;;;;;;;:::i;:::-;52760:8:::1;:16:::0;;-1:-1:-1;;52760:16:0::1;::::0;;52710:74::o;2720:192::-;2051:12;:10;:12::i;:::-;-1:-1:-1;;;;;2040:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2040:23:0;;2032:68;;;;-1:-1:-1;;;2032:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2809:22:0;::::1;2801:73;;;;-1:-1:-1::0;;;2801:73:0::1;;;;;;;:::i;:::-;2885:19;2895:8;2885:9;:19::i;:::-;2720:192:::0;:::o;47000:51::-;;;;;;;;;;;;;:::o;54528:217::-;54592:7;60160:10;60140:16;54592:7;60140;:16::i;:::-;-1:-1:-1;;;;;60140:30:0;;60132:62;;;;-1:-1:-1;;;60132:62:0;;;;;;;:::i;:::-;54643:50:::1;::::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;54643:50:0;;;::::1;::::0;;::::1;::::0;;;54665:10:::1;54643:50:::0;;;;;;;;;;;;;;;;;;54612:28;;;:19:::1;:28:::0;;;;;;:81;;;;-1:-1:-1;;54612:81:0::1;::::0;::::1;;;::::0;;;;-1:-1:-1;54612:81:0;::::1;::::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;;;;;;54612:81:0;;::::1;-1:-1:-1::0;;;;;54612:81:0;;::::1;;::::0;;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;::::1;::::0;;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;;54709:28;;54643:50;;54709:28:::1;::::0;::::1;54528:217:::0;;:::o;39718:224::-;39820:4;-1:-1:-1;;;;;;39844:50:0;;-1:-1:-1;;;39844:50:0;;:90;;;39898:36;39922:11;39898:23;:36::i;31560:127::-;31625:4;31649:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31649:16:0;:30;;;31560:127::o;602:98::-;682:10;602:98;:::o;35542:174::-;35617:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35617:29:0;-1:-1:-1;;;;;35617:29:0;;;;;;;;:24;;35671:23;35617:24;35671:14;:23::i;:::-;-1:-1:-1;;;;;35662:46:0;;;;;;;;;;;35542:174;;:::o;49664:1319::-;49754:7;49779:18;49800:16;49817:10;49800:28;;;;;-1:-1:-1;;;49800:28:0;;;;;;;;;;;;-1:-1:-1;49839:14:0;49868:15;49864:292;;-1:-1:-1;49981:10:0;49864:292;;;-1:-1:-1;50134:10:0;49864:292;50168:17;50210:1;50188:19;;:23;;;;:::i;:::-;50168:43;;50240:9;50226:10;:23;50222:696;;50473:22;50498:16;50515:9;50498:27;;;;;-1:-1:-1;;;50498:27:0;;;;;;;;;;;;-1:-1:-1;50544:19:0;50540:367;;50691:9;50660:16;50677:10;50660:28;;;;;-1:-1:-1;;;50660:28:0;;;;;;;;;;:40;50540:367;;;50877:14;50846:16;50863:10;50846:28;;;;;-1:-1:-1;;;50846:28:0;;;;;;;;;;:45;50540:367;50222:696;;50930:19;:21;;;:19;:21;;;:::i;:::-;;;;-1:-1:-1;50969:6:0;;49664:1319;-1:-1:-1;;;;;49664:1319:0:o;32544:110::-;32620:26;32630:2;32634:7;32620:26;;;;;;;;;;;;:9;:26::i;30932:315::-;31089:28;31099:4;31105:2;31109:7;31089:9;:28::i;:::-;31136:48;31159:4;31165:2;31169:7;31178:5;31136:22;:48::i;:::-;31128:111;;;;-1:-1:-1;;;31128:111:0;;;;;;;:::i;31854:348::-;31947:4;31972:16;31980:7;31972;:16::i;:::-;31964:73;;;;-1:-1:-1;;;31964:73:0;;;;;;;:::i;:::-;32048:13;32064:23;32079:7;32064:14;:23::i;:::-;32048:39;;32117:5;-1:-1:-1;;;;;32106:16:0;:7;-1:-1:-1;;;;;32106:16:0;;:51;;;;32150:7;-1:-1:-1;;;;;32126:31:0;:20;32138:7;32126:11;:20::i;:::-;-1:-1:-1;;;;;32126:31:0;;32106:51;:87;;;;32161:32;32178:5;32185:7;32161:16;:32::i;:::-;32098:96;31854:348;-1:-1:-1;;;;31854:348:0:o;34846:578::-;35005:4;-1:-1:-1;;;;;34978:31:0;:23;34993:7;34978:14;:23::i;:::-;-1:-1:-1;;;;;34978:31:0;;34970:85;;;;-1:-1:-1;;;34970:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35074:16:0;;35066:65;;;;-1:-1:-1;;;35066:65:0;;;;;;;:::i;:::-;35144:39;35165:4;35171:2;35175:7;35144:20;:39::i;:::-;35248:29;35265:1;35269:7;35248:8;:29::i;:::-;-1:-1:-1;;;;;35290:15:0;;;;;;:9;:15;;;;;:20;;35309:1;;35290:15;:20;;35309:1;;35290:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35321:13:0;;;;;;:9;:13;;;;;:18;;35338:1;;35321:13;:18;;35338:1;;35321:18;:::i;:::-;;;;-1:-1:-1;;35350:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35350:21:0;-1:-1:-1;;;;;35350:21:0;;;;;;;;;35389:27;;35350:16;;35389:27;;;;;;;34846:578;;;:::o;59911:162::-;60033:12;;;59981:4;60033:12;;;;;;;;;;59981:4;;;-1:-1:-1;;;;;60011:7:0;;;60026:5;;60011:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59992:54:0;;59911:162;-1:-1:-1;;;;;59911:162:0:o;2920:173::-;2976:16;2995:6;;-1:-1:-1;;;;;3012:17:0;;;-1:-1:-1;;;;;;3012:17:0;;;;;;3045:40;;2995:6;;;;;;;3045:40;;2976:16;3045:40;2920:173;;:::o;48551:496::-;46192:2;48614:10;:34;;48606:72;;;;-1:-1:-1;;;48606:72:0;;;;;;;:::i;:::-;48727:19;;48691:33;48757:225;48781:10;48777:1;:14;48757:225;;;48813:18;48834:38;48858:10;48870:1;48834:23;:38::i;:::-;48813:59;-1:-1:-1;48887:41:0;48897:10;48909:18;48813:59;48922:5;48909:18;:::i;48887:41::-;48943:27;;;;:::i;:::-;;;;48757:225;48793:3;;;;;:::i;:::-;;;;48757:225;;;-1:-1:-1;48992:19:0;:47;-1:-1:-1;48551:496:0:o;51909:114::-;51969:13;52002;51995:20;;;;;:::i;21597:723::-;21653:13;21874:10;21870:53;;-1:-1:-1;21901:10:0;;;;;;;;;;;;-1:-1:-1;;;21901:10:0;;;;;;21870:53;21948:5;21933:12;21989:78;21996:9;;21989:78;;22022:8;;;;:::i;:::-;;-1:-1:-1;22045:10:0;;-1:-1:-1;22053:2:0;22045:10;;:::i;:::-;;;21989:78;;;22077:19;22109:6;-1:-1:-1;;;;;22099:17:0;;;;;-1:-1:-1;;;22099:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22099:17:0;;22077:39;;22127:154;22134:10;;22127:154;;22161:11;22171:1;22161:11;;:::i;:::-;;-1:-1:-1;22230:10:0;22238:2;22230:5;:10;:::i;:::-;22217:24;;:2;:24;:::i;:::-;22204:39;;22187:6;22194;22187:14;;;;;;-1:-1:-1;;;22187:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;22187:56:0;;;;;;;;-1:-1:-1;22258:11:0;22267:2;22258:11;;:::i;:::-;;;22127:154;;25662:305;25764:4;-1:-1:-1;;;;;;25801:40:0;;-1:-1:-1;;;25801:40:0;;:105;;-1:-1:-1;;;;;;;25858:48:0;;-1:-1:-1;;;25858:48:0;25801:105;:158;;;;25923:36;25947:11;25923:23;:36::i;32881:321::-;33011:18;33017:2;33021:7;33011:5;:18::i;:::-;33062:54;33093:1;33097:2;33101:7;33110:5;33062:22;:54::i;:::-;33040:154;;;;-1:-1:-1;;;33040:154:0;;;;;;;:::i;36281:799::-;36436:4;36457:15;:2;-1:-1:-1;;;;;36457:13:0;;:15::i;:::-;36453:620;;;36509:2;-1:-1:-1;;;;;36493:36:0;;36530:12;:10;:12::i;:::-;36544:4;36550:7;36559:5;36493:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36493:72:0;;;;;;;;-1:-1:-1;;36493:72:0;;;;;;;;;;;;:::i;:::-;;;36489:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36735:13:0;;36731:272;;36778:60;;-1:-1:-1;;;36778:60:0;;;;;;;:::i;36731:272::-;36953:6;36947:13;36938:6;36934:2;36930:15;36923:38;36489:529;-1:-1:-1;;;;;;36616:51:0;-1:-1:-1;;;36616:51:0;;-1:-1:-1;36609:58:0;;36453:620;-1:-1:-1;37057:4:0;36281:799;;;;;;:::o;58918:719::-;59080:45;59107:4;59113:2;59117:7;59080:26;:45::i;:::-;59142:28;;;;:19;:28;;;;;:38;;;59138:99;;;59197:28;59217:7;59197:19;:28::i;:::-;59388:14;59405:17;;;:8;:17;;;;;;;;;59388:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;59388:34:0;;;;;;;;;;;;;;;;;;;;59437:16;;;;59433:197;;;59538:9;;;;-1:-1:-1;;;;;59512:22:0;;;;;;:18;:22;;;;;:35;;:22;;;:35;;59538:9;;59512:35;:::i;:::-;;;;-1:-1:-1;;59582:36:0;;;;;;;;-1:-1:-1;59582:36:0;;;;;;;;;;;;;;;;;;;;;;59562:17;;;:8;:17;;;;;;;:56;;;;-1:-1:-1;;59562:56:0;;;;;;;;;-1:-1:-1;59562:56:0;;;;;;;;;;-1:-1:-1;;;;;;59562:56:0;-1:-1:-1;;;;;59562:56:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;58918:719:0:o;49055:601::-;49157:7;;49286:10;49315:11;49345:12;49376:15;49420:16;49435:1;49345:12;49420:16;:::i;:::-;49410:27;49456:11;49486:2;49257:246;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49233:285;;;;;;49211:318;;49182:347;;49540:19;49574;;49562:9;:31;;;;:::i;:::-;49540:53;;49611:37;49636:11;49611:24;:37::i;:::-;49604:44;49055:601;-1:-1:-1;;;;;49055:601:0:o;24160:157::-;-1:-1:-1;;;;;;24269:40:0;;-1:-1:-1;;;24269:40:0;24160:157;;;:::o;33538:382::-;-1:-1:-1;;;;;33618:16:0;;33610:61;;;;-1:-1:-1;;;33610:61:0;;;;;;;:::i;:::-;33691:16;33699:7;33691;:16::i;:::-;33690:17;33682:58;;;;-1:-1:-1;;;33682:58:0;;;;;;;:::i;:::-;33753:45;33782:1;33786:2;33790:7;33753:20;:45::i;:::-;-1:-1:-1;;;;;33811:13:0;;;;;;:9;:13;;;;;:18;;33828:1;;33811:13;:18;;33828:1;;33811:18;:::i;:::-;;;;-1:-1:-1;;33840:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33840:21:0;-1:-1:-1;;;;;33840:21:0;;;;;;;;33879:33;;33840:16;;;33879:33;;33840:16;;33879:33;33538:382;;:::o;13947:387::-;14270:20;14318:8;;;13947:387::o;41394:589::-;41538:45;41565:4;41571:2;41575:7;41538:26;:45::i;:::-;-1:-1:-1;;;;;41600:18:0;;41596:187;;41635:40;41667:7;41635:31;:40::i;:::-;41596:187;;;41705:2;-1:-1:-1;;;;;41697:10:0;:4;-1:-1:-1;;;;;41697:10:0;;41693:90;;41724:47;41757:4;41763:7;41724:32;:47::i;:::-;-1:-1:-1;;;;;41797:16:0;;41793:183;;41830:45;41867:7;41830:36;:45::i;:::-;41793:183;;;41903:4;-1:-1:-1;;;;;41897:10:0;:2;-1:-1:-1;;;;;41897:10:0;;41893:83;;41924:40;41952:2;41956:7;41924:27;:40::i;42706:164::-;42810:10;:17;;42783:24;;;;:15;:24;;;;;:44;;;42838:24;;;;;;;;;;;;42706:164::o;43497:988::-;43763:22;43813:1;43788:22;43805:4;43788:16;:22::i;:::-;:26;;;;:::i;:::-;43825:18;43846:26;;;:17;:26;;;;;;43763:51;;-1:-1:-1;43979:28:0;;;43975:328;;-1:-1:-1;;;;;44046:18:0;;44024:19;44046:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44097:30;;;;;;:44;;;44214:30;;:17;:30;;;;;:43;;;43975:328;-1:-1:-1;44399:26:0;;;;:17;:26;;;;;;;;44392:33;;;-1:-1:-1;;;;;44443:18:0;;;;;:12;:18;;;;;:34;;;;;;;44436:41;43497:988::o;44780:1079::-;45058:10;:17;45033:22;;45058:21;;45078:1;;45058:21;:::i;:::-;45090:18;45111:24;;;:15;:24;;;;;;45484:10;:26;;45033:46;;-1:-1:-1;45111:24:0;;45033:46;;45484:26;;;;-1:-1:-1;;;45484:26:0;;;;;;;;;;;;;;;;;45462:48;;45548:11;45523:10;45534;45523:22;;;;;;-1:-1:-1;;;45523:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;45628:28;;;:15;:28;;;;;;;:41;;;45800:24;;;;;45793:31;45835:10;:16;;;;;-1:-1:-1;;;45835:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;44780:1079;;;;:::o;42284:221::-;42369:14;42386:20;42403:2;42386:16;:20::i;:::-;-1:-1:-1;;;;;42417:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42462:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42284:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:409:1;;-1:-1:-1;;;;;106:6:1;103:30;100:2;;;136:18;;:::i;:::-;174:58;220:2;197:17;;-1:-1:-1;;193:31:1;226:4;189:42;174:58;:::i;:::-;165:67;;255:6;248:5;241:21;295:3;286:6;281:3;277:16;274:25;271:2;;;312:1;309;302:12;271:2;361:6;356:3;349:4;342:5;338:16;325:43;415:1;408:4;399:6;392:5;388:18;384:29;377:40;90:333;;;;;:::o;428:175::-;498:20;;-1:-1:-1;;;;;547:31:1;;537:42;;527:2;;593:1;590;583:12;608:705;;721:3;714:4;706:6;702:17;698:27;688:2;;743:5;736;729:20;688:2;783:6;770:20;809:4;833:65;848:49;894:2;848:49;:::i;:::-;833:65;:::i;:::-;932:15;;;963:12;;;;995:15;;;1041:11;;;1029:24;;1025:33;;1022:42;-1:-1:-1;1019:2:1;;;1081:5;1074;1067:20;1019:2;1107:5;1121:163;1135:2;1132:1;1129:9;1121:163;;;1192:17;;1180:30;;1230:12;;;;1262;;;;1153:1;1146:9;1121:163;;;-1:-1:-1;1302:5:1;;678:635;-1:-1:-1;;;;;;;678:635:1:o;1318:198::-;;1430:2;1418:9;1409:7;1405:23;1401:32;1398:2;;;1451:6;1443;1436:22;1398:2;1479:31;1500:9;1479:31;:::i;:::-;1469:41;1388:128;-1:-1:-1;;;1388:128:1:o;1521:274::-;;;1650:2;1638:9;1629:7;1625:23;1621:32;1618:2;;;1671:6;1663;1656:22;1618:2;1699:31;1720:9;1699:31;:::i;:::-;1689:41;;1749:40;1785:2;1774:9;1770:18;1749:40;:::i;:::-;1739:50;;1608:187;;;;;:::o;1800:342::-;;;;1946:2;1934:9;1925:7;1921:23;1917:32;1914:2;;;1967:6;1959;1952:22;1914:2;1995:31;2016:9;1995:31;:::i;:::-;1985:41;;2045:40;2081:2;2070:9;2066:18;2045:40;:::i;:::-;2035:50;;2132:2;2121:9;2117:18;2104:32;2094:42;;1904:238;;;;;:::o;2147:702::-;;;;;2319:3;2307:9;2298:7;2294:23;2290:33;2287:2;;;2341:6;2333;2326:22;2287:2;2369:31;2390:9;2369:31;:::i;:::-;2359:41;;2419:40;2455:2;2444:9;2440:18;2419:40;:::i;:::-;2409:50;;2506:2;2495:9;2491:18;2478:32;2468:42;;2561:2;2550:9;2546:18;2533:32;-1:-1:-1;;;;;2580:6:1;2577:30;2574:2;;;2625:6;2617;2610:22;2574:2;2653:22;;2706:4;2698:13;;2694:27;-1:-1:-1;2684:2:1;;2740:6;2732;2725:22;2684:2;2768:75;2835:7;2830:2;2817:16;2812:2;2808;2804:11;2768:75;:::i;:::-;2758:85;;;2277:572;;;;;;;:::o;2854:369::-;;;2980:2;2968:9;2959:7;2955:23;2951:32;2948:2;;;3001:6;2993;2986:22;2948:2;3029:31;3050:9;3029:31;:::i;:::-;3019:41;;3110:2;3099:9;3095:18;3082:32;3157:5;3150:13;3143:21;3136:5;3133:32;3123:2;;3184:6;3176;3169:22;3123:2;3212:5;3202:15;;;2938:285;;;;;:::o;3228:266::-;;;3357:2;3345:9;3336:7;3332:23;3328:32;3325:2;;;3378:6;3370;3363:22;3325:2;3406:31;3427:9;3406:31;:::i;:::-;3396:41;3484:2;3469:18;;;;3456:32;;-1:-1:-1;;;3315:179:1:o;3499:1226::-;;;3678:2;3666:9;3657:7;3653:23;3649:32;3646:2;;;3699:6;3691;3684:22;3646:2;3744:9;3731:23;-1:-1:-1;;;;;3814:2:1;3806:6;3803:14;3800:2;;;3835:6;3827;3820:22;3800:2;3878:6;3867:9;3863:22;3853:32;;3923:7;3916:4;3912:2;3908:13;3904:27;3894:2;;3950:6;3942;3935:22;3894:2;3991;3978:16;4013:4;4037:65;4052:49;4098:2;4052:49;:::i;4037:65::-;4136:15;;;4167:12;;;;4199:11;;;4237;;;4229:20;;4225:29;;4222:42;-1:-1:-1;4219:2:1;;;4282:6;4274;4267:22;4219:2;4309:6;4300:15;;4324:171;4338:2;4335:1;4332:9;4324:171;;;4395:25;4416:3;4395:25;:::i;:::-;4383:38;;4356:1;4349:9;;;;;4441:12;;;;4473;;4324:171;;;-1:-1:-1;4514:5:1;-1:-1:-1;;4557:18:1;;4544:32;;-1:-1:-1;;4588:16:1;;;4585:2;;;4622:6;4614;4607:22;4585:2;;4650:69;4711:7;4700:8;4689:9;4685:24;4650:69;:::i;:::-;4640:79;;;3636:1089;;;;;:::o;4730:257::-;;4841:2;4829:9;4820:7;4816:23;4812:32;4809:2;;;4862:6;4854;4847:22;4809:2;4906:9;4893:23;4925:32;4951:5;4925:32;:::i;4992:261::-;;5114:2;5102:9;5093:7;5089:23;5085:32;5082:2;;;5135:6;5127;5120:22;5082:2;5172:9;5166:16;5191:32;5217:5;5191:32;:::i;5258:482::-;;5380:2;5368:9;5359:7;5355:23;5351:32;5348:2;;;5401:6;5393;5386:22;5348:2;5446:9;5433:23;-1:-1:-1;;;;;5471:6:1;5468:30;5465:2;;;5516:6;5508;5501:22;5465:2;5544:22;;5597:4;5589:13;;5585:27;-1:-1:-1;5575:2:1;;5631:6;5623;5616:22;5575:2;5659:75;5726:7;5721:2;5708:16;5703:2;5699;5695:11;5659:75;:::i;5745:190::-;;5857:2;5845:9;5836:7;5832:23;5828:32;5825:2;;;5878:6;5870;5863:22;5825:2;-1:-1:-1;5906:23:1;;5815:120;-1:-1:-1;5815:120:1:o;5940:258::-;;;6069:2;6057:9;6048:7;6044:23;6040:32;6037:2;;;6090:6;6082;6075:22;6037:2;-1:-1:-1;;6118:23:1;;;6188:2;6173:18;;;6160:32;;-1:-1:-1;6027:171:1:o;6203:334::-;;;;6349:2;6337:9;6328:7;6324:23;6320:32;6317:2;;;6370:6;6362;6355:22;6317:2;6411:9;6398:23;6388:33;;6468:2;6457:9;6453:18;6440:32;6430:42;;6491:40;6527:2;6516:9;6512:18;6491:40;:::i;:::-;6481:50;;6307:230;;;;;:::o;6542:259::-;;6623:5;6617:12;6650:6;6645:3;6638:19;6666:63;6722:6;6715:4;6710:3;6706:14;6699:4;6692:5;6688:16;6666:63;:::i;:::-;6783:2;6762:15;-1:-1:-1;;6758:29:1;6749:39;;;;6790:4;6745:50;;6593:208;-1:-1:-1;;6593:208:1:o;6806:274::-;;6973:6;6967:13;6989:53;7035:6;7030:3;7023:4;7015:6;7011:17;6989:53;:::i;:::-;7058:16;;;;;6943:137;-1:-1:-1;;6943:137:1:o;7085:470::-;;7302:6;7296:13;7318:53;7364:6;7359:3;7352:4;7344:6;7340:17;7318:53;:::i;:::-;7434:13;;7393:16;;;;7456:57;7434:13;7393:16;7490:4;7478:17;;7456:57;:::i;:::-;7529:20;;7272:283;-1:-1:-1;;;;7272:283:1:o;7560:203::-;-1:-1:-1;;;;;7724:32:1;;;;7706:51;;7694:2;7679:18;;7661:102::o;7768:490::-;-1:-1:-1;;;;;8037:15:1;;;8019:34;;8089:15;;8084:2;8069:18;;8062:43;8136:2;8121:18;;8114:34;;;8184:3;8179:2;8164:18;;8157:31;;;7768:490;;8205:47;;8232:19;;8224:6;8205:47;:::i;:::-;8197:55;7971:287;-1:-1:-1;;;;;;7971:287:1:o;8263:633::-;-1:-1:-1;;;;;8596:32:1;;;;8578:51;;8660:2;8645:18;;8638:34;;;;8703:2;8688:18;;8681:34;;;;8746:2;8731:18;;8724:34;;;;8789:3;8774:19;;8767:35;8616:3;8818:19;;8811:35;8877:3;8862:19;;8855:35;8565:3;8550:19;;8532:364::o;8901:635::-;9072:2;9124:21;;;9194:13;;9097:18;;;9216:22;;;8901:635;;9072:2;9295:15;;;;9269:2;9254:18;;;8901:635;9341:169;9355:6;9352:1;9349:13;9341:169;;;9416:13;;9404:26;;9485:15;;;;9450:12;;;;9377:1;9370:9;9341:169;;;-1:-1:-1;9527:3:1;;9052:484;-1:-1:-1;;;;;;9052:484:1:o;9541:187::-;9706:14;;9699:22;9681:41;;9669:2;9654:18;;9636:92::o;9733:427::-;9983:14;;9976:22;9958:41;;10030:2;10015:18;;10008:34;;;;-1:-1:-1;;;;;10078:32:1;10073:2;10058:18;;10051:60;10142:2;10127:18;;10120:34;9945:3;9930:19;;9912:248::o;10165:529::-;10443:14;;10436:22;10418:41;;10490:2;10475:18;;10468:34;;;;-1:-1:-1;;;;;10576:15:1;;;10571:2;10556:18;;10549:43;10623:2;10608:18;;10601:34;10672:15;10666:3;10651:19;;10644:44;10405:3;10390:19;;10372:322::o;10699:221::-;;10848:2;10837:9;10830:21;10868:46;10910:2;10899:9;10895:18;10887:6;10868:46;:::i;10925:344::-;11127:2;11109:21;;;11166:2;11146:18;;;11139:30;-1:-1:-1;;;11200:2:1;11185:18;;11178:50;11260:2;11245:18;;11099:170::o;11274:334::-;11476:2;11458:21;;;11515:2;11495:18;;;11488:30;-1:-1:-1;;;11549:2:1;11534:18;;11527:40;11599:2;11584:18;;11448:160::o;11613:407::-;11815:2;11797:21;;;11854:2;11834:18;;;11827:30;11893:34;11888:2;11873:18;;11866:62;-1:-1:-1;;;11959:2:1;11944:18;;11937:41;12010:3;11995:19;;11787:233::o;12025:414::-;12227:2;12209:21;;;12266:2;12246:18;;;12239:30;12305:34;12300:2;12285:18;;12278:62;-1:-1:-1;;;12371:2:1;12356:18;;12349:48;12429:3;12414:19;;12199:240::o;12444:402::-;12646:2;12628:21;;;12685:2;12665:18;;;12658:30;12724:34;12719:2;12704:18;;12697:62;-1:-1:-1;;;12790:2:1;12775:18;;12768:36;12836:3;12821:19;;12618:228::o;12851:352::-;13053:2;13035:21;;;13092:2;13072:18;;;13065:30;13131;13126:2;13111:18;;13104:58;13194:2;13179:18;;13025:178::o;13208:341::-;13410:2;13392:21;;;13449:2;13429:18;;;13422:30;-1:-1:-1;;;13483:2:1;13468:18;;13461:47;13540:2;13525:18;;13382:167::o;13554:343::-;13756:2;13738:21;;;13795:2;13775:18;;;13768:30;-1:-1:-1;;;13829:2:1;13814:18;;13807:49;13888:2;13873:18;;13728:169::o;13902:400::-;14104:2;14086:21;;;14143:2;14123:18;;;14116:30;14182:34;14177:2;14162:18;;14155:62;-1:-1:-1;;;14248:2:1;14233:18;;14226:34;14292:3;14277:19;;14076:226::o;14307:349::-;14509:2;14491:21;;;14548:2;14528:18;;;14521:30;-1:-1:-1;;;14582:2:1;14567:18;;14560:55;14647:2;14632:18;;14481:175::o;14661:408::-;14863:2;14845:21;;;14902:2;14882:18;;;14875:30;14941:34;14936:2;14921:18;;14914:62;-1:-1:-1;;;15007:2:1;14992:18;;14985:42;15059:3;15044:19;;14835:234::o;15074:341::-;15276:2;15258:21;;;15315:2;15295:18;;;15288:30;-1:-1:-1;;;15349:2:1;15334:18;;15327:47;15406:2;15391:18;;15248:167::o;15420:350::-;15622:2;15604:21;;;15661:2;15641:18;;;15634:30;15700:28;15695:2;15680:18;;15673:56;15761:2;15746:18;;15594:176::o;15775:420::-;15977:2;15959:21;;;16016:2;15996:18;;;15989:30;16055:34;16050:2;16035:18;;16028:62;-1:-1:-1;;;16121:2:1;16106:18;;16099:54;16185:3;16170:19;;15949:246::o;16200:406::-;16402:2;16384:21;;;16441:2;16421:18;;;16414:30;16480:34;16475:2;16460:18;;16453:62;-1:-1:-1;;;16546:2:1;16531:18;;16524:40;16596:3;16581:19;;16374:232::o;16611:405::-;16813:2;16795:21;;;16852:2;16832:18;;;16825:30;16891:34;16886:2;16871:18;;16864:62;-1:-1:-1;;;16957:2:1;16942:18;;16935:39;17006:3;16991:19;;16785:231::o;17021:402::-;17223:2;17205:21;;;17262:2;17242:18;;;17235:30;17301:34;17296:2;17281:18;;17274:62;-1:-1:-1;;;17367:2:1;17352:18;;17345:36;17413:3;17398:19;;17195:228::o;17428:355::-;17630:2;17612:21;;;17669:2;17649:18;;;17642:30;17708:33;17703:2;17688:18;;17681:61;17774:2;17759:18;;17602:181::o;17788:356::-;17990:2;17972:21;;;18009:18;;;18002:30;18068:34;18063:2;18048:18;;18041:62;18135:2;18120:18;;17962:182::o;18149:408::-;18351:2;18333:21;;;18390:2;18370:18;;;18363:30;18429:34;18424:2;18409:18;;18402:62;-1:-1:-1;;;18495:2:1;18480:18;;18473:42;18547:3;18532:19;;18323:234::o;18562:356::-;18764:2;18746:21;;;18783:18;;;18776:30;18842:34;18837:2;18822:18;;18815:62;18909:2;18894:18;;18736:182::o;18923:345::-;19125:2;19107:21;;;19164:2;19144:18;;;19137:30;-1:-1:-1;;;19198:2:1;19183:18;;19176:51;19259:2;19244:18;;19097:171::o;19273:405::-;19475:2;19457:21;;;19514:2;19494:18;;;19487:30;19553:34;19548:2;19533:18;;19526:62;-1:-1:-1;;;19619:2:1;19604:18;;19597:39;19668:3;19653:19;;19447:231::o;19683:343::-;19885:2;19867:21;;;19924:2;19904:18;;;19897:30;-1:-1:-1;;;19958:2:1;19943:18;;19936:49;20017:2;20002:18;;19857:169::o;20031:340::-;20233:2;20215:21;;;20272:2;20252:18;;;20245:30;-1:-1:-1;;;20306:2:1;20291:18;;20284:46;20362:2;20347:18;;20205:166::o;20376:349::-;20578:2;20560:21;;;20617:2;20597:18;;;20590:30;-1:-1:-1;;;20651:2:1;20636:18;;20629:55;20716:2;20701:18;;20550:175::o;20730:397::-;20932:2;20914:21;;;20971:2;20951:18;;;20944:30;21010:34;21005:2;20990:18;;20983:62;-1:-1:-1;;;21076:2:1;21061:18;;21054:31;21117:3;21102:19;;20904:223::o;21132:340::-;21334:2;21316:21;;;21373:2;21353:18;;;21346:30;-1:-1:-1;;;21407:2:1;21392:18;;21385:46;21463:2;21448:18;;21306:166::o;21477:341::-;21679:2;21661:21;;;21718:2;21698:18;;;21691:30;-1:-1:-1;;;21752:2:1;21737:18;;21730:47;21809:2;21794:18;;21651:167::o;21823:413::-;22025:2;22007:21;;;22064:2;22044:18;;;22037:30;22103:34;22098:2;22083:18;;22076:62;-1:-1:-1;;;22169:2:1;22154:18;;22147:47;22226:3;22211:19;;21997:239::o;22241:408::-;22443:2;22425:21;;;22482:2;22462:18;;;22455:30;22521:34;22516:2;22501:18;;22494:62;-1:-1:-1;;;22587:2:1;22572:18;;22565:42;22639:3;22624:19;;22415:234::o;22654:409::-;22856:2;22838:21;;;22895:2;22875:18;;;22868:30;22934:34;22929:2;22914:18;;22907:62;-1:-1:-1;;;23000:2:1;22985:18;;22978:43;23053:3;23038:19;;22828:235::o;23068:488::-;23270:2;23252:21;;;23309:2;23289:18;;;23282:30;23348:34;23343:2;23328:18;;23321:62;23419:34;23414:2;23399:18;;23392:62;-1:-1:-1;;;23485:3:1;23470:19;;23463:51;23546:3;23531:19;;23242:314::o;23561:350::-;23763:2;23745:21;;;23802:2;23782:18;;;23775:30;23841:28;23836:2;23821:18;;23814:56;23902:2;23887:18;;23735:176::o;23916:399::-;24118:2;24100:21;;;24157:2;24137:18;;;24130:30;24196:34;24191:2;24176:18;;24169:62;-1:-1:-1;;;24262:2:1;24247:18;;24240:33;24305:3;24290:19;;24090:225::o;24320:404::-;24522:2;24504:21;;;24561:2;24541:18;;;24534:30;24600:34;24595:2;24580:18;;24573:62;-1:-1:-1;;;24666:2:1;24651:18;;24644:38;24714:3;24699:19;;24494:230::o;24729:355::-;24931:2;24913:21;;;24970:2;24950:18;;;24943:30;25009:33;25004:2;24989:18;;24982:61;25075:2;25060:18;;24903:181::o;25089:338::-;25291:2;25273:21;;;25330:2;25310:18;;;25303:30;-1:-1:-1;;;25364:2:1;25349:18;;25342:44;25418:2;25403:18;;25263:164::o;25432:177::-;25578:25;;;25566:2;25551:18;;25533:76::o;25614:251::-;25684:2;25678:9;25714:17;;;-1:-1:-1;;;;;25746:34:1;;25782:22;;;25743:62;25740:2;;;25808:18;;:::i;:::-;25844:2;25837:22;25658:207;;-1:-1:-1;25658:207:1:o;25870:192::-;;-1:-1:-1;;;;;25961:6:1;25958:30;25955:2;;;25991:18;;:::i;:::-;-1:-1:-1;26051:4:1;26032:17;;;26028:28;;25945:117::o;26067:128::-;;26138:1;26134:6;26131:1;26128:13;26125:2;;;26144:18;;:::i;:::-;-1:-1:-1;26180:9:1;;26115:80::o;26200:120::-;;26266:1;26256:2;;26271:18;;:::i;:::-;-1:-1:-1;26305:9:1;;26246:74::o;26325:168::-;;26431:1;26427;26423:6;26419:14;26416:1;26413:21;26408:1;26401:9;26394:17;26390:45;26387:2;;;26438:18;;:::i;:::-;-1:-1:-1;26478:9:1;;26377:116::o;26498:125::-;;26566:1;26563;26560:8;26557:2;;;26571:18;;:::i;:::-;-1:-1:-1;26608:9:1;;26547:76::o;26628:258::-;26700:1;26710:113;26724:6;26721:1;26718:13;26710:113;;;26800:11;;;26794:18;26781:11;;;26774:39;26746:2;26739:10;26710:113;;;26841:6;26838:1;26835:13;26832:2;;;-1:-1:-1;;26876:1:1;26858:16;;26851:27;26681:205::o;26891:136::-;;26958:5;26948:2;;26967:18;;:::i;:::-;-1:-1:-1;;;27003:18:1;;26938:89::o;27032:380::-;27117:1;27107:12;;27164:1;27154:12;;;27175:2;;27229:4;27221:6;27217:17;27207:27;;27175:2;27282;27274:6;27271:14;27251:18;27248:38;27245:2;;;27328:10;27323:3;27319:20;27316:1;27309:31;27363:4;27360:1;27353:15;27391:4;27388:1;27381:15;27417:135;;-1:-1:-1;;27477:17:1;;27474:2;;;27497:18;;:::i;:::-;-1:-1:-1;27544:1:1;27533:13;;27464:88::o;27557:112::-;;27615:1;27605:2;;27620:18;;:::i;:::-;-1:-1:-1;27654:9:1;;27595:74::o;27674:127::-;27735:10;27730:3;27726:20;27723:1;27716:31;27766:4;27763:1;27756:15;27790:4;27787:1;27780:15;27806:127;27867:10;27862:3;27858:20;27855:1;27848:31;27898:4;27895:1;27888:15;27922:4;27919:1;27912:15;27938:127;27999:10;27994:3;27990:20;27987:1;27980:31;28030:4;28027:1;28020:15;28054:4;28051:1;28044:15;28070:133;-1:-1:-1;;;;;;28146:32:1;;28136:43;;28126:2;;28193:1;28190;28183:12

Swarm Source

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