ETH Price: $3,373.46 (+3.12%)
Gas: 2 Gwei

Token

Wicked Willys (WILLYS)
 

Overview

Max Total Supply

343 WILLYS

Holders

146

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
zeropointzero.eth
Balance
3 WILLYS
0x2AfbA283324A65b64bbcb70fFF9165cabFa5B87A
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
WickedWillys

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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

pragma solidity >=0.6.0 <0.8.0;

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

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

// 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 () {
        // 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/finance/PaymentSplitter.sol";



pragma solidity >=0.6.2 <0.8.0;

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor (address[] memory payees, uint256[] memory shares_) payable {
        // solhint-disable-next-line max-line-length
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive () external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + _totalReleased;
        uint256 payment = totalReceived * _shares[account] / _totalShares - _released[account];

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] = _released[account] + payment;
        _totalReleased = _totalReleased + payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}



// 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_) {
        _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 () {
        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;
    }
}

 
// Own one of only 12,500 programmatically generated and minted Wicked Willy's. You will own a unique collectible, selected randomly from over 1.25bn possible combinations.
// They are so wickedly rare, that only a tiny % of the global population will ever be able to own one. Secure your own Wicked Willy while you can!

// You can visit our website https://wickedwillysnft.com or get the team on https://twitter.com/wickedwillysnft

pragma solidity ^0.7.0;
pragma abicoder v2;

