ETH Price: $3,066.23 (+2.88%)
Gas: 1 Gwei

Token

Barn Owlz (OWLZ)
 

Overview

Max Total Supply

3,000 OWLZ

Holders

1,229

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
vondoom.eth
Balance
1 OWLZ
0x591f8a2decc1c86cce0c7bea22fa921c2c72fb95
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

These Owlz are a HOOT! 3,000 Barn Owlz taking flight on the Ethereum blockchain.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BarnOwlz

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
Yes with 5000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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



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);
}

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



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

pragma solidity ^0.7.0;
pragma abicoder v2;

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

    string public OWL_PROVENANCE = ""; // IPFS URL WILL BE ADDED WHEN OWLS ARE ALL SOLD OUT
    
    string public LICENSE_TEXT = ""; 
    
    bool licenseLocked = false; 

    uint256 public constant owlPrice = 20000000000000000; // 0.02 ETH

    uint public constant maxOwlPurchase = 3;

    uint256 public constant MAX_OWLS = 3000;

    bool public saleIsActive = false;
    
    mapping(uint => string) public owlNames;
    
    // Reserve 25 owls for giveaways
    uint public owlReserve = 25;
    
    event owlNameChange(address _by, uint _tokenId, string _name);
    
    event licenseisLocked(string _licenseText);

    constructor() ERC721("Barn Owlz", "OWLZ") { }
    
    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        msg.sender.transfer(balance);
    }
    
    function reserveOwls(address _to, uint256 _reserveAmount) public onlyOwner {        
        uint supply = totalSupply();
        require(_reserveAmount > 0 && _reserveAmount <= owlReserve, "Not enough reserve left for team");
        for (uint i = 0; i < _reserveAmount; i++) {
            _safeMint(_to, supply + i);
        }
        owlReserve = owlReserve.sub(_reserveAmount);
    }


    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        OWL_PROVENANCE = provenanceHash;
    }

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


    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }
    
    
    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;
        }
    }
    
    // Returns the license for tokens
    function tokenLicense(uint _id) public view returns(string memory) {
        require(_id < totalSupply(), "CHOOSE A OWL WITHIN RANGE");
        return LICENSE_TEXT;
    }
    
    // Locks the license to prevent further changes 
    function lockLicense() public onlyOwner {
        licenseLocked =  true;
        emit licenseisLocked(LICENSE_TEXT);
    }
    
    // Change the license
    function changeLicense(string memory _license) public onlyOwner {
        require(licenseLocked == false, "License already locked");
        LICENSE_TEXT = _license;
    }
    
    
    function mintOwl(uint numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active to mint Owl");
        require(numberOfTokens > 0 && numberOfTokens <= maxOwlPurchase, "Can only mint 3 tokens at a time");
        require(totalSupply().add(numberOfTokens) <= MAX_OWLS, "Purchase would exceed max supply of Owls");
        require(msg.value >= owlPrice.mul(numberOfTokens), "Ether value sent is not correct");
        
        for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = totalSupply();
            if (totalSupply() < MAX_OWLS) {
                _safeMint(msg.sender, mintIndex);
            }
        }

    }
     
    function changeOwlName(uint _tokenId, string memory _name) public {
        require(ownerOf(_tokenId) == msg.sender, "Hey, your wallet doesn't own this owl!");
        require(sha256(bytes(_name)) != sha256(bytes(owlNames[_tokenId])), "New name is same as the current one");
        owlNames[_tokenId] = _name;
        
        emit owlNameChange(msg.sender, _tokenId, _name);
        
    }
    
    function viewOwlName(uint _tokenId) public view returns( string memory ){
        require( _tokenId < totalSupply(), "Choose a owl within range" );
        return owlNames[_tokenId];
    }
    
    function owlNamesOfOwner(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] = owlNames[ 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":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":"string","name":"_licenseText","type":"string"}],"name":"licenseisLocked","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":"owlNameChange","type":"event"},{"inputs":[],"name":"LICENSE_TEXT","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_OWLS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OWL_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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_license","type":"string"}],"name":"changeLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_name","type":"string"}],"name":"changeOwlName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"lockLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxOwlPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintOwl","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"owlNames","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"owlNamesOfOwner","outputs":[{"internalType":"string[]","name":"","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owlPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owlReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"reserveOwls","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":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","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":"uint256","name":"_id","type":"uint256"}],"name":"tokenLicense","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"viewOwlName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600b91620001cd565b506040805160208101918290526000908190526200003c91600c91620001cd565b50600d805461ffff191690556019600f553480156200005a57600080fd5b5060408051808201825260098152682130b9371027bbb63d60b91b6020808301919091528251808401909352600483526327aba62d60e11b9083015290620000a96301ffc9a760e01b6200016e565b8151620000be906006906020850190620001cd565b508051620000d4906007906020840190620001cd565b50620000e76380ac58cd60e01b6200016e565b620000f9635b5e139f60e01b6200016e565b6200010b63780e9d6360e01b6200016e565b50600090506200011a620001c9565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620002b0565b6001600160e01b03198082161415620001a45760405162461bcd60e51b81526004016200019b9062000279565b60405180910390fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b3390565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928262000205576000855562000250565b82601f106200022057805160ff191683800117855562000250565b8280016001018555821562000250579182015b828111156200025057825182559160200191906001019062000233565b506200025e92915062000262565b5090565b5b808211156200025e576000815560010162000263565b6020808252601c908201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604082015260600190565b6134c880620002c06000396000f3fe6080604052600436106102c65760003560e01c806370a0823111610179578063b58015a3116100d6578063d22768ff1161008a578063e985e9c511610064578063e985e9c514610732578063eb8d244414610752578063f2fde38b14610767576102c6565b8063d22768ff146106d0578063d9b137b2146106e5578063defc076f14610705576102c6565b8063bf4702fc116100bb578063bf4702fc14610686578063c87b56dd1461069b578063cb37f933146106bb576102c6565b8063b58015a314610651578063b88d4fde14610666576102c6565b806395d89b411161012d578063a1017cdd11610112578063a1017cdd146105f1578063a22cb46514610611578063b09904b514610631576102c6565b806395d89b41146105c75780639c3e72bd146105dc576102c6565b806382b842db1161015e57806382b842db146105705780638462151c146105855780638da5cb5b146105b2576102c6565b806370a082311461053b578063715018a61461055b576102c6565b80632f745c59116102275780634f6ccce7116101db5780636352211e116101c05780636352211e146104e65780636c0360eb146105065780636f427bd01461051b576102c6565b80634f6ccce7146104a657806355f804b3146104c6576102c6565b80633ccfd60b1161020c5780633ccfd60b1461045157806342842e0e146104665780634928bc5514610486576102c6565b80632f745c591461041c57806334918dfd1461043c576102c6565b806318160ddd1161027e57806323b872dd1161026357806323b872dd146103d45780632b917116146103f45780632f202c4a14610407576102c6565b806318160ddd146103925780632239f63f146103b4576102c6565b8063081812fc116102af578063081812fc14610323578063095ea7b3146103505780631096952314610372576102c6565b806301ffc9a7146102cb57806306fdde0314610301575b600080fd5b3480156102d757600080fd5b506102eb6102e63660046126e9565b610787565b6040516102f891906129f9565b60405180910390f35b34801561030d57600080fd5b506103166107c2565b6040516102f89190612a04565b34801561032f57600080fd5b5061034361033e366004612754565b610858565b6040516102f891906128b6565b34801561035c57600080fd5b5061037061036b3660046126a8565b6108a4565b005b34801561037e57600080fd5b5061037061038d366004612721565b61093c565b34801561039e57600080fd5b506103a7610992565b6040516102f891906133c8565b3480156103c057600080fd5b506103706103cf36600461276c565b6109a3565b3480156103e057600080fd5b506103706103ef3660046125ba565b610afe565b610370610402366004612754565b610b36565b34801561041357600080fd5b506103a7610c28565b34801561042857600080fd5b506103a76104373660046126a8565b610c2d565b34801561044857600080fd5b50610370610c58565b34801561045d57600080fd5b50610370610cd1565b34801561047257600080fd5b506103706104813660046125ba565b610d3f565b34801561049257600080fd5b506103166104a1366004612754565b610d5a565b3480156104b257600080fd5b506103a76104c1366004612754565b610df5565b3480156104d257600080fd5b506103706104e1366004612721565b610e0b565b3480156104f257600080fd5b50610343610501366004612754565b610e56565b34801561051257600080fd5b50610316610e7e565b34801561052757600080fd5b50610316610536366004612754565b610edf565b34801561054757600080fd5b506103a761055636600461256e565b610fa6565b34801561056757600080fd5b50610370610fef565b34801561057c57600080fd5b506103a7611090565b34801561059157600080fd5b506105a56105a036600461256e565b611096565b6040516102f891906129b5565b3480156105be57600080fd5b50610343611149565b3480156105d357600080fd5b50610316611158565b3480156105e857600080fd5b506103166111b9565b3480156105fd57600080fd5b5061037061060c3660046126a8565b611214565b34801561061d57600080fd5b5061037061062c36600461266e565b6112c2565b34801561063d57600080fd5b5061037061064c366004612721565b611390565b34801561065d57600080fd5b506103a7611405565b34801561067257600080fd5b506103706106813660046125f5565b61140b565b34801561069257600080fd5b5061037061144a565b3480156106a757600080fd5b506103166106b6366004612754565b6114d1565b3480156106c757600080fd5b50610316611615565b3480156106dc57600080fd5b506103a7611670565b3480156106f157600080fd5b50610316610700366004612754565b61167b565b34801561071157600080fd5b5061072561072036600461256e565b6116fe565b6040516102f89190612937565b34801561073e57600080fd5b506102eb61074d366004612588565b611867565b34801561075e57600080fd5b506102eb611895565b34801561077357600080fd5b5061037061078236600461256e565b6118a3565b7fffffffff00000000000000000000000000000000000000000000000000000000811660009081526020819052604090205460ff165b919050565b60068054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561084e5780601f106108235761010080835404028352916020019161084e565b820191906000526020600020905b81548152906001019060200180831161083157829003601f168201915b5050505050905090565b60006108638261197c565b6108885760405162461bcd60e51b815260040161087f90613054565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108af82610e56565b9050806001600160a01b0316836001600160a01b031614156108e35760405162461bcd60e51b815260040161087f90613234565b806001600160a01b03166108f5611989565b6001600160a01b0316148061091157506109118161074d611989565b61092d5760405162461bcd60e51b815260040161087f90612eab565b610937838361198d565b505050565b610944611989565b6001600160a01b0316610955611149565b6001600160a01b03161461097b5760405162461bcd60e51b815260040161087f906130e8565b805161098e90600b906020840190612415565b5050565b600061099e6002611a13565b905090565b336109ad83610e56565b6001600160a01b0316146109d35760405162461bcd60e51b815260040161087f90612b5b565b6000828152600e60205260409081902090516002916109f191612817565b602060405180830381855afa158015610a0e573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190610a3191906126d1565b600282604051610a4191906127fb565b602060405180830381855afa158015610a5e573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190610a8191906126d1565b1415610a9f5760405162461bcd60e51b815260040161087f906131d7565b6000828152600e602090815260409091208251610abe92840190612415565b507f406befe52a1eb7bbc4f057a6157042ed4156651d13815f4510bb4b0f3406f21c338383604051610af293929190612906565b60405180910390a15050565b610b0f610b09611989565b82611a1e565b610b2b5760405162461bcd60e51b815260040161087f90613334565b610937838383611aa3565b600d54610100900460ff16610b5d5760405162461bcd60e51b815260040161087f906130b1565b600081118015610b6e575060038111155b610b8a5760405162461bcd60e51b815260040161087f906132ff565b610bb8610b9f82610b99610992565b90611bb1565b1115610bbd5760405162461bcd60e51b815260040161087f90612afe565b610bce66470de4df82000082611bd6565b341015610bed5760405162461bcd60e51b815260040161087f90612de0565b60005b8181101561098e576000610c02610992565b9050610bb8610c0f610992565b1015610c1f57610c1f3382611c10565b50600101610bf0565b600381565b6001600160a01b0382166000908152600160205260408120610c4f9083611c2a565b90505b92915050565b610c60611989565b6001600160a01b0316610c71611149565b6001600160a01b031614610c975760405162461bcd60e51b815260040161087f906130e8565b600d80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff81166101009182900460ff1615909102179055565b610cd9611989565b6001600160a01b0316610cea611149565b6001600160a01b031614610d105760405162461bcd60e51b815260040161087f906130e8565b6040514790339082156108fc029083906000818181858888f1935050505015801561098e573d6000803e3d6000fd5b6109378383836040518060200160405280600081525061140b565b600e6020908152600091825260409182902080548351601f600260001961010060018616150201909316929092049182018490048402810184019094528084529091830182828015610ded5780601f10610dc257610100808354040283529160200191610ded565b820191906000526020600020905b815481529060010190602001808311610dd057829003601f168201915b505050505081565b600080610e03600284611c36565b509392505050565b610e13611989565b6001600160a01b0316610e24611149565b6001600160a01b031614610e4a5760405162461bcd60e51b815260040161087f906130e8565b610e5381611c52565b50565b6000610c528260405180606001604052806029815260200161346a6029913960029190611c65565b60098054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561084e5780601f106108235761010080835404028352916020019161084e565b6060610ee9610992565b8210610f075760405162461bcd60e51b815260040161087f90612da9565b6000828152600e602090815260409182902080548351601f600260001961010060018616150201909316929092049182018490048402810184019094528084529091830182828015610f9a5780601f10610f6f57610100808354040283529160200191610f9a565b820191906000526020600020905b815481529060010190602001808311610f7d57829003601f168201915b50505050509050919050565b60006001600160a01b038216610fce5760405162461bcd60e51b815260040161087f90612f08565b6001600160a01b0382166000908152600160205260409020610c5290611a13565b610ff7611989565b6001600160a01b0316611008611149565b6001600160a01b03161461102e5760405162461bcd60e51b815260040161087f906130e8565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b610bb881565b606060006110a383610fa6565b9050806110c55760408051600080825260208201909252905b509150506107bd565b60008167ffffffffffffffff811180156110de57600080fd5b50604051908082528060200260200182016040528015611108578160200160208202803683370190505b50905060005b8281101561113f576111208582610c2d565b82828151811061112c57fe5b602090810291909101015260010161110e565b5091506107bd9050565b600a546001600160a01b031690565b60078054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561084e5780601f106108235761010080835404028352916020019161084e565b600c805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610ded5780601f10610dc257610100808354040283529160200191610ded565b61121c611989565b6001600160a01b031661122d611149565b6001600160a01b0316146112535760405162461bcd60e51b815260040161087f906130e8565b600061125d610992565b90506000821180156112715750600f548211155b61128d5760405162461bcd60e51b815260040161087f90612ce0565b60005b828110156112ac576112a484828401611c10565b600101611290565b50600f546112ba9083611c7c565b600f55505050565b6112ca611989565b6001600160a01b0316826001600160a01b031614156112fb5760405162461bcd60e51b815260040161087f90612d72565b8060056000611308611989565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561134c611989565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161138491906129f9565b60405180910390a35050565b611398611989565b6001600160a01b03166113a9611149565b6001600160a01b0316146113cf5760405162461bcd60e51b815260040161087f906130e8565b600d5460ff16156113f25760405162461bcd60e51b815260040161087f906132c8565b805161098e90600c906020840190612415565b600f5481565b61141c611416611989565b83611a1e565b6114385760405162461bcd60e51b815260040161087f90613334565b61144484848484611ca4565b50505050565b611452611989565b6001600160a01b0316611463611149565b6001600160a01b0316146114895760405162461bcd60e51b815260040161087f906130e8565b600d805460ff191660011790556040517f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b0906114c790600c90612a17565b60405180910390a1565b60606114dc8261197c565b6114f85760405162461bcd60e51b815260040161087f9061317a565b60008281526008602090815260408083208054825160026001831615610100026000190190921691909104601f81018590048502820185019093528281529290919083018282801561158b5780601f106115605761010080835404028352916020019161158b565b820191906000526020600020905b81548152906001019060200180831161156e57829003601f168201915b50505050509050600061159c610e7e565b90508051600014156115b0575090506107bd565b8151156115e25780826040516020016115ca929190612887565b604051602081830303815290604052925050506107bd565b806115ec85611cd7565b6040516020016115fd929190612887565b60405160208183030381529060405292505050919050565b600b805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610ded5780601f10610dc257610100808354040283529160200191610ded565b66470de4df82000081565b6060611685610992565b82106116a35760405162461bcd60e51b815260040161087f90613291565b600c805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610f9a5780601f10610f6f57610100808354040283529160200191610f9a565b6060600061170b83610fa6565b9050806117455760408051600080825260208201909252906110bc565b6060815260200190600190039081611728579050509150506107bd565b60008167ffffffffffffffff8111801561175e57600080fd5b5060405190808252806020026020018201604052801561179257816020015b606081526020019060019003908161177d5790505b50905060005b8281101561113f57600e60006117ae8784610c2d565b815260208082019290925260409081016000208054825160026001831615610100026000190190921691909104601f8101859004850282018501909352828152929091908301828280156118435780601f1061181857610100808354040283529160200191611843565b820191906000526020600020905b81548152906001019060200180831161182657829003601f168201915b505050505082828151811061185457fe5b6020908102919091010152600101611798565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600d54610100900460ff1681565b6118ab611989565b6001600160a01b03166118bc611149565b6001600160a01b0316146118e25760405162461bcd60e51b815260040161087f906130e8565b6001600160a01b0381166119085760405162461bcd60e51b815260040161087f90612c15565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6000610c52600283611de6565b3390565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03841690811790915581906119da82610e56565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610c5282611df2565b6000611a298261197c565b611a455760405162461bcd60e51b815260040161087f90612e4e565b6000611a5083610e56565b9050806001600160a01b0316846001600160a01b03161480611a8b5750836001600160a01b0316611a8084610858565b6001600160a01b0316145b80611a9b5750611a9b8185611867565b949350505050565b826001600160a01b0316611ab682610e56565b6001600160a01b031614611adc5760405162461bcd60e51b815260040161087f9061311d565b6001600160a01b038216611b025760405162461bcd60e51b815260040161087f90612d15565b611b0d838383610937565b611b1860008261198d565b6001600160a01b0383166000908152600160205260409020611b3a9082611df6565b506001600160a01b0382166000908152600160205260409020611b5d9082611e02565b50611b6a60028284611e0e565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600082820183811015610c4f5760405162461bcd60e51b815260040161087f90612ca9565b600082611be557506000610c52565b82820282848281611bf257fe5b0414610c4f5760405162461bcd60e51b815260040161087f90612ff7565b61098e828260405180602001604052806000815250611e24565b6000610c4f8383611e57565b6000808080611c458686611e9c565b9097909650945050505050565b805161098e906009906020840190612415565b6000611c72848484611ef8565b90505b9392505050565b600082821115611c9e5760405162461bcd60e51b815260040161087f90612e17565b50900390565b611caf848484611aa3565b611cbb84848484611f57565b6114445760405162461bcd60e51b815260040161087f90612bb8565b606081611d18575060408051808201909152600181527f300000000000000000000000000000000000000000000000000000000000000060208201526107bd565b8160005b8115611d3057600101600a82049150611d1c565b60008167ffffffffffffffff81118015611d4957600080fd5b506040519080825280601f01601f191660200182016040528015611d74576020820181803683370190505b50859350905060001982015b8315611ddd57600a840660300160f81b82828060019003935081518110611da357fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a84049350611d80565b50949350505050565b6000610c4f83836120aa565b5490565b6000610c4f83836120c2565b6000610c4f8383612188565b6000611c7284846001600160a01b0385166121d2565b611e2e8383612269565b611e3b6000848484611f57565b6109375760405162461bcd60e51b815260040161087f90612bb8565b81546000908210611e7a5760405162461bcd60e51b815260040161087f90612aa1565b826000018281548110611e8957fe5b9060005260206000200154905092915050565b815460009081908310611ec15760405162461bcd60e51b815260040161087f90612f65565b6000846000018481548110611ed257fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008281526001840160205260408120548281611f285760405162461bcd60e51b815260040161087f9190612a04565b50846000016001820381548110611f3b57fe5b9060005260206000209060020201600101549150509392505050565b6000611f6b846001600160a01b031661232d565b611f7757506001611a9b565b60006120427f150b7a0200000000000000000000000000000000000000000000000000000000611fa5611989565b888787604051602401611fbb94939291906128ca565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001613438603291396001600160a01b0388169190612333565b905060008180602001905181019061205a9190612705565b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001492505050949350505050565b60009081526001919091016020526040902054151590565b6000818152600183016020526040812054801561217e57835460001980830191908101906000908790839081106120f557fe5b906000526020600020015490508087600001848154811061211257fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061214257fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610c52565b6000915050610c52565b600061219483836120aa565b6121ca57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610c52565b506000610c52565b600082815260018401602052604081205480612237575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055611c75565b8285600001600183038154811061224a57fe5b9060005260206000209060020201600101819055506000915050611c75565b6001600160a01b03821661228f5760405162461bcd60e51b815260040161087f90612fc2565b6122988161197c565b156122b55760405162461bcd60e51b815260040161087f90612c72565b6122c160008383610937565b6001600160a01b03821660009081526001602052604090206122e39082611e02565b506122f060028284611e0e565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b6060611c728484600085856123478561232d565b6123635760405162461bcd60e51b815260040161087f90613391565b600080866001600160a01b0316858760405161237f91906127fb565b60006040518083038185875af1925050503d80600081146123bc576040519150601f19603f3d011682016040523d82523d6000602084013e6123c1565b606091505b50915091506123d18282866123dc565b979650505050505050565b606083156123eb575081611c75565b8251156123fb5782518084602001fd5b8160405162461bcd60e51b815260040161087f9190612a04565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261244b5760008555612491565b82601f1061246457805160ff1916838001178555612491565b82800160010185558215612491579182015b82811115612491578251825591602001919060010190612476565b5061249d9291506124a1565b5090565b5b8082111561249d57600081556001016124a2565b600067ffffffffffffffff808411156124cb57fe5b60405160207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f870116820101818110838211171561250757fe5b60405284815291508183850186101561251f57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146107bd57600080fd5b600082601f83011261255f578081fd5b610c4f838335602085016124b6565b60006020828403121561257f578081fd5b610c4f82612538565b6000806040838503121561259a578081fd5b6125a383612538565b91506125b160208401612538565b90509250929050565b6000806000606084860312156125ce578081fd5b6125d784612538565b92506125e560208501612538565b9150604084013590509250925092565b6000806000806080858703121561260a578081fd5b61261385612538565b935061262160208601612538565b925060408501359150606085013567ffffffffffffffff811115612643578182fd5b8501601f81018713612653578182fd5b612662878235602084016124b6565b91505092959194509250565b60008060408385031215612680578182fd5b61268983612538565b91506020830135801515811461269d578182fd5b809150509250929050565b600080604083850312156126ba578182fd5b6126c383612538565b946020939093013593505050565b6000602082840312156126e2578081fd5b5051919050565b6000602082840312156126fa578081fd5b8135610c4f81613409565b600060208284031215612716578081fd5b8151610c4f81613409565b600060208284031215612732578081fd5b813567ffffffffffffffff811115612748578182fd5b611a9b8482850161254f565b600060208284031215612765578081fd5b5035919050565b6000806040838503121561277e578182fd5b82359150602083013567ffffffffffffffff81111561279b578182fd5b6127a78582860161254f565b9150509250929050565b600081518084526127c98160208601602086016133dd565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6000825161280d8184602087016133dd565b9190910192915050565b6000808354600180821660008114612836576001811461284d5761287c565b60ff1983168652607f60028404168601935061287c565b600283048786526020808720875b838110156128745781548a82015290850190820161285b565b505050860193505b509195945050505050565b600083516128998184602088016133dd565b8351908301906128ad8183602088016133dd565b01949350505050565b6001600160a01b0391909116815260200190565b60006001600160a01b038087168352808616602084015250836040830152608060608301526128fc60808301846127b1565b9695505050505050565b60006001600160a01b03851682528360208301526060604083015261292e60608301846127b1565b95945050505050565b6000602080830181845280855180835260408601915060408482028701019250838701855b828110156129a8577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc08886030184526129968583516127b1565b9450928501929085019060010161295c565b5092979650505050505050565b6020808252825182820181905260009190848201906040850190845b818110156129ed578351835292840192918401916001016129d1565b50909695505050505050565b901515815260200190565b600060208252610c4f60208301846127b1565b60006020808301818452828554600180821660008114612a3e5760018114612a5c57612a94565b607f6002840416855260ff1983166040890152606088019350612a94565b60028304808652612a6c8a6133d1565b885b82811015612a8a5781548b820160400152908401908801612a6e565b8a01604001955050505b5091979650505050505050565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60408201527f6473000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526028908201527f507572636861736520776f756c6420657863656564206d617820737570706c7960408201527f206f66204f776c73000000000000000000000000000000000000000000000000606082015260800190565b60208082526026908201527f4865792c20796f75722077616c6c657420646f65736e2774206f776e2074686960408201527f73206f776c210000000000000000000000000000000000000000000000000000606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527f63656976657220696d706c656d656e7465720000000000000000000000000000606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252818101527f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526019908201527f43686f6f73652061206f776c2077697468696e2072616e676500000000000000604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252601e908201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560408201527f726f206164647265737300000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60408201527f6473000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60408201527f7700000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f53616c65206d7573742062652061637469766520746f206d696e74204f776c00604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606082015260800190565b60208082526023908201527f4e6577206e616d652069732073616d65206173207468652063757272656e742060408201527f6f6e650000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560408201527f7200000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526019908201527f43484f4f53452041204f574c2057495448494e2052414e474500000000000000604082015260600190565b60208082526016908201527f4c6963656e736520616c7265616479206c6f636b656400000000000000000000604082015260600190565b6020808252818101527f43616e206f6e6c79206d696e74203320746f6b656e7320617420612074696d65604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b90815260200190565b60009081526020902090565b60005b838110156133f85781810151838201526020016133e0565b838111156114445750506000910152565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610e5357600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220e3ec101c29e2f8881d1dc5ceeff75cbc53829c9d57df245e4e9c4495705749eb64736f6c63430007060033

