ETH Price: $3,310.23 (-0.90%)

Token

Cute Pig Club 3D (CPC3D)
 

Overview

Max Total Supply

63 CPC3D

Holders

53

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
passme.eth
Balance
1 CPC3D
0x2227de445dbfd90712c48bcd74d492ccca1cb242
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:
CutePigClub3D

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-11
*/

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

// SPDX-License-Identifier: MIT

// GO TO LINE 1904 TO SEE WHERE THE PIG CONTRACT STARTS
 
// File: @openzeppelin/contracts/utils/Context.sol

pragma solidity >=0.6.0 <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 GSN 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 payable) {
        return msg.sender;
    }

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





pragma solidity >=0.6.0 <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);
}





pragma solidity >=0.6.2 <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/IERC721Metadata.sol



pragma solidity >=0.6.2 <0.8.0;


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

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

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

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

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



pragma solidity >=0.6.2 <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/IERC721Receiver.sol



pragma solidity >=0.6.0 <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/introspection/ERC165.sol



pragma solidity >=0.6.0 <0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () internal {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

// File: @openzeppelin/contracts/math/SafeMath.sol



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

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



pragma solidity >=0.6.2 <0.8.0;

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

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

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

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



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Library for managing an enumerable variant of Solidity's
 * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
 * type.
 *
 * Maps have the following properties:
 *
 * - Entries are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Entries are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableMap for EnumerableMap.UintToAddressMap;
 *
 *     // Declare a set state variable
 *     EnumerableMap.UintToAddressMap private myMap;
 * }
 * ```
 *
 * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are
 * supported.
 */
library EnumerableMap {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Map type with
    // bytes32 keys and values.
    // The Map implementation uses private functions, and user-facing
    // implementations (such as Uint256ToAddressMap) are just wrappers around
    // the underlying Map.
    // This means that we can only create new EnumerableMaps for types that fit
    // in bytes32.

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

    struct Map {
        // Storage of map keys and values
        MapEntry[] _entries;

        // Position of the entry defined by a key in the `entries` array, plus 1
        // because index 0 means a key is not in the map.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex == 0) { // Equivalent to !contains(map, key)
            map._entries.push(MapEntry({ _key: key, _value: value }));
            // The entry is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            map._indexes[key] = map._entries.length;
            return true;
        } else {
            map._entries[keyIndex - 1]._value = value;
            return false;
        }
    }

    /**
     * @dev Removes a key-value pair from a map. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function _remove(Map storage map, bytes32 key) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex != 0) { // Equivalent to contains(map, key)
            // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one
            // in the array, and then remove the last entry (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = keyIndex - 1;
            uint256 lastIndex = map._entries.length - 1;

            // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            MapEntry storage lastEntry = map._entries[lastIndex];

            // Move the last entry to the index where the entry to delete is
            map._entries[toDeleteIndex] = lastEntry;
            // Update the index for the moved entry
            map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved entry was stored
            map._entries.pop();

            // Delete the index for the deleted slot
            delete map._indexes[key];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function _contains(Map storage map, bytes32 key) private view returns (bool) {
        return map._indexes[key] != 0;
    }

    /**
     * @dev Returns the number of key-value pairs in the map. O(1).
     */
    function _length(Map storage map) private view returns (uint256) {
        return map._entries.length;
    }

   /**
    * @dev Returns the key-value pair stored at position `index` in the map. O(1).
    *
    * Note that there are no guarantees on the ordering of entries inside the
    * array, and it may change when more entries are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) {
        require(map._entries.length > index, "EnumerableMap: index out of bounds");

        MapEntry storage entry = map._entries[index];
        return (entry._key, entry._value);
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     */
    function _tryGet(Map storage map, bytes32 key) private view returns (bool, bytes32) {
        uint256 keyIndex = map._indexes[key];
        if (keyIndex == 0) return (false, 0); // Equivalent to contains(map, key)
        return (true, map._entries[keyIndex - 1]._value); // All indexes are 1-based
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function _get(Map storage map, bytes32 key) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, "EnumerableMap: nonexistent key"); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    /**
     * @dev Same as {_get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {_tryGet}.
     */
    function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) {
        return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) {
        return _remove(map._inner, bytes32(key));
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) {
        return _contains(map._inner, bytes32(key));
    }

    /**
     * @dev Returns the number of elements in the map. O(1).
     */
    function length(UintToAddressMap storage map) internal view returns (uint256) {
        return _length(map._inner);
    }

   /**
    * @dev Returns the element stored at position `index` in the set. O(1).
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) {
        (bytes32 key, bytes32 value) = _at(map._inner, index);
        return (uint256(key), address(uint160(uint256(value))));
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     *
     * _Available since v3.4._
     */
    function tryGet(UintToAddressMap storage map, uint256 key) internal view returns (bool, address) {
        (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key));
        return (success, address(uint160(uint256(value))));
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function get(UintToAddressMap storage map, uint256 key) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key)))));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryGet}.
     */
    function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key), errorMessage))));
    }
}

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



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    /**
     * @dev Converts a `uint256` to its ASCII `string` 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);
        uint256 index = digits - 1;
        temp = value;
        while (temp != 0) {
            buffer[index--] = bytes1(uint8(48 + temp % 10));
            temp /= 10;
        }
        return string(buffer);
    }
}

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



pragma solidity >=0.6.0 <0.8.0;

/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
 
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using SafeMath for uint256;
    using Address for address;
    using EnumerableSet for EnumerableSet.UintSet;
    using EnumerableMap for EnumerableMap.UintToAddressMap;
    using Strings for uint256;

    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

    // Mapping from holder address to their (enumerable) set of owned tokens
    mapping (address => EnumerableSet.UintSet) private _holderTokens;

    // Enumerable mapping from token ids to their owners
    EnumerableMap.UintToAddressMap private _tokenOwners;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Optional mapping for token URIs
    mapping (uint256 => string) private _tokenURIs;

    // Base URI
    string private _baseURI;

    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

    /*
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

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

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

    /**
     * @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 _holderTokens[owner].length();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token");
    }

    /**
     * @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 _tokenURI = _tokenURIs[tokenId];
        string memory base = baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(base, tokenId.toString()));
    }

    /**
    * @dev Returns the base URI set via {_setBaseURI}. This will be
    * automatically added as a prefix in {tokenURI} to each token's URI, or
    * to the token ID if no specific URI is set for that token ID.
    */
    function baseURI() public view virtual returns (string memory) {
        return _baseURI;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        return _holderTokens[owner].at(index);
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds
        return _tokenOwners.length();
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        (uint256 tokenId, ) = _tokenOwners.at(index);
        return tokenId;
    }

    /**
     * @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 || ERC721.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 _tokenOwners.contains(tokenId);
    }

    /**
     * @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 || ERC721.isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     d*
     * - `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);

        _holderTokens[to].add(tokenId);

        _tokenOwners.set(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); // internal owner

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

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

        // Clear metadata (if any)
        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }

        _holderTokens[owner].remove(tokenId);

        _tokenOwners.remove(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"); // internal owner
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _holderTokens[from].remove(tokenId);
        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI},
     * or to the token ID if {tokenURI} is empty.
     */
    function _setBaseURI(string memory baseURI_) internal virtual {
        _baseURI = baseURI_;
    }

    /**
     * @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()) {
            return true;
        }
        bytes memory returndata = to.functionCall(abi.encodeWithSelector(
            IERC721Receiver(to).onERC721Received.selector,
            _msgSender(),
            from,
            tokenId,
            _data
        ), "ERC721: transfer to non ERC721Receiver implementer");
        bytes4 retval = abi.decode(returndata, (bytes4));
        return (retval == _ERC721_RECEIVED);
    }

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

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

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



pragma solidity >=0.6.0 <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 () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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


// CPC



abstract contract CPCPig {
  function ownerOf(uint256 tokenId) public virtual view returns (address);
  function safeTransferFrom(address from, address to, uint256 tokenId) external virtual;
  function approve(address to, uint256 tokenId) external virtual;   
}

abstract contract CPCBarn {
  function ownerOf(uint256 tokenId) public virtual view returns (address);
  function safeTransferFrom(address from, address to, uint256 tokenId) external virtual;
  function approve(address to, uint256 tokenId) external virtual;   
}


pragma solidity ^0.7.0;
pragma abicoder v2;

contract CutePigClub3D is ERC721, Ownable {
    
    using SafeMath for uint256;

    string public PIG_PROVENANCE = ""; // IPFS URL WILL BE ADDED WHEN PIGS ARE ALL SOLD OUT
    

    uint256 public pigPrice = 0; // 0.03 ETH
    address private _burnaddress = 0x000000000000000000000000000000000000dEaD;  
    uint public constant maxPigPurchase = 20;

    uint256 public MAX_PIGS = 5000;

    bool public saleIsActive = false;
    bool public burnIsActive = false;
    bool public combineIsActive = false;
    
    mapping(uint => string) public pigNames;
    
    // Reserve 200 for team - Giveaways/Prizes etc
    uint public pigReserve = 200;
    address public  CPCContractAddress;
    address public  barnContractAddress;
    mapping(uint => uint256) public CPC3dBarntokenid;
     
    event pigNameChange(address _by, uint _tokenId, string _name);
    event CPC3dBarntokenidChange(address _by, uint _tokenId,  uint256 _barntokenID);  

    constructor() ERC721("Cute Pig Club 3D", "CPC3D") { }
    
    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        msg.sender.transfer(balance);
    }
    
  function get3dbarntokenID(uint _tokenId) public  view returns( uint256  ){
    require(_tokenId <= totalSupply(), "ID would exceed max supply of 3d pigs");
    return CPC3dBarntokenid[_tokenId];
   }
   
    function reservePigs(address _to, uint256 _reserveAmount) public onlyOwner {        
        uint supply = totalSupply();
        require(_reserveAmount > 0 && _reserveAmount <= pigReserve, "Not enough reserve left for team");
        for (uint i = 0; i < _reserveAmount; i++) {
             uint mintindex = supply + i;
            if (mintindex <MAX_PIGS) {
               _safeMint(_to, mintindex);
            }
        }
        pigReserve = pigReserve.sub(_reserveAmount);
    }
    
    function setMintPrice(uint price) external onlyOwner {
        pigPrice = price;
    }

    
    function setMaxPigs(uint maxpig) external onlyOwner {
        MAX_PIGS = maxpig;
    }
    
    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        PIG_PROVENANCE = provenanceHash;
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        _setBaseURI(baseURI);
    }

    function setCPCContractAddress(address contractAddress) public onlyOwner {
        CPCContractAddress = contractAddress;
    }
    
    function setbarnContractAddress(address contractAddress) public onlyOwner {
        barnContractAddress = contractAddress;
    }

    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }
    
    function flipBurnState() public onlyOwner {
        burnIsActive = !burnIsActive;
    }    
    
     function flipCombineState() public onlyOwner {
        combineIsActive = !combineIsActive;
    }
    
    
    function tokensOfOwner(address _owner) external view returns(uint256[] memory ) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            // Return an empty array
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }
    

    function mintCutepigclub(uint numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active to mint Pig");
        require(numberOfTokens > 0 && numberOfTokens <= maxPigPurchase, "Can only mint 258 tokens at a time");
        require(totalSupply().add(numberOfTokens) <= MAX_PIGS, "Purchase would exceed max supply of pigs");
        require(msg.value >= pigPrice.mul(numberOfTokens), "Ether value sent is not correct");
        
        for(uint i = 0; i < numberOfTokens; i++) {
            if (totalSupply() < MAX_PIGS) {
                _safeMint(msg.sender, totalSupply());
            }
        }

    }
     

    function Burnpigsinto3dpig(uint PIGtokenId1, uint PIGtokenId2,uint PIGtokenId3) public payable {
        require(burnIsActive, "Sale must be active to mint Pig");
        require(totalSupply() <= MAX_PIGS, "Purchase would exceed max supply of pigs");

       CPCPig cpcPig = CPCPig(CPCContractAddress);
       require(cpcPig.ownerOf(PIGtokenId1) == msg.sender, "Must own the CPC pig1 for requested tokenId to mint a 3d PIG");
       require(cpcPig.ownerOf(PIGtokenId2) == msg.sender, "Must own the CPC pig2 for requested tokenId to mint a 3d PIG");
       require(cpcPig.ownerOf(PIGtokenId3) == msg.sender, "Must own the CPC pig3 for requested tokenId to mint a 3d PIG");
       
       cpcPig.safeTransferFrom( cpcPig.ownerOf(PIGtokenId1),_burnaddress, PIGtokenId1 );
       cpcPig.safeTransferFrom( cpcPig.ownerOf(PIGtokenId2),_burnaddress, PIGtokenId2 );       
       cpcPig.safeTransferFrom( cpcPig.ownerOf(PIGtokenId3),_burnaddress, PIGtokenId3 );
       
        uint mintIndex = totalSupply();
        if (totalSupply() < MAX_PIGS) {
            _safeMint(msg.sender, mintIndex);
        }
    }
    
       function compose3dBarn(address owner, uint BarnId, uint CPC3dPigId, uint CPC3dBarnId) public returns (bool) {
        require(combineIsActive, "Compose is not active at the moment");
        require(ERC721.ownerOf(CPC3dPigId) == owner, "You do not have this 3d PIG");

       CPCBarn cpcBarn = CPCBarn(barnContractAddress);
       require(cpcBarn.ownerOf(BarnId) == msg.sender, "Must own the barn for requested tokenId to combine a 3d PIG");
       cpcBarn.safeTransferFrom( cpcBarn.ownerOf(BarnId),_burnaddress, BarnId );

        CPC3dBarntokenid[CPC3dPigId] = CPC3dBarnId;
        emit CPC3dBarntokenidChange(msg.sender,  CPC3dPigId, CPC3dBarnId);
        
        return true;
    }
    
    function changePigName(uint _tokenId, string memory _name) public {
        require(ownerOf(_tokenId) == msg.sender, "Hey, your wallet doesn't own this pig!");
        require(sha256(bytes(_name)) != sha256(bytes(pigNames[_tokenId])), "New name is same as the current one");
        pigNames[_tokenId] = _name;
        
        emit pigNameChange(msg.sender, _tokenId, _name);
        
    }
    
    function viewPigName(uint _tokenId) public view returns( string memory ){
        require( _tokenId < totalSupply(), "Choose a pig within range" );
        return pigNames[_tokenId];
    }
    
    
    // GET ALL PIG OF A WALLET AS AN ARRAY OF STRINGS. WOULD BE BETTER MAYBE IF IT RETURNED A STRUCT WITH ID-NAME MATCH
    function pigNamesOfOwner(address _owner) external view returns(string[] memory ) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            // Return an empty array
            return new string[](0);
        } else {
            string[] memory result = new string[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = pigNames[ tokenOfOwnerByIndex(_owner, index) ] ;
            }
            return result;
        }
    }
    
}

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":false,"internalType":"address","name":"_by","type":"address"},{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_barntokenID","type":"uint256"}],"name":"CPC3dBarntokenidChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_by","type":"address"},{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"_name","type":"string"}],"name":"pigNameChange","type":"event"},{"inputs":[{"internalType":"uint256","name":"PIGtokenId1","type":"uint256"},{"internalType":"uint256","name":"PIGtokenId2","type":"uint256"},{"internalType":"uint256","name":"PIGtokenId3","type":"uint256"}],"name":"Burnpigsinto3dpig","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"CPC3dBarntokenid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CPCContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PIGS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PIG_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"barnContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_name","type":"string"}],"name":"changePigName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"combineIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"BarnId","type":"uint256"},{"internalType":"uint256","name":"CPC3dPigId","type":"uint256"},{"internalType":"uint256","name":"CPC3dBarnId","type":"uint256"}],"name":"compose3dBarn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipBurnState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipCombineState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"get3dbarntokenID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPigPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintCutepigclub","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"pigNames","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"pigNamesOfOwner","outputs":[{"internalType":"string[]","name":"","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pigPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pigReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"reservePigs","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":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"address","name":"contractAddress","type":"address"}],"name":"setCPCContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxpig","type":"uint256"}],"name":"setMaxPigs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"}],"name":"setbarnContractAddress","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"viewPigName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600b91620001d4565b506000600c55600d80546001600160a01b03191661dead179055611388600e55600f805462ffffff1916905560c86011553480156200005957600080fd5b50604080518082018252601081526f10dd5d1948141a59c810db1d58880cd160821b6020808301919091528251808401909352600583526410d410ccd160da1b9083015290620000b06301ffc9a760e01b62000175565b8151620000c5906006906020850190620001d4565b508051620000db906007906020840190620001d4565b50620000ee6380ac58cd60e01b62000175565b62000100635b5e139f60e01b62000175565b6200011263780e9d6360e01b62000175565b506000905062000121620001d0565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620002b7565b6001600160e01b03198082161415620001ab5760405162461bcd60e51b8152600401620001a29062000280565b60405180910390fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b3390565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200020c576000855562000257565b82601f106200022757805160ff191683800117855562000257565b8280016001018555821562000257579182015b82811115620002575782518255916020019190600101906200023a565b506200026592915062000269565b5090565b5b808211156200026557600081556001016200026a565b6020808252601c908201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604082015260600190565b613d1180620002c76000396000f3fe6080604052600436106102e45760003560e01c8063715018a611610190578063d6aa2502116100dc578063ef57ce9f11610095578063f4a0a5281161006f578063f4a0a52814610842578063f7a5790314610862578063fea200cd14610877578063ff41667814610897576102e4565b8063ef57ce9f146107e2578063f2a24f1b14610802578063f2fde38b14610822576102e4565b8063d6aa250214610750578063d82b687c14610765578063ddc3481214610778578063e985e9c51461078d578063eb8d2444146107ad578063ebd1be71146107c2576102e4565b80639cc34f4d11610149578063ad319fdd11610123578063ad319fdd146106db578063b88d4fde146106fb578063c87b56dd1461071b578063c9b21b851461073b576102e4565b80639cc34f4d14610686578063a22cb465146106a6578063a71c8055146106c6576102e4565b8063715018a6146105f05780637aea8862146106055780638462151c1461061a5780638da5cb5b14610647578063908d97601461065c57806395d89b4114610671576102e4565b80633ccfd60b1161024f5780635ad5159d1161020857806366caa6ab116101e257806366caa6ab146105915780636c0360eb146105a65780636ea5d35e146105bb57806370a08231146105d0576102e4565b80635ad5159d1461052f5780636352211e1461055c5780636604fd331461057c576102e4565b80633ccfd60b1461047a5780633dc015e41461048f57806342842e0e146104af578063447cde43146104cf5780634f6ccce7146104ef57806355f804b31461050f576102e4565b806319b003c4116102a157806319b003c4146103d257806323b872dd146103f25780632d8a4e5e146104125780632f745c591461042557806334918dfd1461044557806339663b2b1461045a576102e4565b806301ffc9a7146102e957806306fdde031461031f578063081812fc14610341578063095ea7b31461036e578063109695231461039057806318160ddd146103b0575b600080fd5b3480156102f557600080fd5b50610309610304366004612f17565b6108ac565b604051610316919061325b565b60405180910390f35b34801561032b57600080fd5b506103346108cf565b6040516103169190613266565b34801561034d57600080fd5b5061036161035c366004612f82565b610965565b60405161031691906130f1565b34801561037a57600080fd5b5061038e610389366004612e9a565b6109b1565b005b34801561039c57600080fd5b5061038e6103ab366004612f4f565b610a49565b3480156103bc57600080fd5b506103c5610a9f565b6040516103169190613c20565b3480156103de57600080fd5b5061038e6103ed366004612e9a565b610ab0565b3480156103fe57600080fd5b5061038e61040d366004612dac565b610b6b565b61038e610420366004612f82565b610ba3565b34801561043157600080fd5b506103c5610440366004612e9a565b610c86565b34801561045157600080fd5b5061038e610cb1565b34801561046657600080fd5b506103c5610475366004612f82565b610d04565b34801561048657600080fd5b5061038e610d16565b34801561049b57600080fd5b506103c56104aa366004612f82565b610d84565b3480156104bb57600080fd5b5061038e6104ca366004612dac565b610dc0565b3480156104db57600080fd5b506103096104ea366004612ec5565b610ddb565b3480156104fb57600080fd5b506103c561050a366004612f82565b61102a565b34801561051b57600080fd5b5061038e61052a366004612f4f565b611040565b34801561053b57600080fd5b5061054f61054a366004612d3c565b61108b565b60405161031691906131b7565b34801561056857600080fd5b50610361610577366004612f82565b6111ff565b34801561058857600080fd5b506103c5611227565b34801561059d57600080fd5b5061030961122c565b3480156105b257600080fd5b5061033461123a565b3480156105c757600080fd5b5061036161129b565b3480156105dc57600080fd5b506103c56105eb366004612d3c565b6112aa565b3480156105fc57600080fd5b5061038e6112f3565b34801561061157600080fd5b5061033461137c565b34801561062657600080fd5b5061063a610635366004612d3c565b61140a565b6040516103169190613217565b34801561065357600080fd5b506103616114ae565b34801561066857600080fd5b5061038e6114bd565b34801561067d57600080fd5b5061033461151b565b34801561069257600080fd5b5061038e6106a1366004612d3c565b61157c565b3480156106b257600080fd5b5061038e6106c1366004612e69565b6115dd565b3480156106d257600080fd5b5061038e6116ab565b3480156106e757600080fd5b506103346106f6366004612f82565b611707565b34801561070757600080fd5b5061038e610716366004612dec565b6117ce565b34801561072757600080fd5b50610334610736366004612f82565b61180d565b34801561074757600080fd5b506103c5611951565b34801561075c57600080fd5b50610309611957565b61038e610773366004612fdf565b611966565b34801561078457600080fd5b506103c5611e88565b34801561079957600080fd5b506103096107a8366004612d74565b611e8e565b3480156107b957600080fd5b50610309611ebc565b3480156107ce57600080fd5b5061038e6107dd366004612f82565b611ec5565b3480156107ee57600080fd5b5061038e6107fd366004612d3c565b611f09565b34801561080e57600080fd5b5061038e61081d366004612f9a565b611f6a565b34801561082e57600080fd5b5061038e61083d366004612d3c565b6120c5565b34801561084e57600080fd5b5061038e61085d366004612f82565b612186565b34801561086e57600080fd5b506103616121ca565b34801561088357600080fd5b50610334610892366004612f82565b6121d9565b3480156108a357600080fd5b506103c5612241565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60068054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561095b5780601f106109305761010080835404028352916020019161095b565b820191906000526020600020905b81548152906001019060200180831161093e57829003601f168201915b5050505050905090565b600061097082612247565b6109955760405162461bcd60e51b815260040161098c9061398d565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109bc826111ff565b9050806001600160a01b0316836001600160a01b031614156109f05760405162461bcd60e51b815260040161098c90613ae9565b806001600160a01b0316610a02612254565b6001600160a01b03161480610a1e5750610a1e816107a8612254565b610a3a5760405162461bcd60e51b815260040161098c906137e8565b610a448383612258565b505050565b610a51612254565b6001600160a01b0316610a626114ae565b6001600160a01b031614610a885760405162461bcd60e51b815260040161098c906139d9565b8051610a9b90600b906020840190612c18565b5050565b6000610aab60026122c6565b905090565b610ab8612254565b6001600160a01b0316610ac96114ae565b6001600160a01b031614610aef5760405162461bcd60e51b815260040161098c906139d9565b6000610af9610a9f565b9050600082118015610b0d57506011548211155b610b295760405162461bcd60e51b815260040161098c906135a7565b60005b82811015610b5557600e5482820190811015610b4c57610b4c85826122d1565b50600101610b2c565b50601154610b6390836122eb565b601155505050565b610b7c610b76612254565b82612313565b610b985760405162461bcd60e51b815260040161098c90613b2a565b610a44838383612390565b600f5460ff16610bc55760405162461bcd60e51b815260040161098c90613bb2565b600081118015610bd6575060148111155b610bf25760405162461bcd60e51b815260040161098c9061351d565b600e54610c0782610c01610a9f565b9061249e565b1115610c255760405162461bcd60e51b815260040161098c9061355f565b600c54610c3290826124c3565b341015610c515760405162461bcd60e51b815260040161098c9061369a565b60005b81811015610a9b57600e54610c67610a9f565b1015610c7e57610c7e33610c79610a9f565b6122d1565b600101610c54565b6001600160a01b0382166000908152600160205260408120610ca890836124fd565b90505b92915050565b610cb9612254565b6001600160a01b0316610cca6114ae565b6001600160a01b031614610cf05760405162461bcd60e51b815260040161098c906139d9565b600f805460ff19811660ff90911615179055565b60146020526000908152604090205481565b610d1e612254565b6001600160a01b0316610d2f6114ae565b6001600160a01b031614610d555760405162461bcd60e51b815260040161098c906139d9565b6040514790339082156108fc029083906000818181858888f19350505050158015610a9b573d6000803e3d6000fd5b6000610d8e610a9f565b821115610dad5760405162461bcd60e51b815260040161098c906133c7565b5060009081526014602052604090205490565b610a44838383604051806020016040528060008152506117ce565b600f5460009062010000900460ff16610e065760405162461bcd60e51b815260040161098c906135dc565b846001600160a01b0316610e19846111ff565b6001600160a01b031614610e3f5760405162461bcd60e51b815260040161098c90613be9565b6013546040516331a9108f60e11b81526001600160a01b039091169033908290636352211e90610e73908990600401613c20565b60206040518083038186803b158015610e8b57600080fd5b505afa158015610e9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec39190612d58565b6001600160a01b031614610ee95760405162461bcd60e51b815260040161098c90613754565b6040516331a9108f60e11b81526001600160a01b038216906342842e0e908290636352211e90610f1d908a90600401613c20565b60206040518083038186803b158015610f3557600080fd5b505afa158015610f49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f6d9190612d58565b600d546040516001600160e01b031960e085901b168152610f9d92916001600160a01b0316908a90600401613193565b600060405180830381600087803b158015610fb757600080fd5b505af1158015610fcb573d6000803e3d6000fd5b50505060008581526014602052604090819020859055517f2b7a1419fefd11b3ea7e8e471ef58019af55e046191e2d60b2b59359045aebe8915061101490339087908790613172565b60405180910390a160019150505b949350505050565b600080611038600284612509565b509392505050565b611048612254565b6001600160a01b03166110596114ae565b6001600160a01b03161461107f5760405162461bcd60e51b815260040161098c906139d9565b61108881612525565b50565b60606000611098836112aa565b9050806110d35760408051600080825260208201909252906110ca565b60608152602001906001900390816110b55790505b509150506108ca565b60008167ffffffffffffffff811180156110ec57600080fd5b5060405190808252806020026020018201604052801561112057816020015b606081526020019060019003908161110b5790505b50905060005b828110156111f5576010600061113c8784610c86565b815260208082019290925260409081016000208054825160026001831615610100026000190190921691909104601f8101859004850282018501909352828152929091908301828280156111d15780601f106111a6576101008083540402835291602001916111d1565b820191906000526020600020905b8154815290600101906020018083116111b457829003601f168201915b50505050508282815181106111e257fe5b6020908102919091010152600101611126565b5091506108ca9050565b6000610cab82604051806060016040528060298152602001613cb36029913960029190612538565b601481565b600f54610100900460ff1681565b60098054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561095b5780601f106109305761010080835404028352916020019161095b565b6013546001600160a01b031681565b60006001600160a01b0382166112d25760405162461bcd60e51b815260040161098c9061388b565b6001600160a01b0382166000908152600160205260409020610cab906122c6565b6112fb612254565b6001600160a01b031661130c6114ae565b6001600160a01b0316146113325760405162461bcd60e51b815260040161098c906139d9565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600b805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156114025780601f106113d757610100808354040283529160200191611402565b820191906000526020600020905b8154815290600101906020018083116113e557829003601f168201915b505050505081565b60606000611417836112aa565b9050806114345760408051600080825260208201909252906110ca565b60008167ffffffffffffffff8111801561144d57600080fd5b50604051908082528060200260200182016040528015611477578160200160208202803683370190505b50905060005b828110156111f55761148f8582610c86565b82828151811061149b57fe5b602090810291909101015260010161147d565b600a546001600160a01b031690565b6114c5612254565b6001600160a01b03166114d66114ae565b6001600160a01b0316146114fc5760405162461bcd60e51b815260040161098c906139d9565b600f805462ff0000198116620100009182900460ff1615909102179055565b60078054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561095b5780601f106109305761010080835404028352916020019161095b565b611584612254565b6001600160a01b03166115956114ae565b6001600160a01b0316146115bb5760405162461bcd60e51b815260040161098c906139d9565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b6115e5612254565b6001600160a01b0316826001600160a01b031614156116165760405162461bcd60e51b815260040161098c90613663565b8060056000611623612254565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611667612254565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161169f919061325b565b60405180910390a35050565b6116b3612254565b6001600160a01b03166116c46114ae565b6001600160a01b0316146116ea5760405162461bcd60e51b815260040161098c906139d9565b600f805461ff001981166101009182900460ff1615909102179055565b6060611711610a9f565b821061172f5760405162461bcd60e51b815260040161098c906137b1565b60008281526010602090815260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845290918301828280156117c25780601f10611797576101008083540402835291602001916117c2565b820191906000526020600020905b8154815290600101906020018083116117a557829003601f168201915b50505050509050919050565b6117df6117d9612254565b83612313565b6117fb5760405162461bcd60e51b815260040161098c90613b2a565b6118078484848461254f565b50505050565b606061181882612247565b6118345760405162461bcd60e51b815260040161098c90613a57565b60008281526008602090815260408083208054825160026001831615610100026000190190921691909104601f8101859004850282018501909352828152929091908301828280156118c75780601f1061189c576101008083540402835291602001916118c7565b820191906000526020600020905b8154815290600101906020018083116118aa57829003601f168201915b5050505050905060006118d861123a565b90508051600014156118ec575090506108ca565b81511561191e5780826040516020016119069291906130c2565b604051602081830303815290604052925050506108ca565b8061192885612582565b6040516020016119399291906130c2565b60405160208183030381529060405292505050919050565b600e5481565b600f5462010000900460ff1681565b600f54610100900460ff1661198d5760405162461bcd60e51b815260040161098c90613bb2565b600e54611998610a9f565b11156119b65760405162461bcd60e51b815260040161098c9061355f565b6012546040516331a9108f60e11b81526001600160a01b039091169033908290636352211e906119ea908890600401613c20565b60206040518083038186803b158015611a0257600080fd5b505afa158015611a16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a3a9190612d58565b6001600160a01b031614611a605760405162461bcd60e51b815260040161098c90613452565b6040516331a9108f60e11b815233906001600160a01b03831690636352211e90611a8e908790600401613c20565b60206040518083038186803b158015611aa657600080fd5b505afa158015611aba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ade9190612d58565b6001600160a01b031614611b045760405162461bcd60e51b815260040161098c9061336a565b6040516331a9108f60e11b815233906001600160a01b03831690636352211e90611b32908690600401613c20565b60206040518083038186803b158015611b4a57600080fd5b505afa158015611b5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b829190612d58565b6001600160a01b031614611ba85760405162461bcd60e51b815260040161098c906132bb565b6040516331a9108f60e11b81526001600160a01b038216906342842e0e908290636352211e90611bdc908990600401613c20565b60206040518083038186803b158015611bf457600080fd5b505afa158015611c08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c2c9190612d58565b600d546040516001600160e01b031960e085901b168152611c5c92916001600160a01b0316908990600401613193565b600060405180830381600087803b158015611c7657600080fd5b505af1158015611c8a573d6000803e3d6000fd5b50506040516331a9108f60e11b81526001600160a01b03841692506342842e0e91508290636352211e90611cc2908890600401613c20565b60206040518083038186803b158015611cda57600080fd5b505afa158015611cee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d129190612d58565b600d546040516001600160e01b031960e085901b168152611d4292916001600160a01b0316908890600401613193565b600060405180830381600087803b158015611d5c57600080fd5b505af1158015611d70573d6000803e3d6000fd5b50506040516331a9108f60e11b81526001600160a01b03841692506342842e0e91508290636352211e90611da8908790600401613c20565b60206040518083038186803b158015611dc057600080fd5b505afa158015611dd4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611df89190612d58565b600d546040516001600160e01b031960e085901b168152611e2892916001600160a01b0316908790600401613193565b600060405180830381600087803b158015611e4257600080fd5b505af1158015611e56573d6000803e3d6000fd5b505050506000611e64610a9f565b9050600e54611e71610a9f565b1015611e8157611e8133826122d1565b5050505050565b60115481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600f5460ff1681565b611ecd612254565b6001600160a01b0316611ede6114ae565b6001600160a01b031614611f045760405162461bcd60e51b815260040161098c906139d9565b600e55565b611f11612254565b6001600160a01b0316611f226114ae565b6001600160a01b031614611f485760405162461bcd60e51b815260040161098c906139d9565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b33611f74836111ff565b6001600160a01b031614611f9a5760405162461bcd60e51b815260040161098c90613845565b600082815260106020526040908190209051600291611fb891613052565b602060405180830381855afa158015611fd5573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190611ff89190612eff565b6002826040516120089190613036565b602060405180830381855afa158015612025573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906120489190612eff565b14156120665760405162461bcd60e51b815260040161098c90613aa6565b6000828152601060209081526040909120825161208592840190612c18565b507f61d724083b831fef0356fcdecdb18b059d56e518be9446c28f2827bb0e3c26bf3383836040516120b993929190613142565b60405180910390a15050565b6120cd612254565b6001600160a01b03166120de6114ae565b6001600160a01b0316146121045760405162461bcd60e51b815260040161098c906139d9565b6001600160a01b03811661212a5760405162461bcd60e51b815260040161098c9061340c565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b61218e612254565b6001600160a01b031661219f6114ae565b6001600160a01b0316146121c55760405162461bcd60e51b815260040161098c906139d9565b600c55565b6012546001600160a01b031681565b60106020908152600091825260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845290918301828280156114025780601f106113d757610100808354040283529160200191611402565b600c5481565b6000610cab60028361265d565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061228d826111ff565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610cab82612669565b610a9b82826040518060200160405280600081525061266d565b60008282111561230d5760405162461bcd60e51b815260040161098c906136d1565b50900390565b600061231e82612247565b61233a5760405162461bcd60e51b815260040161098c90613708565b6000612345836111ff565b9050806001600160a01b0316846001600160a01b031614806123805750836001600160a01b031661237584610965565b6001600160a01b0316145b8061102257506110228185611e8e565b826001600160a01b03166123a3826111ff565b6001600160a01b0316146123c95760405162461bcd60e51b815260040161098c90613a0e565b6001600160a01b0382166123ef5760405162461bcd60e51b815260040161098c9061361f565b6123fa838383610a44565b612405600082612258565b6001600160a01b038316600090815260016020526040902061242790826126a0565b506001600160a01b038216600090815260016020526040902061244a90826126ac565b50612457600282846126b8565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600082820183811015610ca85760405162461bcd60e51b815260040161098c906134e6565b6000826124d257506000610cab565b828202828482816124df57fe5b0414610ca85760405162461bcd60e51b815260040161098c9061394c565b6000610ca883836126ce565b60008080806125188686612713565b9097909650945050505050565b8051610a9b906009906020840190612c18565b600061254584848461276f565b90505b9392505050565b61255a848484612390565b612566848484846127ce565b6118075760405162461bcd60e51b815260040161098c90613318565b6060816125a757506040805180820190915260018152600360fc1b60208201526108ca565b8160005b81156125bf57600101600a820491506125ab565b60008167ffffffffffffffff811180156125d857600080fd5b506040519080825280601f01601f191660200182016040528015612603576020820181803683370190505b50859350905060001982015b831561265457600a840660300160f81b8282806001900393508151811061263257fe5b60200101906001600160f81b031916908160001a905350600a8404935061260f565b50949350505050565b6000610ca883836128ad565b5490565b61267783836128c5565b61268460008484846127ce565b610a445760405162461bcd60e51b815260040161098c90613318565b6000610ca88383612989565b6000610ca88383612a4f565b600061254584846001600160a01b038516612a99565b815460009082106126f15760405162461bcd60e51b815260040161098c90613279565b82600001828154811061270057fe5b9060005260206000200154905092915050565b8154600090819083106127385760405162461bcd60e51b815260040161098c906138d5565b600084600001848154811061274957fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b6000828152600184016020526040812054828161279f5760405162461bcd60e51b815260040161098c9190613266565b508460000160018203815481106127b257fe5b9060005260206000209060020201600101549150509392505050565b60006127e2846001600160a01b0316612b30565b6127ee57506001611022565b6000612876630a85bd0160e11b612803612254565b8887876040516024016128199493929190613105565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001613c81603291396001600160a01b0388169190612b36565b905060008180602001905181019061288e9190612f33565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b60009081526001919091016020526040902054151590565b6001600160a01b0382166128eb5760405162461bcd60e51b815260040161098c90613917565b6128f481612247565b156129115760405162461bcd60e51b815260040161098c906134af565b61291d60008383610a44565b6001600160a01b038216600090815260016020526040902061293f90826126ac565b5061294c600282846126b8565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60008181526001830160205260408120548015612a4557835460001980830191908101906000908790839081106129bc57fe5b90600052602060002001549050808760000184815481106129d957fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080612a0957fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610cab565b6000915050610cab565b6000612a5b83836128ad565b612a9157508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610cab565b506000610cab565b600082815260018401602052604081205480612afe575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055612548565b82856000016001830381548110612b1157fe5b9060005260206000209060020201600101819055506000915050612548565b3b151590565b6060612545848460008585612b4a85612b30565b612b665760405162461bcd60e51b815260040161098c90613b7b565b600080866001600160a01b03168587604051612b829190613036565b60006040518083038185875af1925050503d8060008114612bbf576040519150601f19603f3d011682016040523d82523d6000602084013e612bc4565b606091505b5091509150612bd4828286612bdf565b979650505050505050565b60608315612bee575081612548565b825115612bfe5782518084602001fd5b8160405162461bcd60e51b815260040161098c9190613266565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282612c4e5760008555612c94565b82601f10612c6757805160ff1916838001178555612c94565b82800160010185558215612c94579182015b82811115612c94578251825591602001919060010190612c79565b50612ca0929150612ca4565b5090565b5b80821115612ca05760008155600101612ca5565b600067ffffffffffffffff80841115612cce57fe5b604051601f8501601f191681016020018281118282101715612cec57fe5b604052848152915081838501861015612d0457600080fd5b8484602083013760006020868301015250509392505050565b600082601f830112612d2d578081fd5b610ca883833560208501612cb9565b600060208284031215612d4d578081fd5b8135610ca881613c55565b600060208284031215612d69578081fd5b8151610ca881613c55565b60008060408385031215612d86578081fd5b8235612d9181613c55565b91506020830135612da181613c55565b809150509250929050565b600080600060608486031215612dc0578081fd5b8335612dcb81613c55565b92506020840135612ddb81613c55565b929592945050506040919091013590565b60008060008060808587031215612e01578081fd5b8435612e0c81613c55565b93506020850135612e1c81613c55565b925060408501359150606085013567ffffffffffffffff811115612e3e578182fd5b8501601f81018713612e4e578182fd5b612e5d87823560208401612cb9565b91505092959194509250565b60008060408385031215612e7b578182fd5b8235612e8681613c55565b915060208301358015158114612da1578182fd5b60008060408385031215612eac578182fd5b8235612eb781613c55565b946020939093013593505050565b60008060008060808587031215612eda578384fd5b8435612ee581613c55565b966020860135965060408601359560600135945092505050565b600060208284031215612f10578081fd5b5051919050565b600060208284031215612f28578081fd5b8135610ca881613c6a565b600060208284031215612f44578081fd5b8151610ca881613c6a565b600060208284031215612f60578081fd5b813567ffffffffffffffff811115612f76578182fd5b61102284828501612d1d565b600060208284031215612f93578081fd5b5035919050565b60008060408385031215612fac578182fd5b82359150602083013567ffffffffffffffff811115612fc9578182fd5b612fd585828601612d1d565b9150509250929050565b600080600060608486031215612ff3578081fd5b505081359360208301359350604090920135919050565b60008151808452613022816020860160208601613c29565b601f01601f19169290920160200192915050565b60008251613048818460208701613c29565b9190910192915050565b60008083546001808216600081146130715760018114613088576130b7565b60ff198316865260028304607f16860193506130b7565b600283048786526020808720875b838110156130af5781548a820152908501908201613096565b505050860193505b509195945050505050565b600083516130d4818460208801613c29565b8351908301906130e8818360208801613c29565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906131389083018461300a565b9695505050505050565b600060018060a01b038516825283602083015260606040830152613169606083018461300a565b95945050505050565b6001600160a01b039390931683526020830191909152604082015260600190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6000602080830181845280855180835260408601915060408482028701019250838701855b8281101561320a57603f198886030184526131f885835161300a565b945092850192908501906001016131dc565b5092979650505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561324f57835183529284019291840191600101613233565b50909695505050505050565b901515815260200190565b600060208252610ca8602083018461300a565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252603c908201527f4d757374206f776e2074686520435043207069673320666f722072657175657360408201527f74656420746f6b656e496420746f206d696e7420612033642050494700000000606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252603c908201527f4d757374206f776e2074686520435043207069673220666f722072657175657360408201527f74656420746f6b656e496420746f206d696e7420612033642050494700000000606082015260800190565b60208082526025908201527f494420776f756c6420657863656564206d617820737570706c79206f66203364604082015264207069677360d81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252603c908201527f4d757374206f776e2074686520435043207069673120666f722072657175657360408201527f74656420746f6b656e496420746f206d696e7420612033642050494700000000606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526022908201527f43616e206f6e6c79206d696e742032353820746f6b656e7320617420612074696040820152616d6560f01b606082015260800190565b60208082526028908201527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015267206f66207069677360c01b606082015260800190565b6020808252818101527f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d604082015260600190565b60208082526023908201527f436f6d706f7365206973206e6f742061637469766520617420746865206d6f6d604082015262195b9d60ea1b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252601e908201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252603b908201527f4d757374206f776e20746865206261726e20666f72207265717565737465642060408201527f746f6b656e496420746f20636f6d62696e652061203364205049470000000000606082015260800190565b60208082526019908201527f43686f6f73652061207069672077697468696e2072616e676500000000000000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b60208082526026908201527f4865792c20796f75722077616c6c657420646f65736e2774206f776e2074686960408201526573207069672160d01b606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526022908201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526023908201527f4e6577206e616d652069732073616d65206173207468652063757272656e74206040820152626f6e6560e81b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b6020808252601f908201527f53616c65206d7573742062652061637469766520746f206d696e742050696700604082015260600190565b6020808252601b908201527f596f7520646f206e6f7420686176652074686973203364205049470000000000604082015260600190565b90815260200190565b60005b83811015613c44578181015183820152602001613c2c565b838111156118075750506000910152565b6001600160a01b038116811461108857600080fd5b6001600160e01b03198116811461108857600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea26469706673582212205d995c1d9b9df89d5fe89e43d5f574cebe978ba7b4ab49636f745eb3cae3d32564736f6c63430007060033

Deployed Bytecode

0x6080604052600436106102e45760003560e01c8063715018a611610190578063d6aa2502116100dc578063ef57ce9f11610095578063f4a0a5281161006f578063f4a0a52814610842578063f7a5790314610862578063fea200cd14610877578063ff41667814610897576102e4565b8063ef57ce9f146107e2578063f2a24f1b14610802578063f2fde38b14610822576102e4565b8063d6aa250214610750578063d82b687c14610765578063ddc3481214610778578063e985e9c51461078d578063eb8d2444146107ad578063ebd1be71146107c2576102e4565b80639cc34f4d11610149578063ad319fdd11610123578063ad319fdd146106db578063b88d4fde146106fb578063c87b56dd1461071b578063c9b21b851461073b576102e4565b80639cc34f4d14610686578063a22cb465146106a6578063a71c8055146106c6576102e4565b8063715018a6146105f05780637aea8862146106055780638462151c1461061a5780638da5cb5b14610647578063908d97601461065c57806395d89b4114610671576102e4565b80633ccfd60b1161024f5780635ad5159d1161020857806366caa6ab116101e257806366caa6ab146105915780636c0360eb146105a65780636ea5d35e146105bb57806370a08231146105d0576102e4565b80635ad5159d1461052f5780636352211e1461055c5780636604fd331461057c576102e4565b80633ccfd60b1461047a5780633dc015e41461048f57806342842e0e146104af578063447cde43146104cf5780634f6ccce7146104ef57806355f804b31461050f576102e4565b806319b003c4116102a157806319b003c4146103d257806323b872dd146103f25780632d8a4e5e146104125780632f745c591461042557806334918dfd1461044557806339663b2b1461045a576102e4565b806301ffc9a7146102e957806306fdde031461031f578063081812fc14610341578063095ea7b31461036e578063109695231461039057806318160ddd146103b0575b600080fd5b3480156102f557600080fd5b50610309610304366004612f17565b6108ac565b604051610316919061325b565b60405180910390f35b34801561032b57600080fd5b506103346108cf565b6040516103169190613266565b34801561034d57600080fd5b5061036161035c366004612f82565b610965565b60405161031691906130f1565b34801561037a57600080fd5b5061038e610389366004612e9a565b6109b1565b005b34801561039c57600080fd5b5061038e6103ab366004612f4f565b610a49565b3480156103bc57600080fd5b506103c5610a9f565b6040516103169190613c20565b3480156103de57600080fd5b5061038e6103ed366004612e9a565b610ab0565b3480156103fe57600080fd5b5061038e61040d366004612dac565b610b6b565b61038e610420366004612f82565b610ba3565b34801561043157600080fd5b506103c5610440366004612e9a565b610c86565b34801561045157600080fd5b5061038e610cb1565b34801561046657600080fd5b506103c5610475366004612f82565b610d04565b34801561048657600080fd5b5061038e610d16565b34801561049b57600080fd5b506103c56104aa366004612f82565b610d84565b3480156104bb57600080fd5b5061038e6104ca366004612dac565b610dc0565b3480156104db57600080fd5b506103096104ea366004612ec5565b610ddb565b3480156104fb57600080fd5b506103c561050a366004612f82565b61102a565b34801561051b57600080fd5b5061038e61052a366004612f4f565b611040565b34801561053b57600080fd5b5061054f61054a366004612d3c565b61108b565b60405161031691906131b7565b34801561056857600080fd5b50610361610577366004612f82565b6111ff565b34801561058857600080fd5b506103c5611227565b34801561059d57600080fd5b5061030961122c565b3480156105b257600080fd5b5061033461123a565b3480156105c757600080fd5b5061036161129b565b3480156105dc57600080fd5b506103c56105eb366004612d3c565b6112aa565b3480156105fc57600080fd5b5061038e6112f3565b34801561061157600080fd5b5061033461137c565b34801561062657600080fd5b5061063a610635366004612d3c565b61140a565b6040516103169190613217565b34801561065357600080fd5b506103616114ae565b34801561066857600080fd5b5061038e6114bd565b34801561067d57600080fd5b5061033461151b565b34801561069257600080fd5b5061038e6106a1366004612d3c565b61157c565b3480156106b257600080fd5b5061038e6106c1366004612e69565b6115dd565b3480156106d257600080fd5b5061038e6116ab565b3480156106e757600080fd5b506103346106f6366004612f82565b611707565b34801561070757600080fd5b5061038e610716366004612dec565b6117ce565b34801561072757600080fd5b50610334610736366004612f82565b61180d565b34801561074757600080fd5b506103c5611951565b34801561075c57600080fd5b50610309611957565b61038e610773366004612fdf565b611966565b34801561078457600080fd5b506103c5611e88565b34801561079957600080fd5b506103096107a8366004612d74565b611e8e565b3480156107b957600080fd5b50610309611ebc565b3480156107ce57600080fd5b5061038e6107dd366004612f82565b611ec5565b3480156107ee57600080fd5b5061038e6107fd366004612d3c565b611f09565b34801561080e57600080fd5b5061038e61081d366004612f9a565b611f6a565b34801561082e57600080fd5b5061038e61083d366004612d3c565b6120c5565b34801561084e57600080fd5b5061038e61085d366004612f82565b612186565b34801561086e57600080fd5b506103616121ca565b34801561088357600080fd5b50610334610892366004612f82565b6121d9565b3480156108a357600080fd5b506103c5612241565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60068054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561095b5780601f106109305761010080835404028352916020019161095b565b820191906000526020600020905b81548152906001019060200180831161093e57829003601f168201915b5050505050905090565b600061097082612247565b6109955760405162461bcd60e51b815260040161098c9061398d565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109bc826111ff565b9050806001600160a01b0316836001600160a01b031614156109f05760405162461bcd60e51b815260040161098c90613ae9565b806001600160a01b0316610a02612254565b6001600160a01b03161480610a1e5750610a1e816107a8612254565b610a3a5760405162461bcd60e51b815260040161098c906137e8565b610a448383612258565b505050565b610a51612254565b6001600160a01b0316610a626114ae565b6001600160a01b031614610a885760405162461bcd60e51b815260040161098c906139d9565b8051610a9b90600b906020840190612c18565b5050565b6000610aab60026122c6565b905090565b610ab8612254565b6001600160a01b0316610ac96114ae565b6001600160a01b031614610aef5760405162461bcd60e51b815260040161098c906139d9565b6000610af9610a9f565b9050600082118015610b0d57506011548211155b610b295760405162461bcd60e51b815260040161098c906135a7565b60005b82811015610b5557600e5482820190811015610b4c57610b4c85826122d1565b50600101610b2c565b50601154610b6390836122eb565b601155505050565b610b7c610b76612254565b82612313565b610b985760405162461bcd60e51b815260040161098c90613b2a565b610a44838383612390565b600f5460ff16610bc55760405162461bcd60e51b815260040161098c90613bb2565b600081118015610bd6575060148111155b610bf25760405162461bcd60e51b815260040161098c9061351d565b600e54610c0782610c01610a9f565b9061249e565b1115610c255760405162461bcd60e51b815260040161098c9061355f565b600c54610c3290826124c3565b341015610c515760405162461bcd60e51b815260040161098c9061369a565b60005b81811015610a9b57600e54610c67610a9f565b1015610c7e57610c7e33610c79610a9f565b6122d1565b600101610c54565b6001600160a01b0382166000908152600160205260408120610ca890836124fd565b90505b92915050565b610cb9612254565b6001600160a01b0316610cca6114ae565b6001600160a01b031614610cf05760405162461bcd60e51b815260040161098c906139d9565b600f805460ff19811660ff90911615179055565b60146020526000908152604090205481565b610d1e612254565b6001600160a01b0316610d2f6114ae565b6001600160a01b031614610d555760405162461bcd60e51b815260040161098c906139d9565b6040514790339082156108fc029083906000818181858888f19350505050158015610a9b573d6000803e3d6000fd5b6000610d8e610a9f565b821115610dad5760405162461bcd60e51b815260040161098c906133c7565b5060009081526014602052604090205490565b610a44838383604051806020016040528060008152506117ce565b600f5460009062010000900460ff16610e065760405162461bcd60e51b815260040161098c906135dc565b846001600160a01b0316610e19846111ff565b6001600160a01b031614610e3f5760405162461bcd60e51b815260040161098c90613be9565b6013546040516331a9108f60e11b81526001600160a01b039091169033908290636352211e90610e73908990600401613c20565b60206040518083038186803b158015610e8b57600080fd5b505afa158015610e9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec39190612d58565b6001600160a01b031614610ee95760405162461bcd60e51b815260040161098c90613754565b6040516331a9108f60e11b81526001600160a01b038216906342842e0e908290636352211e90610f1d908a90600401613c20565b60206040518083038186803b158015610f3557600080fd5b505afa158015610f49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f6d9190612d58565b600d546040516001600160e01b031960e085901b168152610f9d92916001600160a01b0316908a90600401613193565b600060405180830381600087803b158015610fb757600080fd5b505af1158015610fcb573d6000803e3d6000fd5b50505060008581526014602052604090819020859055517f2b7a1419fefd11b3ea7e8e471ef58019af55e046191e2d60b2b59359045aebe8915061101490339087908790613172565b60405180910390a160019150505b949350505050565b600080611038600284612509565b509392505050565b611048612254565b6001600160a01b03166110596114ae565b6001600160a01b03161461107f5760405162461bcd60e51b815260040161098c906139d9565b61108881612525565b50565b60606000611098836112aa565b9050806110d35760408051600080825260208201909252906110ca565b60608152602001906001900390816110b55790505b509150506108ca565b60008167ffffffffffffffff811180156110ec57600080fd5b5060405190808252806020026020018201604052801561112057816020015b606081526020019060019003908161110b5790505b50905060005b828110156111f5576010600061113c8784610c86565b815260208082019290925260409081016000208054825160026001831615610100026000190190921691909104601f8101859004850282018501909352828152929091908301828280156111d15780601f106111a6576101008083540402835291602001916111d1565b820191906000526020600020905b8154815290600101906020018083116111b457829003601f168201915b50505050508282815181106111e257fe5b6020908102919091010152600101611126565b5091506108ca9050565b6000610cab82604051806060016040528060298152602001613cb36029913960029190612538565b601481565b600f54610100900460ff1681565b60098054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561095b5780601f106109305761010080835404028352916020019161095b565b6013546001600160a01b031681565b60006001600160a01b0382166112d25760405162461bcd60e51b815260040161098c9061388b565b6001600160a01b0382166000908152600160205260409020610cab906122c6565b6112fb612254565b6001600160a01b031661130c6114ae565b6001600160a01b0316146113325760405162461bcd60e51b815260040161098c906139d9565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600b805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156114025780601f106113d757610100808354040283529160200191611402565b820191906000526020600020905b8154815290600101906020018083116113e557829003601f168201915b505050505081565b60606000611417836112aa565b9050806114345760408051600080825260208201909252906110ca565b60008167ffffffffffffffff8111801561144d57600080fd5b50604051908082528060200260200182016040528015611477578160200160208202803683370190505b50905060005b828110156111f55761148f8582610c86565b82828151811061149b57fe5b602090810291909101015260010161147d565b600a546001600160a01b031690565b6114c5612254565b6001600160a01b03166114d66114ae565b6001600160a01b0316146114fc5760405162461bcd60e51b815260040161098c906139d9565b600f805462ff0000198116620100009182900460ff1615909102179055565b60078054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561095b5780601f106109305761010080835404028352916020019161095b565b611584612254565b6001600160a01b03166115956114ae565b6001600160a01b0316146115bb5760405162461bcd60e51b815260040161098c906139d9565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b6115e5612254565b6001600160a01b0316826001600160a01b031614156116165760405162461bcd60e51b815260040161098c90613663565b8060056000611623612254565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611667612254565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161169f919061325b565b60405180910390a35050565b6116b3612254565b6001600160a01b03166116c46114ae565b6001600160a01b0316146116ea5760405162461bcd60e51b815260040161098c906139d9565b600f805461ff001981166101009182900460ff1615909102179055565b6060611711610a9f565b821061172f5760405162461bcd60e51b815260040161098c906137b1565b60008281526010602090815260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845290918301828280156117c25780601f10611797576101008083540402835291602001916117c2565b820191906000526020600020905b8154815290600101906020018083116117a557829003601f168201915b50505050509050919050565b6117df6117d9612254565b83612313565b6117fb5760405162461bcd60e51b815260040161098c90613b2a565b6118078484848461254f565b50505050565b606061181882612247565b6118345760405162461bcd60e51b815260040161098c90613a57565b60008281526008602090815260408083208054825160026001831615610100026000190190921691909104601f8101859004850282018501909352828152929091908301828280156118c75780601f1061189c576101008083540402835291602001916118c7565b820191906000526020600020905b8154815290600101906020018083116118aa57829003601f168201915b5050505050905060006118d861123a565b90508051600014156118ec575090506108ca565b81511561191e5780826040516020016119069291906130c2565b604051602081830303815290604052925050506108ca565b8061192885612582565b6040516020016119399291906130c2565b60405160208183030381529060405292505050919050565b600e5481565b600f5462010000900460ff1681565b600f54610100900460ff1661198d5760405162461bcd60e51b815260040161098c90613bb2565b600e54611998610a9f565b11156119b65760405162461bcd60e51b815260040161098c9061355f565b6012546040516331a9108f60e11b81526001600160a01b039091169033908290636352211e906119ea908890600401613c20565b60206040518083038186803b158015611a0257600080fd5b505afa158015611a16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a3a9190612d58565b6001600160a01b031614611a605760405162461bcd60e51b815260040161098c90613452565b6040516331a9108f60e11b815233906001600160a01b03831690636352211e90611a8e908790600401613c20565b60206040518083038186803b158015611aa657600080fd5b505afa158015611aba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ade9190612d58565b6001600160a01b031614611b045760405162461bcd60e51b815260040161098c9061336a565b6040516331a9108f60e11b815233906001600160a01b03831690636352211e90611b32908690600401613c20565b60206040518083038186803b158015611b4a57600080fd5b505afa158015611b5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b829190612d58565b6001600160a01b031614611ba85760405162461bcd60e51b815260040161098c906132bb565b6040516331a9108f60e11b81526001600160a01b038216906342842e0e908290636352211e90611bdc908990600401613c20565b60206040518083038186803b158015611bf457600080fd5b505afa158015611c08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c2c9190612d58565b600d546040516001600160e01b031960e085901b168152611c5c92916001600160a01b0316908990600401613193565b600060405180830381600087803b158015611c7657600080fd5b505af1158015611c8a573d6000803e3d6000fd5b50506040516331a9108f60e11b81526001600160a01b03841692506342842e0e91508290636352211e90611cc2908890600401613c20565b60206040518083038186803b158015611cda57600080fd5b505afa158015611cee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d129190612d58565b600d546040516001600160e01b031960e085901b168152611d4292916001600160a01b0316908890600401613193565b600060405180830381600087803b158015611d5c57600080fd5b505af1158015611d70573d6000803e3d6000fd5b50506040516331a9108f60e11b81526001600160a01b03841692506342842e0e91508290636352211e90611da8908790600401613c20565b60206040518083038186803b158015611dc057600080fd5b505afa158015611dd4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611df89190612d58565b600d546040516001600160e01b031960e085901b168152611e2892916001600160a01b0316908790600401613193565b600060405180830381600087803b158015611e4257600080fd5b505af1158015611e56573d6000803e3d6000fd5b505050506000611e64610a9f565b9050600e54611e71610a9f565b1015611e8157611e8133826122d1565b5050505050565b60115481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600f5460ff1681565b611ecd612254565b6001600160a01b0316611ede6114ae565b6001600160a01b031614611f045760405162461bcd60e51b815260040161098c906139d9565b600e55565b611f11612254565b6001600160a01b0316611f226114ae565b6001600160a01b031614611f485760405162461bcd60e51b815260040161098c906139d9565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b33611f74836111ff565b6001600160a01b031614611f9a5760405162461bcd60e51b815260040161098c90613845565b600082815260106020526040908190209051600291611fb891613052565b602060405180830381855afa158015611fd5573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190611ff89190612eff565b6002826040516120089190613036565b602060405180830381855afa158015612025573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906120489190612eff565b14156120665760405162461bcd60e51b815260040161098c90613aa6565b6000828152601060209081526040909120825161208592840190612c18565b507f61d724083b831fef0356fcdecdb18b059d56e518be9446c28f2827bb0e3c26bf3383836040516120b993929190613142565b60405180910390a15050565b6120cd612254565b6001600160a01b03166120de6114ae565b6001600160a01b0316146121045760405162461bcd60e51b815260040161098c906139d9565b6001600160a01b03811661212a5760405162461bcd60e51b815260040161098c9061340c565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b61218e612254565b6001600160a01b031661219f6114ae565b6001600160a01b0316146121c55760405162461bcd60e51b815260040161098c906139d9565b600c55565b6012546001600160a01b031681565b60106020908152600091825260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845290918301828280156114025780601f106113d757610100808354040283529160200191611402565b600c5481565b6000610cab60028361265d565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061228d826111ff565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610cab82612669565b610a9b82826040518060200160405280600081525061266d565b60008282111561230d5760405162461bcd60e51b815260040161098c906136d1565b50900390565b600061231e82612247565b61233a5760405162461bcd60e51b815260040161098c90613708565b6000612345836111ff565b9050806001600160a01b0316846001600160a01b031614806123805750836001600160a01b031661237584610965565b6001600160a01b0316145b8061102257506110228185611e8e565b826001600160a01b03166123a3826111ff565b6001600160a01b0316146123c95760405162461bcd60e51b815260040161098c90613a0e565b6001600160a01b0382166123ef5760405162461bcd60e51b815260040161098c9061361f565b6123fa838383610a44565b612405600082612258565b6001600160a01b038316600090815260016020526040902061242790826126a0565b506001600160a01b038216600090815260016020526040902061244a90826126ac565b50612457600282846126b8565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600082820183811015610ca85760405162461bcd60e51b815260040161098c906134e6565b6000826124d257506000610cab565b828202828482816124df57fe5b0414610ca85760405162461bcd60e51b815260040161098c9061394c565b6000610ca883836126ce565b60008080806125188686612713565b9097909650945050505050565b8051610a9b906009906020840190612c18565b600061254584848461276f565b90505b9392505050565b61255a848484612390565b612566848484846127ce565b6118075760405162461bcd60e51b815260040161098c90613318565b6060816125a757506040805180820190915260018152600360fc1b60208201526108ca565b8160005b81156125bf57600101600a820491506125ab565b60008167ffffffffffffffff811180156125d857600080fd5b506040519080825280601f01601f191660200182016040528015612603576020820181803683370190505b50859350905060001982015b831561265457600a840660300160f81b8282806001900393508151811061263257fe5b60200101906001600160f81b031916908160001a905350600a8404935061260f565b50949350505050565b6000610ca883836128ad565b5490565b61267783836128c5565b61268460008484846127ce565b610a445760405162461bcd60e51b815260040161098c90613318565b6000610ca88383612989565b6000610ca88383612a4f565b600061254584846001600160a01b038516612a99565b815460009082106126f15760405162461bcd60e51b815260040161098c90613279565b82600001828154811061270057fe5b9060005260206000200154905092915050565b8154600090819083106127385760405162461bcd60e51b815260040161098c906138d5565b600084600001848154811061274957fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b6000828152600184016020526040812054828161279f5760405162461bcd60e51b815260040161098c9190613266565b508460000160018203815481106127b257fe5b9060005260206000209060020201600101549150509392505050565b60006127e2846001600160a01b0316612b30565b6127ee57506001611022565b6000612876630a85bd0160e11b612803612254565b8887876040516024016128199493929190613105565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001613c81603291396001600160a01b0388169190612b36565b905060008180602001905181019061288e9190612f33565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b60009081526001919091016020526040902054151590565b6001600160a01b0382166128eb5760405162461bcd60e51b815260040161098c90613917565b6128f481612247565b156129115760405162461bcd60e51b815260040161098c906134af565b61291d60008383610a44565b6001600160a01b038216600090815260016020526040902061293f90826126ac565b5061294c600282846126b8565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60008181526001830160205260408120548015612a4557835460001980830191908101906000908790839081106129bc57fe5b90600052602060002001549050808760000184815481106129d957fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080612a0957fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610cab565b6000915050610cab565b6000612a5b83836128ad565b612a9157508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610cab565b506000610cab565b600082815260018401602052604081205480612afe575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055612548565b82856000016001830381548110612b1157fe5b9060005260206000209060020201600101819055506000915050612548565b3b151590565b6060612545848460008585612b4a85612b30565b612b665760405162461bcd60e51b815260040161098c90613b7b565b600080866001600160a01b03168587604051612b829190613036565b60006040518083038185875af1925050503d8060008114612bbf576040519150601f19603f3d011682016040523d82523d6000602084013e612bc4565b606091505b5091509150612bd4828286612bdf565b979650505050505050565b60608315612bee575081612548565b825115612bfe5782518084602001fd5b8160405162461bcd60e51b815260040161098c9190613266565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282612c4e5760008555612c94565b82601f10612c6757805160ff1916838001178555612c94565b82800160010185558215612c94579182015b82811115612c94578251825591602001919060010190612c79565b50612ca0929150612ca4565b5090565b5b80821115612ca05760008155600101612ca5565b600067ffffffffffffffff80841115612cce57fe5b604051601f8501601f191681016020018281118282101715612cec57fe5b604052848152915081838501861015612d0457600080fd5b8484602083013760006020868301015250509392505050565b600082601f830112612d2d578081fd5b610ca883833560208501612cb9565b600060208284031215612d4d578081fd5b8135610ca881613c55565b600060208284031215612d69578081fd5b8151610ca881613c55565b60008060408385031215612d86578081fd5b8235612d9181613c55565b91506020830135612da181613c55565b809150509250929050565b600080600060608486031215612dc0578081fd5b8335612dcb81613c55565b92506020840135612ddb81613c55565b929592945050506040919091013590565b60008060008060808587031215612e01578081fd5b8435612e0c81613c55565b93506020850135612e1c81613c55565b925060408501359150606085013567ffffffffffffffff811115612e3e578182fd5b8501601f81018713612e4e578182fd5b612e5d87823560208401612cb9565b91505092959194509250565b60008060408385031215612e7b578182fd5b8235612e8681613c55565b915060208301358015158114612da1578182fd5b60008060408385031215612eac578182fd5b8235612eb781613c55565b946020939093013593505050565b60008060008060808587031215612eda578384fd5b8435612ee581613c55565b966020860135965060408601359560600135945092505050565b600060208284031215612f10578081fd5b5051919050565b600060208284031215612f28578081fd5b8135610ca881613c6a565b600060208284031215612f44578081fd5b8151610ca881613c6a565b600060208284031215612f60578081fd5b813567ffffffffffffffff811115612f76578182fd5b61102284828501612d1d565b600060208284031215612f93578081fd5b5035919050565b60008060408385031215612fac578182fd5b82359150602083013567ffffffffffffffff811115612fc9578182fd5b612fd585828601612d1d565b9150509250929050565b600080600060608486031215612ff3578081fd5b505081359360208301359350604090920135919050565b60008151808452613022816020860160208601613c29565b601f01601f19169290920160200192915050565b60008251613048818460208701613c29565b9190910192915050565b60008083546001808216600081146130715760018114613088576130b7565b60ff198316865260028304607f16860193506130b7565b600283048786526020808720875b838110156130af5781548a820152908501908201613096565b505050860193505b509195945050505050565b600083516130d4818460208801613c29565b8351908301906130e8818360208801613c29565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906131389083018461300a565b9695505050505050565b600060018060a01b038516825283602083015260606040830152613169606083018461300a565b95945050505050565b6001600160a01b039390931683526020830191909152604082015260600190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6000602080830181845280855180835260408601915060408482028701019250838701855b8281101561320a57603f198886030184526131f885835161300a565b945092850192908501906001016131dc565b5092979650505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561324f57835183529284019291840191600101613233565b50909695505050505050565b901515815260200190565b600060208252610ca8602083018461300a565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252603c908201527f4d757374206f776e2074686520435043207069673320666f722072657175657360408201527f74656420746f6b656e496420746f206d696e7420612033642050494700000000606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252603c908201527f4d757374206f776e2074686520435043207069673220666f722072657175657360408201527f74656420746f6b656e496420746f206d696e7420612033642050494700000000606082015260800190565b60208082526025908201527f494420776f756c6420657863656564206d617820737570706c79206f66203364604082015264207069677360d81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252603c908201527f4d757374206f776e2074686520435043207069673120666f722072657175657360408201527f74656420746f6b656e496420746f206d696e7420612033642050494700000000606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526022908201527f43616e206f6e6c79206d696e742032353820746f6b656e7320617420612074696040820152616d6560f01b606082015260800190565b60208082526028908201527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015267206f66207069677360c01b606082015260800190565b6020808252818101527f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d604082015260600190565b60208082526023908201527f436f6d706f7365206973206e6f742061637469766520617420746865206d6f6d604082015262195b9d60ea1b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252601e908201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252603b908201527f4d757374206f776e20746865206261726e20666f72207265717565737465642060408201527f746f6b656e496420746f20636f6d62696e652061203364205049470000000000606082015260800190565b60208082526019908201527f43686f6f73652061207069672077697468696e2072616e676500000000000000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b60208082526026908201527f4865792c20796f75722077616c6c657420646f65736e2774206f776e2074686960408201526573207069672160d01b606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526022908201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526023908201527f4e6577206e616d652069732073616d65206173207468652063757272656e74206040820152626f6e6560e81b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b6020808252601f908201527f53616c65206d7573742062652061637469766520746f206d696e742050696700604082015260600190565b6020808252601b908201527f596f7520646f206e6f7420686176652074686973203364205049470000000000604082015260600190565b90815260200190565b60005b83811015613c44578181015183820152602001613c2c565b838111156118075750506000910152565b6001600160a01b038116811461108857600080fd5b6001600160e01b03198116811461108857600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea26469706673582212205d995c1d9b9df89d5fe89e43d5f574cebe978ba7b4ab49636f745eb3cae3d32564736f6c63430007060033

Deployed Bytecode Sourcemap

67408:7299:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10253:150;;;;;;;;;;-1:-1:-1;10253:150:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51538:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;54324:221::-;;;;;;;;;;-1:-1:-1;54324:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;53854:404::-;;;;;;;;;;-1:-1:-1;53854:404:0;;;;;:::i;:::-;;:::i;:::-;;69510:124;;;;;;;;;;-1:-1:-1;69510:124:0;;;;;:::i;:::-;;:::i;53332:211::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;68802:494::-;;;;;;;;;;-1:-1:-1;68802:494:0;;;;;:::i;:::-;;:::i;55214:305::-;;;;;;;;;;-1:-1:-1;55214:305:0;;;;;:::i;:::-;;:::i;70904:643::-;;;;;;:::i;:::-;;:::i;53094:162::-;;;;;;;;;;-1:-1:-1;53094:162:0;;;;;:::i;:::-;;:::i;70027:89::-;;;;;;;;;;;;;:::i;68163:48::-;;;;;;;;;;-1:-1:-1;68163:48:0;;;;;:::i;:::-;;:::i;68448:131::-;;;;;;;;;;;;;:::i;68589:202::-;;;;;;;;;;-1:-1:-1;68589:202:0;;;;;:::i;:::-;;:::i;55590:151::-;;;;;;;;;;-1:-1:-1;55590:151:0;;;;;:::i;:::-;;:::i;72697:698::-;;;;;;;;;;-1:-1:-1;72697:698:0;;;;;:::i;:::-;;:::i;53620:172::-;;;;;;;;;;-1:-1:-1;53620:172:0;;;;;:::i;:::-;;:::i;69642:99::-;;;;;;;;;;-1:-1:-1;69642:99:0;;;;;:::i;:::-;;:::i;74147:551::-;;;;;;;;;;-1:-1:-1;74147:551:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;51294:177::-;;;;;;;;;;-1:-1:-1;51294:177:0;;;;;:::i;:::-;;:::i;67727:40::-;;;;;;;;;;;;;:::i;67854:32::-;;;;;;;;;;;;;:::i;52913:97::-;;;;;;;;;;;;;:::i;68121:35::-;;;;;;;;;;;;;:::i;51011:221::-;;;;;;;;;;-1:-1:-1;51011:221:0;;;;;:::i;:::-;;:::i;66249:148::-;;;;;;;;;;;;;:::i;67498:33::-;;;;;;;;;;;;;:::i;70350:540::-;;;;;;;;;;-1:-1:-1;70350:540:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;65598:87::-;;;;;;;;;;;;;:::i;70234:98::-;;;;;;;;;;;;;:::i;51707:104::-;;;;;;;;;;;;;:::i;69889:130::-;;;;;;;;;;-1:-1:-1;69889:130:0;;;;;:::i;:::-;;:::i;54617:295::-;;;;;;;;;;-1:-1:-1;54617:295:0;;;;;:::i;:::-;;:::i;70128:89::-;;;;;;;;;;;;;:::i;73817:191::-;;;;;;;;;;-1:-1:-1;73817:191:0;;;;;:::i;:::-;;:::i;55812:285::-;;;;;;;;;;-1:-1:-1;55812:285:0;;;;;:::i;:::-;;:::i;51882:792::-;;;;;;;;;;-1:-1:-1;51882:792:0;;;;;:::i;:::-;;:::i;67776:30::-;;;;;;;;;;;;;:::i;67893:35::-;;;;;;;;;;;;;:::i;71562:1120::-;;;;;;:::i;:::-;;:::i;68045:28::-;;;;;;;;;;;;;:::i;54983:164::-;;;;;;;;;;-1:-1:-1;54983:164:0;;;;;:::i;:::-;;:::i;67815:32::-;;;;;;;;;;;;;:::i;69410:88::-;;;;;;;;;;-1:-1:-1;69410:88:0;;;;;:::i;:::-;;:::i;69749:128::-;;;;;;;;;;-1:-1:-1;69749:128:0;;;;;:::i;:::-;;:::i;73407:398::-;;;;;;;;;;-1:-1:-1;73407:398:0;;;;;:::i;:::-;;:::i;66552:244::-;;;;;;;;;;-1:-1:-1;66552:244:0;;;;;:::i;:::-;;:::i;69308:88::-;;;;;;;;;;-1:-1:-1;69308:88:0;;;;;:::i;:::-;;:::i;68080:34::-;;;;;;;;;;;;;:::i;67941:39::-;;;;;;;;;;-1:-1:-1;67941:39:0;;;;;:::i;:::-;;:::i;67599:27::-;;;;;;;;;;;;;:::i;10253:150::-;-1:-1:-1;;;;;;10362:33:0;;10338:4;10362:33;;;;;;;;;;;;;10253:150;;;;:::o;51538:100::-;51625:5;51618:12;;;;;;;;-1:-1:-1;;51618:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51592:13;;51618:12;;51625:5;;51618:12;;51625:5;51618:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51538:100;:::o;54324:221::-;54400:7;54428:16;54436:7;54428;:16::i;:::-;54420:73;;;;-1:-1:-1;;;54420:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;54513:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;54513:24:0;;54324:221::o;53854:404::-;53935:13;53951:23;53966:7;53951:14;:23::i;:::-;53935:39;;53999:5;-1:-1:-1;;;;;53993:11:0;:2;-1:-1:-1;;;;;53993:11:0;;;53985:57;;;;-1:-1:-1;;;53985:57:0;;;;;;;:::i;:::-;54079:5;-1:-1:-1;;;;;54063:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;54063:21:0;;:69;;;;54088:44;54112:5;54119:12;:10;:12::i;54088:44::-;54055:161;;;;-1:-1:-1;;;54055:161:0;;;;;;;:::i;:::-;54229:21;54238:2;54242:7;54229:8;:21::i;:::-;53854:404;;;:::o;69510:124::-;65829:12;:10;:12::i;:::-;-1:-1:-1;;;;;65818:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65818:23:0;;65810:68;;;;-1:-1:-1;;;65810:68:0;;;;;;;:::i;:::-;69595:31;;::::1;::::0;:14:::1;::::0;:31:::1;::::0;::::1;::::0;::::1;:::i;:::-;;69510:124:::0;:::o;53332:211::-;53393:7;53514:21;:12;:19;:21::i;:::-;53507:28;;53332:211;:::o;68802:494::-;65829:12;:10;:12::i;:::-;-1:-1:-1;;;;;65818:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65818:23:0;;65810:68;;;;-1:-1:-1;;;65810:68:0;;;;;;;:::i;:::-;68896:11:::1;68910:13;:11;:13::i;:::-;68896:27;;68959:1;68942:14;:18;:50;;;;;68982:10;;68964:14;:28;;68942:50;68934:95;;;;-1:-1:-1::0;;;68934:95:0::1;;;;;;;:::i;:::-;69045:6;69040:195;69061:14;69057:1;:18;69040:195;;;69155:8;::::0;69115:10;;::::1;::::0;69144:19;::::1;69140:84;;;69183:25;69193:3;69198:9;69183;:25::i;:::-;-1:-1:-1::0;69077:3:0::1;;69040:195;;;-1:-1:-1::0;69258:10:0::1;::::0;:30:::1;::::0;69273:14;69258::::1;:30::i;:::-;69245:10;:43:::0;-1:-1:-1;;;68802:494:0:o;55214:305::-;55375:41;55394:12;:10;:12::i;:::-;55408:7;55375:18;:41::i;:::-;55367:103;;;;-1:-1:-1;;;55367:103:0;;;;;;;:::i;:::-;55483:28;55493:4;55499:2;55503:7;55483:9;:28::i;70904:643::-;70984:12;;;;70976:56;;;;-1:-1:-1;;;70976:56:0;;;;;;;:::i;:::-;71068:1;71051:14;:18;:54;;;;;67765:2;71073:14;:32;;71051:54;71043:101;;;;-1:-1:-1;;;71043:101:0;;;;;;;:::i;:::-;71200:8;;71163:33;71181:14;71163:13;:11;:13::i;:::-;:17;;:33::i;:::-;:45;;71155:98;;;;-1:-1:-1;;;71155:98:0;;;;;;;:::i;:::-;71285:8;;:28;;71298:14;71285:12;:28::i;:::-;71272:9;:41;;71264:85;;;;-1:-1:-1;;;71264:85:0;;;;;;;:::i;:::-;71374:6;71370:168;71390:14;71386:1;:18;71370:168;;;71446:8;;71430:13;:11;:13::i;:::-;:24;71426:101;;;71475:36;71485:10;71497:13;:11;:13::i;:::-;71475:9;:36::i;:::-;71406:3;;71370:168;;53094:162;-1:-1:-1;;;;;53218:20:0;;53191:7;53218:20;;;:13;:20;;;;;:30;;53242:5;53218:23;:30::i;:::-;53211:37;;53094:162;;;;;:::o;70027:89::-;65829:12;:10;:12::i;:::-;-1:-1:-1;;;;;65818:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65818:23:0;;65810:68;;;;-1:-1:-1;;;65810:68:0;;;;;;;:::i;:::-;70096:12:::1;::::0;;-1:-1:-1;;70080:28:0;::::1;70096:12;::::0;;::::1;70095:13;70080:28;::::0;;70027:89::o;68163:48::-;;;;;;;;;;;;;:::o;68448:131::-;65829:12;:10;:12::i;:::-;-1:-1:-1;;;;;65818:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65818:23:0;;65810:68;;;;-1:-1:-1;;;65810:68:0;;;;;;;:::i;:::-;68543:28:::1;::::0;68511:21:::1;::::0;68543:10:::1;::::0;:28;::::1;;;::::0;68511:21;;68496:12:::1;68543:28:::0;68496:12;68543:28;68511:21;68543:10;:28;::::1;;;;;;;;;;;;;::::0;::::1;;;;68589:202:::0;68652:7;68689:13;:11;:13::i;:::-;68677:8;:25;;68669:75;;;;-1:-1:-1;;;68669:75:0;;;;;;;:::i;:::-;-1:-1:-1;68758:26:0;;;;:16;:26;;;;;;;68589:202::o;55590:151::-;55694:39;55711:4;55717:2;55721:7;55694:39;;;;;;;;;;;;:16;:39::i;72697:698::-;72824:15;;72799:4;;72824:15;;;;;72816:63;;;;-1:-1:-1;;;72816:63:0;;;;;;;:::i;:::-;72928:5;-1:-1:-1;;;;;72898:35:0;:26;72913:10;72898:14;:26::i;:::-;-1:-1:-1;;;;;72898:35:0;;72890:75;;;;-1:-1:-1;;;72890:75:0;;;;;;;:::i;:::-;73003:19;;73041:23;;-1:-1:-1;;;73041:23:0;;-1:-1:-1;;;;;73003:19:0;;;;73068:10;;73003:19;;73041:15;;:23;;73057:6;;73041:23;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;73041:37:0;;73033:109;;;;-1:-1:-1;;;73033:109:0;;;;;;;:::i;:::-;73178:23;;-1:-1:-1;;;73178:23:0;;-1:-1:-1;;;;;73152:24:0;;;;;;;73178:15;;:23;;73194:6;;73178:23;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;73202:12;;73152:72;;-1:-1:-1;;;;;;73152:72:0;;;;;;;;;;-1:-1:-1;;;;;73202:12:0;;73216:6;;73152:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;73237:28:0;;;;:16;:28;;;;;;;:42;;;73295:60;;;-1:-1:-1;73295:60:0;;73318:10;;73254;;73268:11;;73295:60;:::i;:::-;;;;;;;;73383:4;73376:11;;;72697:698;;;;;;;:::o;53620:172::-;53695:7;;53737:22;:12;53753:5;53737:15;:22::i;:::-;-1:-1:-1;53715:44:0;53620:172;-1:-1:-1;;;53620:172:0:o;69642:99::-;65829:12;:10;:12::i;:::-;-1:-1:-1;;;;;65818:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65818:23:0;;65810:68;;;;-1:-1:-1;;;65810:68:0;;;;;;;:::i;:::-;69713:20:::1;69725:7;69713:11;:20::i;:::-;69642:99:::0;:::o;74147:551::-;74210:15;74239:18;74260:17;74270:6;74260:9;:17::i;:::-;74239:38;-1:-1:-1;74292:15:0;74288:403;;74369:15;;;74382:1;74369:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74362:22;;;;;74288:403;74417:22;74455:10;74442:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74417:49;;74481:13;74509:143;74533:10;74525:5;:18;74509:143;;;74589:8;:46;74599:34;74619:6;74627:5;74599:19;:34::i;:::-;74589:46;;;;;;;;;;;;;;-1:-1:-1;74589:46:0;74573:62;;;;;;;;;;;-1:-1:-1;;74573:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;74589:46;;74573:62;;;74589:46;74573:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:6;74580:5;74573:13;;;;;;;;;;;;;;;;;:62;74545:7;;74509:143;;;-1:-1:-1;74673:6:0;-1:-1:-1;74666:13:0;;-1:-1:-1;74666:13:0;51294:177;51366:7;51393:70;51410:7;51393:70;;;;;;;;;;;;;;;;;:12;;:70;:16;:70::i;67727:40::-;67765:2;67727:40;:::o;67854:32::-;;;;;;;;;:::o;52913:97::-;52994:8;52987:15;;;;;;;;-1:-1:-1;;52987:15:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52961:13;;52987:15;;52994:8;;52987:15;;52994:8;52987:15;;;;;;;;;;;;;;;;;;;;;;;;68121:35;;;-1:-1:-1;;;;;68121:35:0;;:::o;51011:221::-;51083:7;-1:-1:-1;;;;;51111:19:0;;51103:74;;;;-1:-1:-1;;;51103:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;51195:20:0;;;;;;:13;:20;;;;;:29;;:27;:29::i;66249:148::-;65829:12;:10;:12::i;:::-;-1:-1:-1;;;;;65818:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65818:23:0;;65810:68;;;;-1:-1:-1;;;65810:68:0;;;;;;;:::i;:::-;66340:6:::1;::::0;66319:40:::1;::::0;66356:1:::1;::::0;-1:-1:-1;;;;;66340:6:0::1;::::0;66319:40:::1;::::0;66356:1;;66319:40:::1;66370:6;:19:::0;;-1:-1:-1;;;;;;66370:19:0::1;::::0;;66249:148::o;67498:33::-;;;;;;;;;;;;;;;-1:-1:-1;;67498:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;70350:540::-;70411:16;70441:18;70462:17;70472:6;70462:9;:17::i;:::-;70441:38;-1:-1:-1;70494:15:0;70490:393;;70571:16;;;70585:1;70571:16;;;;;;;;;;;;70490:393;70620:23;70660:10;70646:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;70646:25:0;;70620:51;;70686:13;70714:130;70738:10;70730:5;:18;70714:130;;;70794:34;70814:6;70822:5;70794:19;:34::i;:::-;70778:6;70785:5;70778:13;;;;;;;;;;;;;;;;;:50;70750:7;;70714:130;;65598:87;65671:6;;-1:-1:-1;;;;;65671:6:0;65598:87;:::o;70234:98::-;65829:12;:10;:12::i;:::-;-1:-1:-1;;;;;65818:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65818:23:0;;65810:68;;;;-1:-1:-1;;;65810:68:0;;;;;;;:::i;:::-;70309:15:::1;::::0;;-1:-1:-1;;70290:34:0;::::1;70309:15:::0;;;;::::1;;;70308:16;70290:34:::0;;::::1;;::::0;;70234:98::o;51707:104::-;51796:7;51789:14;;;;;;;;-1:-1:-1;;51789:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51763:13;;51789:14;;51796:7;;51789:14;;51796:7;51789:14;;;;;;;;;;;;;;;;;;;;;;;;69889:130;65829:12;:10;:12::i;:::-;-1:-1:-1;;;;;65818:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65818:23:0;;65810:68;;;;-1:-1:-1;;;65810:68:0;;;;;;;:::i;:::-;69974:19:::1;:37:::0;;-1:-1:-1;;;;;;69974:37:0::1;-1:-1:-1::0;;;;;69974:37:0;;;::::1;::::0;;;::::1;::::0;;69889:130::o;54617:295::-;54732:12;:10;:12::i;:::-;-1:-1:-1;;;;;54720:24:0;:8;-1:-1:-1;;;;;54720:24:0;;;54712:62;;;;-1:-1:-1;;;54712:62:0;;;;;;;:::i;:::-;54832:8;54787:18;:32;54806:12;:10;:12::i;:::-;-1:-1:-1;;;;;54787:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;54787:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;54787:53:0;;;;;;;;;;;54871:12;:10;:12::i;:::-;-1:-1:-1;;;;;54856:48:0;;54895:8;54856:48;;;;;;:::i;:::-;;;;;;;;54617:295;;:::o;70128:89::-;65829:12;:10;:12::i;:::-;-1:-1:-1;;;;;65818:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65818:23:0;;65810:68;;;;-1:-1:-1;;;65810:68:0;;;;;;;:::i;:::-;70197:12:::1;::::0;;-1:-1:-1;;70181:28:0;::::1;70197:12;::::0;;;::::1;;;70196:13;70181:28:::0;;::::1;;::::0;;70128:89::o;73817:191::-;73874:13;73920;:11;:13::i;:::-;73909:8;:24;73900:64;;;;-1:-1:-1;;;73900:64:0;;;;;;;:::i;:::-;73982:18;;;;:8;:18;;;;;;;;;73975:25;;;;;;-1:-1:-1;;73975:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73982:18;;73975:25;;73982:18;73975:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73817:191;;;:::o;55812:285::-;55944:41;55963:12;:10;:12::i;:::-;55977:7;55944:18;:41::i;:::-;55936:103;;;;-1:-1:-1;;;55936:103:0;;;;;;;:::i;:::-;56050:39;56064:4;56070:2;56074:7;56083:5;56050:13;:39::i;:::-;55812:285;;;;:::o;51882:792::-;51955:13;51989:16;51997:7;51989;:16::i;:::-;51981:76;;;;-1:-1:-1;;;51981:76:0;;;;;;;:::i;:::-;52070:23;52096:19;;;:10;:19;;;;;;;;52070:45;;;;;;;;;;;-1:-1:-1;;52070:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;52096:19;;52070:45;;;52096:19;52070:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52126:18;52147:9;:7;:9::i;:::-;52126:30;;52238:4;52232:18;52254:1;52232:23;52228:72;;;-1:-1:-1;52279:9:0;-1:-1:-1;52272:16:0;;52228:72;52404:23;;:27;52400:108;;52479:4;52485:9;52462:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52448:48;;;;;;52400:108;52640:4;52646:18;:7;:16;:18::i;:::-;52623:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52609:57;;;;51882:792;;;:::o;67776:30::-;;;;:::o;67893:35::-;;;;;;;;;:::o;71562:1120::-;71676:12;;;;;;;71668:56;;;;-1:-1:-1;;;71668:56:0;;;;;;;:::i;:::-;71760:8;;71743:13;:11;:13::i;:::-;:25;;71735:78;;;;-1:-1:-1;;;71735:78:0;;;;;;;:::i;:::-;71848:18;;71885:27;;-1:-1:-1;;;71885:27:0;;-1:-1:-1;;;;;71848:18:0;;;;71916:10;;71848:18;;71885:14;;:27;;71900:11;;71885:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;71885:41:0;;71877:114;;;;-1:-1:-1;;;71877:114:0;;;;;;;:::i;:::-;72009:27;;-1:-1:-1;;;72009:27:0;;72040:10;;-1:-1:-1;;;;;72009:14:0;;;;;:27;;72024:11;;72009:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;72009:41:0;;72001:114;;;;-1:-1:-1;;;72001:114:0;;;;;;;:::i;:::-;72133:27;;-1:-1:-1;;;72133:27:0;;72164:10;;-1:-1:-1;;;;;72133:14:0;;;;;:27;;72148:11;;72133:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;72133:41:0;;72125:114;;;;-1:-1:-1;;;72125:114:0;;;;;;;:::i;:::-;72283:27;;-1:-1:-1;;;72283:27:0;;-1:-1:-1;;;;;72258:23:0;;;;;;;72283:14;;:27;;72298:11;;72283:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;72311:12;;72258:80;;-1:-1:-1;;;;;;72258:80:0;;;;;;;;;;-1:-1:-1;;;;;72311:12:0;;72325:11;;72258:80;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;72373:27:0;;-1:-1:-1;;;72373:27:0;;-1:-1:-1;;;;;72348:23:0;;;-1:-1:-1;72348:23:0;;-1:-1:-1;72348:23:0;;72373:14;;:27;;72388:11;;72373:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;72401:12;;72348:80;;-1:-1:-1;;;;;;72348:80:0;;;;;;;;;;-1:-1:-1;;;;;72401:12:0;;72415:11;;72348:80;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;72470:27:0;;-1:-1:-1;;;72470:27:0;;-1:-1:-1;;;;;72445:23:0;;;-1:-1:-1;72445:23:0;;-1:-1:-1;72445:23:0;;72470:14;;:27;;72485:11;;72470:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;72498:12;;72445:80;;-1:-1:-1;;;;;;72445:80:0;;;;;;;;;;-1:-1:-1;;;;;72498:12:0;;72512:11;;72445:80;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72545:14;72562:13;:11;:13::i;:::-;72545:30;;72606:8;;72590:13;:11;:13::i;:::-;:24;72586:89;;;72631:32;72641:10;72653:9;72631;:32::i;:::-;71562:1120;;;;;:::o;68045:28::-;;;;:::o;54983:164::-;-1:-1:-1;;;;;55104:25:0;;;55080:4;55104:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;54983:164::o;67815:32::-;;;;;;:::o;69410:88::-;65829:12;:10;:12::i;:::-;-1:-1:-1;;;;;65818:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65818:23:0;;65810:68;;;;-1:-1:-1;;;65810:68:0;;;;;;;:::i;:::-;69473:8:::1;:17:::0;69410:88::o;69749:128::-;65829:12;:10;:12::i;:::-;-1:-1:-1;;;;;65818:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65818:23:0;;65810:68;;;;-1:-1:-1;;;65810:68:0;;;;;;;:::i;:::-;69833:18:::1;:36:::0;;-1:-1:-1;;;;;;69833:36:0::1;-1:-1:-1::0;;;;;69833:36:0;;;::::1;::::0;;;::::1;::::0;;69749:128::o;73407:398::-;73513:10;73492:17;73500:8;73492:7;:17::i;:::-;-1:-1:-1;;;;;73492:31:0;;73484:82;;;;-1:-1:-1;;;73484:82:0;;;;;;;:::i;:::-;73622:18;;;;:8;:18;;;;;;;73609:33;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;73585:20;73598:5;73585:20;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:57;;73577:105;;;;-1:-1:-1;;;73577:105:0;;;;;;;:::i;:::-;73693:18;;;;:8;:18;;;;;;;;:26;;;;;;;;:::i;:::-;;73745:42;73759:10;73771:8;73781:5;73745:42;;;;;;;;:::i;:::-;;;;;;;;73407:398;;:::o;66552:244::-;65829:12;:10;:12::i;:::-;-1:-1:-1;;;;;65818:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65818:23:0;;65810:68;;;;-1:-1:-1;;;65810:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;66641:22:0;::::1;66633:73;;;;-1:-1:-1::0;;;66633:73:0::1;;;;;;;:::i;:::-;66743:6;::::0;66722:38:::1;::::0;-1:-1:-1;;;;;66722:38:0;;::::1;::::0;66743:6:::1;::::0;66722:38:::1;::::0;66743:6:::1;::::0;66722:38:::1;66771:6;:17:::0;;-1:-1:-1;;;;;;66771:17:0::1;-1:-1:-1::0;;;;;66771:17:0;;;::::1;::::0;;;::::1;::::0;;66552:244::o;69308:88::-;65829:12;:10;:12::i;:::-;-1:-1:-1;;;;;65818:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65818:23:0;;65810:68;;;;-1:-1:-1;;;65810:68:0;;;;;;;:::i;:::-;69372:8:::1;:16:::0;69308:88::o;68080:34::-;;;-1:-1:-1;;;;;68080:34:0;;:::o;67941:39::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;67941:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67599:27;;;;:::o;57564:127::-;57629:4;57653:30;:12;57675:7;57653:21;:30::i;798:106::-;886:10;798:106;:::o;63582:192::-;63657:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;63657:29:0;-1:-1:-1;;;;;63657:29:0;;;;;;;;:24;;63711:23;63657:24;63711:14;:23::i;:::-;-1:-1:-1;;;;;63702:46:0;;;;;;;;;;;63582:192;;:::o;44296:123::-;44365:7;44392:19;44400:3;44392:7;:19::i;58556:110::-;58632:26;58642:2;58646:7;58632:26;;;;;;;;;;;;:9;:26::i;14277:158::-;14335:7;14368:1;14363;:6;;14355:49;;;;-1:-1:-1;;;14355:49:0;;;;;;;:::i;:::-;-1:-1:-1;14422:5:0;;;14277:158::o;57858:355::-;57951:4;57976:16;57984:7;57976;:16::i;:::-;57968:73;;;;-1:-1:-1;;;57968:73:0;;;;;;;:::i;:::-;58052:13;58068:23;58083:7;58068:14;:23::i;:::-;58052:39;;58121:5;-1:-1:-1;;;;;58110:16:0;:7;-1:-1:-1;;;;;58110:16:0;;:51;;;;58154:7;-1:-1:-1;;;;;58130:31:0;:20;58142:7;58130:11;:20::i;:::-;-1:-1:-1;;;;;58130:31:0;;58110:51;:94;;;;58165:39;58189:5;58196:7;58165:23;:39::i;60994:599::-;61119:4;-1:-1:-1;;;;;61092:31:0;:23;61107:7;61092:14;:23::i;:::-;-1:-1:-1;;;;;61092:31:0;;61084:85;;;;-1:-1:-1;;;61084:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;61206:16:0;;61198:65;;;;-1:-1:-1;;;61198:65:0;;;;;;;:::i;:::-;61276:39;61297:4;61303:2;61307:7;61276:20;:39::i;:::-;61380:29;61397:1;61401:7;61380:8;:29::i;:::-;-1:-1:-1;;;;;61422:19:0;;;;;;:13;:19;;;;;:35;;61449:7;61422:26;:35::i;:::-;-1:-1:-1;;;;;;61468:17:0;;;;;;:13;:17;;;;;:30;;61490:7;61468:21;:30::i;:::-;-1:-1:-1;61511:29:0;:12;61528:7;61537:2;61511:16;:29::i;:::-;;61577:7;61573:2;-1:-1:-1;;;;;61558:27:0;61567:4;-1:-1:-1;;;;;61558:27:0;;;;;;;;;;;60994:599;;;:::o;13815:179::-;13873:7;13905:5;;;13929:6;;;;13921:46;;;;-1:-1:-1;;;13921:46:0;;;;;;;:::i;14694:220::-;14752:7;14776:6;14772:20;;-1:-1:-1;14791:1:0;14784:8;;14772:20;14815:5;;;14819:1;14815;:5;:1;14839:5;;;;;:10;14831:56;;;;-1:-1:-1;;;14831:56:0;;;;;;;:::i;36087:137::-;36158:7;36193:22;36197:3;36209:5;36193:3;:22::i;44758:236::-;44838:7;;;;44898:22;44902:3;44914:5;44898:3;:22::i;:::-;44867:53;;;;-1:-1:-1;44758:236:0;-1:-1:-1;;;;;44758:236:0:o;62194:100::-;62267:19;;;;:8;;:19;;;;;:::i;46044:213::-;46151:7;46202:44;46207:3;46227;46233:12;46202:4;:44::i;:::-;46194:53;-1:-1:-1;46044:213:0;;;;;;:::o;56979:272::-;57093:28;57103:4;57109:2;57113:7;57093:9;:28::i;:::-;57140:48;57163:4;57169:2;57173:7;57182:5;57140:22;:48::i;:::-;57132:111;;;;-1:-1:-1;;;57132:111:0;;;;;;;:::i;46508:746::-;46564:13;46785:10;46781:53;;-1:-1:-1;46812:10:0;;;;;;;;;;;;-1:-1:-1;;;46812:10:0;;;;;;46781:53;46859:5;46844:12;46900:78;46907:9;;46900:78;;46933:8;;46964:2;46956:10;;;;46900:78;;;46988:19;47020:6;47010:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47010:17:0;-1:-1:-1;47082:5:0;;-1:-1:-1;46988:39:0;-1:-1:-1;;;47054:10:0;;47098:117;47105:9;;47098:117;;47174:2;47167:4;:9;47162:2;:14;47149:29;;47131:6;47138:7;;;;;;;47131:15;;;;;;;;;;;:47;-1:-1:-1;;;;;47131:47:0;;;;;;;;-1:-1:-1;47201:2:0;47193:10;;;;47098:117;;;-1:-1:-1;47239:6:0;46508:746;-1:-1:-1;;;;46508:746:0:o;44057:151::-;44141:4;44165:35;44175:3;44195;44165:9;:35::i;40875:110::-;40958:19;;40875:110::o;58893:250::-;58989:18;58995:2;58999:7;58989:5;:18::i;:::-;59026:54;59057:1;59061:2;59065:7;59074:5;59026:22;:54::i;:::-;59018:117;;;;-1:-1:-1;;;59018:117:0;;;;;;;:::i;35174:137::-;35244:4;35268:35;35276:3;35296:5;35268:7;:35::i;34867:131::-;34934:4;34958:32;34963:3;34983:5;34958:4;:32::i;43480:185::-;43569:4;43593:64;43598:3;43618;-1:-1:-1;;;;;43632:23:0;;43593:4;:64::i;31125:204::-;31220:18;;31192:7;;31220:26;-1:-1:-1;31212:73:0;;;;-1:-1:-1;;;31212:73:0;;;;;;;:::i;:::-;31303:3;:11;;31315:5;31303:18;;;;;;;;;;;;;;;;31296:25;;31125:204;;;;:::o;41340:279::-;41444:19;;41407:7;;;;41444:27;-1:-1:-1;41436:74:0;;;;-1:-1:-1;;;41436:74:0;;;;;;;:::i;:::-;41523:22;41548:3;:12;;41561:5;41548:19;;;;;;;;;;;;;;;;;;41523:44;;41586:5;:10;;;41598:5;:12;;;41578:33;;;;;41340:279;;;;;:::o;42837:319::-;42931:7;42970:17;;;:12;;;:17;;;;;;43021:12;43006:13;42998:36;;;;-1:-1:-1;;;42998:36:0;;;;;;;;:::i;:::-;;43088:3;:12;;43112:1;43101:8;:12;43088:26;;;;;;;;;;;;;;;;;;:33;;;43081:40;;;42837:319;;;;;:::o;62859:604::-;62980:4;63007:15;:2;-1:-1:-1;;;;;63007:13:0;;:15::i;:::-;63002:60;;-1:-1:-1;63046:4:0;63039:11;;63002:60;63072:23;63098:252;-1:-1:-1;;;63211:12:0;:10;:12::i;:::-;63238:4;63257:7;63279:5;63114:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;;;;;63114:181:0;;;;;;;-1:-1:-1;;;;;63114:181:0;;;;;;;;;;;63098:252;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;63098:15:0;;;:252;:15;:252::i;:::-;63072:278;;63361:13;63388:10;63377:32;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;63428:26:0;-1:-1:-1;;;63428:26:0;;-1:-1:-1;;;62859:604:0;;;;;;:::o;40655:125::-;40726:4;40750:17;;;:12;;;;;:17;;;;;;:22;;;40655:125::o;59479:404::-;-1:-1:-1;;;;;59559:16:0;;59551:61;;;;-1:-1:-1;;;59551:61:0;;;;;;;:::i;:::-;59632:16;59640:7;59632;:16::i;:::-;59631:17;59623:58;;;;-1:-1:-1;;;59623:58:0;;;;;;;:::i;:::-;59694:45;59723:1;59727:2;59731:7;59694:20;:45::i;:::-;-1:-1:-1;;;;;59752:17:0;;;;;;:13;:17;;;;;:30;;59774:7;59752:21;:30::i;:::-;-1:-1:-1;59795:29:0;:12;59812:7;59821:2;59795:16;:29::i;:::-;-1:-1:-1;59842:33:0;;59867:7;;-1:-1:-1;;;;;59842:33:0;;;59859:1;;59842:33;;59859:1;;59842:33;59479:404;;:::o;28827:1544::-;28893:4;29032:19;;;:12;;;:19;;;;;;29068:15;;29064:1300;;29503:18;;-1:-1:-1;;29454:14:0;;;;29503:22;;;;29430:21;;29503:3;;:22;;29790;;;;;;;;;;;;;;29770:42;;29936:9;29907:3;:11;;29919:13;29907:26;;;;;;;;;;;;;;;;;;;:38;;;;30013:23;;;30055:1;30013:12;;;:23;;;;;;30039:17;;;30013:43;;30165:17;;30013:3;;30165:17;;;;;;;;;;;;;;;;;;;;;;30260:3;:12;;:19;30273:5;30260:19;;;;;;;;;;;30253:26;;;30303:4;30296:11;;;;;;;;29064:1300;30347:5;30340:12;;;;;28237:414;28300:4;28322:21;28332:3;28337:5;28322:9;:21::i;:::-;28317:327;;-1:-1:-1;28360:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;28543:18;;28521:19;;;:12;;;:19;;;;;;:40;;;;28576:11;;28317:327;-1:-1:-1;28627:5:0;28620:12;;38155:692;38231:4;38366:17;;;:12;;;:17;;;;;;38400:13;38396:444;;-1:-1:-1;;38485:38:0;;;;;;;;;;;;;;;;;;38467:57;;;;;;;;:12;:57;;;;;;;;;;;;;;;;;;;;;;;;38682:19;;38662:17;;;:12;;;:17;;;;;;;:39;38716:11;;38396:444;38796:5;38760:3;:12;;38784:1;38773:8;:12;38760:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;38823:5;38816:12;;;;;19256:422;19623:20;19662:8;;;19256:422::o;22174:195::-;22277:12;22309:52;22331:6;22339:4;22345:1;22348:12;22277;23478:18;23489:6;23478:10;:18::i;:::-;23470:60;;;;-1:-1:-1;;;23470:60:0;;;;;;;:::i;:::-;23604:12;23618:23;23645:6;-1:-1:-1;;;;;23645:11:0;23665:5;23673:4;23645:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23603:75;;;;23696:52;23714:7;23723:10;23735:12;23696:17;:52::i;:::-;23689:59;23226:530;-1:-1:-1;;;;;;;23226:530:0:o;25766:742::-;25881:12;25910:7;25906:595;;;-1:-1:-1;25941:10:0;25934:17;;25906:595;26055:17;;:21;26051:439;;26318:10;26312:17;26379:15;26366:10;26362:2;26358:19;26351:44;26266:148;26461:12;26454:20;;-1:-1:-1;;;26454:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:589:1;;110:18;151:2;143:6;140:14;137:2;;;157:9;137:2;197;191:9;270:2;247:17;;-1:-1:-1;;243:31:1;231:44;;277:4;227:55;297:18;;;317:22;;;294:46;291:2;;;343:9;291:2;370;363:22;418;;;403:6;-1:-1:-1;403:6:1;455:16;;;452:25;-1:-1:-1;449:2:1;;;490:1;487;480:12;449:2;540:6;535:3;528:4;520:6;516:17;503:44;595:1;588:4;579:6;571;567:19;563:30;556:41;;;90:513;;;;;:::o;608:233::-;;706:3;699:4;691:6;687:17;683:27;673:2;;728:5;721;714:20;673:2;754:81;831:3;822:6;809:20;802:4;794:6;790:17;754:81;:::i;846:259::-;;958:2;946:9;937:7;933:23;929:32;926:2;;;979:6;971;964:22;926:2;1023:9;1010:23;1042:33;1069:5;1042:33;:::i;1110:263::-;;1233:2;1221:9;1212:7;1208:23;1204:32;1201:2;;;1254:6;1246;1239:22;1201:2;1291:9;1285:16;1310:33;1337:5;1310:33;:::i;1378:402::-;;;1507:2;1495:9;1486:7;1482:23;1478:32;1475:2;;;1528:6;1520;1513:22;1475:2;1572:9;1559:23;1591:33;1618:5;1591:33;:::i;:::-;1643:5;-1:-1:-1;1700:2:1;1685:18;;1672:32;1713:35;1672:32;1713:35;:::i;:::-;1767:7;1757:17;;;1465:315;;;;;:::o;1785:470::-;;;;1931:2;1919:9;1910:7;1906:23;1902:32;1899:2;;;1952:6;1944;1937:22;1899:2;1996:9;1983:23;2015:33;2042:5;2015:33;:::i;:::-;2067:5;-1:-1:-1;2124:2:1;2109:18;;2096:32;2137:35;2096:32;2137:35;:::i;:::-;1889:366;;2191:7;;-1:-1:-1;;;2245:2:1;2230:18;;;;2217:32;;1889:366::o;2260:830::-;;;;;2432:3;2420:9;2411:7;2407:23;2403:33;2400:2;;;2454:6;2446;2439:22;2400:2;2498:9;2485:23;2517:33;2544:5;2517:33;:::i;:::-;2569:5;-1:-1:-1;2626:2:1;2611:18;;2598:32;2639:35;2598:32;2639:35;:::i;:::-;2693:7;-1:-1:-1;2747:2:1;2732:18;;2719:32;;-1:-1:-1;2802:2:1;2787:18;;2774:32;2829:18;2818:30;;2815:2;;;2866:6;2858;2851:22;2815:2;2894:22;;2947:4;2939:13;;2935:27;-1:-1:-1;2925:2:1;;2981:6;2973;2966:22;2925:2;3009:75;3076:7;3071:2;3058:16;3053:2;3049;3045:11;3009:75;:::i;:::-;2999:85;;;2390:700;;;;;;;:::o;3095:438::-;;;3221:2;3209:9;3200:7;3196:23;3192:32;3189:2;;;3242:6;3234;3227:22;3189:2;3286:9;3273:23;3305:33;3332:5;3305:33;:::i;:::-;3357:5;-1:-1:-1;3414:2:1;3399:18;;3386:32;3456:15;;3449:23;3437:36;;3427:2;;3492:6;3484;3477:22;3538:327;;;3667:2;3655:9;3646:7;3642:23;3638:32;3635:2;;;3688:6;3680;3673:22;3635:2;3732:9;3719:23;3751:33;3778:5;3751:33;:::i;:::-;3803:5;3855:2;3840:18;;;;3827:32;;-1:-1:-1;;;3625:240:1:o;3870:464::-;;;;;4033:3;4021:9;4012:7;4008:23;4004:33;4001:2;;;4055:6;4047;4040:22;4001:2;4099:9;4086:23;4118:33;4145:5;4118:33;:::i;:::-;4170:5;4222:2;4207:18;;4194:32;;-1:-1:-1;4273:2:1;4258:18;;4245:32;;4324:2;4309:18;4296:32;;-1:-1:-1;3991:343:1;-1:-1:-1;;;3991:343:1:o;4339:194::-;;4462:2;4450:9;4441:7;4437:23;4433:32;4430:2;;;4483:6;4475;4468:22;4430:2;-1:-1:-1;4511:16:1;;4420:113;-1:-1:-1;4420:113:1:o;4538:257::-;;4649:2;4637:9;4628:7;4624:23;4620:32;4617:2;;;4670:6;4662;4655:22;4617:2;4714:9;4701:23;4733:32;4759:5;4733:32;:::i;4800:261::-;;4922:2;4910:9;4901:7;4897:23;4893:32;4890:2;;;4943:6;4935;4928:22;4890:2;4980:9;4974:16;4999:32;5025:5;4999:32;:::i;5066:344::-;;5188:2;5176:9;5167:7;5163:23;5159:32;5156:2;;;5209:6;5201;5194:22;5156:2;5254:9;5241:23;5287:18;5279:6;5276:30;5273:2;;;5324:6;5316;5309:22;5273:2;5352:52;5396:7;5387:6;5376:9;5372:22;5352:52;:::i;5415:190::-;;5527:2;5515:9;5506:7;5502:23;5498:32;5495:2;;;5548:6;5540;5533:22;5495:2;-1:-1:-1;5576:23:1;;5485:120;-1:-1:-1;5485:120:1:o;5610:412::-;;;5749:2;5737:9;5728:7;5724:23;5720:32;5717:2;;;5770:6;5762;5755:22;5717:2;5811:9;5798:23;5788:33;;5872:2;5861:9;5857:18;5844:32;5899:18;5891:6;5888:30;5885:2;;;5936:6;5928;5921:22;5885:2;5964:52;6008:7;5999:6;5988:9;5984:22;5964:52;:::i;:::-;5954:62;;;5707:315;;;;;:::o;6027:326::-;;;;6173:2;6161:9;6152:7;6148:23;6144:32;6141:2;;;6194:6;6186;6179:22;6141:2;-1:-1:-1;;6222:23:1;;;6292:2;6277:18;;6264:32;;-1:-1:-1;6343:2:1;6328:18;;;6315:32;;6131:222;-1:-1:-1;6131:222:1:o;6358:259::-;;6439:5;6433:12;6466:6;6461:3;6454:19;6482:63;6538:6;6531:4;6526:3;6522:14;6515:4;6508:5;6504:16;6482:63;:::i;:::-;6599:2;6578:15;-1:-1:-1;;6574:29:1;6565:39;;;;6606:4;6561:50;;6409:208;-1:-1:-1;;6409:208:1:o;6622:274::-;;6789:6;6783:13;6805:53;6851:6;6846:3;6839:4;6831:6;6827:17;6805:53;:::i;:::-;6874:16;;;;;6759:137;-1:-1:-1;;6759:137:1:o;6901:830::-;;7060:3;7095:6;7089:13;7121:1;7153:2;7142:9;7138:18;7170:1;7165:126;;;;7305:1;7300:406;;;;7131:575;;7165:126;-1:-1:-1;;7198:24:1;;7186:37;;7271:1;7256:17;;7275:4;7252:28;7243:38;;;-1:-1:-1;7165:126:1;;7300:406;7350:1;7339:9;7335:17;7377:6;7372:3;7365:19;7407:4;7454:2;7449:3;7439:18;7479:3;7495:165;7509:6;7506:1;7503:13;7495:165;;;7587:14;;7574:11;;;7567:35;7630:16;;;;7524:10;;7495:165;;;-1:-1:-1;;;7680:16:1;;;-1:-1:-1;7131:575:1;-1:-1:-1;7722:3:1;;7039:692;-1:-1:-1;;;;;7039:692:1:o;7736:470::-;;7953:6;7947:13;7969:53;8015:6;8010:3;8003:4;7995:6;7991:17;7969:53;:::i;:::-;8085:13;;8044:16;;;;8107:57;8085:13;8044:16;8141:4;8129:17;;8107:57;:::i;:::-;8180:20;;7923:283;-1:-1:-1;;;;7923:283:1:o;8211:203::-;-1:-1:-1;;;;;8375:32:1;;;;8357:51;;8345:2;8330:18;;8312:102::o;8419:506::-;-1:-1:-1;;;;;8704:15:1;;;8686:34;;8756:15;;8751:2;8736:18;;8729:43;8803:2;8788:18;;8781:34;;;8851:3;8846:2;8831:18;;8824:31;;;8419:506;;8872:47;;8899:19;;8891:6;8872:47;:::i;:::-;8864:55;8638:287;-1:-1:-1;;;;;;8638:287:1:o;8930:397::-;;9172:1;9168;9163:3;9159:11;9155:19;9147:6;9143:32;9132:9;9125:51;9212:6;9207:2;9196:9;9192:18;9185:34;9255:2;9250;9239:9;9235:18;9228:30;9275:46;9317:2;9306:9;9302:18;9294:6;9275:46;:::i;:::-;9267:54;9115:212;-1:-1:-1;;;;;9115:212:1:o;9332:353::-;-1:-1:-1;;;;;9560:32:1;;;;9542:51;;9624:2;9609:18;;9602:34;;;;9667:2;9652:18;;9645:34;9530:2;9515:18;;9497:188::o;9690:375::-;-1:-1:-1;;;;;9948:15:1;;;9930:34;;10000:15;;;;9995:2;9980:18;;9973:43;10047:2;10032:18;;10025:34;;;;9880:2;9865:18;;9847:218::o;10070:808::-;;10261:2;10301;10290:9;10286:18;10331:2;10320:9;10313:21;10354:6;10389;10383:13;10420:6;10412;10405:22;10458:2;10447:9;10443:18;10436:25;;10521:2;10515;10507:6;10503:15;10492:9;10488:31;10484:40;10470:54;;10559:2;10551:6;10547:15;10580:4;10593:256;10607:6;10604:1;10601:13;10593:256;;;10700:2;10696:7;10684:9;10676:6;10672:22;10668:36;10663:3;10656:49;10728:41;10762:6;10753;10747:13;10728:41;:::i;:::-;10718:51;-1:-1:-1;10827:12:1;;;;10792:15;;;;10629:1;10622:9;10593:256;;;-1:-1:-1;10866:6:1;;10241:637;-1:-1:-1;;;;;;;10241:637:1:o;10883:635::-;11054:2;11106:21;;;11176:13;;11079:18;;;11198:22;;;10883:635;;11054:2;11277:15;;;;11251:2;11236:18;;;10883:635;11323:169;11337:6;11334:1;11331:13;11323:169;;;11398:13;;11386:26;;11467:15;;;;11432:12;;;;11359:1;11352:9;11323:169;;;-1:-1:-1;11509:3:1;;11034:484;-1:-1:-1;;;;;;11034:484:1:o;11523:187::-;11688:14;;11681:22;11663:41;;11651:2;11636:18;;11618:92::o;11715:221::-;;11864:2;11853:9;11846:21;11884:46;11926:2;11915:9;11911:18;11903:6;11884:46;:::i;11941:398::-;12143:2;12125:21;;;12182:2;12162:18;;;12155:30;12221:34;12216:2;12201:18;;12194:62;-1:-1:-1;;;12287:2:1;12272:18;;12265:32;12329:3;12314:19;;12115:224::o;12344:424::-;12546:2;12528:21;;;12585:2;12565:18;;;12558:30;12624:34;12619:2;12604:18;;12597:62;12695:30;12690:2;12675:18;;12668:58;12758:3;12743:19;;12518:250::o;12773:414::-;12975:2;12957:21;;;13014:2;12994:18;;;12987:30;13053:34;13048:2;13033:18;;13026:62;-1:-1:-1;;;13119:2:1;13104:18;;13097:48;13177:3;13162:19;;12947:240::o;13192:424::-;13394:2;13376:21;;;13433:2;13413:18;;;13406:30;13472:34;13467:2;13452:18;;13445:62;13543:30;13538:2;13523:18;;13516:58;13606:3;13591:19;;13366:250::o;13621:401::-;13823:2;13805:21;;;13862:2;13842:18;;;13835:30;13901:34;13896:2;13881:18;;13874:62;-1:-1:-1;;;13967:2:1;13952:18;;13945:35;14012:3;13997:19;;13795:227::o;14027:402::-;14229:2;14211:21;;;14268:2;14248:18;;;14241:30;14307:34;14302:2;14287:18;;14280:62;-1:-1:-1;;;14373:2:1;14358:18;;14351:36;14419:3;14404:19;;14201:228::o;14434:424::-;14636:2;14618:21;;;14675:2;14655:18;;;14648:30;14714:34;14709:2;14694:18;;14687:62;14785:30;14780:2;14765:18;;14758:58;14848:3;14833:19;;14608:250::o;14863:352::-;15065:2;15047:21;;;15104:2;15084:18;;;15077:30;15143;15138:2;15123:18;;15116:58;15206:2;15191:18;;15037:178::o;15220:351::-;15422:2;15404:21;;;15461:2;15441:18;;;15434:30;15500:29;15495:2;15480:18;;15473:57;15562:2;15547:18;;15394:177::o;15576:398::-;15778:2;15760:21;;;15817:2;15797:18;;;15790:30;15856:34;15851:2;15836:18;;15829:62;-1:-1:-1;;;15922:2:1;15907:18;;15900:32;15964:3;15949:19;;15750:224::o;15979:404::-;16181:2;16163:21;;;16220:2;16200:18;;;16193:30;16259:34;16254:2;16239:18;;16232:62;-1:-1:-1;;;16325:2:1;16310:18;;16303:38;16373:3;16358:19;;16153:230::o;16388:356::-;16590:2;16572:21;;;16609:18;;;16602:30;16668:34;16663:2;16648:18;;16641:62;16735:2;16720:18;;16562:182::o;16749:399::-;16951:2;16933:21;;;16990:2;16970:18;;;16963:30;17029:34;17024:2;17009:18;;17002:62;-1:-1:-1;;;17095:2:1;17080:18;;17073:33;17138:3;17123:19;;16923:225::o;17153:400::-;17355:2;17337:21;;;17394:2;17374:18;;;17367:30;17433:34;17428:2;17413:18;;17406:62;-1:-1:-1;;;17499:2:1;17484:18;;17477:34;17543:3;17528:19;;17327:226::o;17558:349::-;17760:2;17742:21;;;17799:2;17779:18;;;17772:30;17838:27;17833:2;17818:18;;17811:55;17898:2;17883:18;;17732:175::o;17912:355::-;18114:2;18096:21;;;18153:2;18133:18;;;18126:30;18192:33;18187:2;18172:18;;18165:61;18258:2;18243:18;;18086:181::o;18272:354::-;18474:2;18456:21;;;18513:2;18493:18;;;18486:30;18552:32;18547:2;18532:18;;18525:60;18617:2;18602:18;;18446:180::o;19038:408::-;19240:2;19222:21;;;19279:2;19259:18;;;19252:30;19318:34;19313:2;19298:18;;19291:62;-1:-1:-1;;;19384:2:1;19369:18;;19362:42;19436:3;19421:19;;19212:234::o;19451:423::-;19653:2;19635:21;;;19692:2;19672:18;;;19665:30;19731:34;19726:2;19711:18;;19704:62;19802:29;19797:2;19782:18;;19775:57;19864:3;19849:19;;19625:249::o;19879:349::-;20081:2;20063:21;;;20120:2;20100:18;;;20093:30;20159:27;20154:2;20139:18;;20132:55;20219:2;20204:18;;20053:175::o;20233:420::-;20435:2;20417:21;;;20474:2;20454:18;;;20447:30;20513:34;20508:2;20493:18;;20486:62;20584:26;20579:2;20564:18;;20557:54;20643:3;20628:19;;20407:246::o;20658:402::-;20860:2;20842:21;;;20899:2;20879:18;;;20872:30;20938:34;20933:2;20918:18;;20911:62;-1:-1:-1;;;21004:2:1;20989:18;;20982:36;21050:3;21035:19;;20832:228::o;21065:406::-;21267:2;21249:21;;;21306:2;21286:18;;;21279:30;21345:34;21340:2;21325:18;;21318:62;-1:-1:-1;;;21411:2:1;21396:18;;21389:40;21461:3;21446:19;;21239:232::o;21476:398::-;21678:2;21660:21;;;21717:2;21697:18;;;21690:30;21756:34;21751:2;21736:18;;21729:62;-1:-1:-1;;;21822:2:1;21807:18;;21800:32;21864:3;21849:19;;21650:224::o;21879:356::-;22081:2;22063:21;;;22100:18;;;22093:30;22159:34;22154:2;22139:18;;22132:62;22226:2;22211:18;;22053:182::o;22240:397::-;22442:2;22424:21;;;22481:2;22461:18;;;22454:30;22520:34;22515:2;22500:18;;22493:62;-1:-1:-1;;;22586:2:1;22571:18;;22564:31;22627:3;22612:19;;22414:223::o;22642:408::-;22844:2;22826:21;;;22883:2;22863:18;;;22856:30;22922:34;22917:2;22902:18;;22895:62;-1:-1:-1;;;22988:2:1;22973:18;;22966:42;23040:3;23025:19;;22816:234::o;23055:356::-;23257:2;23239:21;;;23276:18;;;23269:30;23335:34;23330:2;23315:18;;23308:62;23402:2;23387:18;;23229:182::o;23416:405::-;23618:2;23600:21;;;23657:2;23637:18;;;23630:30;23696:34;23691:2;23676:18;;23669:62;-1:-1:-1;;;23762:2:1;23747:18;;23740:39;23811:3;23796:19;;23590:231::o;23826:411::-;24028:2;24010:21;;;24067:2;24047:18;;;24040:30;24106:34;24101:2;24086:18;;24079:62;-1:-1:-1;;;24172:2:1;24157:18;;24150:45;24227:3;24212:19;;24000:237::o;24242:399::-;24444:2;24426:21;;;24483:2;24463:18;;;24456:30;24522:34;24517:2;24502:18;;24495:62;-1:-1:-1;;;24588:2:1;24573:18;;24566:33;24631:3;24616:19;;24416:225::o;24646:397::-;24848:2;24830:21;;;24887:2;24867:18;;;24860:30;24926:34;24921:2;24906:18;;24899:62;-1:-1:-1;;;24992:2:1;24977:18;;24970:31;25033:3;25018:19;;24820:223::o;25048:413::-;25250:2;25232:21;;;25289:2;25269:18;;;25262:30;25328:34;25323:2;25308:18;;25301:62;-1:-1:-1;;;25394:2:1;25379:18;;25372:47;25451:3;25436:19;;25222:239::o;25466:353::-;25668:2;25650:21;;;25707:2;25687:18;;;25680:30;25746:31;25741:2;25726:18;;25719:59;25810:2;25795:18;;25640:179::o;25824:355::-;26026:2;26008:21;;;26065:2;26045:18;;;26038:30;26104:33;26099:2;26084:18;;26077:61;26170:2;26155:18;;25998:181::o;26184:351::-;26386:2;26368:21;;;26425:2;26405:18;;;26398:30;26464:29;26459:2;26444:18;;26437:57;26526:2;26511:18;;26358:177::o;26540:::-;26686:25;;;26674:2;26659:18;;26641:76::o;26722:258::-;26794:1;26804:113;26818:6;26815:1;26812:13;26804:113;;;26894:11;;;26888:18;26875:11;;;26868:39;26840:2;26833:10;26804:113;;;26935:6;26932:1;26929:13;26926:2;;;-1:-1:-1;;26970:1:1;26952:16;;26945:27;26775:205::o;26985:133::-;-1:-1:-1;;;;;27062:31:1;;27052:42;;27042:2;;27108:1;27105;27098:12;27123:133;-1:-1:-1;;;;;;27199:32:1;;27189:43;;27179:2;;27246:1;27243;27236:12

Swarm Source

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