contract WickedWillys is ERC721, PaymentSplitter, Ownable {
    
    using SafeMath for uint256;

    // Constants
    uint public constant maxTokenPurchase = 20;
    uint256 public constant MAX_TOKENS = 12500;

    // Variables
    uint private tokenReserve = 200;    // Reserved up front for the teams effort and for giveaways/promotional activity
    uint256 public tokenPrice = 30000000000000000; // 0.03 ETH
    bool public saleIsActive = false;

    // Withdraw Addresses
    address[] private teamWallets = [
        0x214B56E7121aB36977F9B4920E04263d1FAabb8c, // 70
        0x39010C2E22281629E9E7aC94f5c78dB38FDD8a7E  // 30
    ];

    uint256[] private teamShares = [70,30];

    // To be decided
    string public TOKEN_PROVENANCE = ""; // IPFS URL WILL BE ADDED WHEN TOKENS ARE ALL SOLD OUT
    string public LICENSE_TEXT = ""; // IT IS WHAT IT SAYS 
    bool licenseLocked = false; // TEAM CAN'T EDIT THE LICENSE AFTER THIS GETS TRUE
    
    event licenseisLocked(string _licenseText);

    constructor()
        PaymentSplitter(teamWallets, teamShares)
        ERC721("Wicked Willys", "WILLYS")
    {}

    // Make sale Active/Inactive
    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    // Return Sale Active/Inactive
    function getSalesState() public view returns (bool){
        return saleIsActive;
    }
    
    function reserveTokens(address _to, uint256 _reserveAmount) public onlyOwner {        
        uint supply = totalSupply();
        require(_reserveAmount > 0 && _reserveAmount <= tokenReserve, "Not enough reserve left for team");
        for (uint i = 0; i < _reserveAmount; i++) {
            _safeMint(_to, supply + i);
        }
        tokenReserve = tokenReserve.sub(_reserveAmount);
    }

    // Just in case ETH does something silly
    function setTokenPrice(uint256 newPrice) public onlyOwner {
        tokenPrice = newPrice;
    }

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

    function setBaseURI(string memory baseURI) public onlyOwner {
        _setBaseURI(baseURI);
    }
    
    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 token within range");
        return LICENSE_TEXT;
    }
    
    // Change the license
    function changeLicense(string memory _license) public onlyOwner {
        require(licenseLocked == false, "The license is already locked");
        LICENSE_TEXT = _license;
    }

    // Locks the license to prevent further changes 
    function lockLicense() public onlyOwner {
        licenseLocked =  true;
        emit licenseisLocked(LICENSE_TEXT);
    }

    function getBalance() public view onlyOwner returns (uint){
        uint balance = address(this).balance;
        return balance;
    }

    function withdrawAll() public onlyOwner {
        uint balance = address(this).balance;
        msg.sender.transfer(balance);
    }

    // Withdraw balance to wallets per share allocation
    function withdrawShares() public onlyOwner {
        for (uint256 i = 0; i < teamWallets.length; i++) {
            address payable wallet = payable(teamWallets[i]);
            release(wallet);
        }
    }
    
    function mintToken(uint numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active to mint Token");
        require(numberOfTokens > 0 && numberOfTokens <= maxTokenPurchase, "Can only mint 20 tokens at a time");
        require(totalSupply().add(numberOfTokens) <= MAX_TOKENS, "Purchase would exceed max supply of Tokens");
        require(msg.value >= tokenPrice.mul(numberOfTokens), "Ether value sent is not correct");
        
        for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = totalSupply();
            if (totalSupply() < MAX_TOKENS) {
                _safeMint(msg.sender, mintIndex);
            }
        }
    }
    
}

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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","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"},{"inputs":[],"name":"LICENSE_TEXT","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_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":[],"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":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSalesState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"maxTokenPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"reserveTokens","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":"uint256","name":"newPrice","type":"uint256"}],"name":"setTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"tokenPrice","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":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","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":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawShares","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405260c8601055666a94d74f4300006011556000601260006101000a81548160ff021916908315150217905550604051806040016040528073214b56e7121ab36977f9b4920e04263d1faabb8c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020017339010c2e22281629e9e7ac94f5c78db38fdd8a7e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152506013906002620000d692919062000808565b506040518060400160405280604660ff168152602001601e60ff1681525060149060026200010692919062000897565b5060405180602001604052806000815250601590805190602001906200012e929190620008ee565b50604051806020016040528060008152506016908051906020019062000156929190620008ee565b506000601760006101000a81548160ff0219169083151502179055503480156200017f57600080fd5b5060138054806020026020016040519081016040528092919081815260200182805480156200020457602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311620001b9575b505050505060148054806020026020016040519081016040528092919081815260200182805480156200025757602002820191906000526020600020905b81548152602001906001019080831162000242575b50505050506040518060400160405280600d81526020017f5769636b65642057696c6c7973000000000000000000000000000000000000008152506040518060400160405280600681526020017f57494c4c59530000000000000000000000000000000000000000000000000000815250620002e06301ffc9a760e01b620004f960201b60201c565b8160069080519060200190620002f8929190620008ee565b50806007908051906020019062000311929190620008ee565b506200032a6380ac58cd60e01b620004f960201b60201c565b62000342635b5e139f60e01b620004f960201b60201c565b6200035a63780e9d6360e01b620004f960201b60201c565b50508051825114620003a3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200039a9062000c35565b60405180910390fd5b6000825111620003ea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e19062000c79565b60405180910390fd5b60005b82518110156200043f57620004318382815181106200040857fe5b60200260200101518383815181106200041d57fe5b6020026020010151620005d160201b60201c565b8080600101915050620003ed565b5050506000620004546200080060201b60201c565b905080600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35062000d0c565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916141562000565576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200055c9062000c13565b60405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000644576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200063b9062000bf1565b60405180910390fd5b600081116200068a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006819062000c9b565b60405180910390fd5b6000600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146200070f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007069062000c57565b60405180910390fd5b600e829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600a5401600a819055507f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac8282604051620007f492919062000bc4565b60405180910390a15050565b600033905090565b82805482825590600052602060002090810192821562000884579160200282015b82811115620008835782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019062000829565b5b50905062000893919062000985565b5090565b828054828255906000526020600020908101928215620008db579160200282015b82811115620008da578251829060ff16905591602001919060010190620008b8565b5b509050620008ea919062000985565b5090565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928262000926576000855562000972565b82601f106200094157805160ff191683800117855562000972565b8280016001018555821562000972579182015b828111156200097157825182559160200191906001019062000954565b5b50905062000981919062000985565b5090565b5b80821115620009a057600081600090555060010162000986565b5090565b620009af8162000cce565b82525050565b6000620009c4602c8362000cbd565b91507f5061796d656e7453706c69747465723a206163636f756e74206973207468652060008301527f7a65726f206164647265737300000000000000000000000000000000000000006020830152604082019050919050565b600062000a2c601c8362000cbd565b91507f4552433136353a20696e76616c696420696e74657266616365206964000000006000830152602082019050919050565b600062000a6e60328362000cbd565b91507f5061796d656e7453706c69747465723a2070617965657320616e64207368617260008301527f6573206c656e677468206d69736d6174636800000000000000000000000000006020830152604082019050919050565b600062000ad6602b8362000cbd565b91507f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960008301527f20686173207368617265730000000000000000000000000000000000000000006020830152604082019050919050565b600062000b3e601a8362000cbd565b91507f5061796d656e7453706c69747465723a206e6f207061796565730000000000006000830152602082019050919050565b600062000b80601d8362000cbd565b91507f5061796d656e7453706c69747465723a207368617265732061726520300000006000830152602082019050919050565b62000bbe8162000d02565b82525050565b600060408201905062000bdb6000830185620009a4565b62000bea602083018462000bb3565b9392505050565b6000602082019050818103600083015262000c0c81620009b5565b9050919050565b6000602082019050818103600083015262000c2e8162000a1d565b9050919050565b6000602082019050818103600083015262000c508162000a5f565b9050919050565b6000602082019050818103600083015262000c728162000ac7565b9050919050565b6000602082019050818103600083015262000c948162000b2f565b9050919050565b6000602082019050818103600083015262000cb68162000b71565b9050919050565b600082825260208201905092915050565b600062000cdb8262000ce2565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6154428062000d1c6000396000f3fe6080604052600436106102815760003560e01c80637ff9b5961161014f578063b88d4fde116100c1578063d9b137b21161007a578063d9b137b2146109c2578063e33b7de3146109ff578063e985e9c514610a2a578063eb8d244414610a67578063f2fde38b14610a92578063f47c84c514610abb576102c8565b8063b88d4fde146108c1578063bf4702fc146108ea578063bf8a944b14610901578063c634d0321461092c578063c87b56dd14610948578063ce7c2ac214610985576102c8565b80638da5cb5b116101135780638da5cb5b146107b157806395d89b41146107dc5780639852595c146108075780639c3e72bd14610844578063a22cb4651461086f578063b09904b514610898576102c8565b80637ff9b596146106de5780638462151c14610709578063853828b6146107465780638b83209b1461075d5780638d086da41461079a576102c8565b806334918dfd116101f35780636a61e5fc116101ac5780636a61e5fc146105e25780636c0360eb1461060b57806370a0823114610636578063715018a61461067357806378cf19e91461068a5780637f27405e146106b3576102c8565b806334918dfd146104d45780633a98ef39146104eb57806342842e0e146105165780634f6ccce71461053f57806355f804b31461057c5780636352211e146105a5576102c8565b8063109695231161024557806310969523146103c657806312065fe0146103ef57806318160ddd1461041a578063191655871461044557806323b872dd1461046e5780632f745c5914610497576102c8565b806301ffc9a7146102cd57806306fdde031461030a578063081812fc14610335578063095ea7b31461037257806309aa3dcf1461039b576102c8565b366102c8577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be7706102af610ae6565b346040516102be929190614c1b565b60405180910390a1005b600080fd5b3480156102d957600080fd5b506102f460048036038101906102ef9190613cfd565b610aee565b6040516103019190614c66565b60405180910390f35b34801561031657600080fd5b5061031f610b55565b60405161032c9190614c81565b60405180910390f35b34801561034157600080fd5b5061035c60048036038101906103579190613d90565b610bf7565b6040516103699190614bb4565b60405180910390f35b34801561037e57600080fd5b5061039960048036038101906103949190613cc1565b610c7c565b005b3480156103a757600080fd5b506103b0610d94565b6040516103bd91906150e5565b60405180910390f35b3480156103d257600080fd5b506103ed60048036038101906103e89190613d4f565b610d99565b005b3480156103fb57600080fd5b50610404610e2f565b60405161041191906150e5565b60405180910390f35b34801561042657600080fd5b5061042f610eb9565b60405161043c91906150e5565b60405180910390f35b34801561045157600080fd5b5061046c60048036038101906104679190613b56565b610eca565b005b34801561047a57600080fd5b5061049560048036038101906104909190613bbb565b611103565b005b3480156104a357600080fd5b506104be60048036038101906104b99190613cc1565b611163565b6040516104cb91906150e5565b60405180910390f35b3480156104e057600080fd5b506104e96111be565b005b3480156104f757600080fd5b50610500611266565b60405161050d91906150e5565b60405180910390f35b34801561052257600080fd5b5061053d60048036038101906105389190613bbb565b611270565b005b34801561054b57600080fd5b5061056660048036038101906105619190613d90565b611290565b60405161057391906150e5565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e9190613d4f565b6112b3565b005b3480156105b157600080fd5b506105cc60048036038101906105c79190613d90565b61133b565b6040516105d99190614bb4565b60405180910390f35b3480156105ee57600080fd5b5061060960048036038101906106049190613d90565b611372565b005b34801561061757600080fd5b506106206113f8565b60405161062d9190614c81565b60405180910390f35b34801561064257600080fd5b5061065d60048036038101906106589190613b2d565b61149a565b60405161066a91906150e5565b60405180910390f35b34801561067f57600080fd5b50610688611559565b005b34801561069657600080fd5b506106b160048036038101906106ac9190613cc1565b611696565b005b3480156106bf57600080fd5b506106c86117b4565b6040516106d59190614c66565b60405180910390f35b3480156106ea57600080fd5b506106f36117cb565b60405161070091906150e5565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b9190613b2d565b6117d1565b60405161073d9190614c44565b60405180910390f35b34801561075257600080fd5b5061075b6118ca565b005b34801561076957600080fd5b50610784600480360381019061077f9190613d90565b611995565b6040516107919190614bb4565b60405180910390f35b3480156107a657600080fd5b506107af6119d6565b005b3480156107bd57600080fd5b506107c6611ab8565b6040516107d39190614bb4565b60405180910390f35b3480156107e857600080fd5b506107f1611ae2565b6040516107fe9190614c81565b60405180910390f35b34801561081357600080fd5b5061082e60048036038101906108299190613b2d565b611b84565b60405161083b91906150e5565b60405180910390f35b34801561085057600080fd5b50610859611bcd565b6040516108669190614c81565b60405180910390f35b34801561087b57600080fd5b5061089660048036038101906108919190613c85565b611c6b565b005b3480156108a457600080fd5b506108bf60048036038101906108ba9190613d4f565b611dec565b005b3480156108cd57600080fd5b506108e860048036038101906108e39190613c0a565b611ed8565b005b3480156108f657600080fd5b506108ff611f3a565b005b34801561090d57600080fd5b5061091661200b565b6040516109239190614c81565b60405180910390f35b61094660048036038101906109419190613d90565b6120a9565b005b34801561095457600080fd5b5061096f600480360381019061096a9190613d90565b612242565b60405161097c9190614c81565b60405180910390f35b34801561099157600080fd5b506109ac60048036038101906109a79190613b2d565b6123c5565b6040516109b991906150e5565b60405180910390f35b3480156109ce57600080fd5b506109e960048036038101906109e49190613d90565b61240e565b6040516109f69190614c81565b60405180910390f35b348015610a0b57600080fd5b50610a146124fb565b604051610a2191906150e5565b60405180910390f35b348015610a3657600080fd5b50610a516004803603810190610a4c9190613b7f565b612505565b604051610a5e9190614c66565b60405180910390f35b348015610a7357600080fd5b50610a7c612599565b604051610a899190614c66565b60405180910390f35b348015610a9e57600080fd5b50610ab96004803603810190610ab49190613b2d565b6125ac565b005b348015610ac757600080fd5b50610ad0612758565b604051610add91906150e5565b60405180910390f35b600033905090565b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610bed5780601f10610bc257610100808354040283529160200191610bed565b820191906000526020600020905b815481529060010190602001808311610bd057829003601f168201915b5050505050905090565b6000610c028261275e565b610c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3890615005565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c878261133b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cef90615085565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d17610ae6565b73ffffffffffffffffffffffffffffffffffffffff161480610d465750610d4581610d40610ae6565b612505565b5b610d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7c90614f45565b60405180910390fd5b610d8f838361277b565b505050565b601481565b610da1610ae6565b73ffffffffffffffffffffffffffffffffffffffff16610dbf611ab8565b73ffffffffffffffffffffffffffffffffffffffff1614610e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0c90615025565b60405180910390fd5b8060159080519060200190610e2b929190613934565b5050565b6000610e39610ae6565b73ffffffffffffffffffffffffffffffffffffffff16610e57611ab8565b73ffffffffffffffffffffffffffffffffffffffff1614610ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea490615025565b60405180910390fd5b60004790508091505090565b6000610ec56002612834565b905090565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4390614dc5565b60405180910390fd5b6000600b54470190506000600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600a54600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054840281610fe357fe5b04039050600081141561102b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102290614f05565b60405180910390fd5b80600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205401600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600b5401600b819055506110c58382612849565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b05683826040516110f6929190614c1b565b60405180910390a1505050565b61111461110e610ae6565b8261293d565b611153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114a906150a5565b60405180910390fd5b61115e838383612a1b565b505050565b60006111b682600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612c3290919063ffffffff16565b905092915050565b6111c6610ae6565b73ffffffffffffffffffffffffffffffffffffffff166111e4611ab8565b73ffffffffffffffffffffffffffffffffffffffff161461123a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123190615025565b60405180910390fd5b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550565b6000600a54905090565b61128b83838360405180602001604052806000815250611ed8565b505050565b6000806112a7836002612c4c90919063ffffffff16565b50905080915050919050565b6112bb610ae6565b73ffffffffffffffffffffffffffffffffffffffff166112d9611ab8565b73ffffffffffffffffffffffffffffffffffffffff161461132f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132690615025565b60405180910390fd5b61133881612c78565b50565b600061136b826040518060600160405280602981526020016153e4602991396002612c929092919063ffffffff16565b9050919050565b61137a610ae6565b73ffffffffffffffffffffffffffffffffffffffff16611398611ab8565b73ffffffffffffffffffffffffffffffffffffffff16146113ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e590615025565b60405180910390fd5b8060118190555050565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156114905780601f1061146557610100808354040283529160200191611490565b820191906000526020600020905b81548152906001019060200180831161147357829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561150b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150290614f65565b60405180910390fd5b611552600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612cb1565b9050919050565b611561610ae6565b73ffffffffffffffffffffffffffffffffffffffff1661157f611ab8565b73ffffffffffffffffffffffffffffffffffffffff16146115d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cc90615025565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61169e610ae6565b73ffffffffffffffffffffffffffffffffffffffff166116bc611ab8565b73ffffffffffffffffffffffffffffffffffffffff1614611712576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170990615025565b60405180910390fd5b600061171c610eb9565b905060008211801561173057506010548211155b61176f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176690614de5565b60405180910390fd5b60005b828110156117935761178684828401612cc6565b8080600101915050611772565b506117a982601054612ce490919063ffffffff16565b601081905550505050565b6000601260009054906101000a900460ff16905090565b60115481565b606060006117de8361149a565b9050600081141561183957600067ffffffffffffffff8111801561180157600080fd5b506040519080825280602002602001820160405280156118305781602001602082028036833780820191505090505b509150506118c5565b60008167ffffffffffffffff8111801561185257600080fd5b506040519080825280602002602001820160405280156118815781602001602082028036833780820191505090505b50905060005b828110156118be576118998582611163565b8282815181106118a557fe5b6020026020010181815250508080600101915050611887565b8193505050505b919050565b6118d2610ae6565b73ffffffffffffffffffffffffffffffffffffffff166118f0611ab8565b73ffffffffffffffffffffffffffffffffffffffff1614611946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193d90615025565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611991573d6000803e3d6000fd5b5050565b6000600e82815481106119a457fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6119de610ae6565b73ffffffffffffffffffffffffffffffffffffffff166119fc611ab8565b73ffffffffffffffffffffffffffffffffffffffff1614611a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4990615025565b60405180910390fd5b60005b601380549050811015611ab557600060138281548110611a7157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050611aa781610eca565b508080600101915050611a55565b50565b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611b7a5780601f10611b4f57610100808354040283529160200191611b7a565b820191906000526020600020905b815481529060010190602001808311611b5d57829003601f168201915b5050505050905090565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60168054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611c635780601f10611c3857610100808354040283529160200191611c63565b820191906000526020600020905b815481529060010190602001808311611c4657829003601f168201915b505050505081565b611c73610ae6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd890614e25565b60405180910390fd5b8060056000611cee610ae6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d9b610ae6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611de09190614c66565b60405180910390a35050565b611df4610ae6565b73ffffffffffffffffffffffffffffffffffffffff16611e12611ab8565b73ffffffffffffffffffffffffffffffffffffffff1614611e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5f90615025565b60405180910390fd5b60001515601760009054906101000a900460ff16151514611ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb590614f85565b60405180910390fd5b8060169080519060200190611ed4929190613934565b5050565b611ee9611ee3610ae6565b8361293d565b611f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1f906150a5565b60405180910390fd5b611f3484848484612d34565b50505050565b611f42610ae6565b73ffffffffffffffffffffffffffffffffffffffff16611f60611ab8565b73ffffffffffffffffffffffffffffffffffffffff1614611fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fad90615025565b60405180910390fd5b6001601760006101000a81548160ff0219169083151502179055507f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b060166040516120019190614ca3565b60405180910390a1565b60158054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156120a15780601f10612076576101008083540402835291602001916120a1565b820191906000526020600020905b81548152906001019060200180831161208457829003601f168201915b505050505081565b601260009054906101000a900460ff166120f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ef90614d85565b60405180910390fd5b600081118015612109575060148111155b612148576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213f90614f25565b60405180910390fd5b6130d461216582612157610eb9565b612d9090919063ffffffff16565b11156121a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219d90614da5565b60405180910390fd5b6121bb81601154612de590919063ffffffff16565b3410156121fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f490614e45565b60405180910390fd5b60005b8181101561223e576000612212610eb9565b90506130d461221f610eb9565b10156122305761222f3382612cc6565b5b508080600101915050612200565b5050565b606061224d8261275e565b61228c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228390615065565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156123355780601f1061230a57610100808354040283529160200191612335565b820191906000526020600020905b81548152906001019060200180831161231857829003601f168201915b5050505050905060006123466113f8565b905060008151141561235c5781925050506123c0565b600082511115612391578082604051602001612379929190614b7b565b604051602081830303815290604052925050506123c0565b8061239b85612e55565b6040516020016123ac929190614b7b565b604051602081830303815290604052925050505b919050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060612418610eb9565b8210612459576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245090614ce5565b60405180910390fd5b60168054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156124ef5780601f106124c4576101008083540402835291602001916124ef565b820191906000526020600020905b8154815290600101906020018083116124d257829003601f168201915b50505050509050919050565b6000600b54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601260009054906101000a900460ff1681565b6125b4610ae6565b73ffffffffffffffffffffffffffffffffffffffff166125d2611ab8565b73ffffffffffffffffffffffffffffffffffffffff1614612628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261f90615025565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268f90614d25565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6130d481565b6000612774826002612f9c90919063ffffffff16565b9050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166127ee8361133b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061284282600001612fb6565b9050919050565b8047101561288c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288390614ea5565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516128b290614b9f565b60006040518083038185875af1925050503d80600081146128ef576040519150601f19603f3d011682016040523d82523d6000602084013e6128f4565b606091505b5050905080612938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292f90614e85565b60405180910390fd5b505050565b60006129488261275e565b612987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297e90614ee5565b60405180910390fd5b60006129928361133b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612a0157508373ffffffffffffffffffffffffffffffffffffffff166129e984610bf7565b73ffffffffffffffffffffffffffffffffffffffff16145b80612a125750612a118185612505565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a3b8261133b565b73ffffffffffffffffffffffffffffffffffffffff1614612a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8890615045565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af890614e05565b60405180910390fd5b612b0c838383612fc7565b612b1760008261277b565b612b6881600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612fcc90919063ffffffff16565b50612bba81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612fe690919063ffffffff16565b50612bd1818360026130009092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612c418360000183613035565b60001c905092915050565b600080600080612c5f86600001866130a2565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190612c8e929190613934565b5050565b6000612ca5846000018460001b84613125565b60001c90509392505050565b6000612cbf826000016131b6565b9050919050565b612ce08282604051806020016040528060008152506131c7565b5050565b600082821115612d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2090614e65565b60405180910390fd5b818303905092915050565b612d3f848484612a1b565b612d4b84848484613222565b612d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8190614d05565b60405180910390fd5b50505050565b600080828401905083811015612ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd290614d65565b60405180910390fd5b8091505092915050565b600080831415612df85760009050612e4f565b6000828402905082848281612e0957fe5b0414612e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4190614fe5565b60405180910390fd5b809150505b92915050565b60606000821415612e9d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f97565b600082905060005b60008214612ec7578080600101915050600a8281612ebf57fe5b049150612ea5565b60008167ffffffffffffffff81118015612ee057600080fd5b506040519080825280601f01601f191660200182016040528015612f135781602001600182028036833780820191505090505b50905060006001830390508593505b60008414612f8f57600a8481612f3457fe5b0660300160f81b82828060019003935081518110612f4e57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481612f8757fe5b049350612f22565b819450505050505b919050565b6000612fae836000018360001b613386565b905092915050565b600081600001805490509050919050565b505050565b6000612fde836000018360001b6133a9565b905092915050565b6000612ff8836000018360001b613491565b905092915050565b600061302c846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b613501565b90509392505050565b600081836000018054905011613080576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307790614cc5565b60405180910390fd5b82600001828154811061308f57fe5b9060005260206000200154905092915050565b600080828460000180549050116130ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130e590614fa5565b60405180910390fd5b60008460000184815481106130ff57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390613187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317e9190614c81565b60405180910390fd5b5084600001600182038154811061319a57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b6131d183836135dd565b6131de6000848484613222565b61321d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321490614d05565b60405180910390fd5b505050565b60006132438473ffffffffffffffffffffffffffffffffffffffff1661376b565b613250576001905061337e565b600061331763150b7a0260e01b613265610ae6565b88878760405160240161327b9493929190614bcf565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040518060600160405280603281526020016153b2603291398773ffffffffffffffffffffffffffffffffffffffff1661377e9092919063ffffffff16565b905060008180602001905181019061332f9190613d26565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b6000808360010160008481526020019081526020016000205490506000811461348557600060018203905060006001866000018054905003905060008660000182815481106133f457fe5b906000526020600020015490508087600001848154811061341157fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061344957fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061348b565b60009150505b92915050565b600061349d8383613796565b6134f65782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506134fb565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156135a8578460000160405180604001604052808681526020018581525090806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010155505084600001805490508560010160008681526020019081526020016000208190555060019150506135d6565b828560000160018303815481106135bb57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561364d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161364490614fc5565b60405180910390fd5b6136568161275e565b15613696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161368d90614d45565b60405180910390fd5b6136a260008383612fc7565b6136f381600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612fe690919063ffffffff16565b5061370a818360026130009092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b606061378d84846000856137b9565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b6060824710156137fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137f590614ec5565b60405180910390fd5b6138078561376b565b613846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161383d906150c5565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161386f9190614b64565b60006040518083038185875af1925050503d80600081146138ac576040519150601f19603f3d011682016040523d82523d6000602084013e6138b1565b606091505b50915091506138c18282866138cd565b92505050949350505050565b606083156138dd5782905061392d565b6000835111156138f05782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139249190614c81565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261396a57600085556139b1565b82601f1061398357805160ff19168380011785556139b1565b828001600101855582156139b1579182015b828111156139b0578251825591602001919060010190613995565b5b5090506139be91906139c2565b5090565b5b808211156139db5760008160009055506001016139c3565b5090565b60006139f26139ed84615131565b615100565b905082815260208101848484011115613a0a57600080fd5b613a158482856152e9565b509392505050565b6000613a30613a2b84615161565b615100565b905082815260208101848484011115613a4857600080fd5b613a538482856152e9565b509392505050565b600081359050613a6a8161533e565b92915050565b600081359050613a7f81615355565b92915050565b600081359050613a948161536c565b92915050565b600081359050613aa981615383565b92915050565b600081519050613abe81615383565b92915050565b600082601f830112613ad557600080fd5b8135613ae58482602086016139df565b91505092915050565b600082601f830112613aff57600080fd5b8135613b0f848260208601613a1d565b91505092915050565b600081359050613b278161539a565b92915050565b600060208284031215613b3f57600080fd5b6000613b4d84828501613a5b565b91505092915050565b600060208284031215613b6857600080fd5b6000613b7684828501613a70565b91505092915050565b60008060408385031215613b9257600080fd5b6000613ba085828601613a5b565b9250506020613bb185828601613a5b565b9150509250929050565b600080600060608486031215613bd057600080fd5b6000613bde86828701613a5b565b9350506020613bef86828701613a5b565b9250506040613c0086828701613b18565b9150509250925092565b60008060008060808587031215613c2057600080fd5b6000613c2e87828801613a5b565b9450506020613c3f87828801613a5b565b9350506040613c5087828801613b18565b925050606085013567ffffffffffffffff811115613c6d57600080fd5b613c7987828801613ac4565b91505092959194509250565b60008060408385031215613c9857600080fd5b6000613ca685828601613a5b565b9250506020613cb785828601613a85565b9150509250929050565b60008060408385031215613cd457600080fd5b6000613ce285828601613a5b565b9250506020613cf385828601613b18565b9150509250929050565b600060208284031215613d0f57600080fd5b6000613d1d84828501613a9a565b91505092915050565b600060208284031215613d3857600080fd5b6000613d4684828501613aaf565b91505092915050565b600060208284031215613d6157600080fd5b600082013567ffffffffffffffff811115613d7b57600080fd5b613d8784828501613aee565b91505092915050565b600060208284031215613da257600080fd5b6000613db084828501613b18565b91505092915050565b6000613dc58383614b46565b60208301905092915050565b613dda816152b3565b82525050565b613de98161523f565b82525050565b613df88161522d565b82525050565b6000613e09826151b6565b613e1381856151e4565b9350613e1e83615191565b8060005b83811015613e4f578151613e368882613db9565b9750613e41836151d7565b925050600181019050613e22565b5085935050505092915050565b613e6581615251565b82525050565b6000613e76826151c1565b613e8081856151f5565b9350613e908185602086016152f8565b613e998161532d565b840191505092915050565b6000613eaf826151c1565b613eb98185615206565b9350613ec98185602086016152f8565b80840191505092915050565b6000613ee0826151cc565b613eea8185615211565b9350613efa8185602086016152f8565b613f038161532d565b840191505092915050565b6000613f19826151cc565b613f238185615222565b9350613f338185602086016152f8565b80840191505092915050565b600081546001811660008114613f5c5760018114613f8257613fc6565b607f6002830416613f6d8187615211565b955060ff198316865260208601935050613fc6565b60028204613f908187615211565b9550613f9b856151a1565b60005b82811015613fbd57815481890152600182019150602081019050613f9e565b80880195505050505b505092915050565b6000613fdb602283615211565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614041601b83615211565b91507f43686f6f7365206120746f6b656e2077697468696e2072616e676500000000006000830152602082019050919050565b6000614081603283615211565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006140e7602683615211565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061414d601c83615211565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061418d601b83615211565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b60006141cd602183615211565b91507f53616c65206d7573742062652061637469766520746f206d696e7420546f6b6560008301527f6e000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614233602a83615211565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f6620546f6b656e73000000000000000000000000000000000000000000006020830152604082019050919050565b6000614299602683615211565b91507f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008301527f73686172657300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006142ff602083615211565b91507f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d6000830152602082019050919050565b600061433f602483615211565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006143a5601983615211565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006143e5601f83615211565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000614425601e83615211565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b6000614465603a83615211565b91507f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008301527f6563697069656e74206d617920686176652072657665727465640000000000006020830152604082019050919050565b60006144cb601d83615211565b91507f416464726573733a20696e73756666696369656e742062616c616e63650000006000830152602082019050919050565b600061450b602683615211565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614571602c83615211565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006145d7602b83615211565b91507f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008301527f647565207061796d656e740000000000000000000000000000000000000000006020830152604082019050919050565b600061463d602183615211565b91507f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006146a3603883615211565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614709602a83615211565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061476f601d83615211565b91507f546865206c6963656e736520697320616c7265616479206c6f636b65640000006000830152602082019050919050565b60006147af602283615211565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614815602083615211565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614855602183615211565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006148bb602c83615211565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614921602083615211565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614961602983615211565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006149c7602f83615211565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614a2d602183615211565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a93600083615206565b9150600082019050919050565b6000614aad603183615211565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614b13601d83615211565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b614b4f816152a9565b82525050565b614b5e816152a9565b82525050565b6000614b708284613ea4565b915081905092915050565b6000614b878285613f0e565b9150614b938284613f0e565b91508190509392505050565b6000614baa82614a86565b9150819050919050565b6000602082019050614bc96000830184613def565b92915050565b6000608082019050614be46000830187613de0565b614bf16020830186613def565b614bfe6040830185614b55565b8181036060830152614c108184613e6b565b905095945050505050565b6000604082019050614c306000830185613dd1565b614c3d6020830184614b55565b9392505050565b60006020820190508181036000830152614c5e8184613dfe565b905092915050565b6000602082019050614c7b6000830184613e5c565b92915050565b60006020820190508181036000830152614c9b8184613ed5565b905092915050565b60006020820190508181036000830152614cbd8184613f3f565b905092915050565b60006020820190508181036000830152614cde81613fce565b9050919050565b60006020820190508181036000830152614cfe81614034565b9050919050565b60006020820190508181036000830152614d1e81614074565b9050919050565b60006020820190508181036000830152614d3e816140da565b9050919050565b60006020820190508181036000830152614d5e81614140565b9050919050565b60006020820190508181036000830152614d7e81614180565b9050919050565b60006020820190508181036000830152614d9e816141c0565b9050919050565b60006020820190508181036000830152614dbe81614226565b9050919050565b60006020820190508181036000830152614dde8161428c565b9050919050565b60006020820190508181036000830152614dfe816142f2565b9050919050565b60006020820190508181036000830152614e1e81614332565b9050919050565b60006020820190508181036000830152614e3e81614398565b9050919050565b60006020820190508181036000830152614e5e816143d8565b9050919050565b60006020820190508181036000830152614e7e81614418565b9050919050565b60006020820190508181036000830152614e9e81614458565b9050919050565b60006020820190508181036000830152614ebe816144be565b9050919050565b60006020820190508181036000830152614ede816144fe565b9050919050565b60006020820190508181036000830152614efe81614564565b9050919050565b60006020820190508181036000830152614f1e816145ca565b9050919050565b60006020820190508181036000830152614f3e81614630565b9050919050565b60006020820190508181036000830152614f5e81614696565b9050919050565b60006020820190508181036000830152614f7e816146fc565b9050919050565b60006020820190508181036000830152614f9e81614762565b9050919050565b60006020820190508181036000830152614fbe816147a2565b9050919050565b60006020820190508181036000830152614fde81614808565b9050919050565b60006020820190508181036000830152614ffe81614848565b9050919050565b6000602082019050818103600083015261501e816148ae565b9050919050565b6000602082019050818103600083015261503e81614914565b9050919050565b6000602082019050818103600083015261505e81614954565b9050919050565b6000602082019050818103600083015261507e816149ba565b9050919050565b6000602082019050818103600083015261509e81614a20565b9050919050565b600060208201905081810360008301526150be81614aa0565b9050919050565b600060208201905081810360008301526150de81614b06565b9050919050565b60006020820190506150fa6000830184614b55565b92915050565b6000604051905081810181811067ffffffffffffffff821117156151275761512661532b565b5b8060405250919050565b600067ffffffffffffffff82111561514c5761514b61532b565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561517c5761517b61532b565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061523882615289565b9050919050565b600061524a82615289565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006152be826152c5565b9050919050565b60006152d0826152d7565b9050919050565b60006152e282615289565b9050919050565b82818337600083830152505050565b60005b838110156153165780820151818401526020810190506152fb565b83811115615325576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b6153478161522d565b811461535257600080fd5b50565b61535e8161523f565b811461536957600080fd5b50565b61537581615251565b811461538057600080fd5b50565b61538c8161525d565b811461539757600080fd5b50565b6153a3816152a9565b81146153ae57600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220de61ef61d7dac511e6ff9c9ad7cd511e65d83989487c5025b2455ec70170273d64736f6c63430007060033

