ETH Price: $3,713.36 (+3.33%)

Token

ERC-20: Toxic Lake Monster (TOX)
 

Overview

Max Total Supply

966 TOX

Holders

491

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 TOX
0x0492a80d26ed93742f2a0b67600a774c7cc1a22e
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:
ToxicLakeMonsterToken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 18 : ToxicLakeMonsterToken.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

contract ToxicLakeMonsterToken is ERC721, ERC721URIStorage, ERC721Enumerable, Ownable, Pausable, PaymentSplitter, ReentrancyGuard {
  using SafeMath for uint256;

  uint256 public constant TOKEN_LIMIT = 10000;

  bool public publicSale = false;
  uint256 private _maxTokensAtOnce;

  uint internal nonce = 0;
  uint[TOKEN_LIMIT] internal indices;

  uint256 private _tokenPrice;
  uint256[] private _teamShares = [50, 50];
  address[] private _team = [0xE2bfD7dA9C0962814DD44C9AD65CE6dB058b7a6f, 0x9114701Ba7C9a37C849Cce71FE98723d510e5DA6];

  mapping(address => uint8) public claimed;
  mapping(address => uint8) public presaleTokensCountByOwner;
  mapping(address => uint8) public pledgedTokensCountByOwner;
  uint256 public totalPledged;

  string private __baseURI;

  constructor()
    PaymentSplitter(_team, _teamShares)
    ERC721("Toxic Lake Monster", "TOX")
  {
    setBaseURI("https://api.toxiclakemonster.com/metadata/");
    setTokenPrice(69e15);
    setMaxTokensAtOnce(20);
  }

  // Pay now, mint later
  function spitHandshake(uint8 _count) public payable {
    require(getTokenPrice().mul(_count) == msg.value, "You need to pay the exact price");
    require(totalSupply().add(_count) <= TOKEN_LIMIT - totalPledged, "Purchase would exceed max supply of tokens");
    require(
      (_count + pledgedTokensCountByOwner[msg.sender] + claimed[msg.sender]) <= 5,
      "Each address can only purchase up to 5 tokens"
    );

    pledgedTokensCountByOwner[msg.sender] = pledgedTokensCountByOwner[msg.sender] + _count;
    totalPledged += uint256(_count);
  }

  function claim() public {
    require(pledgedTokensCountByOwner[msg.sender] > 0, "You do not have any tokens pledged");

    for(uint256 i = 0; i < pledgedTokensCountByOwner[msg.sender]; i++) {
      _mintToken(msg.sender);
    }

    claimed[msg.sender] += pledgedTokensCountByOwner[msg.sender];
    pledgedTokensCountByOwner[msg.sender] = 0;
  }

  // Presale for whitelisted addresses
  function presale(uint8 _amount) public payable nonReentrant whenNotPaused {
    require(!publicSale, "Pre-sale has already ended");
    require(totalSupply().add(_amount) <= TOKEN_LIMIT - totalPledged, "Purchase would exceed max supply of tokens");
    require(getTokenPrice().mul(_amount) == msg.value, "You need to pay the exact price");
    require((presaleTokensCountByOwner[msg.sender] + _amount) <= 5, "You can't mint more than 5 tokens during pre-sale");

    for(uint256 i = 0; i < _amount; i++) {
      _mintToken(msg.sender);
    }

    presaleTokensCountByOwner[msg.sender] = presaleTokensCountByOwner[msg.sender] + _amount;
  }

  // Minting
  function mintTokens(uint256 _amount) public payable nonReentrant whenNotPaused {
    require(totalSupply().add(_amount) <= TOKEN_LIMIT - totalPledged, "Purchase would exceed available supply of tokens");
    require(publicSale, "Public sale must be active");
    require(_amount <= _maxTokensAtOnce, "Too many tokens at once");
    require(getTokenPrice().mul(_amount) == msg.value, "You need to pay the exact price");

    for(uint256 i = 0; i < _amount; i++) {
      _mintToken(msg.sender);
    }
  }

  function _mintToken(address _to) private {
    uint _tokenID = randomIndex();
    _safeMint(_to, _tokenID);
  }

  // Developer minting
  function devMint(uint256 _amount) public nonReentrant onlyOwner {
    for(uint256 i = 0; i < _amount; i++) {
      _mintToken(msg.sender);
    }
  }

  // Pick a random index
  function randomIndex() internal returns (uint256) {
    uint256 totalSize = TOKEN_LIMIT - totalSupply();
    uint256 index = uint(keccak256(abi.encodePacked(nonce, msg.sender, block.difficulty, block.timestamp))) % totalSize;
    uint256 value = 0;

    if (indices[index] != 0) {
      value = indices[index];
    } else {
      value = index;
    }

    if (indices[totalSize - 1] == 0) {
      indices[index] = totalSize - 1;
    } else {
      indices[index] = indices[totalSize - 1];
    }

    nonce++;

    return value.add(1);
  }

  // Public sale
  function togglePublicSale() public onlyOwner {
    publicSale = !publicSale;
  }

  // _maxTokensAtOnce
  function maxTokensAtOnce() public view onlyOwner returns (uint256) {
    return _maxTokensAtOnce;
  }

  function setMaxTokensAtOnce(uint256 _count) public onlyOwner {
    _maxTokensAtOnce = _count;
  }

  // Required overrides from parent contracts
  function _burn(uint256 tokenId) internal virtual override(ERC721, ERC721URIStorage) {
    super._burn(tokenId);
  }

  function tokenURI(uint256 tokenId) public view virtual override(ERC721, ERC721URIStorage) returns (string memory) {
    return super.tokenURI(tokenId);
  }

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

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

  // _paused
  function togglePaused() public onlyOwner {
    if (paused()) {
      _unpause();
    } else {
      _pause();
    }
  }

  // _tokenPrice
  function getTokenPrice() public view returns(uint256) {
    return _tokenPrice;
  }

  function setTokenPrice(uint256 _price) public onlyOwner {
    _tokenPrice = _price;
  }

  // Token URIs
  function _baseURI() internal override view returns (string memory) {
    return __baseURI;
  }

  function setBaseURI(string memory _value) public onlyOwner {
    __baseURI = _value;
  }
}