Deployed Bytecode

0x6080604052600436106102c65760003560e01c806370a0823111610179578063b58015a3116100d6578063d22768ff1161008a578063e985e9c511610064578063e985e9c514610732578063eb8d244414610752578063f2fde38b14610767576102c6565b8063d22768ff146106d0578063d9b137b2146106e5578063defc076f14610705576102c6565b8063bf4702fc116100bb578063bf4702fc14610686578063c87b56dd1461069b578063cb37f933146106bb576102c6565b8063b58015a314610651578063b88d4fde14610666576102c6565b806395d89b411161012d578063a1017cdd11610112578063a1017cdd146105f1578063a22cb46514610611578063b09904b514610631576102c6565b806395d89b41146105c75780639c3e72bd146105dc576102c6565b806382b842db1161015e57806382b842db146105705780638462151c146105855780638da5cb5b146105b2576102c6565b806370a082311461053b578063715018a61461055b576102c6565b80632f745c59116102275780634f6ccce7116101db5780636352211e116101c05780636352211e146104e65780636c0360eb146105065780636f427bd01461051b576102c6565b80634f6ccce7146104a657806355f804b3146104c6576102c6565b80633ccfd60b1161020c5780633ccfd60b1461045157806342842e0e146104665780634928bc5514610486576102c6565b80632f745c591461041c57806334918dfd1461043c576102c6565b806318160ddd1161027e57806323b872dd1161026357806323b872dd146103d45780632b917116146103f45780632f202c4a14610407576102c6565b806318160ddd146103925780632239f63f146103b4576102c6565b8063081812fc116102af578063081812fc14610323578063095ea7b3146103505780631096952314610372576102c6565b806301ffc9a7146102cb57806306fdde0314610301575b600080fd5b3480156102d757600080fd5b506102eb6102e63660046126e9565b610787565b6040516102f891906129f9565b60405180910390f35b34801561030d57600080fd5b506103166107c2565b6040516102f89190612a04565b34801561032f57600080fd5b5061034361033e366004612754565b610858565b6040516102f891906128b6565b34801561035c57600080fd5b5061037061036b3660046126a8565b6108a4565b005b34801561037e57600080fd5b5061037061038d366004612721565b61093c565b34801561039e57600080fd5b506103a7610992565b6040516102f891906133c8565b3480156103c057600080fd5b506103706103cf36600461276c565b6109a3565b3480156103e057600080fd5b506103706103ef3660046125ba565b610afe565b610370610402366004612754565b610b36565b34801561041357600080fd5b506103a7610c28565b34801561042857600080fd5b506103a76104373660046126a8565b610c2d565b34801561044857600080fd5b50610370610c58565b34801561045d57600080fd5b50610370610cd1565b34801561047257600080fd5b506103706104813660046125ba565b610d3f565b34801561049257600080fd5b506103166104a1366004612754565b610d5a565b3480156104b257600080fd5b506103a76104c1366004612754565b610df5565b3480156104d257600080fd5b506103706104e1366004612721565b610e0b565b3480156104f257600080fd5b50610343610501366004612754565b610e56565b34801561051257600080fd5b50610316610e7e565b34801561052757600080fd5b50610316610536366004612754565b610edf565b34801561054757600080fd5b506103a761055636600461256e565b610fa6565b34801561056757600080fd5b50610370610fef565b34801561057c57600080fd5b506103a7611090565b34801561059157600080fd5b506105a56105a036600461256e565b611096565b6040516102f891906129b5565b3480156105be57600080fd5b50610343611149565b3480156105d357600080fd5b50610316611158565b3480156105e857600080fd5b506103166111b9565b3480156105fd57600080fd5b5061037061060c3660046126a8565b611214565b34801561061d57600080fd5b5061037061062c36600461266e565b6112c2565b34801561063d57600080fd5b5061037061064c366004612721565b611390565b34801561065d57600080fd5b506103a7611405565b34801561067257600080fd5b506103706106813660046125f5565b61140b565b34801561069257600080fd5b5061037061144a565b3480156106a757600080fd5b506103166106b6366004612754565b6114d1565b3480156106c757600080fd5b50610316611615565b3480156106dc57600080fd5b506103a7611670565b3480156106f157600080fd5b50610316610700366004612754565b61167b565b34801561071157600080fd5b5061072561072036600461256e565b6116fe565b6040516102f89190612937565b34801561073e57600080fd5b506102eb61074d366004612588565b611867565b34801561075e57600080fd5b506102eb611895565b34801561077357600080fd5b5061037061078236600461256e565b6118a3565b7fffffffff00000000000000000000000000000000000000000000000000000000811660009081526020819052604090205460ff165b919050565b60068054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561084e5780601f106108235761010080835404028352916020019161084e565b820191906000526020600020905b81548152906001019060200180831161083157829003601f168201915b5050505050905090565b60006108638261197c565b6108885760405162461bcd60e51b815260040161087f90613054565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108af82610e56565b9050806001600160a01b0316836001600160a01b031614156108e35760405162461bcd60e51b815260040161087f90613234565b806001600160a01b03166108f5611989565b6001600160a01b0316148061091157506109118161074d611989565b61092d5760405162461bcd60e51b815260040161087f90612eab565b610937838361198d565b505050565b610944611989565b6001600160a01b0316610955611149565b6001600160a01b03161461097b5760405162461bcd60e51b815260040161087f906130e8565b805161098e90600b906020840190612415565b5050565b600061099e6002611a13565b905090565b336109ad83610e56565b6001600160a01b0316146109d35760405162461bcd60e51b815260040161087f90612b5b565b6000828152600e60205260409081902090516002916109f191612817565b602060405180830381855afa158015610a0e573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190610a3191906126d1565b600282604051610a4191906127fb565b602060405180830381855afa158015610a5e573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190610a8191906126d1565b1415610a9f5760405162461bcd60e51b815260040161087f906131d7565b6000828152600e602090815260409091208251610abe92840190612415565b507f406befe52a1eb7bbc4f057a6157042ed4156651d13815f4510bb4b0f3406f21c338383604051610af293929190612906565b60405180910390a15050565b610b0f610b09611989565b82611a1e565b610b2b5760405162461bcd60e51b815260040161087f90613334565b610937838383611aa3565b600d54610100900460ff16610b5d5760405162461bcd60e51b815260040161087f906130b1565b600081118015610b6e575060038111155b610b8a5760405162461bcd60e51b815260040161087f906132ff565b610bb8610b9f82610b99610992565b90611bb1565b1115610bbd5760405162461bcd60e51b815260040161087f90612afe565b610bce66470de4df82000082611bd6565b341015610bed5760405162461bcd60e51b815260040161087f90612de0565b60005b8181101561098e576000610c02610992565b9050610bb8610c0f610992565b1015610c1f57610c1f3382611c10565b50600101610bf0565b600381565b6001600160a01b0382166000908152600160205260408120610c4f9083611c2a565b90505b92915050565b610c60611989565b6001600160a01b0316610c71611149565b6001600160a01b031614610c975760405162461bcd60e51b815260040161087f906130e8565b600d80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff81166101009182900460ff1615909102179055565b610cd9611989565b6001600160a01b0316610cea611149565b6001600160a01b031614610d105760405162461bcd60e51b815260040161087f906130e8565b6040514790339082156108fc029083906000818181858888f1935050505015801561098e573d6000803e3d6000fd5b6109378383836040518060200160405280600081525061140b565b600e6020908152600091825260409182902080548351601f600260001961010060018616150201909316929092049182018490048402810184019094528084529091830182828015610ded5780601f10610dc257610100808354040283529160200191610ded565b820191906000526020600020905b815481529060010190602001808311610dd057829003601f168201915b505050505081565b600080610e03600284611c36565b509392505050565b610e13611989565b6001600160a01b0316610e24611149565b6001600160a01b031614610e4a5760405162461bcd60e51b815260040161087f906130e8565b610e5381611c52565b50565b6000610c528260405180606001604052806029815260200161346a6029913960029190611c65565b60098054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561084e5780601f106108235761010080835404028352916020019161084e565b6060610ee9610992565b8210610f075760405162461bcd60e51b815260040161087f90612da9565b6000828152600e602090815260409182902080548351601f600260001961010060018616150201909316929092049182018490048402810184019094528084529091830182828015610f9a5780601f10610f6f57610100808354040283529160200191610f9a565b820191906000526020600020905b815481529060010190602001808311610f7d57829003601f168201915b50505050509050919050565b60006001600160a01b038216610fce5760405162461bcd60e51b815260040161087f90612f08565b6001600160a01b0382166000908152600160205260409020610c5290611a13565b610ff7611989565b6001600160a01b0316611008611149565b6001600160a01b03161461102e5760405162461bcd60e51b815260040161087f906130e8565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b610bb881565b606060006110a383610fa6565b9050806110c55760408051600080825260208201909252905b509150506107bd565b60008167ffffffffffffffff811180156110de57600080fd5b50604051908082528060200260200182016040528015611108578160200160208202803683370190505b50905060005b8281101561113f576111208582610c2d565b82828151811061112c57fe5b602090810291909101015260010161110e565b5091506107bd9050565b600a546001600160a01b031690565b60078054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561084e5780601f106108235761010080835404028352916020019161084e565b600c805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610ded5780601f10610dc257610100808354040283529160200191610ded565b61121c611989565b6001600160a01b031661122d611149565b6001600160a01b0316146112535760405162461bcd60e51b815260040161087f906130e8565b600061125d610992565b90506000821180156112715750600f548211155b61128d5760405162461bcd60e51b815260040161087f90612ce0565b60005b828110156112ac576112a484828401611c10565b600101611290565b50600f546112ba9083611c7c565b600f55505050565b6112ca611989565b6001600160a01b0316826001600160a01b031614156112fb5760405162461bcd60e51b815260040161087f90612d72565b8060056000611308611989565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561134c611989565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161138491906129f9565b60405180910390a35050565b611398611989565b6001600160a01b03166113a9611149565b6001600160a01b0316146113cf5760405162461bcd60e51b815260040161087f906130e8565b600d5460ff16156113f25760405162461bcd60e51b815260040161087f906132c8565b805161098e90600c906020840190612415565b600f5481565b61141c611416611989565b83611a1e565b6114385760405162461bcd60e51b815260040161087f90613334565b61144484848484611ca4565b50505050565b611452611989565b6001600160a01b0316611463611149565b6001600160a01b0316146114895760405162461bcd60e51b815260040161087f906130e8565b600d805460ff191660011790556040517f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b0906114c790600c90612a17565b60405180910390a1565b60606114dc8261197c565b6114f85760405162461bcd60e51b815260040161087f9061317a565b60008281526008602090815260408083208054825160026001831615610100026000190190921691909104601f81018590048502820185019093528281529290919083018282801561158b5780601f106115605761010080835404028352916020019161158b565b820191906000526020600020905b81548152906001019060200180831161156e57829003601f168201915b50505050509050600061159c610e7e565b90508051600014156115b0575090506107bd565b8151156115e25780826040516020016115ca929190612887565b604051602081830303815290604052925050506107bd565b806115ec85611cd7565b6040516020016115fd929190612887565b60405160208183030381529060405292505050919050565b600b805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610ded5780601f10610dc257610100808354040283529160200191610ded565b66470de4df82000081565b6060611685610992565b82106116a35760405162461bcd60e51b815260040161087f90613291565b600c805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610f9a5780601f10610f6f57610100808354040283529160200191610f9a565b6060600061170b83610fa6565b9050806117455760408051600080825260208201909252906110bc565b6060815260200190600190039081611728579050509150506107bd565b60008167ffffffffffffffff8111801561175e57600080fd5b5060405190808252806020026020018201604052801561179257816020015b606081526020019060019003908161177d5790505b50905060005b8281101561113f57600e60006117ae8784610c2d565b815260208082019290925260409081016000208054825160026001831615610100026000190190921691909104601f8101859004850282018501909352828152929091908301828280156118435780601f1061181857610100808354040283529160200191611843565b820191906000526020600020905b81548152906001019060200180831161182657829003601f168201915b505050505082828151811061185457fe5b6020908102919091010152600101611798565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600d54610100900460ff1681565b6118ab611989565b6001600160a01b03166118bc611149565b6001600160a01b0316146118e25760405162461bcd60e51b815260040161087f906130e8565b6001600160a01b0381166119085760405162461bcd60e51b815260040161087f90612c15565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6000610c52600283611de6565b3390565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03841690811790915581906119da82610e56565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610c5282611df2565b6000611a298261197c565b611a455760405162461bcd60e51b815260040161087f90612e4e565b6000611a5083610e56565b9050806001600160a01b0316846001600160a01b03161480611a8b5750836001600160a01b0316611a8084610858565b6001600160a01b0316145b80611a9b5750611a9b8185611867565b949350505050565b826001600160a01b0316611ab682610e56565b6001600160a01b031614611adc5760405162461bcd60e51b815260040161087f9061311d565b6001600160a01b038216611b025760405162461bcd60e51b815260040161087f90612d15565b611b0d838383610937565b611b1860008261198d565b6001600160a01b0383166000908152600160205260409020611b3a9082611df6565b506001600160a01b0382166000908152600160205260409020611b5d9082611e02565b50611b6a60028284611e0e565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600082820183811015610c4f5760405162461bcd60e51b815260040161087f90612ca9565b600082611be557506000610c52565b82820282848281611bf257fe5b0414610c4f5760405162461bcd60e51b815260040161087f90612ff7565b61098e828260405180602001604052806000815250611e24565b6000610c4f8383611e57565b6000808080611c458686611e9c565b9097909650945050505050565b805161098e906009906020840190612415565b6000611c72848484611ef8565b90505b9392505050565b600082821115611c9e5760405162461bcd60e51b815260040161087f90612e17565b50900390565b611caf848484611aa3565b611cbb84848484611f57565b6114445760405162461bcd60e51b815260040161087f90612bb8565b606081611d18575060408051808201909152600181527f300000000000000000000000000000000000000000000000000000000000000060208201526107bd565b8160005b8115611d3057600101600a82049150611d1c565b60008167ffffffffffffffff81118015611d4957600080fd5b506040519080825280601f01601f191660200182016040528015611d74576020820181803683370190505b50859350905060001982015b8315611ddd57600a840660300160f81b82828060019003935081518110611da357fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a84049350611d80565b50949350505050565b6000610c4f83836120aa565b5490565b6000610c4f83836120c2565b6000610c4f8383612188565b6000611c7284846001600160a01b0385166121d2565b611e2e8383612269565b611e3b6000848484611f57565b6109375760405162461bcd60e51b815260040161087f90612bb8565b81546000908210611e7a5760405162461bcd60e51b815260040161087f90612aa1565b826000018281548110611e8957fe5b9060005260206000200154905092915050565b815460009081908310611ec15760405162461bcd60e51b815260040161087f90612f65565b6000846000018481548110611ed257fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008281526001840160205260408120548281611f285760405162461bcd60e51b815260040161087f9190612a04565b50846000016001820381548110611f3b57fe5b9060005260206000209060020201600101549150509392505050565b6000611f6b846001600160a01b031661232d565b611f7757506001611a9b565b60006120427f150b7a0200000000000000000000000000000000000000000000000000000000611fa5611989565b888787604051602401611fbb94939291906128ca565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001613438603291396001600160a01b0388169190612333565b905060008180602001905181019061205a9190612705565b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001492505050949350505050565b60009081526001919091016020526040902054151590565b6000818152600183016020526040812054801561217e57835460001980830191908101906000908790839081106120f557fe5b906000526020600020015490508087600001848154811061211257fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061214257fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610c52565b6000915050610c52565b600061219483836120aa565b6121ca57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610c52565b506000610c52565b600082815260018401602052604081205480612237575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055611c75565b8285600001600183038154811061224a57fe5b9060005260206000209060020201600101819055506000915050611c75565b6001600160a01b03821661228f5760405162461bcd60e51b815260040161087f90612fc2565b6122988161197c565b156122b55760405162461bcd60e51b815260040161087f90612c72565b6122c160008383610937565b6001600160a01b03821660009081526001602052604090206122e39082611e02565b506122f060028284611e0e565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b6060611c728484600085856123478561232d565b6123635760405162461bcd60e51b815260040161087f90613391565b600080866001600160a01b0316858760405161237f91906127fb565b60006040518083038185875af1925050503d80600081146123bc576040519150601f19603f3d011682016040523d82523d6000602084013e6123c1565b606091505b50915091506123d18282866123dc565b979650505050505050565b606083156123eb575081611c75565b8251156123fb5782518084602001fd5b8160405162461bcd60e51b815260040161087f9190612a04565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261244b5760008555612491565b82601f1061246457805160ff1916838001178555612491565b82800160010185558215612491579182015b82811115612491578251825591602001919060010190612476565b5061249d9291506124a1565b5090565b5b8082111561249d57600081556001016124a2565b600067ffffffffffffffff808411156124cb57fe5b60405160207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f870116820101818110838211171561250757fe5b60405284815291508183850186101561251f57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146107bd57600080fd5b600082601f83011261255f578081fd5b610c4f838335602085016124b6565b60006020828403121561257f578081fd5b610c4f82612538565b6000806040838503121561259a578081fd5b6125a383612538565b91506125b160208401612538565b90509250929050565b6000806000606084860312156125ce578081fd5b6125d784612538565b92506125e560208501612538565b9150604084013590509250925092565b6000806000806080858703121561260a578081fd5b61261385612538565b935061262160208601612538565b925060408501359150606085013567ffffffffffffffff811115612643578182fd5b8501601f81018713612653578182fd5b612662878235602084016124b6565b91505092959194509250565b60008060408385031215612680578182fd5b61268983612538565b91506020830135801515811461269d578182fd5b809150509250929050565b600080604083850312156126ba578182fd5b6126c383612538565b946020939093013593505050565b6000602082840312156126e2578081fd5b5051919050565b6000602082840312156126fa578081fd5b8135610c4f81613409565b600060208284031215612716578081fd5b8151610c4f81613409565b600060208284031215612732578081fd5b813567ffffffffffffffff811115612748578182fd5b611a9b8482850161254f565b600060208284031215612765578081fd5b5035919050565b6000806040838503121561277e578182fd5b82359150602083013567ffffffffffffffff81111561279b578182fd5b6127a78582860161254f565b9150509250929050565b600081518084526127c98160208601602086016133dd565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6000825161280d8184602087016133dd565b9190910192915050565b6000808354600180821660008114612836576001811461284d5761287c565b60ff1983168652607f60028404168601935061287c565b600283048786526020808720875b838110156128745781548a82015290850190820161285b565b505050860193505b509195945050505050565b600083516128998184602088016133dd565b8351908301906128ad8183602088016133dd565b01949350505050565b6001600160a01b0391909116815260200190565b60006001600160a01b038087168352808616602084015250836040830152608060608301526128fc60808301846127b1565b9695505050505050565b60006001600160a01b03851682528360208301526060604083015261292e60608301846127b1565b95945050505050565b6000602080830181845280855180835260408601915060408482028701019250838701855b828110156129a8577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc08886030184526129968583516127b1565b9450928501929085019060010161295c565b5092979650505050505050565b6020808252825182820181905260009190848201906040850190845b818110156129ed578351835292840192918401916001016129d1565b50909695505050505050565b901515815260200190565b600060208252610c4f60208301846127b1565b60006020808301818452828554600180821660008114612a3e5760018114612a5c57612a94565b607f6002840416855260ff1983166040890152606088019350612a94565b60028304808652612a6c8a6133d1565b885b82811015612a8a5781548b820160400152908401908801612a6e565b8a01604001955050505b5091979650505050505050565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60408201527f6473000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526028908201527f507572636861736520776f756c6420657863656564206d617820737570706c7960408201527f206f66204f776c73000000000000000000000000000000000000000000000000606082015260800190565b60208082526026908201527f4865792c20796f75722077616c6c657420646f65736e2774206f776e2074686960408201527f73206f776c210000000000000000000000000000000000000000000000000000606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527f63656976657220696d706c656d656e7465720000000000000000000000000000606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252818101527f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526019908201527f43686f6f73652061206f776c2077697468696e2072616e676500000000000000604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252601e908201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560408201527f726f206164647265737300000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60408201527f6473000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60408201527f7700000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f53616c65206d7573742062652061637469766520746f206d696e74204f776c00604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606082015260800190565b60208082526023908201527f4e6577206e616d652069732073616d65206173207468652063757272656e742060408201527f6f6e650000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560408201527f7200000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526019908201527f43484f4f53452041204f574c2057495448494e2052414e474500000000000000604082015260600190565b60208082526016908201527f4c6963656e736520616c7265616479206c6f636b656400000000000000000000604082015260600190565b6020808252818101527f43616e206f6e6c79206d696e74203320746f6b656e7320617420612074696d65604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b90815260200190565b60009081526020902090565b60005b838110156133f85781810151838201526020016133e0565b838111156114445750506000910152565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610e5357600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220e3ec101c29e2f8881d1dc5ceeff75cbc53829c9d57df245e4e9c4495705749eb64736f6c63430007060033