Deployed Bytecode

0x6080604052600436106102815760003560e01c80637ff9b5961161014f578063b88d4fde116100c1578063d9b137b21161007a578063d9b137b2146109c2578063e33b7de3146109ff578063e985e9c514610a2a578063eb8d244414610a67578063f2fde38b14610a92578063f47c84c514610abb576102c8565b8063b88d4fde146108c1578063bf4702fc146108ea578063bf8a944b14610901578063c634d0321461092c578063c87b56dd14610948578063ce7c2ac214610985576102c8565b80638da5cb5b116101135780638da5cb5b146107b157806395d89b41146107dc5780639852595c146108075780639c3e72bd14610844578063a22cb4651461086f578063b09904b514610898576102c8565b80637ff9b596146106de5780638462151c14610709578063853828b6146107465780638b83209b1461075d5780638d086da41461079a576102c8565b806334918dfd116101f35780636a61e5fc116101ac5780636a61e5fc146105e25780636c0360eb1461060b57806370a0823114610636578063715018a61461067357806378cf19e91461068a5780637f27405e146106b3576102c8565b806334918dfd146104d45780633a98ef39146104eb57806342842e0e146105165780634f6ccce71461053f57806355f804b31461057c5780636352211e146105a5576102c8565b8063109695231161024557806310969523146103c657806312065fe0146103ef57806318160ddd1461041a578063191655871461044557806323b872dd1461046e5780632f745c5914610497576102c8565b806301ffc9a7146102cd57806306fdde031461030a578063081812fc14610335578063095ea7b31461037257806309aa3dcf1461039b576102c8565b366102c8577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be7706102af610ae6565b346040516102be929190614c1b565b60405180910390a1005b600080fd5b3480156102d957600080fd5b506102f460048036038101906102ef9190613cfd565b610aee565b6040516103019190614c66565b60405180910390f35b34801561031657600080fd5b5061031f610b55565b60405161032c9190614c81565b60405180910390f35b34801561034157600080fd5b5061035c60048036038101906103579190613d90565b610bf7565b6040516103699190614bb4565b60405180910390f35b34801561037e57600080fd5b5061039960048036038101906103949190613cc1565b610c7c565b005b3480156103a757600080fd5b506103b0610d94565b6040516103bd91906150e5565b60405180910390f35b3480156103d257600080fd5b506103ed60048036038101906103e89190613d4f565b610d99565b005b3480156103fb57600080fd5b50610404610e2f565b60405161041191906150e5565b60405180910390f35b34801561042657600080fd5b5061042f610eb9565b60405161043c91906150e5565b60405180910390f35b34801561045157600080fd5b5061046c60048036038101906104679190613b56565b610eca565b005b34801561047a57600080fd5b5061049560048036038101906104909190613bbb565b611103565b005b3480156104a357600080fd5b506104be60048036038101906104b99190613cc1565b611163565b6040516104cb91906150e5565b60405180910390f35b3480156104e057600080fd5b506104e96111be565b005b3480156104f757600080fd5b50610500611266565b60405161050d91906150e5565b60405180910390f35b34801561052257600080fd5b5061053d60048036038101906105389190613bbb565b611270565b005b34801561054b57600080fd5b5061056660048036038101906105619190613d90565b611290565b60405161057391906150e5565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e9190613d4f565b6112b3565b005b3480156105b157600080fd5b506105cc60048036038101906105c79190613d90565b61133b565b6040516105d99190614bb4565b60405180910390f35b3480156105ee57600080fd5b5061060960048036038101906106049190613d90565b611372565b005b34801561061757600080fd5b506106206113f8565b60405161062d9190614c81565b60405180910390f35b34801561064257600080fd5b5061065d60048036038101906106589190613b2d565b61149a565b60405161066a91906150e5565b60405180910390f35b34801561067f57600080fd5b50610688611559565b005b34801561069657600080fd5b506106b160048036038101906106ac9190613cc1565b611696565b005b3480156106bf57600080fd5b506106c86117b4565b6040516106d59190614c66565b60405180910390f35b3480156106ea57600080fd5b506106f36117cb565b60405161070091906150e5565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b9190613b2d565b6117d1565b60405161073d9190614c44565b60405180910390f35b34801561075257600080fd5b5061075b6118ca565b005b34801561076957600080fd5b50610784600480360381019061077f9190613d90565b611995565b6040516107919190614bb4565b60405180910390f35b3480156107a657600080fd5b506107af6119d6565b005b3480156107bd57600080fd5b506107c6611ab8565b6040516107d39190614bb4565b60405180910390f35b3480156107e857600080fd5b506107f1611ae2565b6040516107fe9190614c81565b60405180910390f35b34801561081357600080fd5b5061082e60048036038101906108299190613b2d565b611b84565b60405161083b91906150e5565b60405180910390f35b34801561085057600080fd5b50610859611bcd565b6040516108669190614c81565b60405180910390f35b34801561087b57600080fd5b5061089660048036038101906108919190613c85565b611c6b565b005b3480156108a457600080fd5b506108bf60048036038101906108ba9190613d4f565b611dec565b005b3480156108cd57600080fd5b506108e860048036038101906108e39190613c0a565b611ed8565b005b3480156108f657600080fd5b506108ff611f3a565b005b34801561090d57600080fd5b5061091661200b565b6040516109239190614c81565b60405180910390f35b61094660048036038101906109419190613d90565b6120a9565b005b34801561095457600080fd5b5061096f600480360381019061096a9190613d90565b612242565b60405161097c9190614c81565b60405180910390f35b34801561099157600080fd5b506109ac60048036038101906109a79190613b2d565b6123c5565b6040516109b991906150e5565b60405180910390f35b3480156109ce57600080fd5b506109e960048036038101906109e49190613d90565b61240e565b6040516109f69190614c81565b60405180910390f35b348015610a0b57600080fd5b50610a146124fb565b604051610a2191906150e5565b60405180910390f35b348015610a3657600080fd5b50610a516004803603810190610a4c9190613b7f565b612505565b604051610a5e9190614c66565b60405180910390f35b348015610a7357600080fd5b50610a7c612599565b604051610a899190614c66565b60405180910390f35b348015610a9e57600080fd5b50610ab96004803603810190610ab49190613b2d565b6125ac565b005b348015610ac757600080fd5b50610ad0612758565b604051610add91906150e5565b60405180910390f35b600033905090565b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610bed5780601f10610bc257610100808354040283529160200191610bed565b820191906000526020600020905b815481529060010190602001808311610bd057829003601f168201915b5050505050905090565b6000610c028261275e565b610c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3890615005565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c878261133b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cef90615085565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d17610ae6565b73ffffffffffffffffffffffffffffffffffffffff161480610d465750610d4581610d40610ae6565b612505565b5b610d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7c90614f45565b60405180910390fd5b610d8f838361277b565b505050565b601481565b610da1610ae6565b73ffffffffffffffffffffffffffffffffffffffff16610dbf611ab8565b73ffffffffffffffffffffffffffffffffffffffff1614610e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0c90615025565b60405180910390fd5b8060159080519060200190610e2b929190613934565b5050565b6000610e39610ae6565b73ffffffffffffffffffffffffffffffffffffffff16610e57611ab8565b73ffffffffffffffffffffffffffffffffffffffff1614610ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea490615025565b60405180910390fd5b60004790508091505090565b6000610ec56002612834565b905090565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4390614dc5565b60405180910390fd5b6000600b54470190506000600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600a54600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054840281610fe357fe5b04039050600081141561102b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102290614f05565b60405180910390fd5b80600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205401600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600b5401600b819055506110c58382612849565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b05683826040516110f6929190614c1b565b60405180910390a1505050565b61111461110e610ae6565b8261293d565b611153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114a906150a5565b60405180910390fd5b61115e838383612a1b565b505050565b60006111b682600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612c3290919063ffffffff16565b905092915050565b6111c6610ae6565b73ffffffffffffffffffffffffffffffffffffffff166111e4611ab8565b73ffffffffffffffffffffffffffffffffffffffff161461123a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123190615025565b60405180910390fd5b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550565b6000600a54905090565b61128b83838360405180602001604052806000815250611ed8565b505050565b6000806112a7836002612c4c90919063ffffffff16565b50905080915050919050565b6112bb610ae6565b73ffffffffffffffffffffffffffffffffffffffff166112d9611ab8565b73ffffffffffffffffffffffffffffffffffffffff161461132f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132690615025565b60405180910390fd5b61133881612c78565b50565b600061136b826040518060600160405280602981526020016153e4602991396002612c929092919063ffffffff16565b9050919050565b61137a610ae6565b73ffffffffffffffffffffffffffffffffffffffff16611398611ab8565b73ffffffffffffffffffffffffffffffffffffffff16146113ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e590615025565b60405180910390fd5b8060118190555050565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156114905780601f1061146557610100808354040283529160200191611490565b820191906000526020600020905b81548152906001019060200180831161147357829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561150b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150290614f65565b60405180910390fd5b611552600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612cb1565b9050919050565b611561610ae6565b73ffffffffffffffffffffffffffffffffffffffff1661157f611ab8565b73ffffffffffffffffffffffffffffffffffffffff16146115d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cc90615025565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61169e610ae6565b73ffffffffffffffffffffffffffffffffffffffff166116bc611ab8565b73ffffffffffffffffffffffffffffffffffffffff1614611712576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170990615025565b60405180910390fd5b600061171c610eb9565b905060008211801561173057506010548211155b61176f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176690614de5565b60405180910390fd5b60005b828110156117935761178684828401612cc6565b8080600101915050611772565b506117a982601054612ce490919063ffffffff16565b601081905550505050565b6000601260009054906101000a900460ff16905090565b60115481565b606060006117de8361149a565b9050600081141561183957600067ffffffffffffffff8111801561180157600080fd5b506040519080825280602002602001820160405280156118305781602001602082028036833780820191505090505b509150506118c5565b60008167ffffffffffffffff8111801561185257600080fd5b506040519080825280602002602001820160405280156118815781602001602082028036833780820191505090505b50905060005b828110156118be576118998582611163565b8282815181106118a557fe5b6020026020010181815250508080600101915050611887565b8193505050505b919050565b6118d2610ae6565b73ffffffffffffffffffffffffffffffffffffffff166118f0611ab8565b73ffffffffffffffffffffffffffffffffffffffff1614611946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193d90615025565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611991573d6000803e3d6000fd5b5050565b6000600e82815481106119a457fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6119de610ae6565b73ffffffffffffffffffffffffffffffffffffffff166119fc611ab8565b73ffffffffffffffffffffffffffffffffffffffff1614611a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4990615025565b60405180910390fd5b60005b601380549050811015611ab557600060138281548110611a7157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050611aa781610eca565b508080600101915050611a55565b50565b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611b7a5780601f10611b4f57610100808354040283529160200191611b7a565b820191906000526020600020905b815481529060010190602001808311611b5d57829003601f168201915b5050505050905090565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60168054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611c635780601f10611c3857610100808354040283529160200191611c63565b820191906000526020600020905b815481529060010190602001808311611c4657829003601f168201915b505050505081565b611c73610ae6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd890614e25565b60405180910390fd5b8060056000611cee610ae6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d9b610ae6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611de09190614c66565b60405180910390a35050565b611df4610ae6565b73ffffffffffffffffffffffffffffffffffffffff16611e12611ab8565b73ffffffffffffffffffffffffffffffffffffffff1614611e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5f90615025565b60405180910390fd5b60001515601760009054906101000a900460ff16151514611ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb590614f85565b60405180910390fd5b8060169080519060200190611ed4929190613934565b5050565b611ee9611ee3610ae6565b8361293d565b611f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1f906150a5565b60405180910390fd5b611f3484848484612d34565b50505050565b611f42610ae6565b73ffffffffffffffffffffffffffffffffffffffff16611f60611ab8565b73ffffffffffffffffffffffffffffffffffffffff1614611fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fad90615025565b60405180910390fd5b6001601760006101000a81548160ff0219169083151502179055507f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b060166040516120019190614ca3565b60405180910390a1565b60158054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156120a15780601f10612076576101008083540402835291602001916120a1565b820191906000526020600020905b81548152906001019060200180831161208457829003601f168201915b505050505081565b601260009054906101000a900460ff166120f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ef90614d85565b60405180910390fd5b600081118015612109575060148111155b612148576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213f90614f25565b60405180910390fd5b6130d461216582612157610eb9565b612d9090919063ffffffff16565b11156121a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219d90614da5565b60405180910390fd5b6121bb81601154612de590919063ffffffff16565b3410156121fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f490614e45565b60405180910390fd5b60005b8181101561223e576000612212610eb9565b90506130d461221f610eb9565b10156122305761222f3382612cc6565b5b508080600101915050612200565b5050565b606061224d8261275e565b61228c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228390615065565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156123355780601f1061230a57610100808354040283529160200191612335565b820191906000526020600020905b81548152906001019060200180831161231857829003601f168201915b5050505050905060006123466113f8565b905060008151141561235c5781925050506123c0565b600082511115612391578082604051602001612379929190614b7b565b604051602081830303815290604052925050506123c0565b8061239b85612e55565b6040516020016123ac929190614b7b565b604051602081830303815290604052925050505b919050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060612418610eb9565b8210612459576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245090614ce5565b60405180910390fd5b60168054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156124ef5780601f106124c4576101008083540402835291602001916124ef565b820191906000526020600020905b8154815290600101906020018083116124d257829003601f168201915b50505050509050919050565b6000600b54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601260009054906101000a900460ff1681565b6125b4610ae6565b73ffffffffffffffffffffffffffffffffffffffff166125d2611ab8565b73ffffffffffffffffffffffffffffffffffffffff1614612628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261f90615025565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268f90614d25565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6130d481565b6000612774826002612f9c90919063ffffffff16565b9050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166127ee8361133b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061284282600001612fb6565b9050919050565b8047101561288c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288390614ea5565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516128b290614b9f565b60006040518083038185875af1925050503d80600081146128ef576040519150601f19603f3d011682016040523d82523d6000602084013e6128f4565b606091505b5050905080612938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292f90614e85565b60405180910390fd5b505050565b60006129488261275e565b612987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297e90614ee5565b60405180910390fd5b60006129928361133b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612a0157508373ffffffffffffffffffffffffffffffffffffffff166129e984610bf7565b73ffffffffffffffffffffffffffffffffffffffff16145b80612a125750612a118185612505565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a3b8261133b565b73ffffffffffffffffffffffffffffffffffffffff1614612a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8890615045565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af890614e05565b60405180910390fd5b612b0c838383612fc7565b612b1760008261277b565b612b6881600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612fcc90919063ffffffff16565b50612bba81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612fe690919063ffffffff16565b50612bd1818360026130009092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612c418360000183613035565b60001c905092915050565b600080600080612c5f86600001866130a2565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190612c8e929190613934565b5050565b6000612ca5846000018460001b84613125565b60001c90509392505050565b6000612cbf826000016131b6565b9050919050565b612ce08282604051806020016040528060008152506131c7565b5050565b600082821115612d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2090614e65565b60405180910390fd5b818303905092915050565b612d3f848484612a1b565b612d4b84848484613222565b612d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8190614d05565b60405180910390fd5b50505050565b600080828401905083811015612ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd290614d65565b60405180910390fd5b8091505092915050565b600080831415612df85760009050612e4f565b6000828402905082848281612e0957fe5b0414612e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4190614fe5565b60405180910390fd5b809150505b92915050565b60606000821415612e9d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f97565b600082905060005b60008214612ec7578080600101915050600a8281612ebf57fe5b049150612ea5565b60008167ffffffffffffffff81118015612ee057600080fd5b506040519080825280601f01601f191660200182016040528015612f135781602001600182028036833780820191505090505b50905060006001830390508593505b60008414612f8f57600a8481612f3457fe5b0660300160f81b82828060019003935081518110612f4e57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481612f8757fe5b049350612f22565b819450505050505b919050565b6000612fae836000018360001b613386565b905092915050565b600081600001805490509050919050565b505050565b6000612fde836000018360001b6133a9565b905092915050565b6000612ff8836000018360001b613491565b905092915050565b600061302c846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b613501565b90509392505050565b600081836000018054905011613080576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307790614cc5565b60405180910390fd5b82600001828154811061308f57fe5b9060005260206000200154905092915050565b600080828460000180549050116130ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130e590614fa5565b60405180910390fd5b60008460000184815481106130ff57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390613187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317e9190614c81565b60405180910390fd5b5084600001600182038154811061319a57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b6131d183836135dd565b6131de6000848484613222565b61321d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321490614d05565b60405180910390fd5b505050565b60006132438473ffffffffffffffffffffffffffffffffffffffff1661376b565b613250576001905061337e565b600061331763150b7a0260e01b613265610ae6565b88878760405160240161327b9493929190614bcf565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040518060600160405280603281526020016153b2603291398773ffffffffffffffffffffffffffffffffffffffff1661377e9092919063ffffffff16565b905060008180602001905181019061332f9190613d26565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b6000808360010160008481526020019081526020016000205490506000811461348557600060018203905060006001866000018054905003905060008660000182815481106133f457fe5b906000526020600020015490508087600001848154811061341157fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061344957fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061348b565b60009150505b92915050565b600061349d8383613796565b6134f65782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506134fb565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156135a8578460000160405180604001604052808681526020018581525090806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010155505084600001805490508560010160008681526020019081526020016000208190555060019150506135d6565b828560000160018303815481106135bb57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561364d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161364490614fc5565b60405180910390fd5b6136568161275e565b15613696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161368d90614d45565b60405180910390fd5b6136a260008383612fc7565b6136f381600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612fe690919063ffffffff16565b5061370a818360026130009092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b606061378d84846000856137b9565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b6060824710156137fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137f590614ec5565b60405180910390fd5b6138078561376b565b613846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161383d906150c5565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161386f9190614b64565b60006040518083038185875af1925050503d80600081146138ac576040519150601f19603f3d011682016040523d82523d6000602084013e6138b1565b606091505b50915091506138c18282866138cd565b92505050949350505050565b606083156138dd5782905061392d565b6000835111156138f05782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139249190614c81565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261396a57600085556139b1565b82601f1061398357805160ff19168380011785556139b1565b828001600101855582156139b1579182015b828111156139b0578251825591602001919060010190613995565b5b5090506139be91906139c2565b5090565b5b808211156139db5760008160009055506001016139c3565b5090565b60006139f26139ed84615131565b615100565b905082815260208101848484011115613a0a57600080fd5b613a158482856152e9565b509392505050565b6000613a30613a2b84615161565b615100565b905082815260208101848484011115613a4857600080fd5b613a538482856152e9565b509392505050565b600081359050613a6a8161533e565b92915050565b600081359050613a7f81615355565b92915050565b600081359050613a948161536c565b92915050565b600081359050613aa981615383565b92915050565b600081519050613abe81615383565b92915050565b600082601f830112613ad557600080fd5b8135613ae58482602086016139df565b91505092915050565b600082601f830112613aff57600080fd5b8135613b0f848260208601613a1d565b91505092915050565b600081359050613b278161539a565b92915050565b600060208284031215613b3f57600080fd5b6000613b4d84828501613a5b565b91505092915050565b600060208284031215613b6857600080fd5b6000613b7684828501613a70565b91505092915050565b60008060408385031215613b9257600080fd5b6000613ba085828601613a5b565b9250506020613bb185828601613a5b565b9150509250929050565b600080600060608486031215613bd057600080fd5b6000613bde86828701613a5b565b9350506020613bef86828701613a5b565b9250506040613c0086828701613b18565b9150509250925092565b60008060008060808587031215613c2057600080fd5b6000613c2e87828801613a5b565b9450506020613c3f87828801613a5b565b9350506040613c5087828801613b18565b925050606085013567ffffffffffffffff811115613c6d57600080fd5b613c7987828801613ac4565b91505092959194509250565b60008060408385031215613c9857600080fd5b6000613ca685828601613a5b565b9250506020613cb785828601613a85565b9150509250929050565b60008060408385031215613cd457600080fd5b6000613ce285828601613a5b565b9250506020613cf385828601613b18565b9150509250929050565b600060208284031215613d0f57600080fd5b6000613d1d84828501613a9a565b91505092915050565b600060208284031215613d3857600080fd5b6000613d4684828501613aaf565b91505092915050565b600060208284031215613d6157600080fd5b600082013567ffffffffffffffff811115613d7b57600080fd5b613d8784828501613aee565b91505092915050565b600060208284031215613da257600080fd5b6000613db084828501613b18565b91505092915050565b6000613dc58383614b46565b60208301905092915050565b613dda816152b3565b82525050565b613de98161523f565b82525050565b613df88161522d565b82525050565b6000613e09826151b6565b613e1381856151e4565b9350613e1e83615191565b8060005b83811015613e4f578151613e368882613db9565b9750613e41836151d7565b925050600181019050613e22565b5085935050505092915050565b613e6581615251565b82525050565b6000613e76826151c1565b613e8081856151f5565b9350613e908185602086016152f8565b613e998161532d565b840191505092915050565b6000613eaf826151c1565b613eb98185615206565b9350613ec98185602086016152f8565b80840191505092915050565b6000613ee0826151cc565b613eea8185615211565b9350613efa8185602086016152f8565b613f038161532d565b840191505092915050565b6000613f19826151cc565b613f238185615222565b9350613f338185602086016152f8565b80840191505092915050565b600081546001811660008114613f5c5760018114613f8257613fc6565b607f6002830416613f6d8187615211565b955060ff198316865260208601935050613fc6565b60028204613f908187615211565b9550613f9b856151a1565b60005b82811015613fbd57815481890152600182019150602081019050613f9e565b80880195505050505b505092915050565b6000613fdb602283615211565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614041601b83615211565b91507f43686f6f7365206120746f6b656e2077697468696e2072616e676500000000006000830152602082019050919050565b6000614081603283615211565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006140e7602683615211565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061414d601c83615211565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061418d601b83615211565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b60006141cd602183615211565b91507f53616c65206d7573742062652061637469766520746f206d696e7420546f6b6560008301527f6e000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614233602a83615211565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f6620546f6b656e73000000000000000000000000000000000000000000006020830152604082019050919050565b6000614299602683615211565b91507f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008301527f73686172657300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006142ff602083615211565b91507f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d6000830152602082019050919050565b600061433f602483615211565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006143a5601983615211565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006143e5601f83615211565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000614425601e83615211565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b6000614465603a83615211565b91507f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008301527f6563697069656e74206d617920686176652072657665727465640000000000006020830152604082019050919050565b60006144cb601d83615211565b91507f416464726573733a20696e73756666696369656e742062616c616e63650000006000830152602082019050919050565b600061450b602683615211565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614571602c83615211565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006145d7602b83615211565b91507f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008301527f647565207061796d656e740000000000000000000000000000000000000000006020830152604082019050919050565b600061463d602183615211565b91507f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006146a3603883615211565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614709602a83615211565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061476f601d83615211565b91507f546865206c6963656e736520697320616c7265616479206c6f636b65640000006000830152602082019050919050565b60006147af602283615211565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614815602083615211565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614855602183615211565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006148bb602c83615211565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614921602083615211565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614961602983615211565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006149c7602f83615211565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614a2d602183615211565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a93600083615206565b9150600082019050919050565b6000614aad603183615211565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614b13601d83615211565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b614b4f816152a9565b82525050565b614b5e816152a9565b82525050565b6000614b708284613ea4565b915081905092915050565b6000614b878285613f0e565b9150614b938284613f0e565b91508190509392505050565b6000614baa82614a86565b9150819050919050565b6000602082019050614bc96000830184613def565b92915050565b6000608082019050614be46000830187613de0565b614bf16020830186613def565b614bfe6040830185614b55565b8181036060830152614c108184613e6b565b905095945050505050565b6000604082019050614c306000830185613dd1565b614c3d6020830184614b55565b9392505050565b60006020820190508181036000830152614c5e8184613dfe565b905092915050565b6000602082019050614c7b6000830184613e5c565b92915050565b60006020820190508181036000830152614c9b8184613ed5565b905092915050565b60006020820190508181036000830152614cbd8184613f3f565b905092915050565b60006020820190508181036000830152614cde81613fce565b9050919050565b60006020820190508181036000830152614cfe81614034565b9050919050565b60006020820190508181036000830152614d1e81614074565b9050919050565b60006020820190508181036000830152614d3e816140da565b9050919050565b60006020820190508181036000830152614d5e81614140565b9050919050565b60006020820190508181036000830152614d7e81614180565b9050919050565b60006020820190508181036000830152614d9e816141c0565b9050919050565b60006020820190508181036000830152614dbe81614226565b9050919050565b60006020820190508181036000830152614dde8161428c565b9050919050565b60006020820190508181036000830152614dfe816142f2565b9050919050565b60006020820190508181036000830152614e1e81614332565b9050919050565b60006020820190508181036000830152614e3e81614398565b9050919050565b60006020820190508181036000830152614e5e816143d8565b9050919050565b60006020820190508181036000830152614e7e81614418565b9050919050565b60006020820190508181036000830152614e9e81614458565b9050919050565b60006020820190508181036000830152614ebe816144be565b9050919050565b60006020820190508181036000830152614ede816144fe565b9050919050565b60006020820190508181036000830152614efe81614564565b9050919050565b60006020820190508181036000830152614f1e816145ca565b9050919050565b60006020820190508181036000830152614f3e81614630565b9050919050565b60006020820190508181036000830152614f5e81614696565b9050919050565b60006020820190508181036000830152614f7e816146fc565b9050919050565b60006020820190508181036000830152614f9e81614762565b9050919050565b60006020820190508181036000830152614fbe816147a2565b9050919050565b60006020820190508181036000830152614fde81614808565b9050919050565b60006020820190508181036000830152614ffe81614848565b9050919050565b6000602082019050818103600083015261501e816148ae565b9050919050565b6000602082019050818103600083015261503e81614914565b9050919050565b6000602082019050818103600083015261505e81614954565b9050919050565b6000602082019050818103600083015261507e816149ba565b9050919050565b6000602082019050818103600083015261509e81614a20565b9050919050565b600060208201905081810360008301526150be81614aa0565b9050919050565b600060208201905081810360008301526150de81614b06565b9050919050565b60006020820190506150fa6000830184614b55565b92915050565b6000604051905081810181811067ffffffffffffffff821117156151275761512661532b565b5b8060405250919050565b600067ffffffffffffffff82111561514c5761514b61532b565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561517c5761517b61532b565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061523882615289565b9050919050565b600061524a82615289565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006152be826152c5565b9050919050565b60006152d0826152d7565b9050919050565b60006152e282615289565b9050919050565b82818337600083830152505050565b60005b838110156153165780820151818401526020810190506152fb565b83811115615325576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b6153478161522d565b811461535257600080fd5b50565b61535e8161523f565b811461536957600080fd5b50565b61537581615251565b811461538057600080fd5b50565b61538c8161525d565b811461539757600080fd5b50565b6153a3816152a9565b81146153ae57600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220de61ef61d7dac511e6ff9c9ad7cd511e65d83989487c5025b2455ec70170273d64736f6c63430007060033