File 2 of 18 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
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) {
        unchecked {
            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) {
        unchecked {
            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) {
        unchecked {
            // 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) {
        unchecked {
            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) {
        unchecked {
            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) {
        return a + b;
    }

    /**
     * @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) {
        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) {
        return a * b;
    }

    /**
     * @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.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        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) {
        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) {
        unchecked {
            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.
     *
     * 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) {
        unchecked {
            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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 3 of 18 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 4 of 18 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 5 of 18 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 6 of 18 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 7 of 18 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 18 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @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 9 of 18 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @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 10 of 18 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721URIStorage: 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));
        }

        return super.tokenURI(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), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

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

File 11 of 18 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 12 of 18 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 13 of 18 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @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 14 of 18 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 15 of 18 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 16 of 18 : Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 17 of 18 : PaymentSplitter.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Address.sol";
import "../utils/Context.sol";
import "../utils/math/SafeMath.sol";

/**
 * @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 {
        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 18 of 18 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "london",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

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"}],"name":"Paused","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":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"TOKEN_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimed","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"devMint","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":"getTokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensAtOnce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintTokens","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":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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","name":"","type":"address"}],"name":"pledgedTokensCountByOwner","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_amount","type":"uint8"}],"name":"presale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleTokensCountByOwner","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_value","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaxTokensAtOnce","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","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":"uint8","name":"_count","type":"uint8"}],"name":"spitHandshake","outputs":[],"stateMutability":"payable","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":[],"name":"togglePaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPledged","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"},{"stateMutability":"payable","type":"receive"}]

60806040526000601260006101000a81548160ff02191690831515021790555060006014556040518060400160405280603260ff168152602001603260ff168152506127269060026200005492919062000938565b50604051806040016040528073e2bfd7da9c0962814dd44c9ad65ce6db058b7a6f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001739114701ba7c9a37c849cce71fe98723d510e5da673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250612727906002620000fd9291906200098f565b503480156200010b57600080fd5b506127278054806020026020016040519081016040528092919081815260200182805480156200019157602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001906001019080831162000146575b5050505050612726805480602002602001604051908101604052809291908181526020018280548015620001e557602002820191906000526020600020905b815481526020019060010190808311620001d0575b50505050506040518060400160405280601281526020017f546f786963204c616b65204d6f6e7374657200000000000000000000000000008152506040518060400160405280600381526020017f544f58000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200026e92919062000a1e565b5080600190805190602001906200028792919062000a1e565b505050620002aa6200029e6200042760201b60201c565b6200042f60201b60201c565b6000600b60146101000a81548160ff02191690831515021790555080518251146200030c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003039062000c4b565b60405180910390fd5b600082511162000353576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200034a9062000c8f565b60405180910390fd5b60005b8251811015620003c257620003ac8382815181106200037a576200037962000e61565b5b602002602001015183838151811062000398576200039762000e61565b5b6020026020010151620004f560201b60201c565b8080620003b99062000db5565b91505062000356565b5050506001601181905550620003f76040518060600160405280602a815260200162006ecd602a91396200072f60201b60201c565b6200040f66f5232269808000620007db60201b60201c565b6200042160146200087560201b60201c565b62000ff8565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000568576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200055f9062000c07565b60405180910390fd5b60008111620005ae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005a59062000cb1565b60405180910390fd5b6000600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541462000633576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200062a9062000c6d565b60405180910390fd5b6010829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600c54620006ea919062000ce4565b600c819055507f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac82826040516200072392919062000bda565b60405180910390a15050565b6200073f6200042760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007656200090e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620007be576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007b59062000c29565b60405180910390fd5b8061272c9080519060200190620007d792919062000a1e565b5050565b620007eb6200042760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008116200090e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200086a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008619062000c29565b60405180910390fd5b806127258190555050565b620008856200042760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008ab6200090e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000904576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008fb9062000c29565b60405180910390fd5b8060138190555050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280548282559060005260206000209081019282156200097c579160200282015b828111156200097b578251829060ff1690559160200191906001019062000959565b5b5090506200098b919062000aaf565b5090565b82805482825590600052602060002090810192821562000a0b579160200282015b8281111562000a0a5782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190620009b0565b5b50905062000a1a919062000aaf565b5090565b82805462000a2c9062000d7f565b90600052602060002090601f01602090048101928262000a50576000855562000a9c565b82601f1062000a6b57805160ff191683800117855562000a9c565b8280016001018555821562000a9c579182015b8281111562000a9b57825182559160200191906001019062000a7e565b5b50905062000aab919062000aaf565b5090565b5b8082111562000aca57600081600090555060010162000ab0565b5090565b62000ad98162000d41565b82525050565b600062000aee602c8362000cd3565b915062000afb8262000e90565b604082019050919050565b600062000b1560208362000cd3565b915062000b228262000edf565b602082019050919050565b600062000b3c60328362000cd3565b915062000b498262000f08565b604082019050919050565b600062000b63602b8362000cd3565b915062000b708262000f57565b604082019050919050565b600062000b8a601a8362000cd3565b915062000b978262000fa6565b602082019050919050565b600062000bb1601d8362000cd3565b915062000bbe8262000fcf565b602082019050919050565b62000bd48162000d75565b82525050565b600060408201905062000bf1600083018562000ace565b62000c00602083018462000bc9565b9392505050565b6000602082019050818103600083015262000c228162000adf565b9050919050565b6000602082019050818103600083015262000c448162000b06565b9050919050565b6000602082019050818103600083015262000c668162000b2d565b9050919050565b6000602082019050818103600083015262000c888162000b54565b9050919050565b6000602082019050818103600083015262000caa8162000b7b565b9050919050565b6000602082019050818103600083015262000ccc8162000ba2565b9050919050565b600082825260208201905092915050565b600062000cf18262000d75565b915062000cfe8362000d75565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000d365762000d3562000e03565b5b828201905092915050565b600062000d4e8262000d55565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000600282049050600182168062000d9857607f821691505b6020821081141562000daf5762000dae62000e32565b5b50919050565b600062000dc28262000d75565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000df85762000df762000e03565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f5061796d656e7453706c69747465723a206163636f756e74206973207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5061796d656e7453706c69747465723a2070617965657320616e64207368617260008201527f6573206c656e677468206d69736d617463680000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960008201527f2068617320736861726573000000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206e6f20706179656573000000000000600082015250565b7f5061796d656e7453706c69747465723a20736861726573206172652030000000600082015250565b615ec580620010086000396000f3fe60806040526004361061026b5760003560e01c80635c975abb11610144578063a22cb465116100b6578063c884ef831161007a578063c884ef8314610962578063ce7c2ac21461099f578063e222c7f9146109dc578063e33b7de3146109f3578063e985e9c514610a1e578063f2fde38b14610a5b576102b2565b8063a22cb46514610859578063b5e7be9314610882578063b88d4fde146108bf578063bae0c6bc146108e8578063c87b56dd14610925576102b2565b8063715018a611610108578063715018a6146107565780638b83209b1461076d5780638da5cb5b146107aa57806395d89b41146107d557806397304ced146108005780639852595c1461081c576102b2565b80635c975abb1461066c5780636352211e146106975780636a61e5fc146106d45780636d9f8ef1146106fd57806370a0823114610719576102b2565b806330571c58116101dd57806342842e0e116101a157806342842e0e146105705780634b94f50e146105995780634e71d92d146105c45780634f6ccce7146105db57806355468ba41461061857806355f804b314610643576102b2565b806330571c58146104b157806333bc1c5c146104da57806336566f0614610505578063375a069a1461051c5780633a98ef3914610545576102b2565b8063095ea7b31161022f578063095ea7b3146103a357806318160ddd146103cc57806319165587146103f757806322a7cf5f1461042057806323b872dd1461044b5780632f745c5914610474576102b2565b806301433e6a146102b757806301ffc9a7146102d3578063031bd4c41461031057806306fdde031461033b578063081812fc14610366576102b2565b366102b2577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770610299610a84565b346040516102a8929190614a7e565b60405180910390a1005b600080fd5b6102d160048036038101906102cc9190614332565b610a8c565b005b3480156102df57600080fd5b506102fa60048036038101906102f59190614262565b610d21565b6040516103079190614aa7565b60405180910390f35b34801561031c57600080fd5b50610325610d33565b6040516103329190614f44565b60405180910390f35b34801561034757600080fd5b50610350610d39565b60405161035d9190614ac2565b60405180910390f35b34801561037257600080fd5b5061038d60048036038101906103889190614305565b610dcb565b60405161039a91906149ee565b60405180910390f35b3480156103af57600080fd5b506103ca60048036038101906103c59190614222565b610e50565b005b3480156103d857600080fd5b506103e1610f68565b6040516103ee9190614f44565b60405180910390f35b34801561040357600080fd5b5061041e6004803603810190610419919061409f565b610f75565b005b34801561042c57600080fd5b506104356111dd565b6040516104429190614f44565b60405180910390f35b34801561045757600080fd5b50610472600480360381019061046d919061410c565b611263565b005b34801561048057600080fd5b5061049b60048036038101906104969190614222565b6112c3565b6040516104a89190614f44565b60405180910390f35b3480156104bd57600080fd5b506104d860048036038101906104d39190614305565b611368565b005b3480156104e657600080fd5b506104ef6113ee565b6040516104fc9190614aa7565b60405180910390f35b34801561051157600080fd5b5061051a611401565b005b34801561052857600080fd5b50610543600480360381019061053e9190614305565b6114a2565b005b34801561055157600080fd5b5061055a61159f565b6040516105679190614f44565b60405180910390f35b34801561057c57600080fd5b506105976004803603810190610592919061410c565b6115a9565b005b3480156105a557600080fd5b506105ae6115c9565b6040516105bb9190614f44565b60405180910390f35b3480156105d057600080fd5b506105d96115d4565b005b3480156105e757600080fd5b5061060260048036038101906105fd9190614305565b6117fc565b60405161060f9190614f44565b60405180910390f35b34801561062457600080fd5b5061062d61186d565b60405161063a9190614f44565b60405180910390f35b34801561064f57600080fd5b5061066a600480360381019061066591906142bc565b611874565b005b34801561067857600080fd5b5061068161190b565b60405161068e9190614aa7565b60405180910390f35b3480156106a357600080fd5b506106be60048036038101906106b99190614305565b611922565b6040516106cb91906149ee565b60405180910390f35b3480156106e057600080fd5b506106fb60048036038101906106f69190614305565b6119d4565b005b61071760048036038101906107129190614332565b611a5b565b005b34801561072557600080fd5b50610740600480360381019061073b9190614072565b611d94565b60405161074d9190614f44565b60405180910390f35b34801561076257600080fd5b5061076b611e4c565b005b34801561077957600080fd5b50610794600480360381019061078f9190614305565b611ed4565b6040516107a191906149ee565b60405180910390f35b3480156107b657600080fd5b506107bf611f1c565b6040516107cc91906149ee565b60405180910390f35b3480156107e157600080fd5b506107ea611f46565b6040516107f79190614ac2565b60405180910390f35b61081a60048036038101906108159190614305565b611fd8565b005b34801561082857600080fd5b50610843600480360381019061083e9190614072565b6121fc565b6040516108509190614f44565b60405180910390f35b34801561086557600080fd5b50610880600480360381019061087b91906141e2565b612245565b005b34801561088e57600080fd5b506108a960048036038101906108a49190614072565b6123c6565b6040516108b69190614f5f565b60405180910390f35b3480156108cb57600080fd5b506108e660048036038101906108e1919061415f565b6123e7565b005b3480156108f457600080fd5b5061090f600480360381019061090a9190614072565b612449565b60405161091c9190614f5f565b60405180910390f35b34801561093157600080fd5b5061094c60048036038101906109479190614305565b61246a565b6040516109599190614ac2565b60405180910390f35b34801561096e57600080fd5b5061098960048036038101906109849190614072565b61247c565b6040516109969190614f5f565b60405180910390f35b3480156109ab57600080fd5b506109c660048036038101906109c19190614072565b61249d565b6040516109d39190614f44565b60405180910390f35b3480156109e857600080fd5b506109f16124e6565b005b3480156109ff57600080fd5b50610a0861258e565b604051610a159190614f44565b60405180910390f35b348015610a2a57600080fd5b50610a456004803603810190610a4091906140cc565b612598565b604051610a529190614aa7565b60405180910390f35b348015610a6757600080fd5b50610a826004803603810190610a7d9190614072565b61262c565b005b600033905090565b34610aaa8260ff16610a9c6115c9565b61272490919063ffffffff16565b14610aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae190614c24565b60405180910390fd5b61272b54612710610afb9190615167565b610b188260ff16610b0a610f68565b61273a90919063ffffffff16565b1115610b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5090614da4565b60405180910390fd5b600561272860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661272a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1683610c0291906150a5565b610c0c91906150a5565b60ff161115610c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4790614b44565b60405180910390fd5b8061272a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610ca991906150a5565b61272a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055508060ff1661272b6000828254610d17919061504f565b9250508190555050565b6000610d2c82612750565b9050919050565b61271081565b606060008054610d48906152a6565b80601f0160208091040260200160405190810160405280929190818152602001828054610d74906152a6565b8015610dc15780601f10610d9657610100808354040283529160200191610dc1565b820191906000526020600020905b815481529060010190602001808311610da457829003601f168201915b5050505050905090565b6000610dd6826127ca565b610e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0c90614e04565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e5b82611922565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ecc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec390614e84565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610eeb610a84565b73ffffffffffffffffffffffffffffffffffffffff161480610f1a5750610f1981610f14610a84565b612598565b5b610f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5090614d44565b60405180910390fd5b610f638383612836565b505050565b6000600980549050905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fee90614c04565b60405180910390fd5b6000600d5447611007919061504f565b90506000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c54600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484611099919061510d565b6110a391906150dc565b6110ad9190615167565b905060008114156110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ea90614ce4565b60405180910390fd5b80600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461113e919061504f565b600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600d5461118f919061504f565b600d8190555061119f83826128ef565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b05683826040516111d0929190614a09565b60405180910390a1505050565b60006111e7610a84565b73ffffffffffffffffffffffffffffffffffffffff16611205611f1c565b73ffffffffffffffffffffffffffffffffffffffff161461125b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125290614e24565b60405180910390fd5b601354905090565b61127461126e610a84565b826129e3565b6112b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112aa90614ec4565b60405180910390fd5b6112be838383612ac1565b505050565b60006112ce83611d94565b821061130f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130690614b64565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b611370610a84565b73ffffffffffffffffffffffffffffffffffffffff1661138e611f1c565b73ffffffffffffffffffffffffffffffffffffffff16146113e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113db90614e24565b60405180910390fd5b8060138190555050565b601260009054906101000a900460ff1681565b611409610a84565b73ffffffffffffffffffffffffffffffffffffffff16611427611f1c565b73ffffffffffffffffffffffffffffffffffffffff161461147d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147490614e24565b60405180910390fd5b61148561190b565b1561149757611492612d1d565b6114a0565b61149f612dbf565b5b565b600260115414156114e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114df90614f04565b60405180910390fd5b60026011819055506114f8610a84565b73ffffffffffffffffffffffffffffffffffffffff16611516611f1c565b73ffffffffffffffffffffffffffffffffffffffff161461156c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156390614e24565b60405180910390fd5b60005b818110156115935761158033612e62565b808061158b90615309565b91505061156f565b50600160118190555050565b6000600c54905090565b6115c4838383604051806020016040528060008152506123e7565b505050565b600061272554905090565b600061272a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1611611667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165e90614f24565b60405180910390fd5b60005b61272a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff168110156116de576116cb33612e62565b80806116d690615309565b91505061166a565b5061272a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661272860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff1661178891906150a5565b92506101000a81548160ff021916908360ff160217905550600061272a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff160217905550565b6000611806610f68565b8210611847576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183e90614ee4565b60405180910390fd5b6009828154811061185b5761185a61546d565b5b90600052602060002001549050919050565b61272b5481565b61187c610a84565b73ffffffffffffffffffffffffffffffffffffffff1661189a611f1c565b73ffffffffffffffffffffffffffffffffffffffff16146118f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e790614e24565b60405180910390fd5b8061272c9080519060200190611907929190613e5c565b5050565b6000600b60149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c290614d84565b60405180910390fd5b80915050919050565b6119dc610a84565b73ffffffffffffffffffffffffffffffffffffffff166119fa611f1c565b73ffffffffffffffffffffffffffffffffffffffff1614611a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4790614e24565b60405180910390fd5b806127258190555050565b60026011541415611aa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9890614f04565b60405180910390fd5b6002601181905550611ab161190b565b15611af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae890614d24565b60405180910390fd5b601260009054906101000a900460ff1615611b41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3890614ea4565b60405180910390fd5b61272b54612710611b529190615167565b611b6f8260ff16611b61610f68565b61273a90919063ffffffff16565b1115611bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba790614da4565b60405180910390fd5b34611bce8260ff16611bc06115c9565b61272490919063ffffffff16565b14611c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0590614c24565b60405180910390fd5b60058161272960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611c6991906150a5565b60ff161115611cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca490614ba4565b60405180910390fd5b60005b8160ff16811015611cd757611cc433612e62565b8080611ccf90615309565b915050611cb0565b508061272960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611d3191906150a5565b61272960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff160217905550600160118190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfc90614d64565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611e54610a84565b73ffffffffffffffffffffffffffffffffffffffff16611e72611f1c565b73ffffffffffffffffffffffffffffffffffffffff1614611ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebf90614e24565b60405180910390fd5b611ed26000612e7c565b565b600060108281548110611eea57611ee961546d565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611f55906152a6565b80601f0160208091040260200160405190810160405280929190818152602001828054611f81906152a6565b8015611fce5780601f10611fa357610100808354040283529160200191611fce565b820191906000526020600020905b815481529060010190602001808311611fb157829003601f168201915b5050505050905090565b6002601154141561201e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201590614f04565b60405180910390fd5b600260118190555061202e61190b565b1561206e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206590614d24565b60405180910390fd5b61272b5461271061207f9190615167565b6120998261208b610f68565b61273a90919063ffffffff16565b11156120da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d190614b24565b60405180910390fd5b601260009054906101000a900460ff16612129576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212090614d04565b60405180910390fd5b60135481111561216e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216590614ae4565b60405180910390fd5b346121898261217b6115c9565b61272490919063ffffffff16565b146121c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c090614c24565b60405180910390fd5b60005b818110156121f0576121dd33612e62565b80806121e890615309565b9150506121cc565b50600160118190555050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61224d610a84565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b290614c64565b60405180910390fd5b80600560006122c8610a84565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612375610a84565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123ba9190614aa7565b60405180910390a35050565b61272a6020528060005260406000206000915054906101000a900460ff1681565b6123f86123f2610a84565b836129e3565b612437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242e90614ec4565b60405180910390fd5b61244384848484612f42565b50505050565b6127296020528060005260406000206000915054906101000a900460ff1681565b606061247582612f9e565b9050919050565b6127286020528060005260406000206000915054906101000a900460ff1681565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6124ee610a84565b73ffffffffffffffffffffffffffffffffffffffff1661250c611f1c565b73ffffffffffffffffffffffffffffffffffffffff1614612562576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255990614e24565b60405180910390fd5b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550565b6000600d54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612634610a84565b73ffffffffffffffffffffffffffffffffffffffff16612652611f1c565b73ffffffffffffffffffffffffffffffffffffffff16146126a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269f90614e24565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270f90614bc4565b60405180910390fd5b61272181612e7c565b50565b60008183612732919061510d565b905092915050565b60008183612748919061504f565b905092915050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806127c357506127c2826130f0565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166128a983611922565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015612932576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292990614ca4565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516129589061498b565b60006040518083038185875af1925050503d8060008114612995576040519150601f19603f3d011682016040523d82523d6000602084013e61299a565b606091505b50509050806129de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d590614c84565b60405180910390fd5b505050565b60006129ee826127ca565b612a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2490614cc4565b60405180910390fd5b6000612a3883611922565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612aa757508373ffffffffffffffffffffffffffffffffffffffff16612a8f84610dcb565b73ffffffffffffffffffffffffffffffffffffffff16145b80612ab85750612ab78185612598565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612ae182611922565b73ffffffffffffffffffffffffffffffffffffffff1614612b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2e90614e44565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9e90614c44565b60405180910390fd5b612bb28383836131d2565b612bbd600082612836565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c0d9190615167565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c64919061504f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612d2561190b565b612d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5b90614b04565b60405180910390fd5b6000600b60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612da8610a84565b604051612db591906149ee565b60405180910390a1565b612dc761190b565b15612e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dfe90614d24565b60405180910390fd5b6001600b60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612e4b610a84565b604051612e5891906149ee565b60405180910390a1565b6000612e6c6131e2565b9050612e788282613347565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612f4d848484612ac1565b612f5984848484613365565b612f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8f90614b84565b60405180910390fd5b50505050565b6060612fa9826127ca565b612fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fdf90614de4565b60405180910390fd5b6000600660008481526020019081526020016000208054613008906152a6565b80601f0160208091040260200160405190810160405280929190818152602001828054613034906152a6565b80156130815780601f1061305657610100808354040283529160200191613081565b820191906000526020600020905b81548152906001019060200180831161306457829003601f168201915b5050505050905060006130926134fc565b90506000815114156130a85781925050506130eb565b6000825111156130dd5780826040516020016130c5929190614967565b604051602081830303815290604052925050506130eb565b6130e68461358f565b925050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806131bb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806131cb57506131ca82613636565b5b9050919050565b6131dd8383836136a0565b505050565b6000806131ed610f68565b6127106131fa9190615167565b905060008160145433444260405160200161321894939291906149a0565b6040516020818303038152906040528051906020012060001c61323b9190615380565b905060008060158361271081106132555761325461546d565b5b01541461327a5760158261271081106132715761327061546d565b5b0154905061327e565b8190505b6000601560018561328f9190615167565b61271081106132a1576132a061546d565b5b015414156132d5576001836132b69190615167565b60158361271081106132cb576132ca61546d565b5b0181905550613313565b60156001846132e49190615167565b61271081106132f6576132f561546d565b5b0154601583612710811061330d5761330c61546d565b5b01819055505b6014600081548092919061332690615309565b919050555061333f60018261273a90919063ffffffff16565b935050505090565b6133618282604051806020016040528060008152506137b4565b5050565b60006133868473ffffffffffffffffffffffffffffffffffffffff1661380f565b156134ef578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133af610a84565b8786866040518563ffffffff1660e01b81526004016133d19493929190614a32565b602060405180830381600087803b1580156133eb57600080fd5b505af192505050801561341c57506040513d601f19601f82011682018060405250810190613419919061428f565b60015b61349f573d806000811461344c576040519150601f19603f3d011682016040523d82523d6000602084013e613451565b606091505b50600081511415613497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161348e90614b84565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506134f4565b600190505b949350505050565b606061272c805461350c906152a6565b80601f0160208091040260200160405190810160405280929190818152602001828054613538906152a6565b80156135855780601f1061355a57610100808354040283529160200191613585565b820191906000526020600020905b81548152906001019060200180831161356857829003601f168201915b5050505050905090565b606061359a826127ca565b6135d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135d090614e64565b60405180910390fd5b60006135e36134fc565b90506000815111613603576040518060200160405280600081525061362e565b8061360d84613822565b60405160200161361e929190614967565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6136ab838383613983565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156136ee576136e981613988565b61372d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461372c5761372b83826139d1565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156137705761376b81613b3e565b6137af565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146137ae576137ad8282613c0f565b5b5b505050565b6137be8383613c8e565b6137cb6000848484613365565b61380a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161380190614b84565b60405180910390fd5b505050565b600080823b905060008111915050919050565b6060600082141561386a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061397e565b600082905060005b6000821461389c57808061388590615309565b915050600a8261389591906150dc565b9150613872565b60008167ffffffffffffffff8111156138b8576138b761549c565b5b6040519080825280601f01601f1916602001820160405280156138ea5781602001600182028036833780820191505090505b5090505b60008514613977576001826139039190615167565b9150600a856139129190615380565b603061391e919061504f565b60f81b8183815181106139345761393361546d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561397091906150dc565b94506138ee565b8093505050505b919050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016139de84611d94565b6139e89190615167565b9050600060086000848152602001908152602001600020549050818114613acd576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050613b529190615167565b90506000600a6000848152602001908152602001600020549050600060098381548110613b8257613b8161546d565b5b906000526020600020015490508060098381548110613ba457613ba361546d565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480613bf357613bf261543e565b5b6001900381819060005260206000200160009055905550505050565b6000613c1a83611d94565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cf590614dc4565b60405180910390fd5b613d07816127ca565b15613d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d3e90614be4565b60405180910390fd5b613d53600083836131d2565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613da3919061504f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613e68906152a6565b90600052602060002090601f016020900481019282613e8a5760008555613ed1565b82601f10613ea357805160ff1916838001178555613ed1565b82800160010185558215613ed1579182015b82811115613ed0578251825591602001919060010190613eb5565b5b509050613ede9190613ee2565b5090565b5b80821115613efb576000816000905550600101613ee3565b5090565b6000613f12613f0d84614f9f565b614f7a565b905082815260208101848484011115613f2e57613f2d6154d0565b5b613f39848285615264565b509392505050565b6000613f54613f4f84614fd0565b614f7a565b905082815260208101848484011115613f7057613f6f6154d0565b5b613f7b848285615264565b509392505050565b600081359050613f9281615e05565b92915050565b600081359050613fa781615e1c565b92915050565b600081359050613fbc81615e33565b92915050565b600081359050613fd181615e4a565b92915050565b600081519050613fe681615e4a565b92915050565b600082601f830112614001576140006154cb565b5b8135614011848260208601613eff565b91505092915050565b600082601f83011261402f5761402e6154cb565b5b813561403f848260208601613f41565b91505092915050565b60008135905061405781615e61565b92915050565b60008135905061406c81615e78565b92915050565b600060208284031215614088576140876154da565b5b600061409684828501613f83565b91505092915050565b6000602082840312156140b5576140b46154da565b5b60006140c384828501613f98565b91505092915050565b600080604083850312156140e3576140e26154da565b5b60006140f185828601613f83565b925050602061410285828601613f83565b9150509250929050565b600080600060608486031215614125576141246154da565b5b600061413386828701613f83565b935050602061414486828701613f83565b925050604061415586828701614048565b9150509250925092565b60008060008060808587031215614179576141786154da565b5b600061418787828801613f83565b945050602061419887828801613f83565b93505060406141a987828801614048565b925050606085013567ffffffffffffffff8111156141ca576141c96154d5565b5b6141d687828801613fec565b91505092959194509250565b600080604083850312156141f9576141f86154da565b5b600061420785828601613f83565b925050602061421885828601613fad565b9150509250929050565b60008060408385031215614239576142386154da565b5b600061424785828601613f83565b925050602061425885828601614048565b9150509250929050565b600060208284031215614278576142776154da565b5b600061428684828501613fc2565b91505092915050565b6000602082840312156142a5576142a46154da565b5b60006142b384828501613fd7565b91505092915050565b6000602082840312156142d2576142d16154da565b5b600082013567ffffffffffffffff8111156142f0576142ef6154d5565b5b6142fc8482850161401a565b91505092915050565b60006020828403121561431b5761431a6154da565b5b600061432984828501614048565b91505092915050565b600060208284031215614348576143476154da565b5b60006143568482850161405d565b91505092915050565b6143688161522e565b82525050565b6143778161519b565b82525050565b61438e6143898261519b565b615352565b82525050565b61439d816151bf565b82525050565b60006143ae82615001565b6143b88185615017565b93506143c8818560208601615273565b6143d1816154df565b840191505092915050565b60006143e78261500c565b6143f18185615033565b9350614401818560208601615273565b61440a816154df565b840191505092915050565b60006144208261500c565b61442a8185615044565b935061443a818560208601615273565b80840191505092915050565b6000614453601783615033565b915061445e826154fd565b602082019050919050565b6000614476601483615033565b915061448182615526565b602082019050919050565b6000614499603083615033565b91506144a48261554f565b604082019050919050565b60006144bc602d83615033565b91506144c78261559e565b604082019050919050565b60006144df602b83615033565b91506144ea826155ed565b604082019050919050565b6000614502603283615033565b915061450d8261563c565b604082019050919050565b6000614525603183615033565b91506145308261568b565b604082019050919050565b6000614548602683615033565b9150614553826156da565b604082019050919050565b600061456b601c83615033565b915061457682615729565b602082019050919050565b600061458e602683615033565b915061459982615752565b604082019050919050565b60006145b1601f83615033565b91506145bc826157a1565b602082019050919050565b60006145d4602483615033565b91506145df826157ca565b604082019050919050565b60006145f7601983615033565b915061460282615819565b602082019050919050565b600061461a603a83615033565b915061462582615842565b604082019050919050565b600061463d601d83615033565b915061464882615891565b602082019050919050565b6000614660602c83615033565b915061466b826158ba565b604082019050919050565b6000614683602b83615033565b915061468e82615909565b604082019050919050565b60006146a6601a83615033565b91506146b182615958565b602082019050919050565b60006146c9601083615033565b91506146d482615981565b602082019050919050565b60006146ec603883615033565b91506146f7826159aa565b604082019050919050565b600061470f602a83615033565b915061471a826159f9565b604082019050919050565b6000614732602983615033565b915061473d82615a48565b604082019050919050565b6000614755602a83615033565b915061476082615a97565b604082019050919050565b6000614778602083615033565b915061478382615ae6565b602082019050919050565b600061479b603183615033565b91506147a682615b0f565b604082019050919050565b60006147be602c83615033565b91506147c982615b5e565b604082019050919050565b60006147e1602083615033565b91506147ec82615bad565b602082019050919050565b6000614804602983615033565b915061480f82615bd6565b604082019050919050565b6000614827602f83615033565b915061483282615c25565b604082019050919050565b600061484a602183615033565b915061485582615c74565b604082019050919050565b600061486d601a83615033565b915061487882615cc3565b602082019050919050565b6000614890600083615028565b915061489b82615cec565b600082019050919050565b60006148b3603183615033565b91506148be82615cef565b604082019050919050565b60006148d6602c83615033565b91506148e182615d3e565b604082019050919050565b60006148f9601f83615033565b915061490482615d8d565b602082019050919050565b600061491c602283615033565b915061492782615db6565b604082019050919050565b61493b81615217565b82525050565b61495261494d82615217565b615376565b82525050565b61496181615221565b82525050565b60006149738285614415565b915061497f8284614415565b91508190509392505050565b600061499682614883565b9150819050919050565b60006149ac8287614941565b6020820191506149bc828661437d565b6014820191506149cc8285614941565b6020820191506149dc8284614941565b60208201915081905095945050505050565b6000602082019050614a03600083018461436e565b92915050565b6000604082019050614a1e600083018561435f565b614a2b6020830184614932565b9392505050565b6000608082019050614a47600083018761436e565b614a54602083018661436e565b614a616040830185614932565b8181036060830152614a7381846143a3565b905095945050505050565b6000604082019050614a93600083018561436e565b614aa06020830184614932565b9392505050565b6000602082019050614abc6000830184614394565b92915050565b60006020820190508181036000830152614adc81846143dc565b905092915050565b60006020820190508181036000830152614afd81614446565b9050919050565b60006020820190508181036000830152614b1d81614469565b9050919050565b60006020820190508181036000830152614b3d8161448c565b9050919050565b60006020820190508181036000830152614b5d816144af565b9050919050565b60006020820190508181036000830152614b7d816144d2565b9050919050565b60006020820190508181036000830152614b9d816144f5565b9050919050565b60006020820190508181036000830152614bbd81614518565b9050919050565b60006020820190508181036000830152614bdd8161453b565b9050919050565b60006020820190508181036000830152614bfd8161455e565b9050919050565b60006020820190508181036000830152614c1d81614581565b9050919050565b60006020820190508181036000830152614c3d816145a4565b9050919050565b60006020820190508181036000830152614c5d816145c7565b9050919050565b60006020820190508181036000830152614c7d816145ea565b9050919050565b60006020820190508181036000830152614c9d8161460d565b9050919050565b60006020820190508181036000830152614cbd81614630565b9050919050565b60006020820190508181036000830152614cdd81614653565b9050919050565b60006020820190508181036000830152614cfd81614676565b9050919050565b60006020820190508181036000830152614d1d81614699565b9050919050565b60006020820190508181036000830152614d3d816146bc565b9050919050565b60006020820190508181036000830152614d5d816146df565b9050919050565b60006020820190508181036000830152614d7d81614702565b9050919050565b60006020820190508181036000830152614d9d81614725565b9050919050565b60006020820190508181036000830152614dbd81614748565b9050919050565b60006020820190508181036000830152614ddd8161476b565b9050919050565b60006020820190508181036000830152614dfd8161478e565b9050919050565b60006020820190508181036000830152614e1d816147b1565b9050919050565b60006020820190508181036000830152614e3d816147d4565b9050919050565b60006020820190508181036000830152614e5d816147f7565b9050919050565b60006020820190508181036000830152614e7d8161481a565b9050919050565b60006020820190508181036000830152614e9d8161483d565b9050919050565b60006020820190508181036000830152614ebd81614860565b9050919050565b60006020820190508181036000830152614edd816148a6565b9050919050565b60006020820190508181036000830152614efd816148c9565b9050919050565b60006020820190508181036000830152614f1d816148ec565b9050919050565b60006020820190508181036000830152614f3d8161490f565b9050919050565b6000602082019050614f596000830184614932565b92915050565b6000602082019050614f746000830184614958565b92915050565b6000614f84614f95565b9050614f9082826152d8565b919050565b6000604051905090565b600067ffffffffffffffff821115614fba57614fb961549c565b5b614fc3826154df565b9050602081019050919050565b600067ffffffffffffffff821115614feb57614fea61549c565b5b614ff4826154df565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061505a82615217565b915061506583615217565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561509a576150996153b1565b5b828201905092915050565b60006150b082615221565b91506150bb83615221565b92508260ff038211156150d1576150d06153b1565b5b828201905092915050565b60006150e782615217565b91506150f283615217565b925082615102576151016153e0565b5b828204905092915050565b600061511882615217565b915061512383615217565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561515c5761515b6153b1565b5b828202905092915050565b600061517282615217565b915061517d83615217565b9250828210156151905761518f6153b1565b5b828203905092915050565b60006151a6826151f7565b9050919050565b60006151b8826151f7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600061523982615240565b9050919050565b600061524b82615252565b9050919050565b600061525d826151f7565b9050919050565b82818337600083830152505050565b60005b83811015615291578082015181840152602081019050615276565b838111156152a0576000848401525b50505050565b600060028204905060018216806152be57607f821691505b602082108114156152d2576152d161540f565b5b50919050565b6152e1826154df565b810181811067ffffffffffffffff82111715615300576152ff61549c565b5b80604052505050565b600061531482615217565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615347576153466153b1565b5b600182019050919050565b600061535d82615364565b9050919050565b600061536f826154f0565b9050919050565b6000819050919050565b600061538b82615217565b915061539683615217565b9250826153a6576153a56153e0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f546f6f206d616e7920746f6b656e73206174206f6e6365000000000000000000600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f507572636861736520776f756c642065786365656420617661696c61626c652060008201527f737570706c79206f6620746f6b656e7300000000000000000000000000000000602082015250565b7f4561636820616464726573732063616e206f6e6c79207075726368617365207560008201527f7020746f203520746f6b656e7300000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f596f752063616e2774206d696e74206d6f7265207468616e203520746f6b656e60008201527f7320647572696e67207072652d73616c65000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b7f596f75206e65656420746f207061792074686520657861637420707269636500600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206d75737420626520616374697665000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f5072652d73616c652068617320616c726561647920656e646564000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f596f7520646f206e6f74206861766520616e7920746f6b656e7320706c65646760008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b615e0e8161519b565b8114615e1957600080fd5b50565b615e25816151ad565b8114615e3057600080fd5b50565b615e3c816151bf565b8114615e4757600080fd5b50565b615e53816151cb565b8114615e5e57600080fd5b50565b615e6a81615217565b8114615e7557600080fd5b50565b615e8181615221565b8114615e8c57600080fd5b5056fea26469706673582212207d03269afb6387a3bd5ac0fe55e871b8eee0ba760cea7894abf62bcff30f099064736f6c6343000807003368747470733a2f2f6170692e746f7869636c616b656d6f6e737465722e636f6d2f6d657461646174612f

Deployed Bytecode

0x60806040526004361061026b5760003560e01c80635c975abb11610144578063a22cb465116100b6578063c884ef831161007a578063c884ef8314610962578063ce7c2ac21461099f578063e222c7f9146109dc578063e33b7de3146109f3578063e985e9c514610a1e578063f2fde38b14610a5b576102b2565b8063a22cb46514610859578063b5e7be9314610882578063b88d4fde146108bf578063bae0c6bc146108e8578063c87b56dd14610925576102b2565b8063715018a611610108578063715018a6146107565780638b83209b1461076d5780638da5cb5b146107aa57806395d89b41146107d557806397304ced146108005780639852595c1461081c576102b2565b80635c975abb1461066c5780636352211e146106975780636a61e5fc146106d45780636d9f8ef1146106fd57806370a0823114610719576102b2565b806330571c58116101dd57806342842e0e116101a157806342842e0e146105705780634b94f50e146105995780634e71d92d146105c45780634f6ccce7146105db57806355468ba41461061857806355f804b314610643576102b2565b806330571c58146104b157806333bc1c5c146104da57806336566f0614610505578063375a069a1461051c5780633a98ef3914610545576102b2565b8063095ea7b31161022f578063095ea7b3146103a357806318160ddd146103cc57806319165587146103f757806322a7cf5f1461042057806323b872dd1461044b5780632f745c5914610474576102b2565b806301433e6a146102b757806301ffc9a7146102d3578063031bd4c41461031057806306fdde031461033b578063081812fc14610366576102b2565b366102b2577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770610299610a84565b346040516102a8929190614a7e565b60405180910390a1005b600080fd5b6102d160048036038101906102cc9190614332565b610a8c565b005b3480156102df57600080fd5b506102fa60048036038101906102f59190614262565b610d21565b6040516103079190614aa7565b60405180910390f35b34801561031c57600080fd5b50610325610d33565b6040516103329190614f44565b60405180910390f35b34801561034757600080fd5b50610350610d39565b60405161035d9190614ac2565b60405180910390f35b34801561037257600080fd5b5061038d60048036038101906103889190614305565b610dcb565b60405161039a91906149ee565b60405180910390f35b3480156103af57600080fd5b506103ca60048036038101906103c59190614222565b610e50565b005b3480156103d857600080fd5b506103e1610f68565b6040516103ee9190614f44565b60405180910390f35b34801561040357600080fd5b5061041e6004803603810190610419919061409f565b610f75565b005b34801561042c57600080fd5b506104356111dd565b6040516104429190614f44565b60405180910390f35b34801561045757600080fd5b50610472600480360381019061046d919061410c565b611263565b005b34801561048057600080fd5b5061049b60048036038101906104969190614222565b6112c3565b6040516104a89190614f44565b60405180910390f35b3480156104bd57600080fd5b506104d860048036038101906104d39190614305565b611368565b005b3480156104e657600080fd5b506104ef6113ee565b6040516104fc9190614aa7565b60405180910390f35b34801561051157600080fd5b5061051a611401565b005b34801561052857600080fd5b50610543600480360381019061053e9190614305565b6114a2565b005b34801561055157600080fd5b5061055a61159f565b6040516105679190614f44565b60405180910390f35b34801561057c57600080fd5b506105976004803603810190610592919061410c565b6115a9565b005b3480156105a557600080fd5b506105ae6115c9565b6040516105bb9190614f44565b60405180910390f35b3480156105d057600080fd5b506105d96115d4565b005b3480156105e757600080fd5b5061060260048036038101906105fd9190614305565b6117fc565b60405161060f9190614f44565b60405180910390f35b34801561062457600080fd5b5061062d61186d565b60405161063a9190614f44565b60405180910390f35b34801561064f57600080fd5b5061066a600480360381019061066591906142bc565b611874565b005b34801561067857600080fd5b5061068161190b565b60405161068e9190614aa7565b60405180910390f35b3480156106a357600080fd5b506106be60048036038101906106b99190614305565b611922565b6040516106cb91906149ee565b60405180910390f35b3480156106e057600080fd5b506106fb60048036038101906106f69190614305565b6119d4565b005b61071760048036038101906107129190614332565b611a5b565b005b34801561072557600080fd5b50610740600480360381019061073b9190614072565b611d94565b60405161074d9190614f44565b60405180910390f35b34801561076257600080fd5b5061076b611e4c565b005b34801561077957600080fd5b50610794600480360381019061078f9190614305565b611ed4565b6040516107a191906149ee565b60405180910390f35b3480156107b657600080fd5b506107bf611f1c565b6040516107cc91906149ee565b60405180910390f35b3480156107e157600080fd5b506107ea611f46565b6040516107f79190614ac2565b60405180910390f35b61081a60048036038101906108159190614305565b611fd8565b005b34801561082857600080fd5b50610843600480360381019061083e9190614072565b6121fc565b6040516108509190614f44565b60405180910390f35b34801561086557600080fd5b50610880600480360381019061087b91906141e2565b612245565b005b34801561088e57600080fd5b506108a960048036038101906108a49190614072565b6123c6565b6040516108b69190614f5f565b60405180910390f35b3480156108cb57600080fd5b506108e660048036038101906108e1919061415f565b6123e7565b005b3480156108f457600080fd5b5061090f600480360381019061090a9190614072565b612449565b60405161091c9190614f5f565b60405180910390f35b34801561093157600080fd5b5061094c60048036038101906109479190614305565b61246a565b6040516109599190614ac2565b60405180910390f35b34801561096e57600080fd5b5061098960048036038101906109849190614072565b61247c565b6040516109969190614f5f565b60405180910390f35b3480156109ab57600080fd5b506109c660048036038101906109c19190614072565b61249d565b6040516109d39190614f44565b60405180910390f35b3480156109e857600080fd5b506109f16124e6565b005b3480156109ff57600080fd5b50610a0861258e565b604051610a159190614f44565b60405180910390f35b348015610a2a57600080fd5b50610a456004803603810190610a4091906140cc565b612598565b604051610a529190614aa7565b60405180910390f35b348015610a6757600080fd5b50610a826004803603810190610a7d9190614072565b61262c565b005b600033905090565b34610aaa8260ff16610a9c6115c9565b61272490919063ffffffff16565b14610aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae190614c24565b60405180910390fd5b61272b54612710610afb9190615167565b610b188260ff16610b0a610f68565b61273a90919063ffffffff16565b1115610b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5090614da4565b60405180910390fd5b600561272860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661272a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1683610c0291906150a5565b610c0c91906150a5565b60ff161115610c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4790614b44565b60405180910390fd5b8061272a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610ca991906150a5565b61272a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055508060ff1661272b6000828254610d17919061504f565b9250508190555050565b6000610d2c82612750565b9050919050565b61271081565b606060008054610d48906152a6565b80601f0160208091040260200160405190810160405280929190818152602001828054610d74906152a6565b8015610dc15780601f10610d9657610100808354040283529160200191610dc1565b820191906000526020600020905b815481529060010190602001808311610da457829003601f168201915b5050505050905090565b6000610dd6826127ca565b610e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0c90614e04565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e5b82611922565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ecc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec390614e84565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610eeb610a84565b73ffffffffffffffffffffffffffffffffffffffff161480610f1a5750610f1981610f14610a84565b612598565b5b610f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5090614d44565b60405180910390fd5b610f638383612836565b505050565b6000600980549050905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fee90614c04565b60405180910390fd5b6000600d5447611007919061504f565b90506000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c54600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484611099919061510d565b6110a391906150dc565b6110ad9190615167565b905060008114156110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ea90614ce4565b60405180910390fd5b80600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461113e919061504f565b600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600d5461118f919061504f565b600d8190555061119f83826128ef565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b05683826040516111d0929190614a09565b60405180910390a1505050565b60006111e7610a84565b73ffffffffffffffffffffffffffffffffffffffff16611205611f1c565b73ffffffffffffffffffffffffffffffffffffffff161461125b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125290614e24565b60405180910390fd5b601354905090565b61127461126e610a84565b826129e3565b6112b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112aa90614ec4565b60405180910390fd5b6112be838383612ac1565b505050565b60006112ce83611d94565b821061130f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130690614b64565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b611370610a84565b73ffffffffffffffffffffffffffffffffffffffff1661138e611f1c565b73ffffffffffffffffffffffffffffffffffffffff16146113e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113db90614e24565b60405180910390fd5b8060138190555050565b601260009054906101000a900460ff1681565b611409610a84565b73ffffffffffffffffffffffffffffffffffffffff16611427611f1c565b73ffffffffffffffffffffffffffffffffffffffff161461147d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147490614e24565b60405180910390fd5b61148561190b565b1561149757611492612d1d565b6114a0565b61149f612dbf565b5b565b600260115414156114e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114df90614f04565b60405180910390fd5b60026011819055506114f8610a84565b73ffffffffffffffffffffffffffffffffffffffff16611516611f1c565b73ffffffffffffffffffffffffffffffffffffffff161461156c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156390614e24565b60405180910390fd5b60005b818110156115935761158033612e62565b808061158b90615309565b91505061156f565b50600160118190555050565b6000600c54905090565b6115c4838383604051806020016040528060008152506123e7565b505050565b600061272554905090565b600061272a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1611611667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165e90614f24565b60405180910390fd5b60005b61272a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff168110156116de576116cb33612e62565b80806116d690615309565b91505061166a565b5061272a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661272860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff1661178891906150a5565b92506101000a81548160ff021916908360ff160217905550600061272a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff160217905550565b6000611806610f68565b8210611847576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183e90614ee4565b60405180910390fd5b6009828154811061185b5761185a61546d565b5b90600052602060002001549050919050565b61272b5481565b61187c610a84565b73ffffffffffffffffffffffffffffffffffffffff1661189a611f1c565b73ffffffffffffffffffffffffffffffffffffffff16146118f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e790614e24565b60405180910390fd5b8061272c9080519060200190611907929190613e5c565b5050565b6000600b60149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c290614d84565b60405180910390fd5b80915050919050565b6119dc610a84565b73ffffffffffffffffffffffffffffffffffffffff166119fa611f1c565b73ffffffffffffffffffffffffffffffffffffffff1614611a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4790614e24565b60405180910390fd5b806127258190555050565b60026011541415611aa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9890614f04565b60405180910390fd5b6002601181905550611ab161190b565b15611af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae890614d24565b60405180910390fd5b601260009054906101000a900460ff1615611b41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3890614ea4565b60405180910390fd5b61272b54612710611b529190615167565b611b6f8260ff16611b61610f68565b61273a90919063ffffffff16565b1115611bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba790614da4565b60405180910390fd5b34611bce8260ff16611bc06115c9565b61272490919063ffffffff16565b14611c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0590614c24565b60405180910390fd5b60058161272960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611c6991906150a5565b60ff161115611cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca490614ba4565b60405180910390fd5b60005b8160ff16811015611cd757611cc433612e62565b8080611ccf90615309565b915050611cb0565b508061272960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611d3191906150a5565b61272960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff160217905550600160118190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfc90614d64565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611e54610a84565b73ffffffffffffffffffffffffffffffffffffffff16611e72611f1c565b73ffffffffffffffffffffffffffffffffffffffff1614611ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebf90614e24565b60405180910390fd5b611ed26000612e7c565b565b600060108281548110611eea57611ee961546d565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611f55906152a6565b80601f0160208091040260200160405190810160405280929190818152602001828054611f81906152a6565b8015611fce5780601f10611fa357610100808354040283529160200191611fce565b820191906000526020600020905b815481529060010190602001808311611fb157829003601f168201915b5050505050905090565b6002601154141561201e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201590614f04565b60405180910390fd5b600260118190555061202e61190b565b1561206e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206590614d24565b60405180910390fd5b61272b5461271061207f9190615167565b6120998261208b610f68565b61273a90919063ffffffff16565b11156120da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d190614b24565b60405180910390fd5b601260009054906101000a900460ff16612129576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212090614d04565b60405180910390fd5b60135481111561216e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216590614ae4565b60405180910390fd5b346121898261217b6115c9565b61272490919063ffffffff16565b146121c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c090614c24565b60405180910390fd5b60005b818110156121f0576121dd33612e62565b80806121e890615309565b9150506121cc565b50600160118190555050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61224d610a84565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b290614c64565b60405180910390fd5b80600560006122c8610a84565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612375610a84565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123ba9190614aa7565b60405180910390a35050565b61272a6020528060005260406000206000915054906101000a900460ff1681565b6123f86123f2610a84565b836129e3565b612437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242e90614ec4565b60405180910390fd5b61244384848484612f42565b50505050565b6127296020528060005260406000206000915054906101000a900460ff1681565b606061247582612f9e565b9050919050565b6127286020528060005260406000206000915054906101000a900460ff1681565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6124ee610a84565b73ffffffffffffffffffffffffffffffffffffffff1661250c611f1c565b73ffffffffffffffffffffffffffffffffffffffff1614612562576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255990614e24565b60405180910390fd5b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550565b6000600d54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612634610a84565b73ffffffffffffffffffffffffffffffffffffffff16612652611f1c565b73ffffffffffffffffffffffffffffffffffffffff16146126a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269f90614e24565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270f90614bc4565b60405180910390fd5b61272181612e7c565b50565b60008183612732919061510d565b905092915050565b60008183612748919061504f565b905092915050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806127c357506127c2826130f0565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166128a983611922565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015612932576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292990614ca4565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516129589061498b565b60006040518083038185875af1925050503d8060008114612995576040519150601f19603f3d011682016040523d82523d6000602084013e61299a565b606091505b50509050806129de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d590614c84565b60405180910390fd5b505050565b60006129ee826127ca565b612a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2490614cc4565b60405180910390fd5b6000612a3883611922565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612aa757508373ffffffffffffffffffffffffffffffffffffffff16612a8f84610dcb565b73ffffffffffffffffffffffffffffffffffffffff16145b80612ab85750612ab78185612598565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612ae182611922565b73ffffffffffffffffffffffffffffffffffffffff1614612b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2e90614e44565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9e90614c44565b60405180910390fd5b612bb28383836131d2565b612bbd600082612836565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c0d9190615167565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c64919061504f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612d2561190b565b612d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5b90614b04565b60405180910390fd5b6000600b60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612da8610a84565b604051612db591906149ee565b60405180910390a1565b612dc761190b565b15612e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dfe90614d24565b60405180910390fd5b6001600b60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612e4b610a84565b604051612e5891906149ee565b60405180910390a1565b6000612e6c6131e2565b9050612e788282613347565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612f4d848484612ac1565b612f5984848484613365565b612f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8f90614b84565b60405180910390fd5b50505050565b6060612fa9826127ca565b612fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fdf90614de4565b60405180910390fd5b6000600660008481526020019081526020016000208054613008906152a6565b80601f0160208091040260200160405190810160405280929190818152602001828054613034906152a6565b80156130815780601f1061305657610100808354040283529160200191613081565b820191906000526020600020905b81548152906001019060200180831161306457829003601f168201915b5050505050905060006130926134fc565b90506000815114156130a85781925050506130eb565b6000825111156130dd5780826040516020016130c5929190614967565b604051602081830303815290604052925050506130eb565b6130e68461358f565b925050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806131bb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806131cb57506131ca82613636565b5b9050919050565b6131dd8383836136a0565b505050565b6000806131ed610f68565b6127106131fa9190615167565b905060008160145433444260405160200161321894939291906149a0565b6040516020818303038152906040528051906020012060001c61323b9190615380565b905060008060158361271081106132555761325461546d565b5b01541461327a5760158261271081106132715761327061546d565b5b0154905061327e565b8190505b6000601560018561328f9190615167565b61271081106132a1576132a061546d565b5b015414156132d5576001836132b69190615167565b60158361271081106132cb576132ca61546d565b5b0181905550613313565b60156001846132e49190615167565b61271081106132f6576132f561546d565b5b0154601583612710811061330d5761330c61546d565b5b01819055505b6014600081548092919061332690615309565b919050555061333f60018261273a90919063ffffffff16565b935050505090565b6133618282604051806020016040528060008152506137b4565b5050565b60006133868473ffffffffffffffffffffffffffffffffffffffff1661380f565b156134ef578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133af610a84565b8786866040518563ffffffff1660e01b81526004016133d19493929190614a32565b602060405180830381600087803b1580156133eb57600080fd5b505af192505050801561341c57506040513d601f19601f82011682018060405250810190613419919061428f565b60015b61349f573d806000811461344c576040519150601f19603f3d011682016040523d82523d6000602084013e613451565b606091505b50600081511415613497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161348e90614b84565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506134f4565b600190505b949350505050565b606061272c805461350c906152a6565b80601f0160208091040260200160405190810160405280929190818152602001828054613538906152a6565b80156135855780601f1061355a57610100808354040283529160200191613585565b820191906000526020600020905b81548152906001019060200180831161356857829003601f168201915b5050505050905090565b606061359a826127ca565b6135d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135d090614e64565b60405180910390fd5b60006135e36134fc565b90506000815111613603576040518060200160405280600081525061362e565b8061360d84613822565b60405160200161361e929190614967565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6136ab838383613983565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156136ee576136e981613988565b61372d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461372c5761372b83826139d1565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156137705761376b81613b3e565b6137af565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146137ae576137ad8282613c0f565b5b5b505050565b6137be8383613c8e565b6137cb6000848484613365565b61380a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161380190614b84565b60405180910390fd5b505050565b600080823b905060008111915050919050565b6060600082141561386a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061397e565b600082905060005b6000821461389c57808061388590615309565b915050600a8261389591906150dc565b9150613872565b60008167ffffffffffffffff8111156138b8576138b761549c565b5b6040519080825280601f01601f1916602001820160405280156138ea5781602001600182028036833780820191505090505b5090505b60008514613977576001826139039190615167565b9150600a856139129190615380565b603061391e919061504f565b60f81b8183815181106139345761393361546d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561397091906150dc565b94506138ee565b8093505050505b919050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016139de84611d94565b6139e89190615167565b9050600060086000848152602001908152602001600020549050818114613acd576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050613b529190615167565b90506000600a6000848152602001908152602001600020549050600060098381548110613b8257613b8161546d565b5b906000526020600020015490508060098381548110613ba457613ba361546d565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480613bf357613bf261543e565b5b6001900381819060005260206000200160009055905550505050565b6000613c1a83611d94565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cf590614dc4565b60405180910390fd5b613d07816127ca565b15613d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d3e90614be4565b60405180910390fd5b613d53600083836131d2565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613da3919061504f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613e68906152a6565b90600052602060002090601f016020900481019282613e8a5760008555613ed1565b82601f10613ea357805160ff1916838001178555613ed1565b82800160010185558215613ed1579182015b82811115613ed0578251825591602001919060010190613eb5565b5b509050613ede9190613ee2565b5090565b5b80821115613efb576000816000905550600101613ee3565b5090565b6000613f12613f0d84614f9f565b614f7a565b905082815260208101848484011115613f2e57613f2d6154d0565b5b613f39848285615264565b509392505050565b6000613f54613f4f84614fd0565b614f7a565b905082815260208101848484011115613f7057613f6f6154d0565b5b613f7b848285615264565b509392505050565b600081359050613f9281615e05565b92915050565b600081359050613fa781615e1c565b92915050565b600081359050613fbc81615e33565b92915050565b600081359050613fd181615e4a565b92915050565b600081519050613fe681615e4a565b92915050565b600082601f830112614001576140006154cb565b5b8135614011848260208601613eff565b91505092915050565b600082601f83011261402f5761402e6154cb565b5b813561403f848260208601613f41565b91505092915050565b60008135905061405781615e61565b92915050565b60008135905061406c81615e78565b92915050565b600060208284031215614088576140876154da565b5b600061409684828501613f83565b91505092915050565b6000602082840312156140b5576140b46154da565b5b60006140c384828501613f98565b91505092915050565b600080604083850312156140e3576140e26154da565b5b60006140f185828601613f83565b925050602061410285828601613f83565b9150509250929050565b600080600060608486031215614125576141246154da565b5b600061413386828701613f83565b935050602061414486828701613f83565b925050604061415586828701614048565b9150509250925092565b60008060008060808587031215614179576141786154da565b5b600061418787828801613f83565b945050602061419887828801613f83565b93505060406141a987828801614048565b925050606085013567ffffffffffffffff8111156141ca576141c96154d5565b5b6141d687828801613fec565b91505092959194509250565b600080604083850312156141f9576141f86154da565b5b600061420785828601613f83565b925050602061421885828601613fad565b9150509250929050565b60008060408385031215614239576142386154da565b5b600061424785828601613f83565b925050602061425885828601614048565b9150509250929050565b600060208284031215614278576142776154da565b5b600061428684828501613fc2565b91505092915050565b6000602082840312156142a5576142a46154da565b5b60006142b384828501613fd7565b91505092915050565b6000602082840312156142d2576142d16154da565b5b600082013567ffffffffffffffff8111156142f0576142ef6154d5565b5b6142fc8482850161401a565b91505092915050565b60006020828403121561431b5761431a6154da565b5b600061432984828501614048565b91505092915050565b600060208284031215614348576143476154da565b5b60006143568482850161405d565b91505092915050565b6143688161522e565b82525050565b6143778161519b565b82525050565b61438e6143898261519b565b615352565b82525050565b61439d816151bf565b82525050565b60006143ae82615001565b6143b88185615017565b93506143c8818560208601615273565b6143d1816154df565b840191505092915050565b60006143e78261500c565b6143f18185615033565b9350614401818560208601615273565b61440a816154df565b840191505092915050565b60006144208261500c565b61442a8185615044565b935061443a818560208601615273565b80840191505092915050565b6000614453601783615033565b915061445e826154fd565b602082019050919050565b6000614476601483615033565b915061448182615526565b602082019050919050565b6000614499603083615033565b91506144a48261554f565b604082019050919050565b60006144bc602d83615033565b91506144c78261559e565b604082019050919050565b60006144df602b83615033565b91506144ea826155ed565b604082019050919050565b6000614502603283615033565b915061450d8261563c565b604082019050919050565b6000614525603183615033565b91506145308261568b565b604082019050919050565b6000614548602683615033565b9150614553826156da565b604082019050919050565b600061456b601c83615033565b915061457682615729565b602082019050919050565b600061458e602683615033565b915061459982615752565b604082019050919050565b60006145b1601f83615033565b91506145bc826157a1565b602082019050919050565b60006145d4602483615033565b91506145df826157ca565b604082019050919050565b60006145f7601983615033565b915061460282615819565b602082019050919050565b600061461a603a83615033565b915061462582615842565b604082019050919050565b600061463d601d83615033565b915061464882615891565b602082019050919050565b6000614660602c83615033565b915061466b826158ba565b604082019050919050565b6000614683602b83615033565b915061468e82615909565b604082019050919050565b60006146a6601a83615033565b91506146b182615958565b602082019050919050565b60006146c9601083615033565b91506146d482615981565b602082019050919050565b60006146ec603883615033565b91506146f7826159aa565b604082019050919050565b600061470f602a83615033565b915061471a826159f9565b604082019050919050565b6000614732602983615033565b915061473d82615a48565b604082019050919050565b6000614755602a83615033565b915061476082615a97565b604082019050919050565b6000614778602083615033565b915061478382615ae6565b602082019050919050565b600061479b603183615033565b91506147a682615b0f565b604082019050919050565b60006147be602c83615033565b91506147c982615b5e565b604082019050919050565b60006147e1602083615033565b91506147ec82615bad565b602082019050919050565b6000614804602983615033565b915061480f82615bd6565b604082019050919050565b6000614827602f83615033565b915061483282615c25565b604082019050919050565b600061484a602183615033565b915061485582615c74565b604082019050919050565b600061486d601a83615033565b915061487882615cc3565b602082019050919050565b6000614890600083615028565b915061489b82615cec565b600082019050919050565b60006148b3603183615033565b91506148be82615cef565b604082019050919050565b60006148d6602c83615033565b91506148e182615d3e565b604082019050919050565b60006148f9601f83615033565b915061490482615d8d565b602082019050919050565b600061491c602283615033565b915061492782615db6565b604082019050919050565b61493b81615217565b82525050565b61495261494d82615217565b615376565b82525050565b61496181615221565b82525050565b60006149738285614415565b915061497f8284614415565b91508190509392505050565b600061499682614883565b9150819050919050565b60006149ac8287614941565b6020820191506149bc828661437d565b6014820191506149cc8285614941565b6020820191506149dc8284614941565b60208201915081905095945050505050565b6000602082019050614a03600083018461436e565b92915050565b6000604082019050614a1e600083018561435f565b614a2b6020830184614932565b9392505050565b6000608082019050614a47600083018761436e565b614a54602083018661436e565b614a616040830185614932565b8181036060830152614a7381846143a3565b905095945050505050565b6000604082019050614a93600083018561436e565b614aa06020830184614932565b9392505050565b6000602082019050614abc6000830184614394565b92915050565b60006020820190508181036000830152614adc81846143dc565b905092915050565b60006020820190508181036000830152614afd81614446565b9050919050565b60006020820190508181036000830152614b1d81614469565b9050919050565b60006020820190508181036000830152614b3d8161448c565b9050919050565b60006020820190508181036000830152614b5d816144af565b9050919050565b60006020820190508181036000830152614b7d816144d2565b9050919050565b60006020820190508181036000830152614b9d816144f5565b9050919050565b60006020820190508181036000830152614bbd81614518565b9050919050565b60006020820190508181036000830152614bdd8161453b565b9050919050565b60006020820190508181036000830152614bfd8161455e565b9050919050565b60006020820190508181036000830152614c1d81614581565b9050919050565b60006020820190508181036000830152614c3d816145a4565b9050919050565b60006020820190508181036000830152614c5d816145c7565b9050919050565b60006020820190508181036000830152614c7d816145ea565b9050919050565b60006020820190508181036000830152614c9d8161460d565b9050919050565b60006020820190508181036000830152614cbd81614630565b9050919050565b60006020820190508181036000830152614cdd81614653565b9050919050565b60006020820190508181036000830152614cfd81614676565b9050919050565b60006020820190508181036000830152614d1d81614699565b9050919050565b60006020820190508181036000830152614d3d816146bc565b9050919050565b60006020820190508181036000830152614d5d816146df565b9050919050565b60006020820190508181036000830152614d7d81614702565b9050919050565b60006020820190508181036000830152614d9d81614725565b9050919050565b60006020820190508181036000830152614dbd81614748565b9050919050565b60006020820190508181036000830152614ddd8161476b565b9050919050565b60006020820190508181036000830152614dfd8161478e565b9050919050565b60006020820190508181036000830152614e1d816147b1565b9050919050565b60006020820190508181036000830152614e3d816147d4565b9050919050565b60006020820190508181036000830152614e5d816147f7565b9050919050565b60006020820190508181036000830152614e7d8161481a565b9050919050565b60006020820190508181036000830152614e9d8161483d565b9050919050565b60006020820190508181036000830152614ebd81614860565b9050919050565b60006020820190508181036000830152614edd816148a6565b9050919050565b60006020820190508181036000830152614efd816148c9565b9050919050565b60006020820190508181036000830152614f1d816148ec565b9050919050565b60006020820190508181036000830152614f3d8161490f565b9050919050565b6000602082019050614f596000830184614932565b92915050565b6000602082019050614f746000830184614958565b92915050565b6000614f84614f95565b9050614f9082826152d8565b919050565b6000604051905090565b600067ffffffffffffffff821115614fba57614fb961549c565b5b614fc3826154df565b9050602081019050919050565b600067ffffffffffffffff821115614feb57614fea61549c565b5b614ff4826154df565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061505a82615217565b915061506583615217565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561509a576150996153b1565b5b828201905092915050565b60006150b082615221565b91506150bb83615221565b92508260ff038211156150d1576150d06153b1565b5b828201905092915050565b60006150e782615217565b91506150f283615217565b925082615102576151016153e0565b5b828204905092915050565b600061511882615217565b915061512383615217565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561515c5761515b6153b1565b5b828202905092915050565b600061517282615217565b915061517d83615217565b9250828210156151905761518f6153b1565b5b828203905092915050565b60006151a6826151f7565b9050919050565b60006151b8826151f7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600061523982615240565b9050919050565b600061524b82615252565b9050919050565b600061525d826151f7565b9050919050565b82818337600083830152505050565b60005b83811015615291578082015181840152602081019050615276565b838111156152a0576000848401525b50505050565b600060028204905060018216806152be57607f821691505b602082108114156152d2576152d161540f565b5b50919050565b6152e1826154df565b810181811067ffffffffffffffff82111715615300576152ff61549c565b5b80604052505050565b600061531482615217565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615347576153466153b1565b5b600182019050919050565b600061535d82615364565b9050919050565b600061536f826154f0565b9050919050565b6000819050919050565b600061538b82615217565b915061539683615217565b9250826153a6576153a56153e0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f546f6f206d616e7920746f6b656e73206174206f6e6365000000000000000000600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f507572636861736520776f756c642065786365656420617661696c61626c652060008201527f737570706c79206f6620746f6b656e7300000000000000000000000000000000602082015250565b7f4561636820616464726573732063616e206f6e6c79207075726368617365207560008201527f7020746f203520746f6b656e7300000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f596f752063616e2774206d696e74206d6f7265207468616e203520746f6b656e60008201527f7320647572696e67207072652d73616c65000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b7f596f75206e65656420746f207061792074686520657861637420707269636500600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206d75737420626520616374697665000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f5072652d73616c652068617320616c726561647920656e646564000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f596f7520646f206e6f74206861766520616e7920746f6b656e7320706c65646760008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b615e0e8161519b565b8114615e1957600080fd5b50565b615e25816151ad565b8114615e3057600080fd5b50565b615e3c816151bf565b8114615e4757600080fd5b50565b615e53816151cb565b8114615e5e57600080fd5b50565b615e6a81615217565b8114615e7557600080fd5b50565b615e8181615221565b8114615e8c57600080fd5b5056fea26469706673582212207d03269afb6387a3bd5ac0fe55e871b8eee0ba760cea7894abf62bcff30f099064736f6c63430008070033

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.