Deployed Bytecode Sourcemap

66834:4726:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10236:150;;;;;;;;;;-1:-1:-1;10236:150:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51521:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;54307:221::-;;;;;;;;;;-1:-1:-1;54307:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;53837:404::-;;;;;;;;;;-1:-1:-1;53837:404:0;;;;;:::i;:::-;;:::i;:::-;;68172:124;;;;;;;;;;-1:-1:-1;68172:124:0;;;;;:::i;:::-;;:::i;53315:211::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;70393:398::-;;;;;;;;;;-1:-1:-1;70393:398:0;;;;;:::i;:::-;;:::i;55197:305::-;;;;;;;;;;-1:-1:-1;55197:305:0;;;;;:::i;:::-;;:::i;69706:674::-;;;;;;:::i;:::-;;:::i;67172:39::-;;;;;;;;;;;;;:::i;53077:162::-;;;;;;;;;;-1:-1:-1;53077:162:0;;;;;:::i;:::-;;:::i;68413:89::-;;;;;;;;;;;;;:::i;67625:131::-;;;;;;;;;;;;;:::i;55573:151::-;;;;;;;;;;-1:-1:-1;55573:151:0;;;;;:::i;:::-;;:::i;67313:39::-;;;;;;;;;;-1:-1:-1;67313:39:0;;;;;:::i;:::-;;:::i;53603:172::-;;;;;;;;;;-1:-1:-1;53603:172:0;;;;;:::i;:::-;;:::i;68304:99::-;;;;;;;;;;-1:-1:-1;68304:99:0;;;;;:::i;:::-;;:::i;51277:177::-;;;;;;;;;;-1:-1:-1;51277:177:0;;;;;:::i;:::-;;:::i;52896:97::-;;;;;;;;;;;;;:::i;70803:191::-;;;;;;;;;;-1:-1:-1;70803:191:0;;;;;:::i;:::-;;:::i;50994:221::-;;;;;;;;;;-1:-1:-1;50994:221:0;;;;;:::i;:::-;;:::i;66232:148::-;;;;;;;;;;;;;:::i;67220:39::-;;;;;;;;;;;;;:::i;68520:540::-;;;;;;;;;;-1:-1:-1;68520:540:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;65581:87::-;;;;;;;;;;;;;:::i;51690:104::-;;;;;;;;;;;;;:::i;67018:31::-;;;;;;;;;;;;;:::i;67768:394::-;;;;;;;;;;-1:-1:-1;67768:394:0;;;;;:::i;:::-;;:::i;54600:295::-;;;;;;;;;;-1:-1:-1;54600:295:0;;;;;:::i;:::-;;:::i;69514:174::-;;;;;;;;;;-1:-1:-1;69514:174:0;;;;;:::i;:::-;;:::i;67403:27::-;;;;;;;;;;;;;:::i;55795:285::-;;;;;;;;;;-1:-1:-1;55795:285:0;;;;;:::i;:::-;;:::i;69350:125::-;;;;;;;;;;;;;:::i;51865:792::-;;;;;;;;;;-1:-1:-1;51865:792:0;;;;;:::i;:::-;;:::i;66919:33::-;;;;;;;;;;;;;:::i;67099:52::-;;;;;;;;;;;;;:::i;69111:173::-;;;;;;;;;;-1:-1:-1;69111:173:0;;;;;:::i;:::-;;:::i;71006:551::-;;;;;;;;;;-1:-1:-1;71006:551:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;54966:164::-;;;;;;;;;;-1:-1:-1;54966:164:0;;;;;:::i;:::-;;:::i;67268:32::-;;;;;;;;;;;;;:::i;66535:244::-;;;;;;;;;;-1:-1:-1;66535:244:0;;;;;:::i;:::-;;:::i;10236:150::-;10345:33;;;10321:4;10345:33;;;;;;;;;;;;;10236:150;;;;:::o;51521:100::-;51608:5;51601:12;;;;;;;;-1:-1:-1;;51601:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51575:13;;51601:12;;51608:5;;51601:12;;51608:5;51601:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51521:100;:::o;54307:221::-;54383:7;54411:16;54419:7;54411;:16::i;:::-;54403:73;;;;-1:-1:-1;;;54403:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;54496:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;54496:24:0;;54307:221::o;53837:404::-;53918:13;53934:23;53949:7;53934:14;:23::i;:::-;53918:39;;53982:5;-1:-1:-1;;;;;53976:11:0;:2;-1:-1:-1;;;;;53976:11:0;;;53968:57;;;;-1:-1:-1;;;53968:57:0;;;;;;;:::i;:::-;54062:5;-1:-1:-1;;;;;54046:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;54046:21:0;;:69;;;;54071:44;54095:5;54102:12;:10;:12::i;54071:44::-;54038:161;;;;-1:-1:-1;;;54038:161:0;;;;;;;:::i;:::-;54212:21;54221:2;54225:7;54212:8;:21::i;:::-;53837:404;;;:::o;68172:124::-;65812:12;:10;:12::i;:::-;-1:-1:-1;;;;;65801:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65801:23:0;;65793:68;;;;-1:-1:-1;;;65793:68:0;;;;;;;:::i;:::-;68257:31;;::::1;::::0;:14:::1;::::0;:31:::1;::::0;::::1;::::0;::::1;:::i;:::-;;68172:124:::0;:::o;53315:211::-;53376:7;53497:21;:12;:19;:21::i;:::-;53490:28;;53315:211;:::o;70393:398::-;70499:10;70478:17;70486:8;70478:7;:17::i;:::-;-1:-1:-1;;;;;70478:31:0;;70470:82;;;;-1:-1:-1;;;70470:82:0;;;;;;;:::i;:::-;70608:18;;;;:8;:18;;;;;;;70595:33;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;70571:20;70584:5;70571:20;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:57;;70563:105;;;;-1:-1:-1;;;70563:105:0;;;;;;;:::i;:::-;70679:18;;;;:8;:18;;;;;;;;:26;;;;;;;;:::i;:::-;;70731:42;70745:10;70757:8;70767:5;70731:42;;;;;;;;:::i;:::-;;;;;;;;70393:398;;:::o;55197:305::-;55358:41;55377:12;:10;:12::i;:::-;55391:7;55358:18;:41::i;:::-;55350:103;;;;-1:-1:-1;;;55350:103:0;;;;;;;:::i;:::-;55466:28;55476:4;55482:2;55486:7;55466:9;:28::i;69706:674::-;69778:12;;;;;;;69770:56;;;;-1:-1:-1;;;69770:56:0;;;;;;;:::i;:::-;69862:1;69845:14;:18;:54;;;;;67210:1;69867:14;:32;;69845:54;69837:99;;;;-1:-1:-1;;;69837:99:0;;;;;;;:::i;:::-;67255:4;69955:33;69973:14;69955:13;:11;:13::i;:::-;:17;;:33::i;:::-;:45;;69947:98;;;;-1:-1:-1;;;69947:98:0;;;;;;;:::i;:::-;70077:28;67134:17;70090:14;70077:12;:28::i;:::-;70064:9;:41;;70056:85;;;;-1:-1:-1;;;70056:85:0;;;;;;;:::i;:::-;70166:6;70162:209;70182:14;70178:1;:18;70162:209;;;70218:14;70235:13;:11;:13::i;:::-;70218:30;;67255:4;70267:13;:11;:13::i;:::-;:24;70263:97;;;70312:32;70322:10;70334:9;70312;:32::i;:::-;-1:-1:-1;70198:3:0;;70162:209;;67172:39;67210:1;67172:39;:::o;53077:162::-;-1:-1:-1;;;;;53201:20:0;;53174:7;53201:20;;;:13;:20;;;;;:30;;53225:5;53201:23;:30::i;:::-;53194:37;;53077:162;;;;;:::o;68413:89::-;65812:12;:10;:12::i;:::-;-1:-1:-1;;;;;65801:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65801:23:0;;65793:68;;;;-1:-1:-1;;;65793:68:0;;;;;;;:::i;:::-;68482:12:::1;::::0;;68466:28;;::::1;68482:12;::::0;;;::::1;;;68481:13;68466:28:::0;;::::1;;::::0;;68413:89::o;67625:131::-;65812:12;:10;:12::i;:::-;-1:-1:-1;;;;;65801:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65801:23:0;;65793:68;;;;-1:-1:-1;;;65793:68:0;;;;;;;:::i;:::-;67720:28:::1;::::0;67688:21:::1;::::0;67720:10:::1;::::0;:28;::::1;;;::::0;67688:21;;67673:12:::1;67720:28:::0;67673:12;67720:28;67688:21;67720:10;:28;::::1;;;;;;;;;;;;;::::0;::::1;;;;55573:151:::0;55677:39;55694:4;55700:2;55704:7;55677:39;;;;;;;;;;;;:16;:39::i;67313:::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;67313:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53603:172::-;53678:7;;53720:22;:12;53736:5;53720:15;:22::i;:::-;-1:-1:-1;53698:44:0;53603:172;-1:-1:-1;;;53603:172:0:o;68304:99::-;65812:12;:10;:12::i;:::-;-1:-1:-1;;;;;65801:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65801:23:0;;65793:68;;;;-1:-1:-1;;;65793:68:0;;;;;;;:::i;:::-;68375:20:::1;68387:7;68375:11;:20::i;:::-;68304:99:::0;:::o;51277:177::-;51349:7;51376:70;51393:7;51376:70;;;;;;;;;;;;;;;;;:12;;:70;:16;:70::i;52896:97::-;52977:8;52970:15;;;;;;;;-1:-1:-1;;52970:15:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52944:13;;52970:15;;52977:8;;52970:15;;52977:8;52970:15;;;;;;;;;;;;;;;;;;;;;;;;70803:191;70860:13;70906;:11;:13::i;:::-;70895:8;:24;70886:64;;;;-1:-1:-1;;;70886:64:0;;;;;;;:::i;:::-;70968:18;;;;:8;:18;;;;;;;;;70961:25;;;;;;-1:-1:-1;;70961:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70968:18;;70961:25;;70968:18;70961:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70803:191;;;:::o;50994:221::-;51066:7;-1:-1:-1;;;;;51094:19:0;;51086:74;;;;-1:-1:-1;;;51086:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;51178:20:0;;;;;;:13;:20;;;;;:29;;:27;:29::i;66232:148::-;65812:12;:10;:12::i;:::-;-1:-1:-1;;;;;65801:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65801:23:0;;65793:68;;;;-1:-1:-1;;;65793:68:0;;;;;;;:::i;:::-;66323:6:::1;::::0;66302:40:::1;::::0;66339:1:::1;::::0;-1:-1:-1;;;;;66323:6:0::1;::::0;66302:40:::1;::::0;66339:1;;66302:40:::1;66353:6;:19:::0;;;::::1;::::0;;66232:148::o;67220:39::-;67255:4;67220:39;:::o;68520:540::-;68581:16;68611:18;68632:17;68642:6;68632:9;:17::i;:::-;68611:38;-1:-1:-1;68664:15:0;68660:393;;68741:16;;;68755:1;68741:16;;;;;;;;;;;;68734:23;;;;;68660:393;68790:23;68830:10;68816:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;68816:25:0;;68790:51;;68856:13;68884:130;68908:10;68900:5;:18;68884:130;;;68964:34;68984:6;68992:5;68964:19;:34::i;:::-;68948:6;68955:5;68948:13;;;;;;;;;;;;;;;;;:50;68920:7;;68884:130;;;-1:-1:-1;69035:6:0;-1:-1:-1;69028:13:0;;-1:-1:-1;69028:13:0;65581:87;65654:6;;-1:-1:-1;;;;;65654:6:0;65581:87;:::o;51690:104::-;51779:7;51772:14;;;;;;;;-1:-1:-1;;51772:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51746:13;;51772:14;;51779:7;;51772:14;;51779:7;51772:14;;;;;;;;;;;;;;;;;;;;;;;;67018:31;;;;;;;;;;;;;;;-1:-1:-1;;67018:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67768:394;65812:12;:10;:12::i;:::-;-1:-1:-1;;;;;65801:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65801:23:0;;65793:68;;;;-1:-1:-1;;;65793:68:0;;;;;;;:::i;:::-;67862:11:::1;67876:13;:11;:13::i;:::-;67862:27;;67925:1;67908:14;:18;:50;;;;;67948:10;;67930:14;:28;;67908:50;67900:95;;;;-1:-1:-1::0;;;67900:95:0::1;;;;;;;:::i;:::-;68011:6;68006:95;68027:14;68023:1;:18;68006:95;;;68063:26;68073:3;68087:1;68078:6;:10;68063:9;:26::i;:::-;68043:3;;68006:95;;;-1:-1:-1::0;68124:10:0::1;::::0;:30:::1;::::0;68139:14;68124::::1;:30::i;:::-;68111:10;:43:::0;-1:-1:-1;;;67768:394:0:o;54600:295::-;54715:12;:10;:12::i;:::-;-1:-1:-1;;;;;54703:24:0;:8;-1:-1:-1;;;;;54703:24:0;;;54695:62;;;;-1:-1:-1;;;54695:62:0;;;;;;;:::i;:::-;54815:8;54770:18;:32;54789:12;:10;:12::i;:::-;-1:-1:-1;;;;;54770:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;54770:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;54770:53:0;;;;;;;;;;;54854:12;:10;:12::i;:::-;-1:-1:-1;;;;;54839:48:0;;54878:8;54839:48;;;;;;:::i;:::-;;;;;;;;54600:295;;:::o;69514:174::-;65812:12;:10;:12::i;:::-;-1:-1:-1;;;;;65801:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65801:23:0;;65793:68;;;;-1:-1:-1;;;65793:68:0;;;;;;;:::i;:::-;69597:13:::1;::::0;::::1;;:22;69589:57;;;;-1:-1:-1::0;;;69589:57:0::1;;;;;;;:::i;:::-;69657:23:::0;;::::1;::::0;:12:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;67403:27::-:0;;;;:::o;55795:285::-;55927:41;55946:12;:10;:12::i;:::-;55960:7;55927:18;:41::i;:::-;55919:103;;;;-1:-1:-1;;;55919:103:0;;;;;;;:::i;:::-;56033:39;56047:4;56053:2;56057:7;56066:5;56033:13;:39::i;:::-;55795:285;;;;:::o;69350:125::-;65812:12;:10;:12::i;:::-;-1:-1:-1;;;;;65801:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65801:23:0;;65793:68;;;;-1:-1:-1;;;65793:68:0;;;;;;;:::i;:::-;69401:13:::1;:21:::0;;-1:-1:-1;;69401:21:0::1;69418:4;69401:21;::::0;;69438:29:::1;::::0;::::1;::::0;::::1;::::0;69454:12:::1;::::0;69438:29:::1;:::i;:::-;;;;;;;;69350:125::o:0;51865:792::-;51938:13;51972:16;51980:7;51972;:16::i;:::-;51964:76;;;;-1:-1:-1;;;51964:76:0;;;;;;;:::i;:::-;52053:23;52079:19;;;:10;:19;;;;;;;;52053:45;;;;;;;;;;;-1:-1:-1;;52053:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;52079:19;;52053:45;;;52079:19;52053:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52109:18;52130:9;:7;:9::i;:::-;52109:30;;52221:4;52215:18;52237:1;52215:23;52211:72;;;-1:-1:-1;52262:9:0;-1:-1:-1;52255:16:0;;52211:72;52387:23;;:27;52383:108;;52462:4;52468:9;52445:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52431:48;;;;;;52383:108;52623:4;52629:18;:7;:16;:18::i;:::-;52606:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52592:57;;;;51865:792;;;:::o;66919:33::-;;;;;;;;;;;;;;;-1:-1:-1;;66919:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67099:52;67134:17;67099:52;:::o;69111:173::-;69163:13;69203;:11;:13::i;:::-;69197:3;:19;69189:57;;;;-1:-1:-1;;;69189:57:0;;;;;;;:::i;:::-;69264:12;69257:19;;;;;;;;;;;;;-1:-1:-1;;69257:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;69264:12;69257:19;;69264:12;69257:19;;;;;;;;;;;;;;;;;;;;;;;;71006:551;71069:15;71098:18;71119:17;71129:6;71119:9;:17::i;:::-;71098:38;-1:-1:-1;71151:15:0;71147:403;;71228:15;;;71241:1;71228:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71221:22;;;;;71147:403;71276:22;71314:10;71301:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71276:49;;71340:13;71368:143;71392:10;71384:5;:18;71368:143;;;71448:8;:46;71458:34;71478:6;71486:5;71458:19;:34::i;:::-;71448:46;;;;;;;;;;;;;;-1:-1:-1;71448:46:0;71432:62;;;;;;;;;;;-1:-1:-1;;71432:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;71448:46;;71432:62;;;71448:46;71432:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:6;71439:5;71432:13;;;;;;;;;;;;;;;;;:62;71404:7;;71368:143;;54966:164;-1:-1:-1;;;;;55087:25:0;;;55063:4;55087:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;54966:164::o;67268:32::-;;;;;;;;;:::o;66535:244::-;65812:12;:10;:12::i;:::-;-1:-1:-1;;;;;65801:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65801:23:0;;65793:68;;;;-1:-1:-1;;;65793:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;66624:22:0;::::1;66616:73;;;;-1:-1:-1::0;;;66616:73:0::1;;;;;;;:::i;:::-;66726:6;::::0;66705:38:::1;::::0;-1:-1:-1;;;;;66705:38:0;;::::1;::::0;66726:6:::1;::::0;66705:38:::1;::::0;66726:6:::1;::::0;66705:38:::1;66754:6;:17:::0;;;::::1;-1:-1:-1::0;;;;;66754:17:0;;;::::1;::::0;;;::::1;::::0;;66535:244::o;57547:127::-;57612:4;57636:30;:12;57658:7;57636:21;:30::i;668:106::-;756:10;668:106;:::o;63565:192::-;63640:24;;;;:15;:24;;;;;:29;;;;-1:-1:-1;;;;;63640:29:0;;;;;;;;:24;;63694:23;63640:24;63694:14;:23::i;:::-;-1:-1:-1;;;;;63685:46:0;;;;;;;;;;;63565:192;;:::o;44279:123::-;44348:7;44375:19;44383:3;44375:7;:19::i;57841:355::-;57934:4;57959:16;57967:7;57959;:16::i;:::-;57951:73;;;;-1:-1:-1;;;57951:73:0;;;;;;;:::i;:::-;58035:13;58051:23;58066:7;58051:14;:23::i;:::-;58035:39;;58104:5;-1:-1:-1;;;;;58093:16:0;:7;-1:-1:-1;;;;;58093:16:0;;:51;;;;58137:7;-1:-1:-1;;;;;58113:31:0;:20;58125:7;58113:11;:20::i;:::-;-1:-1:-1;;;;;58113:31:0;;58093:51;:94;;;;58148:39;58172:5;58179:7;58148:23;:39::i;:::-;58085:103;57841:355;-1:-1:-1;;;;57841:355:0:o;60977:599::-;61102:4;-1:-1:-1;;;;;61075:31:0;:23;61090:7;61075:14;:23::i;:::-;-1:-1:-1;;;;;61075:31:0;;61067:85;;;;-1:-1:-1;;;61067:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;61189:16:0;;61181:65;;;;-1:-1:-1;;;61181:65:0;;;;;;;:::i;:::-;61259:39;61280:4;61286:2;61290:7;61259:20;:39::i;:::-;61363:29;61380:1;61384:7;61363:8;:29::i;:::-;-1:-1:-1;;;;;61405:19:0;;;;;;:13;:19;;;;;:35;;61432:7;61405:26;:35::i;:::-;-1:-1:-1;;;;;;61451:17:0;;;;;;:13;:17;;;;;:30;;61473:7;61451:21;:30::i;:::-;-1:-1:-1;61494:29:0;:12;61511:7;61520:2;61494:16;:29::i;:::-;;61560:7;61556:2;-1:-1:-1;;;;;61541:27:0;61550:4;-1:-1:-1;;;;;61541:27:0;;;;;;;;;;;60977:599;;;:::o;13798:179::-;13856:7;13888:5;;;13912:6;;;;13904:46;;;;-1:-1:-1;;;13904:46:0;;;;;;;:::i;14677:220::-;14735:7;14759:6;14755:20;;-1:-1:-1;14774:1:0;14767:8;;14755:20;14798:5;;;14802:1;14798;:5;:1;14822:5;;;;;:10;14814:56;;;;-1:-1:-1;;;14814:56:0;;;;;;;:::i;58539:110::-;58615:26;58625:2;58629:7;58615:26;;;;;;;;;;;;:9;:26::i;36070:137::-;36141:7;36176:22;36180:3;36192:5;36176:3;:22::i;44741:236::-;44821:7;;;;44881:22;44885:3;44897:5;44881:3;:22::i;:::-;44850:53;;;;-1:-1:-1;44741:236:0;-1:-1:-1;;;;;44741:236:0:o;62177:100::-;62250:19;;;;:8;;:19;;;;;:::i;46027:213::-;46134:7;46185:44;46190:3;46210;46216:12;46185:4;:44::i;:::-;46177:53;-1:-1:-1;46027:213:0;;;;;;:::o;14260:158::-;14318:7;14351:1;14346;:6;;14338:49;;;;-1:-1:-1;;;14338:49:0;;;;;;;:::i;:::-;-1:-1:-1;14405:5:0;;;14260:158::o;56962:272::-;57076:28;57086:4;57092:2;57096:7;57076:9;:28::i;:::-;57123:48;57146:4;57152:2;57156:7;57165:5;57123:22;:48::i;:::-;57115:111;;;;-1:-1:-1;;;57115:111:0;;;;;;;:::i;46491:746::-;46547:13;46768:10;46764:53;;-1:-1:-1;46795:10:0;;;;;;;;;;;;;;;;;;;46764:53;46842:5;46827:12;46883:78;46890:9;;46883:78;;46916:8;;46947:2;46939:10;;;;46883:78;;;46971:19;47003:6;46993:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46993:17:0;-1:-1:-1;47065:5:0;;-1:-1:-1;46971:39:0;-1:-1:-1;;;47037:10:0;;47081:117;47088:9;;47081:117;;47157:2;47150:4;:9;47145:2;:14;47132:29;;47114:6;47121:7;;;;;;;47114:15;;;;;;;;;;;:47;;;;;;;;;;-1:-1:-1;47184:2:0;47176:10;;;;47081:117;;;-1:-1:-1;47222:6:0;46491:746;-1:-1:-1;;;;46491:746:0:o;44040:151::-;44124:4;44148:35;44158:3;44178;44148:9;:35::i;40858:110::-;40941:19;;40858:110::o;35157:137::-;35227:4;35251:35;35259:3;35279:5;35251:7;:35::i;34850:131::-;34917:4;34941:32;34946:3;34966:5;34941:4;:32::i;43463:185::-;43552:4;43576:64;43581:3;43601;-1:-1:-1;;;;;43615:23:0;;43576:4;:64::i;58876:250::-;58972:18;58978:2;58982:7;58972:5;:18::i;:::-;59009:54;59040:1;59044:2;59048:7;59057:5;59009:22;:54::i;:::-;59001:117;;;;-1:-1:-1;;;59001:117:0;;;;;;;:::i;31108:204::-;31203:18;;31175:7;;31203:26;-1:-1:-1;31195:73:0;;;;-1:-1:-1;;;31195:73:0;;;;;;;:::i;:::-;31286:3;:11;;31298:5;31286:18;;;;;;;;;;;;;;;;31279:25;;31108:204;;;;:::o;41323:279::-;41427:19;;41390:7;;;;41427:27;-1:-1:-1;41419:74:0;;;;-1:-1:-1;;;41419:74:0;;;;;;;:::i;:::-;41506:22;41531:3;:12;;41544:5;41531:19;;;;;;;;;;;;;;;;;;41506:44;;41569:5;:10;;;41581:5;:12;;;41561:33;;;;;41323:279;;;;;:::o;42820:319::-;42914:7;42953:17;;;:12;;;:17;;;;;;43004:12;42989:13;42981:36;;;;-1:-1:-1;;;42981:36:0;;;;;;;;:::i;:::-;;43071:3;:12;;43095:1;43084:8;:12;43071:26;;;;;;;;;;;;;;;;;;:33;;;43064:40;;;42820:319;;;;;:::o;62842:604::-;62963:4;62990:15;:2;-1:-1:-1;;;;;62990:13:0;;:15::i;:::-;62985:60;;-1:-1:-1;63029:4:0;63022:11;;62985:60;63055:23;63081:252;63134:45;63194:12;:10;:12::i;:::-;63221:4;63240:7;63262:5;63097:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63081:252;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;63081:15:0;;;:252;:15;:252::i;:::-;63055:278;;63344:13;63371:10;63360:32;;;;;;;;;;;;:::i;:::-;63411:26;;63421:16;63411:26;;-1:-1:-1;;;62842:604:0;;;;;;:::o;40638:125::-;40709:4;40733:17;;;:12;;;;;:17;;;;;;:22;;;40638:125::o;28810:1544::-;28876:4;29015:19;;;:12;;;:19;;;;;;29051:15;;29047:1300;;29486:18;;-1:-1:-1;;29437:14:0;;;;29486:22;;;;29413:21;;29486:3;;:22;;29773;;;;;;;;;;;;;;29753:42;;29919:9;29890:3;:11;;29902:13;29890:26;;;;;;;;;;;;;;;;;;;:38;;;;29996:23;;;30038:1;29996:12;;;:23;;;;;;30022:17;;;29996:43;;30148:17;;29996:3;;30148:17;;;;;;;;;;;;;;;;;;;;;;30243:3;:12;;:19;30256:5;30243:19;;;;;;;;;;;30236:26;;;30286:4;30279:11;;;;;;;;29047:1300;30330:5;30323:12;;;;;28220:414;28283:4;28305:21;28315:3;28320:5;28305:9;:21::i;:::-;28300:327;;-1:-1:-1;28343:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;28526:18;;28504:19;;;:12;;;:19;;;;;;:40;;;;28559:11;;28300:327;-1:-1:-1;28610:5:0;28603:12;;38138:692;38214:4;38349:17;;;:12;;;:17;;;;;;38383:13;38379:444;;-1:-1:-1;;38468:38:0;;;;;;;;;;;;;;;;;;38450:57;;;;;;;;:12;:57;;;;;;;;;;;;;;;;;;;;;;;;38665:19;;38645:17;;;:12;;;:17;;;;;;;:39;38699:11;;38379:444;38779:5;38743:3;:12;;38767:1;38756:8;:12;38743:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;38806:5;38799:12;;;;;59462:404;-1:-1:-1;;;;;59542:16:0;;59534:61;;;;-1:-1:-1;;;59534:61:0;;;;;;;:::i;:::-;59615:16;59623:7;59615;:16::i;:::-;59614:17;59606:58;;;;-1:-1:-1;;;59606:58:0;;;;;;;:::i;:::-;59677:45;59706:1;59710:2;59714:7;59677:20;:45::i;:::-;-1:-1:-1;;;;;59735:17:0;;;;;;:13;:17;;;;;:30;;59757:7;59735:21;:30::i;:::-;-1:-1:-1;59778:29:0;:12;59795:7;59804:2;59778:16;:29::i;:::-;-1:-1:-1;59825:33:0;;59850:7;;-1:-1:-1;;;;;59825:33:0;;;59842:1;;59825:33;;59842:1;;59825:33;59462:404;;:::o;19239:422::-;19606:20;19645:8;;;19239:422::o;22157:195::-;22260:12;22292:52;22314:6;22322:4;22328:1;22331:12;22260;23461:18;23472:6;23461:10;:18::i;:::-;23453:60;;;;-1:-1:-1;;;23453:60:0;;;;;;;:::i;:::-;23587:12;23601:23;23628:6;-1:-1:-1;;;;;23628:11:0;23648:5;23656:4;23628:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23586:75;;;;23679:52;23697:7;23706:10;23718:12;23679:17;:52::i;:::-;23672:59;23209:530;-1:-1:-1;;;;;;;23209:530:0:o;25749:742::-;25864:12;25893:7;25889:595;;;-1:-1:-1;25924:10:0;25917:17;;25889:595;26038:17;;:21;26034:439;;26301:10;26295:17;26362:15;26349:10;26345:2;26341:19;26334:44;26249:148;26444:12;26437:20;;-1:-1:-1;;;26437:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:648:1;;110:18;151:2;143:6;140:14;137:2;;;157:9;137:2;197;191:9;336:4;266:66;259:4;251:6;247:17;243:90;235:6;231:103;227:114;391:6;379:10;376:22;371:2;359:10;356:18;353:46;350:2;;;402:9;350:2;429;422:22;477;;;462:6;-1:-1:-1;462:6:1;514:16;;;511:25;-1:-1:-1;508:2:1;;;549:1;546;539:12;508:2;599:6;594:3;587:4;579:6;575:17;562:44;654:1;647:4;638:6;630;626:19;622:30;615:41;;;90:572;;;;;:::o;667:198::-;737:20;;-1:-1:-1;;;;;786:54:1;;776:65;;766:2;;855:1;852;845:12;870:233;;968:3;961:4;953:6;949:17;945:27;935:2;;990:5;983;976:20;935:2;1016:81;1093:3;1084:6;1071:20;1064:4;1056:6;1052:17;1016:81;:::i;1108:198::-;;1220:2;1208:9;1199:7;1195:23;1191:32;1188:2;;;1241:6;1233;1226:22;1188:2;1269:31;1290:9;1269:31;:::i;1311:274::-;;;1440:2;1428:9;1419:7;1415:23;1411:32;1408:2;;;1461:6;1453;1446:22;1408:2;1489:31;1510:9;1489:31;:::i;:::-;1479:41;;1539:40;1575:2;1564:9;1560:18;1539:40;:::i;:::-;1529:50;;1398:187;;;;;:::o;1590:342::-;;;;1736:2;1724:9;1715:7;1711:23;1707:32;1704:2;;;1757:6;1749;1742:22;1704:2;1785:31;1806:9;1785:31;:::i;:::-;1775:41;;1835:40;1871:2;1860:9;1856:18;1835:40;:::i;:::-;1825:50;;1922:2;1911:9;1907:18;1894:32;1884:42;;1694:238;;;;;:::o;1937:702::-;;;;;2109:3;2097:9;2088:7;2084:23;2080:33;2077:2;;;2131:6;2123;2116:22;2077:2;2159:31;2180:9;2159:31;:::i;:::-;2149:41;;2209:40;2245:2;2234:9;2230:18;2209:40;:::i;:::-;2199:50;;2296:2;2285:9;2281:18;2268:32;2258:42;;2351:2;2340:9;2336:18;2323:32;2378:18;2370:6;2367:30;2364:2;;;2415:6;2407;2400:22;2364:2;2443:22;;2496:4;2488:13;;2484:27;-1:-1:-1;2474:2:1;;2530:6;2522;2515:22;2474:2;2558:75;2625:7;2620:2;2607:16;2602:2;2598;2594:11;2558:75;:::i;:::-;2548:85;;;2067:572;;;;;;;:::o;2644:369::-;;;2770:2;2758:9;2749:7;2745:23;2741:32;2738:2;;;2791:6;2783;2776:22;2738:2;2819:31;2840:9;2819:31;:::i;:::-;2809:41;;2900:2;2889:9;2885:18;2872:32;2947:5;2940:13;2933:21;2926:5;2923:32;2913:2;;2974:6;2966;2959:22;2913:2;3002:5;2992:15;;;2728:285;;;;;:::o;3018:266::-;;;3147:2;3135:9;3126:7;3122:23;3118:32;3115:2;;;3168:6;3160;3153:22;3115:2;3196:31;3217:9;3196:31;:::i;:::-;3186:41;3274:2;3259:18;;;;3246:32;;-1:-1:-1;;;3105:179:1:o;3289:194::-;;3412:2;3400:9;3391:7;3387:23;3383:32;3380:2;;;3433:6;3425;3418:22;3380:2;-1:-1:-1;3461:16:1;;3370:113;-1:-1:-1;3370:113:1:o;3488:257::-;;3599:2;3587:9;3578:7;3574:23;3570:32;3567:2;;;3620:6;3612;3605:22;3567:2;3664:9;3651:23;3683:32;3709:5;3683:32;:::i;3750:261::-;;3872:2;3860:9;3851:7;3847:23;3843:32;3840:2;;;3893:6;3885;3878:22;3840:2;3930:9;3924:16;3949:32;3975:5;3949:32;:::i;4016:344::-;;4138:2;4126:9;4117:7;4113:23;4109:32;4106:2;;;4159:6;4151;4144:22;4106:2;4204:9;4191:23;4237:18;4229:6;4226:30;4223:2;;;4274:6;4266;4259:22;4223:2;4302:52;4346:7;4337:6;4326:9;4322:22;4302:52;:::i;4365:190::-;;4477:2;4465:9;4456:7;4452:23;4448:32;4445:2;;;4498:6;4490;4483:22;4445:2;-1:-1:-1;4526:23:1;;4435:120;-1:-1:-1;4435:120:1:o;4560:412::-;;;4699:2;4687:9;4678:7;4674:23;4670:32;4667:2;;;4720:6;4712;4705:22;4667:2;4761:9;4748:23;4738:33;;4822:2;4811:9;4807:18;4794:32;4849:18;4841:6;4838:30;4835:2;;;4886:6;4878;4871:22;4835:2;4914:52;4958:7;4949:6;4938:9;4934:22;4914:52;:::i;:::-;4904:62;;;4657:315;;;;;:::o;4977:318::-;;5058:5;5052:12;5085:6;5080:3;5073:19;5101:63;5157:6;5150:4;5145:3;5141:14;5134:4;5127:5;5123:16;5101:63;:::i;:::-;5209:2;5197:15;5214:66;5193:88;5184:98;;;;5284:4;5180:109;;5028:267;-1:-1:-1;;5028:267:1:o;5300:274::-;;5467:6;5461:13;5483:53;5529:6;5524:3;5517:4;5509:6;5505:17;5483:53;:::i;:::-;5552:16;;;;;5437:137;-1:-1:-1;;5437:137:1:o;5579:888::-;;5738:3;5773:6;5767:13;5799:1;5831:2;5820:9;5816:18;5848:1;5843:184;;;;6041:1;6036:406;;;;5809:633;;5843:184;-1:-1:-1;;5880:9:1;5876:82;5871:3;5864:95;6011:4;6007:1;5996:9;5992:17;5988:28;5983:3;5979:38;5972:45;;5843:184;;6036:406;6086:1;6075:9;6071:17;6113:6;6108:3;6101:19;6143:4;6190:2;6185:3;6175:18;6215:3;6231:165;6245:6;6242:1;6239:13;6231:165;;;6323:14;;6310:11;;;6303:35;6366:16;;;;6260:10;;6231:165;;;-1:-1:-1;;;6416:16:1;;;-1:-1:-1;5809:633:1;-1:-1:-1;6458:3:1;;5717:750;-1:-1:-1;;;;;5717:750:1:o;6472:470::-;;6689:6;6683:13;6705:53;6751:6;6746:3;6739:4;6731:6;6727:17;6705:53;:::i;:::-;6821:13;;6780:16;;;;6843:57;6821:13;6780:16;6877:4;6865:17;;6843:57;:::i;:::-;6916:20;;6659:283;-1:-1:-1;;;;6659:283:1:o;6947:226::-;-1:-1:-1;;;;;7111:55:1;;;;7093:74;;7081:2;7066:18;;7048:125::o;7178:529::-;;-1:-1:-1;;;;;7498:2:1;7490:6;7486:15;7475:9;7468:34;7550:2;7542:6;7538:15;7533:2;7522:9;7518:18;7511:43;;7590:6;7585:2;7574:9;7570:18;7563:34;7633:3;7628:2;7617:9;7613:18;7606:31;7654:47;7696:3;7685:9;7681:19;7673:6;7654:47;:::i;:::-;7646:55;7397:310;-1:-1:-1;;;;;;7397:310:1:o;7712:420::-;;-1:-1:-1;;;;;7929:6:1;7925:55;7914:9;7907:74;8017:6;8012:2;8001:9;7997:18;7990:34;8060:2;8055;8044:9;8040:18;8033:30;8080:46;8122:2;8111:9;8107:18;8099:6;8080:46;:::i;:::-;8072:54;7897:235;-1:-1:-1;;;;;7897:235:1:o;8137:867::-;;8328:2;8368;8357:9;8353:18;8398:2;8387:9;8380:21;8421:6;8456;8450:13;8487:6;8479;8472:22;8525:2;8514:9;8510:18;8503:25;;8588:2;8582;8574:6;8570:15;8559:9;8555:31;8551:40;8537:54;;8626:2;8618:6;8614:15;8647:4;8660:315;8674:6;8671:1;8668:13;8660:315;;;8763:66;8751:9;8743:6;8739:22;8735:95;8730:3;8723:108;8854:41;8888:6;8879;8873:13;8854:41;:::i;:::-;8844:51;-1:-1:-1;8953:12:1;;;;8918:15;;;;8696:1;8689:9;8660:315;;;-1:-1:-1;8992:6:1;;8308:696;-1:-1:-1;;;;;;;8308:696:1:o;9009:635::-;9180:2;9232:21;;;9302:13;;9205:18;;;9324:22;;;9009:635;;9180:2;9403:15;;;;9377:2;9362:18;;;9009:635;9449:169;9463:6;9460:1;9457:13;9449:169;;;9524:13;;9512:26;;9593:15;;;;9558:12;;;;9485:1;9478:9;9449:169;;;-1:-1:-1;9635:3:1;;9160:484;-1:-1:-1;;;;;;9160:484:1:o;9649:187::-;9814:14;;9807:22;9789:41;;9777:2;9762:18;;9744:92::o;9841:221::-;;9990:2;9979:9;9972:21;10010:46;10052:2;10041:9;10037:18;10029:6;10010:46;:::i;10067:1040::-;;10205:2;10245;10234:9;10230:18;10275:2;10264:9;10257:21;10298:4;10334:6;10328:13;10360:1;10392:2;10381:9;10377:18;10409:1;10404:236;;;;10654:1;10649:432;;;;10370:711;;10404:236;10463:4;10459:1;10448:9;10444:17;10440:28;10432:6;10425:44;-1:-1:-1;;10513:9:1;10509:82;10504:2;10493:9;10489:18;10482:110;10627:2;10616:9;10612:18;10605:25;;10404:236;;10649:432;10699:1;10688:9;10684:17;10729:6;10721;10714:22;10764:42;10799:6;10764:42;:::i;:::-;10828:4;10845:180;10859:6;10856:1;10853:13;10845:180;;;10952:14;;10928:17;;;10947:2;10924:26;10917:50;10995:16;;;;10874:10;;10845:180;;;11049:17;;11068:2;11045:26;;-1:-1:-1;;;10370:711:1;-1:-1:-1;11098:3:1;;10185:922;-1:-1:-1;;;;;;;10185:922:1:o;11112:398::-;11314:2;11296:21;;;11353:2;11333:18;;;11326:30;11392:34;11387:2;11372:18;;11365:62;11463:4;11458:2;11443:18;;11436:32;11500:3;11485:19;;11286:224::o;11515:404::-;11717:2;11699:21;;;11756:2;11736:18;;;11729:30;11795:34;11790:2;11775:18;;11768:62;11866:10;11861:2;11846:18;;11839:38;11909:3;11894:19;;11689:230::o;11924:402::-;12126:2;12108:21;;;12165:2;12145:18;;;12138:30;12204:34;12199:2;12184:18;;12177:62;12275:8;12270:2;12255:18;;12248:36;12316:3;12301:19;;12098:228::o;12331:414::-;12533:2;12515:21;;;12572:2;12552:18;;;12545:30;12611:34;12606:2;12591:18;;12584:62;12682:20;12677:2;12662:18;;12655:48;12735:3;12720:19;;12505:240::o;12750:402::-;12952:2;12934:21;;;12991:2;12971:18;;;12964:30;13030:34;13025:2;13010:18;;13003:62;13101:8;13096:2;13081:18;;13074:36;13142:3;13127:19;;12924:228::o;13157:352::-;13359:2;13341:21;;;13398:2;13378:18;;;13371:30;13437;13432:2;13417:18;;13410:58;13500:2;13485:18;;13331:178::o;13514:351::-;13716:2;13698:21;;;13755:2;13735:18;;;13728:30;13794:29;13789:2;13774:18;;13767:57;13856:2;13841:18;;13688:177::o;13870:356::-;14072:2;14054:21;;;14091:18;;;14084:30;14150:34;14145:2;14130:18;;14123:62;14217:2;14202:18;;14044:182::o;14231:400::-;14433:2;14415:21;;;14472:2;14452:18;;;14445:30;14511:34;14506:2;14491:18;;14484:62;14582:6;14577:2;14562:18;;14555:34;14621:3;14606:19;;14405:226::o;14636:349::-;14838:2;14820:21;;;14877:2;14857:18;;;14850:30;14916:27;14911:2;14896:18;;14889:55;14976:2;14961:18;;14810:175::o;14990:349::-;15192:2;15174:21;;;15231:2;15211:18;;;15204:30;15270:27;15265:2;15250:18;;15243:55;15330:2;15315:18;;15164:175::o;15344:355::-;15546:2;15528:21;;;15585:2;15565:18;;;15558:30;15624:33;15619:2;15604:18;;15597:61;15690:2;15675:18;;15518:181::o;15704:354::-;15906:2;15888:21;;;15945:2;15925:18;;;15918:30;15984:32;15979:2;15964:18;;15957:60;16049:2;16034:18;;15878:180::o;16470:408::-;16672:2;16654:21;;;16711:2;16691:18;;;16684:30;16750:34;16745:2;16730:18;;16723:62;16821:14;16816:2;16801:18;;16794:42;16868:3;16853:19;;16644:234::o;16883:420::-;17085:2;17067:21;;;17124:2;17104:18;;;17097:30;17163:34;17158:2;17143:18;;17136:62;17234:26;17229:2;17214:18;;17207:54;17293:3;17278:19;;17057:246::o;17308:406::-;17510:2;17492:21;;;17549:2;17529:18;;;17522:30;17588:34;17583:2;17568:18;;17561:62;17659:12;17654:2;17639:18;;17632:40;17704:3;17689:19;;17482:232::o;17719:398::-;17921:2;17903:21;;;17960:2;17940:18;;;17933:30;17999:34;17994:2;17979:18;;17972:62;18070:4;18065:2;18050:18;;18043:32;18107:3;18092:19;;17893:224::o;18122:356::-;18324:2;18306:21;;;18343:18;;;18336:30;18402:34;18397:2;18382:18;;18375:62;18469:2;18454:18;;18296:182::o;18483:397::-;18685:2;18667:21;;;18724:2;18704:18;;;18697:30;18763:34;18758:2;18743:18;;18736:62;18834:3;18829:2;18814:18;;18807:31;18870:3;18855:19;;18657:223::o;18885:408::-;19087:2;19069:21;;;19126:2;19106:18;;;19099:30;19165:34;19160:2;19145:18;;19138:62;19236:14;19231:2;19216:18;;19209:42;19283:3;19268:19;;19059:234::o;19298:355::-;19500:2;19482:21;;;19539:2;19519:18;;;19512:30;19578:33;19573:2;19558:18;;19551:61;19644:2;19629:18;;19472:181::o;19658:356::-;19860:2;19842:21;;;19879:18;;;19872:30;19938:34;19933:2;19918:18;;19911:62;20005:2;19990:18;;19832:182::o;20019:405::-;20221:2;20203:21;;;20260:2;20240:18;;;20233:30;20299:34;20294:2;20279:18;;20272:62;20370:11;20365:2;20350:18;;20343:39;20414:3;20399:19;;20193:231::o;20429:411::-;20631:2;20613:21;;;20670:2;20650:18;;;20643:30;20709:34;20704:2;20689:18;;20682:62;20780:17;20775:2;20760:18;;20753:45;20830:3;20815:19;;20603:237::o;20845:399::-;21047:2;21029:21;;;21086:2;21066:18;;;21059:30;21125:34;21120:2;21105:18;;21098:62;21196:5;21191:2;21176:18;;21169:33;21234:3;21219:19;;21019:225::o;21249:397::-;21451:2;21433:21;;;21490:2;21470:18;;;21463:30;21529:34;21524:2;21509:18;;21502:62;21600:3;21595:2;21580:18;;21573:31;21636:3;21621:19;;21423:223::o;21651:349::-;21853:2;21835:21;;;21892:2;21872:18;;;21865:30;21931:27;21926:2;21911:18;;21904:55;21991:2;21976:18;;21825:175::o;22005:346::-;22207:2;22189:21;;;22246:2;22226:18;;;22219:30;22285:24;22280:2;22265:18;;22258:52;22342:2;22327:18;;22179:172::o;22356:356::-;22558:2;22540:21;;;22577:18;;;22570:30;22636:34;22631:2;22616:18;;22609:62;22703:2;22688:18;;22530:182::o;22717:413::-;22919:2;22901:21;;;22958:2;22938:18;;;22931:30;22997:34;22992:2;22977:18;;22970:62;23068:19;23063:2;23048:18;;23041:47;23120:3;23105:19;;22891:239::o;23135:353::-;23337:2;23319:21;;;23376:2;23356:18;;;23349:30;23415:31;23410:2;23395:18;;23388:59;23479:2;23464:18;;23309:179::o;23493:177::-;23639:25;;;23627:2;23612:18;;23594:76::o;23675:132::-;;23746:17;;;23796:4;23780:21;;;23736:71::o;23812:258::-;23884:1;23894:113;23908:6;23905:1;23902:13;23894:113;;;23984:11;;;23978:18;23965:11;;;23958:39;23930:2;23923:10;23894:113;;;24025:6;24022:1;24019:13;24016:2;;;-1:-1:-1;;24060:1:1;24042:16;;24035:27;23865:205::o;24075:179::-;24162:66;24155:5;24151:78;24144:5;24141:89;24131:2;;24244:1;24241;24234:12

Swarm Source

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