Deployed Bytecode Sourcemap

72521:4678:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21232:40;21248:12;:10;:12::i;:::-;21262:9;21232:40;;;;;;;:::i;:::-;;;;;;;;72521:4678;;;;;10288:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56774:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59560:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59090:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72645:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74505:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75931:138;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58568:211;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22438:611;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60450:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58330:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73709:89;;;;;;;;;;;;;:::i;:::-;;21363:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60826:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58856:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74639:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56530:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74399:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58149:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56247:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71476:148;;;;;;;;;;;;;:::i;:::-;;73943:402;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73842:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72885:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74750:540;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76077:134;;;;;;;;;;;;;:::i;:::-;;22138:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76276:215;;;;;;;;;;;;;:::i;:::-;;70825:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56943:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21938:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73350:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59853:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75555:181;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61048:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75798:125;;;;;;;;;;;;;:::i;:::-;;73253:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76503:687;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57118:792;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21734:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75341:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21548:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60219:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72949:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71779:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72694:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;729:106;782:15;817:10;810:17;;729:106;:::o;10288:150::-;10373:4;10397:20;:33;10418:11;10397:33;;;;;;;;;;;;;;;;;;;;;;;;;;;10390:40;;10288:150;;;:::o;56774:100::-;56828:13;56861:5;56854:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56774:100;:::o;59560:221::-;59636:7;59664:16;59672:7;59664;:16::i;:::-;59656:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;59749:15;:24;59765:7;59749:24;;;;;;;;;;;;;;;;;;;;;59742:31;;59560:221;;;:::o;59090:404::-;59171:13;59187:23;59202:7;59187:14;:23::i;:::-;59171:39;;59235:5;59229:11;;:2;:11;;;;59221:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;59315:5;59299:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;59324:44;59348:5;59355:12;:10;:12::i;:::-;59324:23;:44::i;:::-;59299:69;59291:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;59465:21;59474:2;59478:7;59465:8;:21::i;:::-;59090:404;;;:::o;72645:42::-;72685:2;72645:42;:::o;74505:126::-;71056:12;:10;:12::i;:::-;71045:23;;:7;:5;:7::i;:::-;:23;;;71037:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;74609:14:::1;74590:16;:33;;;;;;;;;;;;:::i;:::-;;74505:126:::0;:::o;75931:138::-;75984:4;71056:12;:10;:12::i;:::-;71045:23;;:7;:5;:7::i;:::-;:23;;;71037:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;76000:12:::1;76015:21;76000:36;;76054:7;76047:14;;;75931:138:::0;:::o;58568:211::-;58629:7;58750:21;:12;:19;:21::i;:::-;58743:28;;58568:211;:::o;22438:611::-;22533:1;22514:7;:16;22522:7;22514:16;;;;;;;;;;;;;;;;:20;22506:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;22590:21;22638:14;;22614:21;:38;22590:62;;22663:15;22731:9;:18;22741:7;22731:18;;;;;;;;;;;;;;;;22716:12;;22697:7;:16;22705:7;22697:16;;;;;;;;;;;;;;;;22681:13;:32;:47;;;;;;:68;22663:86;;22781:1;22770:7;:12;;22762:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22885:7;22864:9;:18;22874:7;22864:18;;;;;;;;;;;;;;;;:28;22843:9;:18;22853:7;22843:18;;;;;;;;;;;;;;;:49;;;;22937:7;22920:14;;:24;22903:14;:41;;;;22957:35;22975:7;22984;22957:17;:35::i;:::-;23008:33;23024:7;23033;23008:33;;;;;;;:::i;:::-;;;;;;;;22438:611;;;:::o;60450:305::-;60611:41;60630:12;:10;:12::i;:::-;60644:7;60611:18;:41::i;:::-;60603:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;60719:28;60729:4;60735:2;60739:7;60719:9;:28::i;:::-;60450:305;;;:::o;58330:162::-;58427:7;58454:30;58478:5;58454:13;:20;58468:5;58454:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;58447:37;;58330:162;;;;:::o;73709:89::-;71056:12;:10;:12::i;:::-;71045:23;;:7;:5;:7::i;:::-;:23;;;71037:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;73778:12:::1;;;;;;;;;;;73777:13;73762:12;;:28;;;;;;;;;;;;;;;;;;73709:89::o:0;21363:91::-;21407:7;21434:12;;21427:19;;21363:91;:::o;60826:151::-;60930:39;60947:4;60953:2;60957:7;60930:39;;;;;;;;;;;;:16;:39::i;:::-;60826:151;;;:::o;58856:172::-;58931:7;58952:15;58973:22;58989:5;58973:12;:15;;:22;;;;:::i;:::-;58951:44;;;59013:7;59006:14;;;58856:172;;;:::o;74639:99::-;71056:12;:10;:12::i;:::-;71045:23;;:7;:5;:7::i;:::-;:23;;;71037:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;74710:20:::1;74722:7;74710:11;:20::i;:::-;74639:99:::0;:::o;56530:177::-;56602:7;56629:70;56646:7;56629:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;56622:77;;56530:177;;;:::o;74399:98::-;71056:12;:10;:12::i;:::-;71045:23;;:7;:5;:7::i;:::-;:23;;;71037:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;74481:8:::1;74468:10;:21;;;;74399:98:::0;:::o;58149:97::-;58197:13;58230:8;58223:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58149:97;:::o;56247:221::-;56319:7;56364:1;56347:19;;:5;:19;;;;56339:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;56431:29;:13;:20;56445:5;56431:20;;;;;;;;;;;;;;;:27;:29::i;:::-;56424:36;;56247:221;;;:::o;71476:148::-;71056:12;:10;:12::i;:::-;71045:23;;:7;:5;:7::i;:::-;:23;;;71037:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71583:1:::1;71546:40;;71567:6;;;;;;;;;;;71546:40;;;;;;;;;;;;71614:1;71597:6;;:19;;;;;;;;;;;;;;;;;;71476:148::o:0;73943:402::-;71056:12;:10;:12::i;:::-;71045:23;;:7;:5;:7::i;:::-;:23;;;71037:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;74039:11:::1;74053:13;:11;:13::i;:::-;74039:27;;74102:1;74085:14;:18;:52;;;;;74125:12;;74107:14;:30;;74085:52;74077:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;74190:6;74185:95;74206:14;74202:1;:18;74185:95;;;74242:26;74252:3;74266:1;74257:6;:10;74242:9;:26::i;:::-;74222:3;;;;;;;74185:95;;;;74305:32;74322:14;74305:12;;:16;;:32;;;;:::i;:::-;74290:12;:47;;;;71116:1;73943:402:::0;;:::o;73842:89::-;73888:4;73911:12;;;;;;;;;;;73904:19;;73842:89;:::o;72885:45::-;;;;:::o;74750:540::-;74811:16;74841:18;74862:17;74872:6;74862:9;:17::i;:::-;74841:38;;74908:1;74894:10;:15;74890:393;;;74985:1;74971:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74964:23;;;;;74890:393;75020:23;75060:10;75046:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75020:51;;75086:13;75114:130;75138:10;75130:5;:18;75114:130;;;75194:34;75214:6;75222:5;75194:19;:34::i;:::-;75178:6;75185:5;75178:13;;;;;;;;;;;;;:50;;;;;75150:7;;;;;;;75114:130;;;75265:6;75258:13;;;;;74750:540;;;;:::o;76077:134::-;71056:12;:10;:12::i;:::-;71045:23;;:7;:5;:7::i;:::-;:23;;;71037:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;76128:12:::1;76143:21;76128:36;;76175:10;:19;;:28;76195:7;76175:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;71116:1;76077:134::o:0;22138:100::-;22189:7;22216;22224:5;22216:14;;;;;;;;;;;;;;;;;;;;;;;;;22209:21;;22138:100;;;:::o;76276:215::-;71056:12;:10;:12::i;:::-;71045:23;;:7;:5;:7::i;:::-;:23;;;71037:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;76335:9:::1;76330:154;76354:11;:18;;;;76350:1;:22;76330:154;;;76394:22;76427:11;76439:1;76427:14;;;;;;;;;;;;;;;;;;;;;;;;;76394:48;;76457:15;76465:6;76457:7;:15::i;:::-;76330:154;76374:3;;;;;;;76330:154;;;;76276:215::o:0;70825:87::-;70871:7;70898:6;;;;;;;;;;;70891:13;;70825:87;:::o;56943:104::-;56999:13;57032:7;57025:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56943:104;:::o;21938:109::-;21994:7;22021:9;:18;22031:7;22021:18;;;;;;;;;;;;;;;;22014:25;;21938:109;;;:::o;73350:31::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;59853:295::-;59968:12;:10;:12::i;:::-;59956:24;;:8;:24;;;;59948:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;60068:8;60023:18;:32;60042:12;:10;:12::i;:::-;60023:32;;;;;;;;;;;;;;;:42;60056:8;60023:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;60121:8;60092:48;;60107:12;:10;:12::i;:::-;60092:48;;;60131:8;60092:48;;;;;;:::i;:::-;;;;;;;;59853:295;;:::o;75555:181::-;71056:12;:10;:12::i;:::-;71045:23;;:7;:5;:7::i;:::-;:23;;;71037:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;75655:5:::1;75638:22;;:13;;;;;;;;;;;:22;;;75630:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;75720:8;75705:12;:23;;;;;;;;;;;;:::i;:::-;;75555:181:::0;:::o;61048:285::-;61180:41;61199:12;:10;:12::i;:::-;61213:7;61180:18;:41::i;:::-;61172:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;61286:39;61300:4;61306:2;61310:7;61319:5;61286:13;:39::i;:::-;61048:285;;;;:::o;75798:125::-;71056:12;:10;:12::i;:::-;71045:23;;:7;:5;:7::i;:::-;:23;;;71037:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;75866:4:::1;75849:13;;:21;;;;;;;;;;;;;;;;;;75886:29;75902:12;75886:29;;;;;;:::i;:::-;;;;;;;;75798:125::o:0;73253:35::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;76503:687::-;76577:12;;;;;;;;;;;76569:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;76663:1;76646:14;:18;:56;;;;;72685:2;76668:14;:34;;76646:56;76638:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;72731:5;76759:33;76777:14;76759:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:47;;76751:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;76885:30;76900:14;76885:10;;:14;;:30;;;;:::i;:::-;76872:9;:43;;76864:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;76976:6;76972:211;76992:14;76988:1;:18;76972:211;;;77028:14;77045:13;:11;:13::i;:::-;77028:30;;72731:5;77077:13;:11;:13::i;:::-;:26;77073:99;;;77124:32;77134:10;77146:9;77124;:32::i;:::-;77073:99;76972:211;77008:3;;;;;;;76972:211;;;;76503:687;:::o;57118:792::-;57191:13;57225:16;57233:7;57225;:16::i;:::-;57217:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;57306:23;57332:10;:19;57343:7;57332:19;;;;;;;;;;;57306:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57362:18;57383:9;:7;:9::i;:::-;57362:30;;57490:1;57474:4;57468:18;:23;57464:72;;;57515:9;57508:16;;;;;;57464:72;57666:1;57646:9;57640:23;:27;57636:108;;;57715:4;57721:9;57698:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57684:48;;;;;;57636:108;57876:4;57882:18;:7;:16;:18::i;:::-;57859:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57845:57;;;;57118:792;;;;:::o;21734:105::-;21788:7;21815;:16;21823:7;21815:16;;;;;;;;;;;;;;;;21808:23;;21734:105;;;:::o;75341:175::-;75393:13;75433;:11;:13::i;:::-;75427:3;:19;75419:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;75496:12;75489:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75341:175;;;:::o;21548:95::-;21594:7;21621:14;;21614:21;;21548:95;:::o;60219:164::-;60316:4;60340:18;:25;60359:5;60340:25;;;;;;;;;;;;;;;:35;60366:8;60340:35;;;;;;;;;;;;;;;;;;;;;;;;;60333:42;;60219:164;;;;:::o;72949:32::-;;;;;;;;;;;;;:::o;71779:244::-;71056:12;:10;:12::i;:::-;71045:23;;:7;:5;:7::i;:::-;:23;;;71037:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71888:1:::1;71868:22;;:8;:22;;;;71860:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;71978:8;71949:38;;71970:6;;;;;;;;;;;71949:38;;;;;;;;;;;;72007:8;71998:6;;:17;;;;;;;;;;;;;;;;;;71779:244:::0;:::o;72694:42::-;72731:5;72694:42;:::o;62800:127::-;62865:4;62889:30;62911:7;62889:12;:21;;:30;;;;:::i;:::-;62882:37;;62800:127;;;:::o;68818:192::-;68920:2;68893:15;:24;68909:7;68893:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;68976:7;68972:2;68938:46;;68947:23;68962:7;68947:14;:23::i;:::-;68938:46;;;;;;;;;;;;68818:192;;:::o;49539:123::-;49608:7;49635:19;49643:3;:10;;49635:7;:19::i;:::-;49628:26;;49539:123;;;:::o;25856:397::-;25971:6;25946:21;:31;;25938:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26103:12;26121:9;:14;;26144:6;26121:35;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26102:54;;;26175:7;26167:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;25856:397;;;:::o;63094:355::-;63187:4;63212:16;63220:7;63212;:16::i;:::-;63204:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;63288:13;63304:23;63319:7;63304:14;:23::i;:::-;63288:39;;63357:5;63346:16;;:7;:16;;;:51;;;;63390:7;63366:31;;:20;63378:7;63366:11;:20::i;:::-;:31;;;63346:51;:94;;;;63401:39;63425:5;63432:7;63401:23;:39::i;:::-;63346:94;63338:103;;;63094:355;;;;:::o;66230:599::-;66355:4;66328:31;;:23;66343:7;66328:14;:23::i;:::-;:31;;;66320:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;66456:1;66442:16;;:2;:16;;;;66434:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;66512:39;66533:4;66539:2;66543:7;66512:20;:39::i;:::-;66616:29;66633:1;66637:7;66616:8;:29::i;:::-;66658:35;66685:7;66658:13;:19;66672:4;66658:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;66704:30;66726:7;66704:13;:17;66718:2;66704:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;66747:29;66764:7;66773:2;66747:12;:16;;:29;;;;;:::i;:::-;;66813:7;66809:2;66794:27;;66803:4;66794:27;;;;;;;;;;;;66230:599;;;:::o;41330:137::-;41401:7;41436:22;41440:3;:10;;41452:5;41436:3;:22::i;:::-;41428:31;;41421:38;;41330:137;;;;:::o;50001:236::-;50081:7;50090;50111:11;50124:13;50141:22;50145:3;:10;;50157:5;50141:3;:22::i;:::-;50110:53;;;;50190:3;50182:12;;50220:5;50212:14;;50174:55;;;;;;50001:236;;;;;:::o;67430:100::-;67514:8;67503;:19;;;;;;;;;;;;:::i;:::-;;67430:100;:::o;51287:213::-;51394:7;51445:44;51450:3;:10;;51470:3;51462:12;;51476;51445:4;:44::i;:::-;51437:53;;51414:78;;51287:213;;;;;:::o;40872:114::-;40932:7;40959:19;40967:3;:10;;40959:7;:19::i;:::-;40952:26;;40872:114;;;:::o;63792:110::-;63868:26;63878:2;63882:7;63868:26;;;;;;;;;;;;:9;:26::i;:::-;63792:110;;:::o;14312:158::-;14370:7;14403:1;14398;:6;;14390:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;14461:1;14457;:5;14450:12;;14312:158;;;;:::o;62215:272::-;62329:28;62339:4;62345:2;62349:7;62329:9;:28::i;:::-;62376:48;62399:4;62405:2;62409:7;62418:5;62376:22;:48::i;:::-;62368:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;62215:272;;;;:::o;13850:179::-;13908:7;13928:9;13944:1;13940;:5;13928:17;;13969:1;13964;:6;;13956:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;14020:1;14013:8;;;13850:179;;;;:::o;14729:220::-;14787:7;14816:1;14811;:6;14807:20;;;14826:1;14819:8;;;;14807:20;14838:9;14854:1;14850;:5;14838:17;;14883:1;14878;14874;:5;;;;;;:10;14866:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;14940:1;14933:8;;;14729:220;;;;;:::o;51751:746::-;51807:13;52037:1;52028:5;:10;52024:53;;;52055:10;;;;;;;;;;;;;;;;;;;;;52024:53;52087:12;52102:5;52087:20;;52118:14;52143:78;52158:1;52150:4;:9;52143:78;;52176:8;;;;;;;52207:2;52199:10;;;;;;;;;52143:78;;;52231:19;52263:6;52253:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52231:39;;52281:13;52306:1;52297:6;:10;52281:26;;52325:5;52318:12;;52341:117;52356:1;52348:4;:9;52341:117;;52417:2;52410:4;:9;;;;;;52405:2;:14;52392:29;;52374:6;52381:7;;;;;;;52374:15;;;;;;;;;;;:47;;;;;;;;;;;52444:2;52436:10;;;;;;;;;52341:117;;;52482:6;52468:21;;;;;;51751:746;;;;:::o;49300:151::-;49384:4;49408:35;49418:3;:10;;49438:3;49430:12;;49408:9;:35::i;:::-;49401:42;;49300:151;;;;:::o;46118:110::-;46174:7;46201:3;:12;;:19;;;;46194:26;;46118:110;;;:::o;69623:93::-;;;;:::o;40417:137::-;40487:4;40511:35;40519:3;:10;;40539:5;40531:14;;40511:7;:35::i;:::-;40504:42;;40417:137;;;;:::o;40110:131::-;40177:4;40201:32;40206:3;:10;;40226:5;40218:14;;40201:4;:32::i;:::-;40194:39;;40110:131;;;;:::o;48723:185::-;48812:4;48836:64;48841:3;:10;;48861:3;48853:12;;48891:5;48875:23;;48867:32;;48836:4;:64::i;:::-;48829:71;;48723:185;;;;;:::o;36368:204::-;36435:7;36484:5;36463:3;:11;;:18;;;;:26;36455:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;36546:3;:11;;36558:5;36546:18;;;;;;;;;;;;;;;;36539:25;;36368:204;;;;:::o;46583:279::-;46650:7;46659;46709:5;46687:3;:12;;:19;;;;:27;46679:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;46766:22;46791:3;:12;;46804:5;46791:19;;;;;;;;;;;;;;;;;;46766:44;;46829:5;:10;;;46841:5;:12;;;46821:33;;;;;46583:279;;;;;:::o;48080:319::-;48174:7;48194:16;48213:3;:12;;:17;48226:3;48213:17;;;;;;;;;;;;48194:36;;48261:1;48249:8;:13;;48264:12;48241:36;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;48331:3;:12;;48355:1;48344:8;:12;48331:26;;;;;;;;;;;;;;;;;;:33;;;48324:40;;;48080:319;;;;;:::o;35915:109::-;35971:7;35998:3;:11;;:18;;;;35991:25;;35915:109;;;:::o;64129:250::-;64225:18;64231:2;64235:7;64225:5;:18::i;:::-;64262:54;64293:1;64297:2;64301:7;64310:5;64262:22;:54::i;:::-;64254:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;64129:250;;;:::o;68095:604::-;68216:4;68243:15;:2;:13;;;:15::i;:::-;68238:60;;68282:4;68275:11;;;;68238:60;68308:23;68334:252;68387:45;;;68447:12;:10;:12::i;:::-;68474:4;68493:7;68515:5;68350:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68334:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;68308:278;;68597:13;68624:10;68613:32;;;;;;;;;;;;:::i;:::-;68597:48;;53251:10;68674:16;;68664:26;;;:6;:26;;;;68656:35;;;;68095:604;;;;;;;:::o;45898:125::-;45969:4;46014:1;45993:3;:12;;:17;46006:3;45993:17;;;;;;;;;;;;:22;;45986:29;;45898:125;;;;:::o;34070:1544::-;34136:4;34254:18;34275:3;:12;;:19;34288:5;34275:19;;;;;;;;;;;;34254:40;;34325:1;34311:10;:15;34307:1300;;34673:21;34710:1;34697:10;:14;34673:38;;34726:17;34767:1;34746:3;:11;;:18;;;;:22;34726:42;;35013:17;35033:3;:11;;35045:9;35033:22;;;;;;;;;;;;;;;;35013:42;;35179:9;35150:3;:11;;35162:13;35150:26;;;;;;;;;;;;;;;:38;;;;35298:1;35282:13;:17;35256:3;:12;;:23;35269:9;35256:23;;;;;;;;;;;:43;;;;35408:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;35503:3;:12;;:19;35516:5;35503:19;;;;;;;;;;;35496:26;;;35546:4;35539:11;;;;;;;;34307:1300;35590:5;35583:12;;;34070:1544;;;;;:::o;33480:414::-;33543:4;33565:21;33575:3;33580:5;33565:9;:21::i;:::-;33560:327;;33603:3;:11;;33620:5;33603:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33786:3;:11;;:18;;;;33764:3;:12;;:19;33777:5;33764:19;;;;;;;;;;;:40;;;;33826:4;33819:11;;;;33560:327;33870:5;33863:12;;33480:414;;;;;:::o;43398:692::-;43474:4;43590:16;43609:3;:12;;:17;43622:3;43609:17;;;;;;;;;;;;43590:36;;43655:1;43643:8;:13;43639:444;;;43710:3;:12;;43728:38;;;;;;;;43745:3;43728:38;;;;43758:5;43728:38;;;43710:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43925:3;:12;;:19;;;;43905:3;:12;;:17;43918:3;43905:17;;;;;;;;;;;:39;;;;43966:4;43959:11;;;;;43639:444;44039:5;44003:3;:12;;44027:1;44016:8;:12;44003:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;44066:5;44059:12;;;43398:692;;;;;;:::o;64715:404::-;64809:1;64795:16;;:2;:16;;;;64787:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;64868:16;64876:7;64868;:16::i;:::-;64867:17;64859:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;64930:45;64959:1;64963:2;64967:7;64930:20;:45::i;:::-;64988:30;65010:7;64988:13;:17;65002:2;64988:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;65031:29;65048:7;65057:2;65031:12;:16;;:29;;;;;:::i;:::-;;65103:7;65099:2;65078:33;;65095:1;65078:33;;;;;;;;;;;;64715:404;;:::o;24499:422::-;24559:4;24767:12;24878:7;24866:20;24858:28;;24912:1;24905:4;:8;24898:15;;;24499:422;;;:::o;27417:195::-;27520:12;27552:52;27574:6;27582:4;27588:1;27591:12;27552:21;:52::i;:::-;27545:59;;27417:195;;;;;:::o;35700:129::-;35773:4;35820:1;35797:3;:12;;:19;35810:5;35797:19;;;;;;;;;;;;:24;;35790:31;;35700:129;;;;:::o;28469:530::-;28596:12;28654:5;28629:21;:30;;28621:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;28721:18;28732:6;28721:10;:18::i;:::-;28713:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;28847:12;28861:23;28888:6;:11;;28908:5;28916:4;28888:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28846:75;;;;28939:52;28957:7;28966:10;28978:12;28939:17;:52::i;:::-;28932:59;;;;28469:530;;;;;;:::o;31009:742::-;31124:12;31153:7;31149:595;;;31184:10;31177:17;;;;31149:595;31318:1;31298:10;:17;:21;31294:439;;;31561:10;31555:17;31622:15;31609:10;31605:2;31601:19;31594:44;31509:148;31704:12;31697:20;;;;;;;;;;;:::i;:::-;;;;;;;;31009:742;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:155::-;;942:6;929:20;920:29;;958:41;993:5;958:41;:::i;:::-;910:95;;;;:::o;1011:133::-;;1092:6;1079:20;1070:29;;1108:30;1132:5;1108:30;:::i;:::-;1060:84;;;;:::o;1150:137::-;;1233:6;1220:20;1211:29;;1249:32;1275:5;1249:32;:::i;:::-;1201:86;;;;:::o;1293:141::-;;1380:6;1374:13;1365:22;;1396:32;1422:5;1396:32;:::i;:::-;1355:79;;;;:::o;1453:271::-;;1557:3;1550:4;1542:6;1538:17;1534:27;1524:2;;1575:1;1572;1565:12;1524:2;1615:6;1602:20;1640:78;1714:3;1706:6;1699:4;1691:6;1687:17;1640:78;:::i;:::-;1631:87;;1514:210;;;;;:::o;1744:273::-;;1849:3;1842:4;1834:6;1830:17;1826:27;1816:2;;1867:1;1864;1857:12;1816:2;1907:6;1894:20;1932:79;2007:3;1999:6;1992:4;1984:6;1980:17;1932:79;:::i;:::-;1923:88;;1806:211;;;;;:::o;2023:139::-;;2107:6;2094:20;2085:29;;2123:33;2150:5;2123:33;:::i;:::-;2075:87;;;;:::o;2168:262::-;;2276:2;2264:9;2255:7;2251:23;2247:32;2244:2;;;2292:1;2289;2282:12;2244:2;2335:1;2360:53;2405:7;2396:6;2385:9;2381:22;2360:53;:::i;:::-;2350:63;;2306:117;2234:196;;;;:::o;2436:278::-;;2552:2;2540:9;2531:7;2527:23;2523:32;2520:2;;;2568:1;2565;2558:12;2520:2;2611:1;2636:61;2689:7;2680:6;2669:9;2665:22;2636:61;:::i;:::-;2626:71;;2582:125;2510:204;;;;:::o;2720:407::-;;;2845:2;2833:9;2824:7;2820:23;2816:32;2813:2;;;2861:1;2858;2851:12;2813:2;2904:1;2929:53;2974:7;2965:6;2954:9;2950:22;2929:53;:::i;:::-;2919:63;;2875:117;3031:2;3057:53;3102:7;3093:6;3082:9;3078:22;3057:53;:::i;:::-;3047:63;;3002:118;2803:324;;;;;:::o;3133:552::-;;;;3275:2;3263:9;3254:7;3250:23;3246:32;3243:2;;;3291:1;3288;3281:12;3243:2;3334:1;3359:53;3404:7;3395:6;3384:9;3380:22;3359:53;:::i;:::-;3349:63;;3305:117;3461:2;3487:53;3532:7;3523:6;3512:9;3508:22;3487:53;:::i;:::-;3477:63;;3432:118;3589:2;3615:53;3660:7;3651:6;3640:9;3636:22;3615:53;:::i;:::-;3605:63;;3560:118;3233:452;;;;;:::o;3691:809::-;;;;;3859:3;3847:9;3838:7;3834:23;3830:33;3827:2;;;3876:1;3873;3866:12;3827:2;3919:1;3944:53;3989:7;3980:6;3969:9;3965:22;3944:53;:::i;:::-;3934:63;;3890:117;4046:2;4072:53;4117:7;4108:6;4097:9;4093:22;4072:53;:::i;:::-;4062:63;;4017:118;4174:2;4200:53;4245:7;4236:6;4225:9;4221:22;4200:53;:::i;:::-;4190:63;;4145:118;4330:2;4319:9;4315:18;4302:32;4361:18;4353:6;4350:30;4347:2;;;4393:1;4390;4383:12;4347:2;4421:62;4475:7;4466:6;4455:9;4451:22;4421:62;:::i;:::-;4411:72;;4273:220;3817:683;;;;;;;:::o;4506:401::-;;;4628:2;4616:9;4607:7;4603:23;4599:32;4596:2;;;4644:1;4641;4634:12;4596:2;4687:1;4712:53;4757:7;4748:6;4737:9;4733:22;4712:53;:::i;:::-;4702:63;;4658:117;4814:2;4840:50;4882:7;4873:6;4862:9;4858:22;4840:50;:::i;:::-;4830:60;;4785:115;4586:321;;;;;:::o;4913:407::-;;;5038:2;5026:9;5017:7;5013:23;5009:32;5006:2;;;5054:1;5051;5044:12;5006:2;5097:1;5122:53;5167:7;5158:6;5147:9;5143:22;5122:53;:::i;:::-;5112:63;;5068:117;5224:2;5250:53;5295:7;5286:6;5275:9;5271:22;5250:53;:::i;:::-;5240:63;;5195:118;4996:324;;;;;:::o;5326:260::-;;5433:2;5421:9;5412:7;5408:23;5404:32;5401:2;;;5449:1;5446;5439:12;5401:2;5492:1;5517:52;5561:7;5552:6;5541:9;5537:22;5517:52;:::i;:::-;5507:62;;5463:116;5391:195;;;;:::o;5592:282::-;;5710:2;5698:9;5689:7;5685:23;5681:32;5678:2;;;5726:1;5723;5716:12;5678:2;5769:1;5794:63;5849:7;5840:6;5829:9;5825:22;5794:63;:::i;:::-;5784:73;;5740:127;5668:206;;;;:::o;5880:375::-;;5998:2;5986:9;5977:7;5973:23;5969:32;5966:2;;;6014:1;6011;6004:12;5966:2;6085:1;6074:9;6070:17;6057:31;6115:18;6107:6;6104:30;6101:2;;;6147:1;6144;6137:12;6101:2;6175:63;6230:7;6221:6;6210:9;6206:22;6175:63;:::i;:::-;6165:73;;6028:220;5956:299;;;;:::o;6261:262::-;;6369:2;6357:9;6348:7;6344:23;6340:32;6337:2;;;6385:1;6382;6375:12;6337:2;6428:1;6453:53;6498:7;6489:6;6478:9;6474:22;6453:53;:::i;:::-;6443:63;;6399:117;6327:196;;;;:::o;6529:179::-;;6619:46;6661:3;6653:6;6619:46;:::i;:::-;6697:4;6692:3;6688:14;6674:28;;6609:99;;;;:::o;6714:147::-;6809:45;6848:5;6809:45;:::i;:::-;6804:3;6797:58;6787:74;;:::o;6867:142::-;6970:32;6996:5;6970:32;:::i;:::-;6965:3;6958:45;6948:61;;:::o;7015:118::-;7102:24;7120:5;7102:24;:::i;:::-;7097:3;7090:37;7080:53;;:::o;7169:732::-;;7317:54;7365:5;7317:54;:::i;:::-;7387:86;7466:6;7461:3;7387:86;:::i;:::-;7380:93;;7497:56;7547:5;7497:56;:::i;:::-;7576:7;7607:1;7592:284;7617:6;7614:1;7611:13;7592:284;;;7693:6;7687:13;7720:63;7779:3;7764:13;7720:63;:::i;:::-;7713:70;;7806:60;7859:6;7806:60;:::i;:::-;7796:70;;7652:224;7639:1;7636;7632:9;7627:14;;7592:284;;;7596:14;7892:3;7885:10;;7293:608;;;;;;;:::o;7907:109::-;7988:21;8003:5;7988:21;:::i;:::-;7983:3;7976:34;7966:50;;:::o;8022:360::-;;8136:38;8168:5;8136:38;:::i;:::-;8190:70;8253:6;8248:3;8190:70;:::i;:::-;8183:77;;8269:52;8314:6;8309:3;8302:4;8295:5;8291:16;8269:52;:::i;:::-;8346:29;8368:6;8346:29;:::i;:::-;8341:3;8337:39;8330:46;;8112:270;;;;;:::o;8388:373::-;;8520:38;8552:5;8520:38;:::i;:::-;8574:88;8655:6;8650:3;8574:88;:::i;:::-;8567:95;;8671:52;8716:6;8711:3;8704:4;8697:5;8693:16;8671:52;:::i;:::-;8748:6;8743:3;8739:16;8732:23;;8496:265;;;;;:::o;8767:364::-;;8883:39;8916:5;8883:39;:::i;:::-;8938:71;9002:6;8997:3;8938:71;:::i;:::-;8931:78;;9018:52;9063:6;9058:3;9051:4;9044:5;9040:16;9018:52;:::i;:::-;9095:29;9117:6;9095:29;:::i;:::-;9090:3;9086:39;9079:46;;8859:272;;;;;:::o;9137:377::-;;9271:39;9304:5;9271:39;:::i;:::-;9326:89;9408:6;9403:3;9326:89;:::i;:::-;9319:96;;9424:52;9469:6;9464:3;9457:4;9450:5;9446:16;9424:52;:::i;:::-;9501:6;9496:3;9492:16;9485:23;;9247:267;;;;;:::o;9544:937::-;;9666:5;9660:12;9703:1;9692:9;9688:17;9719:1;9714:281;;;;10009:1;10004:471;;;;9681:794;;9714:281;9804:4;9800:1;9789:9;9785:17;9781:28;9829:71;9893:6;9888:3;9829:71;:::i;:::-;9822:78;;9944:4;9940:9;9929;9925:25;9920:3;9913:38;9980:4;9975:3;9971:14;9964:21;;9721:274;9714:281;;10004:471;10085:1;10074:9;10070:17;10107:71;10171:6;10166:3;10107:71;:::i;:::-;10100:78;;10206:38;10238:5;10206:38;:::i;:::-;10266:1;10280:154;10294:6;10291:1;10288:13;10280:154;;;10368:7;10362:14;10358:1;10353:3;10349:11;10342:35;10418:1;10409:7;10405:15;10394:26;;10316:4;10313:1;10309:12;10304:17;;10280:154;;;10463:1;10458:3;10454:11;10447:18;;10011:464;;;9681:794;;9633:848;;;;;:::o;10487:366::-;;10650:67;10714:2;10709:3;10650:67;:::i;:::-;10643:74;;10747:34;10743:1;10738:3;10734:11;10727:55;10813:4;10808:2;10803:3;10799:12;10792:26;10844:2;10839:3;10835:12;10828:19;;10633:220;;;:::o;10859:325::-;;11022:67;11086:2;11081:3;11022:67;:::i;:::-;11015:74;;11119:29;11115:1;11110:3;11106:11;11099:50;11175:2;11170:3;11166:12;11159:19;;11005:179;;;:::o;11190:382::-;;11353:67;11417:2;11412:3;11353:67;:::i;:::-;11346:74;;11450:34;11446:1;11441:3;11437:11;11430:55;11516:20;11511:2;11506:3;11502:12;11495:42;11563:2;11558:3;11554:12;11547:19;;11336:236;;;:::o;11578:370::-;;11741:67;11805:2;11800:3;11741:67;:::i;:::-;11734:74;;11838:34;11834:1;11829:3;11825:11;11818:55;11904:8;11899:2;11894:3;11890:12;11883:30;11939:2;11934:3;11930:12;11923:19;;11724:224;;;:::o;11954:326::-;;12117:67;12181:2;12176:3;12117:67;:::i;:::-;12110:74;;12214:30;12210:1;12205:3;12201:11;12194:51;12271:2;12266:3;12262:12;12255:19;;12100:180;;;:::o;12286:325::-;;12449:67;12513:2;12508:3;12449:67;:::i;:::-;12442:74;;12546:29;12542:1;12537:3;12533:11;12526:50;12602:2;12597:3;12593:12;12586:19;;12432:179;;;:::o;12617:365::-;;12780:67;12844:2;12839:3;12780:67;:::i;:::-;12773:74;;12877:34;12873:1;12868:3;12864:11;12857:55;12943:3;12938:2;12933:3;12929:12;12922:25;12973:2;12968:3;12964:12;12957:19;;12763:219;;;:::o;12988:374::-;;13151:67;13215:2;13210:3;13151:67;:::i;:::-;13144:74;;13248:34;13244:1;13239:3;13235:11;13228:55;13314:12;13309:2;13304:3;13300:12;13293:34;13353:2;13348:3;13344:12;13337:19;;13134:228;;;:::o;13368:370::-;;13531:67;13595:2;13590:3;13531:67;:::i;:::-;13524:74;;13628:34;13624:1;13619:3;13615:11;13608:55;13694:8;13689:2;13684:3;13680:12;13673:30;13729:2;13724:3;13720:12;13713:19;;13514:224;;;:::o;13744:330::-;;13907:67;13971:2;13966:3;13907:67;:::i;:::-;13900:74;;14004:34;14000:1;13995:3;13991:11;13984:55;14065:2;14060:3;14056:12;14049:19;;13890:184;;;:::o;14080:368::-;;14243:67;14307:2;14302:3;14243:67;:::i;:::-;14236:74;;14340:34;14336:1;14331:3;14327:11;14320:55;14406:6;14401:2;14396:3;14392:12;14385:28;14439:2;14434:3;14430:12;14423:19;;14226:222;;;:::o;14454:323::-;;14617:67;14681:2;14676:3;14617:67;:::i;:::-;14610:74;;14714:27;14710:1;14705:3;14701:11;14694:48;14768:2;14763:3;14759:12;14752:19;;14600:177;;;:::o;14783:329::-;;14946:67;15010:2;15005:3;14946:67;:::i;:::-;14939:74;;15043:33;15039:1;15034:3;15030:11;15023:54;15103:2;15098:3;15094:12;15087:19;;14929:183;;;:::o;15118:328::-;;15281:67;15345:2;15340:3;15281:67;:::i;:::-;15274:74;;15378:32;15374:1;15369:3;15365:11;15358:53;15437:2;15432:3;15428:12;15421:19;;15264:182;;;:::o;15452:390::-;;15615:67;15679:2;15674:3;15615:67;:::i;:::-;15608:74;;15712:34;15708:1;15703:3;15699:11;15692:55;15778:28;15773:2;15768:3;15764:12;15757:50;15833:2;15828:3;15824:12;15817:19;;15598:244;;;:::o;15848:327::-;;16011:67;16075:2;16070:3;16011:67;:::i;:::-;16004:74;;16108:31;16104:1;16099:3;16095:11;16088:52;16166:2;16161:3;16157:12;16150:19;;15994:181;;;:::o;16181:370::-;;16344:67;16408:2;16403:3;16344:67;:::i;:::-;16337:74;;16441:34;16437:1;16432:3;16428:11;16421:55;16507:8;16502:2;16497:3;16493:12;16486:30;16542:2;16537:3;16533:12;16526:19;;16327:224;;;:::o;16557:376::-;;16720:67;16784:2;16779:3;16720:67;:::i;:::-;16713:74;;16817:34;16813:1;16808:3;16804:11;16797:55;16883:14;16878:2;16873:3;16869:12;16862:36;16924:2;16919:3;16915:12;16908:19;;16703:230;;;:::o;16939:375::-;;17102:67;17166:2;17161:3;17102:67;:::i;:::-;17095:74;;17199:34;17195:1;17190:3;17186:11;17179:55;17265:13;17260:2;17255:3;17251:12;17244:35;17305:2;17300:3;17296:12;17289:19;;17085:229;;;:::o;17320:365::-;;17483:67;17547:2;17542:3;17483:67;:::i;:::-;17476:74;;17580:34;17576:1;17571:3;17567:11;17560:55;17646:3;17641:2;17636:3;17632:12;17625:25;17676:2;17671:3;17667:12;17660:19;;17466:219;;;:::o;17691:388::-;;17854:67;17918:2;17913:3;17854:67;:::i;:::-;17847:74;;17951:34;17947:1;17942:3;17938:11;17931:55;18017:26;18012:2;18007:3;18003:12;17996:48;18070:2;18065:3;18061:12;18054:19;;17837:242;;;:::o;18085:374::-;;18248:67;18312:2;18307:3;18248:67;:::i;:::-;18241:74;;18345:34;18341:1;18336:3;18332:11;18325:55;18411:12;18406:2;18401:3;18397:12;18390:34;18450:2;18445:3;18441:12;18434:19;;18231:228;;;:::o;18465:327::-;;18628:67;18692:2;18687:3;18628:67;:::i;:::-;18621:74;;18725:31;18721:1;18716:3;18712:11;18705:52;18783:2;18778:3;18774:12;18767:19;;18611:181;;;:::o;18798:366::-;;18961:67;19025:2;19020:3;18961:67;:::i;:::-;18954:74;;19058:34;19054:1;19049:3;19045:11;19038:55;19124:4;19119:2;19114:3;19110:12;19103:26;19155:2;19150:3;19146:12;19139:19;;18944:220;;;:::o;19170:330::-;;19333:67;19397:2;19392:3;19333:67;:::i;:::-;19326:74;;19430:34;19426:1;19421:3;19417:11;19410:55;19491:2;19486:3;19482:12;19475:19;;19316:184;;;:::o;19506:365::-;;19669:67;19733:2;19728:3;19669:67;:::i;:::-;19662:74;;19766:34;19762:1;19757:3;19753:11;19746:55;19832:3;19827:2;19822:3;19818:12;19811:25;19862:2;19857:3;19853:12;19846:19;;19652:219;;;:::o;19877:376::-;;20040:67;20104:2;20099:3;20040:67;:::i;:::-;20033:74;;20137:34;20133:1;20128:3;20124:11;20117:55;20203:14;20198:2;20193:3;20189:12;20182:36;20244:2;20239:3;20235:12;20228:19;;20023:230;;;:::o;20259:330::-;;20422:67;20486:2;20481:3;20422:67;:::i;:::-;20415:74;;20519:34;20515:1;20510:3;20506:11;20499:55;20580:2;20575:3;20571:12;20564:19;;20405:184;;;:::o;20595:373::-;;20758:67;20822:2;20817:3;20758:67;:::i;:::-;20751:74;;20855:34;20851:1;20846:3;20842:11;20835:55;20921:11;20916:2;20911:3;20907:12;20900:33;20959:2;20954:3;20950:12;20943:19;;20741:227;;;:::o;20974:379::-;;21137:67;21201:2;21196:3;21137:67;:::i;:::-;21130:74;;21234:34;21230:1;21225:3;21221:11;21214:55;21300:17;21295:2;21290:3;21286:12;21279:39;21344:2;21339:3;21335:12;21328:19;;21120:233;;;:::o;21359:365::-;;21522:67;21586:2;21581:3;21522:67;:::i;:::-;21515:74;;21619:34;21615:1;21610:3;21606:11;21599:55;21685:3;21680:2;21675:3;21671:12;21664:25;21715:2;21710:3;21706:12;21699:19;;21505:219;;;:::o;21730:297::-;;21910:83;21991:1;21986:3;21910:83;:::i;:::-;21903:90;;22019:1;22014:3;22010:11;22003:18;;21893:134;;;:::o;22033:381::-;;22196:67;22260:2;22255:3;22196:67;:::i;:::-;22189:74;;22293:34;22289:1;22284:3;22280:11;22273:55;22359:19;22354:2;22349:3;22345:12;22338:41;22405:2;22400:3;22396:12;22389:19;;22179:235;;;:::o;22420:327::-;;22583:67;22647:2;22642:3;22583:67;:::i;:::-;22576:74;;22680:31;22676:1;22671:3;22667:11;22660:52;22738:2;22733:3;22729:12;22722:19;;22566:181;;;:::o;22753:108::-;22830:24;22848:5;22830:24;:::i;:::-;22825:3;22818:37;22808:53;;:::o;22867:118::-;22954:24;22972:5;22954:24;:::i;:::-;22949:3;22942:37;22932:53;;:::o;22991:271::-;;23143:93;23232:3;23223:6;23143:93;:::i;:::-;23136:100;;23253:3;23246:10;;23125:137;;;;:::o;23268:435::-;;23470:95;23561:3;23552:6;23470:95;:::i;:::-;23463:102;;23582:95;23673:3;23664:6;23582:95;:::i;:::-;23575:102;;23694:3;23687:10;;23452:251;;;;;:::o;23709:379::-;;23915:147;24058:3;23915:147;:::i;:::-;23908:154;;24079:3;24072:10;;23897:191;;;:::o;24094:222::-;;24225:2;24214:9;24210:18;24202:26;;24238:71;24306:1;24295:9;24291:17;24282:6;24238:71;:::i;:::-;24192:124;;;;:::o;24322:672::-;;24571:3;24560:9;24556:19;24548:27;;24585:87;24669:1;24658:9;24654:17;24645:6;24585:87;:::i;:::-;24682:72;24750:2;24739:9;24735:18;24726:6;24682:72;:::i;:::-;24764;24832:2;24821:9;24817:18;24808:6;24764:72;:::i;:::-;24883:9;24877:4;24873:20;24868:2;24857:9;24853:18;24846:48;24911:76;24982:4;24973:6;24911:76;:::i;:::-;24903:84;;24538:456;;;;;;;:::o;25000:348::-;;25167:2;25156:9;25152:18;25144:26;;25180:79;25256:1;25245:9;25241:17;25232:6;25180:79;:::i;:::-;25269:72;25337:2;25326:9;25322:18;25313:6;25269:72;:::i;:::-;25134:214;;;;;:::o;25354:373::-;;25535:2;25524:9;25520:18;25512:26;;25584:9;25578:4;25574:20;25570:1;25559:9;25555:17;25548:47;25612:108;25715:4;25706:6;25612:108;:::i;:::-;25604:116;;25502:225;;;;:::o;25733:210::-;;25858:2;25847:9;25843:18;25835:26;;25871:65;25933:1;25922:9;25918:17;25909:6;25871:65;:::i;:::-;25825:118;;;;:::o;25949:313::-;;26100:2;26089:9;26085:18;26077:26;;26149:9;26143:4;26139:20;26135:1;26124:9;26120:17;26113:47;26177:78;26250:4;26241:6;26177:78;:::i;:::-;26169:86;;26067:195;;;;:::o;26268:307::-;;26416:2;26405:9;26401:18;26393:26;;26465:9;26459:4;26455:20;26451:1;26440:9;26436:17;26429:47;26493:75;26563:4;26554:6;26493:75;:::i;:::-;26485:83;;26383:192;;;;:::o;26581:419::-;;26785:2;26774:9;26770:18;26762:26;;26834:9;26828:4;26824:20;26820:1;26809:9;26805:17;26798:47;26862:131;26988:4;26862:131;:::i;:::-;26854:139;;26752:248;;;:::o;27006:419::-;;27210:2;27199:9;27195:18;27187:26;;27259:9;27253:4;27249:20;27245:1;27234:9;27230:17;27223:47;27287:131;27413:4;27287:131;:::i;:::-;27279:139;;27177:248;;;:::o;27431:419::-;;27635:2;27624:9;27620:18;27612:26;;27684:9;27678:4;27674:20;27670:1;27659:9;27655:17;27648:47;27712:131;27838:4;27712:131;:::i;:::-;27704:139;;27602:248;;;:::o;27856:419::-;;28060:2;28049:9;28045:18;28037:26;;28109:9;28103:4;28099:20;28095:1;28084:9;28080:17;28073:47;28137:131;28263:4;28137:131;:::i;:::-;28129:139;;28027:248;;;:::o;28281:419::-;;28485:2;28474:9;28470:18;28462:26;;28534:9;28528:4;28524:20;28520:1;28509:9;28505:17;28498:47;28562:131;28688:4;28562:131;:::i;:::-;28554:139;;28452:248;;;:::o;28706:419::-;;28910:2;28899:9;28895:18;28887:26;;28959:9;28953:4;28949:20;28945:1;28934:9;28930:17;28923:47;28987:131;29113:4;28987:131;:::i;:::-;28979:139;;28877:248;;;:::o;29131:419::-;;29335:2;29324:9;29320:18;29312:26;;29384:9;29378:4;29374:20;29370:1;29359:9;29355:17;29348:47;29412:131;29538:4;29412:131;:::i;:::-;29404:139;;29302:248;;;:::o;29556:419::-;;29760:2;29749:9;29745:18;29737:26;;29809:9;29803:4;29799:20;29795:1;29784:9;29780:17;29773:47;29837:131;29963:4;29837:131;:::i;:::-;29829:139;;29727:248;;;:::o;29981:419::-;;30185:2;30174:9;30170:18;30162:26;;30234:9;30228:4;30224:20;30220:1;30209:9;30205:17;30198:47;30262:131;30388:4;30262:131;:::i;:::-;30254:139;;30152:248;;;:::o;30406:419::-;;30610:2;30599:9;30595:18;30587:26;;30659:9;30653:4;30649:20;30645:1;30634:9;30630:17;30623:47;30687:131;30813:4;30687:131;:::i;:::-;30679:139;;30577:248;;;:::o;30831:419::-;;31035:2;31024:9;31020:18;31012:26;;31084:9;31078:4;31074:20;31070:1;31059:9;31055:17;31048:47;31112:131;31238:4;31112:131;:::i;:::-;31104:139;;31002:248;;;:::o;31256:419::-;;31460:2;31449:9;31445:18;31437:26;;31509:9;31503:4;31499:20;31495:1;31484:9;31480:17;31473:47;31537:131;31663:4;31537:131;:::i;:::-;31529:139;;31427:248;;;:::o;31681:419::-;;31885:2;31874:9;31870:18;31862:26;;31934:9;31928:4;31924:20;31920:1;31909:9;31905:17;31898:47;31962:131;32088:4;31962:131;:::i;:::-;31954:139;;31852:248;;;:::o;32106:419::-;;32310:2;32299:9;32295:18;32287:26;;32359:9;32353:4;32349:20;32345:1;32334:9;32330:17;32323:47;32387:131;32513:4;32387:131;:::i;:::-;32379:139;;32277:248;;;:::o;32531:419::-;;32735:2;32724:9;32720:18;32712:26;;32784:9;32778:4;32774:20;32770:1;32759:9;32755:17;32748:47;32812:131;32938:4;32812:131;:::i;:::-;32804:139;;32702:248;;;:::o;32956:419::-;;33160:2;33149:9;33145:18;33137:26;;33209:9;33203:4;33199:20;33195:1;33184:9;33180:17;33173:47;33237:131;33363:4;33237:131;:::i;:::-;33229:139;;33127:248;;;:::o;33381:419::-;;33585:2;33574:9;33570:18;33562:26;;33634:9;33628:4;33624:20;33620:1;33609:9;33605:17;33598:47;33662:131;33788:4;33662:131;:::i;:::-;33654:139;;33552:248;;;:::o;33806:419::-;;34010:2;33999:9;33995:18;33987:26;;34059:9;34053:4;34049:20;34045:1;34034:9;34030:17;34023:47;34087:131;34213:4;34087:131;:::i;:::-;34079:139;;33977:248;;;:::o;34231:419::-;;34435:2;34424:9;34420:18;34412:26;;34484:9;34478:4;34474:20;34470:1;34459:9;34455:17;34448:47;34512:131;34638:4;34512:131;:::i;:::-;34504:139;;34402:248;;;:::o;34656:419::-;;34860:2;34849:9;34845:18;34837:26;;34909:9;34903:4;34899:20;34895:1;34884:9;34880:17;34873:47;34937:131;35063:4;34937:131;:::i;:::-;34929:139;;34827:248;;;:::o;35081:419::-;;35285:2;35274:9;35270:18;35262:26;;35334:9;35328:4;35324:20;35320:1;35309:9;35305:17;35298:47;35362:131;35488:4;35362:131;:::i;:::-;35354:139;;35252:248;;;:::o;35506:419::-;;35710:2;35699:9;35695:18;35687:26;;35759:9;35753:4;35749:20;35745:1;35734:9;35730:17;35723:47;35787:131;35913:4;35787:131;:::i;:::-;35779:139;;35677:248;;;:::o;35931:419::-;;36135:2;36124:9;36120:18;36112:26;;36184:9;36178:4;36174:20;36170:1;36159:9;36155:17;36148:47;36212:131;36338:4;36212:131;:::i;:::-;36204:139;;36102:248;;;:::o;36356:419::-;;36560:2;36549:9;36545:18;36537:26;;36609:9;36603:4;36599:20;36595:1;36584:9;36580:17;36573:47;36637:131;36763:4;36637:131;:::i;:::-;36629:139;;36527:248;;;:::o;36781:419::-;;36985:2;36974:9;36970:18;36962:26;;37034:9;37028:4;37024:20;37020:1;37009:9;37005:17;36998:47;37062:131;37188:4;37062:131;:::i;:::-;37054:139;;36952:248;;;:::o;37206:419::-;;37410:2;37399:9;37395:18;37387:26;;37459:9;37453:4;37449:20;37445:1;37434:9;37430:17;37423:47;37487:131;37613:4;37487:131;:::i;:::-;37479:139;;37377:248;;;:::o;37631:419::-;;37835:2;37824:9;37820:18;37812:26;;37884:9;37878:4;37874:20;37870:1;37859:9;37855:17;37848:47;37912:131;38038:4;37912:131;:::i;:::-;37904:139;;37802:248;;;:::o;38056:419::-;;38260:2;38249:9;38245:18;38237:26;;38309:9;38303:4;38299:20;38295:1;38284:9;38280:17;38273:47;38337:131;38463:4;38337:131;:::i;:::-;38329:139;;38227:248;;;:::o;38481:419::-;;38685:2;38674:9;38670:18;38662:26;;38734:9;38728:4;38724:20;38720:1;38709:9;38705:17;38698:47;38762:131;38888:4;38762:131;:::i;:::-;38754:139;;38652:248;;;:::o;38906:419::-;;39110:2;39099:9;39095:18;39087:26;;39159:9;39153:4;39149:20;39145:1;39134:9;39130:17;39123:47;39187:131;39313:4;39187:131;:::i;:::-;39179:139;;39077:248;;;:::o;39331:419::-;;39535:2;39524:9;39520:18;39512:26;;39584:9;39578:4;39574:20;39570:1;39559:9;39555:17;39548:47;39612:131;39738:4;39612:131;:::i;:::-;39604:139;;39502:248;;;:::o;39756:419::-;;39960:2;39949:9;39945:18;39937:26;;40009:9;40003:4;39999:20;39995:1;39984:9;39980:17;39973:47;40037:131;40163:4;40037:131;:::i;:::-;40029:139;;39927:248;;;:::o;40181:419::-;;40385:2;40374:9;40370:18;40362:26;;40434:9;40428:4;40424:20;40420:1;40409:9;40405:17;40398:47;40462:131;40588:4;40462:131;:::i;:::-;40454:139;;40352:248;;;:::o;40606:222::-;;40737:2;40726:9;40722:18;40714:26;;40750:71;40818:1;40807:9;40803:17;40794:6;40750:71;:::i;:::-;40704:124;;;;:::o;40834:278::-;;40900:2;40894:9;40884:19;;40942:4;40934:6;40930:17;41049:6;41037:10;41034:22;41013:18;41001:10;40998:34;40995:62;40992:2;;;41060:13;;:::i;:::-;40992:2;41095:10;41091:2;41084:22;40874:238;;;;:::o;41118:326::-;;41269:18;41261:6;41258:30;41255:2;;;41291:13;;:::i;:::-;41255:2;41371:4;41367:9;41360:4;41352:6;41348:17;41344:33;41336:41;;41432:4;41426;41422:15;41414:23;;41184:260;;;:::o;41450:327::-;;41602:18;41594:6;41591:30;41588:2;;;41624:13;;:::i;:::-;41588:2;41704:4;41700:9;41693:4;41685:6;41681:17;41677:33;41669:41;;41765:4;41759;41755:15;41747:23;;41517:260;;;:::o;41783:132::-;;41873:3;41865:11;;41903:4;41898:3;41894:14;41886:22;;41855:60;;;:::o;41921:141::-;;41993:3;41985:11;;42016:3;42013:1;42006:14;42050:4;42047:1;42037:18;42029:26;;41975:87;;;:::o;42068:114::-;;42169:5;42163:12;42153:22;;42142:40;;;:::o;42188:98::-;;42273:5;42267:12;42257:22;;42246:40;;;:::o;42292:99::-;;42378:5;42372:12;42362:22;;42351:40;;;:::o;42397:113::-;;42499:4;42494:3;42490:14;42482:22;;42472:38;;;:::o;42516:184::-;;42649:6;42644:3;42637:19;42689:4;42684:3;42680:14;42665:29;;42627:73;;;;:::o;42706:168::-;;42823:6;42818:3;42811:19;42863:4;42858:3;42854:14;42839:29;;42801:73;;;;:::o;42880:147::-;;43018:3;43003:18;;42993:34;;;;:::o;43033:169::-;;43151:6;43146:3;43139:19;43191:4;43186:3;43182:14;43167:29;;43129:73;;;;:::o;43208:148::-;;43347:3;43332:18;;43322:34;;;;:::o;43362:96::-;;43428:24;43446:5;43428:24;:::i;:::-;43417:35;;43407:51;;;:::o;43464:104::-;;43538:24;43556:5;43538:24;:::i;:::-;43527:35;;43517:51;;;:::o;43574:90::-;;43651:5;43644:13;43637:21;43626:32;;43616:48;;;:::o;43670:149::-;;43746:66;43739:5;43735:78;43724:89;;43714:105;;;:::o;43825:126::-;;43902:42;43895:5;43891:54;43880:65;;43870:81;;;:::o;43957:77::-;;44023:5;44012:16;;44002:32;;;:::o;44040:134::-;;44131:37;44162:5;44131:37;:::i;:::-;44118:50;;44108:66;;;:::o;44180:126::-;;44263:37;44294:5;44263:37;:::i;:::-;44250:50;;44240:66;;;:::o;44312:113::-;;44395:24;44413:5;44395:24;:::i;:::-;44382:37;;44372:53;;;:::o;44431:154::-;44515:6;44510:3;44505;44492:30;44577:1;44568:6;44563:3;44559:16;44552:27;44482:103;;;:::o;44591:307::-;44659:1;44669:113;44683:6;44680:1;44677:13;44669:113;;;44768:1;44763:3;44759:11;44753:18;44749:1;44744:3;44740:11;44733:39;44705:2;44702:1;44698:10;44693:15;;44669:113;;;44800:6;44797:1;44794:13;44791:2;;;44880:1;44871:6;44866:3;44862:16;44855:27;44791:2;44640:258;;;;:::o;44904:48::-;44937:9;44958:102;;45050:2;45046:7;45041:2;45034:5;45030:14;45026:28;45016:38;;45006:54;;;:::o;45066:122::-;45139:24;45157:5;45139:24;:::i;:::-;45132:5;45129:35;45119:2;;45178:1;45175;45168:12;45119:2;45109:79;:::o;45194:138::-;45275:32;45301:5;45275:32;:::i;:::-;45268:5;45265:43;45255:2;;45322:1;45319;45312:12;45255:2;45245:87;:::o;45338:116::-;45408:21;45423:5;45408:21;:::i;:::-;45401:5;45398:32;45388:2;;45444:1;45441;45434:12;45388:2;45378:76;:::o;45460:120::-;45532:23;45549:5;45532:23;:::i;:::-;45525:5;45522:34;45512:2;;45570:1;45567;45560:12;45512:2;45502:78;:::o;45586:122::-;45659:24;45677:5;45659:24;:::i;:::-;45652:5;45649:35;45639:2;;45698:1;45695;45688:12;45639:2;45629:79;:::o

Swarm Source

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