ETH Price: $2,374.13 (-3.30%)

Token

ParableNamingToken (PNT)
 

Overview

Max Total Supply

293,943.234027777777777711 PNT

Holders

21

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
artmatt.eth
Balance
5,499.267592592592592591 PNT

Value
$0.00
0x42A9320372FFB4ab05A41af11B6d47DB73543e88
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:
ParableNamingToken

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : ParableNamingToken.sol
pragma solidity ^0.8.0;

import "./openzeppelin-solidity/contracts/utils/introspection/IERC165.sol";
import "./openzeppelin-solidity/contracts/utils/math/SafeMath.sol";
import "./IERC20.sol";
import "./ICards.sol";
import "./openzeppelin-solidity/contracts/utils/Context.sol";

/**
 *
 * ParableNamingToken Contract (The native token of Parable NFT)
 * @dev Extends standard ERC20 contract
 */
contract ParableNamingToken is Context, IERC20 {
    using SafeMath for uint256;

    // Constants
    uint256 public SECONDS_IN_A_DAY = 86400;

    uint256 public constant INITIAL_ALLOTMENT = 915 * (10 ** 18);

    uint256 public constant PRE_REVEAL_MULTIPLIER = 3;

    // Public variables
    uint256 public emissionStart;

    uint256 public emissionEnd;

    uint256 public emissionPerDay = 10 * (10 ** 18);

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    mapping(uint256 => uint256) private _lastClaim;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;
    address private _cardsAddress;

    // RIDDLES ============================
    bytes32 public answer1 = 0xf66787a57e534b366e3676c512fbb495160c2c4f0901093402a06522149b7307;
    bytes32 public answer2 = 0x065fc08578d53af81e342fe54199044aef5e2ae50f6115748ff823ff04bcc47a;
    bytes32 public answer3 = 0xe54964fe8be20bd4c2ba9a98215a27c34ad530485cbe9828304f321ef82c5c76;
    bytes32 public answer4 = 0xf858a6e04d2da8f9c64116c14f824674d08ec5b13f08893c0895ebe9e3e54dd1;
    bytes32 public answer5 = 0xb67784e6189fcd60a377261f124944fb06144e7f517c9b783bc5adcb3e8eda87;
    bytes32 public answer6 = 0x1407973d4f60ff9a5ed7d6489e48d244b248ce24feee9acbd034ba0e255367e8;
    bytes32 public answer7 = 0xcdfcc99b58fd8a9ca04a677ce8e60a3327ab8334ca53ccbeb12600f444ab9c74;
    uint256 public riddleStart; // timestamp when solutions to riddles can be submitted
    uint256 public riddle1_solved = 0;
    uint256 public riddle2_solved = 0;
    uint256 public riddle3_solved = 0;
    uint256 public riddle4_solved = 0;
    uint256 public riddle5_solved = 0;
    uint256 public riddle6_solved = 0;
    uint256 public riddle7_solved = 0;
    mapping(uint256 => bool) private _riddle1Claimed; // bool defaults to false
    mapping(uint256 => bool) private _riddle2Claimed;
    mapping(uint256 => bool) private _riddle3Claimed;
    mapping(uint256 => bool) private _riddle4Claimed;
    mapping(uint256 => bool) private _riddle5Claimed;
    mapping(uint256 => bool) private _riddle6Claimed;
    mapping(uint256 => bool) private _riddle7Claimed;
    uint256 public constant riddle_1_reward = 365 * (10 ** 18);
    uint256 public constant riddle_2_reward = 460 * (10 ** 18);
    uint256 public constant riddle_3_reward = 550 * (10 ** 18);
    uint256 public constant riddle_4_reward = 640 * (10 ** 18);
    uint256 public constant riddle_5_reward = 730 * (10 ** 18);
    uint256 public constant riddle_6_reward = 915 * (10 ** 18);
    uint256 public constant riddle_7_reward = 1830 * (10 ** 18);
    // =========================================
    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18. Also initalizes {emissionStart}
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol, uint256 emissionStartTimestamp, uint256 riddleStartTimestamp) {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
        emissionStart = emissionStartTimestamp;
        emissionEnd = emissionStartTimestamp + (86400 * 365 * 10);
        riddleStart = riddleStartTimestamp;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev When accumulated PNTs have last been claimed for a Parable index
     */
    function lastClaim(uint256 tokenIndex) public view returns (uint256) {
        require(ICards(_cardsAddress).ownerOf(tokenIndex) != address(0), "Owner cannot be 0 address");
        require(tokenIndex <= ICards(_cardsAddress).totalSupply(), "NFT at index has not been minted yet");

        uint256 lastClaimed = uint256(_lastClaim[tokenIndex]) != 0 ? uint256(_lastClaim[tokenIndex]) : emissionStart;
        return lastClaimed;
    }

    /**
     * @dev Accumulated PNT tokens for a Parable token index.
     */
    function accumulated(uint256 tokenIndex) public view returns (uint256) {
        require(block.timestamp > emissionStart, "Emission has not started yet");
        require(ICards(_cardsAddress).ownerOf(tokenIndex) != address(0), "Owner cannot be 0 address");
        require(tokenIndex <= ICards(_cardsAddress).totalSupply(), "NFT at index has not been minted yet");

        uint256 lastClaimed = lastClaim(tokenIndex);

        // Sanity check if last claim was on or after emission end
        if (lastClaimed >= emissionEnd) return 0;

        uint256 accumulationPeriod = block.timestamp < emissionEnd ? block.timestamp : emissionEnd; // Getting the min value of both
        uint256 totalAccumulated = accumulationPeriod.sub(lastClaimed).mul(emissionPerDay).div(SECONDS_IN_A_DAY);

        // If claim hasn't been done before for the index, add initial allotment (plus prereveal multiplier if applicable)
        if (lastClaimed == emissionStart) {
            uint256 initialAllotment = ICards(_cardsAddress).isMintedBeforeReveal(tokenIndex) == true ? INITIAL_ALLOTMENT.mul(PRE_REVEAL_MULTIPLIER) : INITIAL_ALLOTMENT;
            totalAccumulated = totalAccumulated.add(initialAllotment);
        }

        // RIDDLE REWARDS
        if (riddle1_solved > ICards(_cardsAddress).mintedTimestamp(tokenIndex) && !(_riddle1Claimed[tokenIndex])) {
            totalAccumulated = totalAccumulated.add(riddle_1_reward);
        }
        if (riddle2_solved > ICards(_cardsAddress).mintedTimestamp(tokenIndex) && !(_riddle2Claimed[tokenIndex])) {
            totalAccumulated = totalAccumulated.add(riddle_2_reward);
        }
        if (riddle3_solved > ICards(_cardsAddress).mintedTimestamp(tokenIndex) && !(_riddle3Claimed[tokenIndex])) {
            totalAccumulated = totalAccumulated.add(riddle_3_reward);
        }
        if (riddle4_solved > ICards(_cardsAddress).mintedTimestamp(tokenIndex) && !(_riddle4Claimed[tokenIndex])) {
            totalAccumulated = totalAccumulated.add(riddle_4_reward);
        }
        if (riddle5_solved > ICards(_cardsAddress).mintedTimestamp(tokenIndex) && !(_riddle5Claimed[tokenIndex])) {
            totalAccumulated = totalAccumulated.add(riddle_5_reward);
        }
        if (riddle6_solved > ICards(_cardsAddress).mintedTimestamp(tokenIndex) && !(_riddle6Claimed[tokenIndex])) {
            totalAccumulated = totalAccumulated.add(riddle_6_reward);
        }
        if (riddle7_solved > ICards(_cardsAddress).mintedTimestamp(tokenIndex) && !(_riddle7Claimed[tokenIndex])) {
              totalAccumulated = totalAccumulated.add(riddle_7_reward);
        }

        return totalAccumulated;
    }

    /**
     * @dev Permissioning not added because it is only callable once. It is set right after deployment and verified.
     */

    function setCardsAddress(address cardsAddress) public {
        require(_cardsAddress == address(0), "Already set");

        _cardsAddress = cardsAddress;
    }



    // RIDDLES =================================================

    // check if it's more efficient to store the hash in a var instead of hasing 7 times
    function guess(string memory _word) public  {
        require(block.timestamp > riddleStart, "Riddles have not started yet");
        bytes32 submitted_guess = keccak256(abi.encodePacked(_word));
        require(submitted_guess == answer1 || submitted_guess == answer2 || submitted_guess == answer3 || submitted_guess == answer4 || submitted_guess == answer5 || submitted_guess == answer6 || submitted_guess == answer7, "Wrong guess");

        if (submitted_guess == answer1) {
            require(riddle1_solved == 0, "already solved");
            riddle1_solved = block.timestamp;
        } else if (submitted_guess == answer2) {
            require(riddle2_solved == 0, "already solved");
            riddle2_solved = block.timestamp;
        } else if (submitted_guess == answer3) {
            require(riddle3_solved == 0, "already solved");
            riddle3_solved = block.timestamp;
        } else if (submitted_guess == answer4) {
            require(riddle4_solved == 0, "already solved");
            riddle4_solved = block.timestamp;
        } else if (submitted_guess == answer5) {
            require(riddle5_solved == 0, "already solved");
            riddle5_solved = block.timestamp;
        } else if (submitted_guess == answer6) {
            require(riddle6_solved == 0, "already solved");
            riddle6_solved = block.timestamp;
        } else if (submitted_guess == answer7) {
            require(riddle7_solved == 0, "already solved");
            riddle7_solved = block.timestamp;
        }
    }

    // ======================================




    /**
     * @dev Claim mints PNTs and supports multiple Parable token indices at once.
     */
    function claim(uint256[] memory tokenIndices) public returns (uint256) {
        require(block.timestamp > emissionStart, "Emission has not started yet");

        uint256 totalClaimQty = 0;
        for (uint i = 0; i < tokenIndices.length; i++) {
            // Sanity check for non-minted index
            require(tokenIndices[i] <= ICards(_cardsAddress).totalSupply(), "NFT at index has not been minted yet");
            // Duplicate token index check
            for (uint j = i + 1; j < tokenIndices.length; j++) {
                require(tokenIndices[i] != tokenIndices[j], "Duplicate token index");
            }

            uint tokenIndex = tokenIndices[i];
            require(ICards(_cardsAddress).ownerOf(tokenIndex) == msg.sender, "Sender is not the owner");

            uint256 claimQty = accumulated(tokenIndex);
            if (claimQty != 0) {
                totalClaimQty = totalClaimQty.add(claimQty);
                _lastClaim[tokenIndex] = block.timestamp;
            }

            if (riddle1_solved > ICards(_cardsAddress).mintedTimestamp(tokenIndex) && !(_riddle1Claimed[tokenIndex])) {
                _riddle1Claimed[tokenIndex] = true;
            }
             if (riddle2_solved > ICards(_cardsAddress).mintedTimestamp(tokenIndex) && !(_riddle2Claimed[tokenIndex])) {
                _riddle2Claimed[tokenIndex] = true;
            }
             if (riddle3_solved > ICards(_cardsAddress).mintedTimestamp(tokenIndex) && !(_riddle3Claimed[tokenIndex])) {
                _riddle3Claimed[tokenIndex] = true;
            }
             if (riddle4_solved > ICards(_cardsAddress).mintedTimestamp(tokenIndex) && !(_riddle4Claimed[tokenIndex])) {
                _riddle4Claimed[tokenIndex] = true;
            }
             if (riddle5_solved > ICards(_cardsAddress).mintedTimestamp(tokenIndex) && !(_riddle5Claimed[tokenIndex])) {
                _riddle5Claimed[tokenIndex] = true;
            }
             if (riddle6_solved > ICards(_cardsAddress).mintedTimestamp(tokenIndex) && !(_riddle6Claimed[tokenIndex])) {
                _riddle6Claimed[tokenIndex] = true;
            }
             if (riddle7_solved > ICards(_cardsAddress).mintedTimestamp(tokenIndex) && !(_riddle7Claimed[tokenIndex])) {
                _riddle7Claimed[tokenIndex] = true;
            }


        }

        require(totalClaimQty != 0, "No accumulated PNT");
        _mint(msg.sender, totalClaimQty);
        return totalClaimQty;
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        // Approval check is skipped if the caller of transferFrom is the Card contract. For better UX.
        if (msg.sender != _cardsAddress) {
            _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        }
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    // ++
    /**
     * @dev Burns a quantity of tokens held by the caller.
     *
     * Emits an {Transfer} event to 0 address
     *
     */
    function burn(uint256 burnQuantity) public virtual override returns (bool) {
        _burn(msg.sender, burnQuantity);
        return true;
    }
    // ++

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens 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 amount) internal virtual { }
}

File 2 of 8 : ICards.sol
import "./openzeppelin-solidity/contracts/token/ERC721/extensions/IERC721Enumerable.sol";

// interface ICreature is IERC721Enumerable {
interface ICards is IERC721Enumerable{
  function isMintedBeforeReveal(uint256 index) external view returns (bool);
  function mintedTimestamp(uint256 index) external view returns (uint256);
}

File 3 of 8 : IERC20.sol
pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);


    /**
     * TODO: Add comment
     */
    function burn(uint256 burnQuantity) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 4 of 8 : 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 5 of 8 : 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 6 of 8 : 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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 7 of 8 : 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 8 of 8 : 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;
        }
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"emissionStartTimestamp","type":"uint256"},{"internalType":"uint256","name":"riddleStartTimestamp","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"INITIAL_ALLOTMENT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRE_REVEAL_MULTIPLIER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SECONDS_IN_A_DAY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenIndex","type":"uint256"}],"name":"accumulated","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"answer1","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"answer2","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"answer3","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"answer4","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"answer5","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"answer6","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"answer7","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"burnQuantity","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIndices","type":"uint256[]"}],"name":"claim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"emissionEnd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emissionPerDay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emissionStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_word","type":"string"}],"name":"guess","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenIndex","type":"uint256"}],"name":"lastClaim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"riddle1_solved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"riddle2_solved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"riddle3_solved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"riddle4_solved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"riddle5_solved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"riddle6_solved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"riddle7_solved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"riddleStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"riddle_1_reward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"riddle_2_reward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"riddle_3_reward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"riddle_4_reward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"riddle_5_reward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"riddle_6_reward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"riddle_7_reward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"cardsAddress","type":"address"}],"name":"setCardsAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

608060405262015180600055678ac7230489e800006003557ff66787a57e534b366e3676c512fbb495160c2c4f0901093402a06522149b730760001b600b557f065fc08578d53af81e342fe54199044aef5e2ae50f6115748ff823ff04bcc47a60001b600c557fe54964fe8be20bd4c2ba9a98215a27c34ad530485cbe9828304f321ef82c5c7660001b600d557ff858a6e04d2da8f9c64116c14f824674d08ec5b13f08893c0895ebe9e3e54dd160001b600e557fb67784e6189fcd60a377261f124944fb06144e7f517c9b783bc5adcb3e8eda8760001b600f557f1407973d4f60ff9a5ed7d6489e48d244b248ce24feee9acbd034ba0e255367e860001b6010557fcdfcc99b58fd8a9ca04a677ce8e60a3327ab8334ca53ccbeb12600f444ab9c7460001b60115560006013556000601455600060155560006016556000601755600060185560006019553480156200015857600080fd5b5060405162004a2338038062004a2383398181016040528101906200017e919062000335565b836008908051906020019062000196929190620001fc565b508260099080519060200190620001af929190620001fc565b506012600a60006101000a81548160ff021916908360ff160217905550816001819055506312cc030082620001e591906200043a565b6002819055508060128190555050505050620005b4565b8280546200020a90620004d7565b90600052602060002090601f0160209004810192826200022e57600085556200027a565b82601f106200024957805160ff19168380011785556200027a565b828001600101855582156200027a579182015b82811115620002795782518255916020019190600101906200025c565b5b5090506200028991906200028d565b5090565b5b80821115620002a85760008160009055506001016200028e565b5090565b6000620002c3620002bd8462000407565b620003d3565b905082815260208101848484011115620002dc57600080fd5b620002e9848285620004a1565b509392505050565b600082601f8301126200030357600080fd5b815162000315848260208601620002ac565b91505092915050565b6000815190506200032f816200059a565b92915050565b600080600080608085870312156200034c57600080fd5b600085015167ffffffffffffffff8111156200036757600080fd5b6200037587828801620002f1565b945050602085015167ffffffffffffffff8111156200039357600080fd5b620003a187828801620002f1565b9350506040620003b4878288016200031e565b9250506060620003c7878288016200031e565b91505092959194509250565b6000604051905081810181811067ffffffffffffffff82111715620003fd57620003fc6200056b565b5b8060405250919050565b600067ffffffffffffffff8211156200042557620004246200056b565b5b601f19601f8301169050602081019050919050565b6000620004478262000497565b9150620004548362000497565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200048c576200048b6200050d565b5b828201905092915050565b6000819050919050565b60005b83811015620004c1578082015181840152602081019050620004a4565b83811115620004d1576000848401525b50505050565b60006002820490506001821680620004f057607f821691505b602082108114156200050757620005066200053c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620005a58162000497565b8114620005b157600080fd5b50565b61445f80620005c46000396000f3fe608060405234801561001057600080fd5b506004361061027f5760003560e01c806369e72f8d1161015c578063a9059cbb116100ce578063c9d71d5e11610087578063c9d71d5e146107c6578063dd62ed3e146107e4578063e26085e314610814578063e4e0c50f14610832578063e9f0cee014610850578063f9cfa06f1461086e5761027f565b8063a9059cbb146106ee578063b551b82f1461071e578063be90c6571461073c578063c03a030a1461075a578063c20bbc5914610778578063c607cde7146107965761027f565b806376e607561161012057806376e60756146106285780637774d438146106465780638368909c1461066457806395d89b411461068257806398d8b906146106a0578063a457c2d7146106be5761027f565b806369e72f8d146105705780636ba4c1381461058e5780636cdb1b75146105be57806370a08231146105da57806373422b311461060a5761027f565b80633c91b4bc116101f55780634eee59b3116101b95780634eee59b3146104be578063513da948146104da578063527ef9f4146104f857806365c8c6121461051657806366d5850714610534578063672403ea146105525761027f565b80633c91b4bc146104045780633cbc034b146104225780633d3728b51461044057806342966c68146104705780634d4edb91146104a05761027f565b8063233eae9311610247578063233eae931461032c57806323b872dd1461034a5780632ed6a14f1461037a578063313ce56714610398578063367df165146103b657806339509351146103d45761027f565b806306fdde0314610284578063095ea7b3146102a257806316602018146102d257806318160ddd146102f05780632152dc8b1461030e575b600080fd5b61028c61088c565b6040516102999190613d45565b60405180910390f35b6102bc60048036038101906102b79190613635565b61091e565b6040516102c99190613d0f565b60405180910390f35b6102da61093c565b6040516102e79190613f67565b60405180910390f35b6102f8610942565b6040516103059190613f67565b60405180910390f35b61031661094c565b6040516103239190613f67565b60405180910390f35b610334610952565b6040516103419190613f67565b60405180910390f35b610364600480360381019061035f91906135e6565b610958565b6040516103719190613d0f565b60405180910390f35b610382610a87565b60405161038f9190613f67565b60405180910390f35b6103a0610a8d565b6040516103ad9190613f82565b60405180910390f35b6103be610aa4565b6040516103cb9190613f67565b60405180910390f35b6103ee60048036038101906103e99190613635565b610ab1565b6040516103fb9190613d0f565b60405180910390f35b61040c610b64565b6040516104199190613d2a565b60405180910390f35b61042a610b6a565b6040516104379190613d2a565b60405180910390f35b61045a6004803603810190610455919061371c565b610b70565b6040516104679190613f67565b60405180910390f35b61048a6004803603810190610485919061371c565b610db2565b6040516104979190613d0f565b60405180910390f35b6104a8610dc7565b6040516104b59190613f67565b60405180910390f35b6104d860048036038101906104d391906136db565b610dcd565b005b6104e261114b565b6040516104ef9190613f67565b60405180910390f35b610500611151565b60405161050d9190613f67565b60405180910390f35b61051e61115e565b60405161052b9190613f67565b60405180910390f35b61053c61116b565b6040516105499190613f67565b60405180910390f35b61055a611178565b6040516105679190613f67565b60405180910390f35b61057861117e565b6040516105859190613d2a565b60405180910390f35b6105a860048036038101906105a39190613671565b611184565b6040516105b59190613f67565b60405180910390f35b6105d860048036038101906105d39190613558565b611d45565b005b6105f460048036038101906105ef9190613558565b611e1a565b6040516106019190613f67565b60405180910390f35b610612611e63565b60405161061f9190613f67565b60405180910390f35b610630611e68565b60405161063d9190613f67565b60405180910390f35b61064e611e75565b60405161065b9190613d2a565b60405180910390f35b61066c611e7b565b6040516106799190613f67565b60405180910390f35b61068a611e81565b6040516106979190613d45565b60405180910390f35b6106a8611f13565b6040516106b59190613f67565b60405180910390f35b6106d860048036038101906106d39190613635565b611f20565b6040516106e59190613d0f565b60405180910390f35b61070860048036038101906107039190613635565b611fed565b6040516107159190613d0f565b60405180910390f35b61072661200b565b6040516107339190613f67565b60405180910390f35b610744612011565b6040516107519190613d2a565b60405180910390f35b610762612017565b60405161076f9190613d2a565b60405180910390f35b61078061201d565b60405161078d9190613f67565b60405180910390f35b6107b060048036038101906107ab919061371c565b612023565b6040516107bd9190613f67565b60405180910390f35b6107ce612ada565b6040516107db9190613f67565b60405180910390f35b6107fe60048036038101906107f991906135aa565b612ae0565b60405161080b9190613f67565b60405180910390f35b61081c612b67565b6040516108299190613d2a565b60405180910390f35b61083a612b6d565b6040516108479190613f67565b60405180910390f35b610858612b7a565b6040516108659190613f67565b60405180910390f35b610876612b87565b6040516108839190613f67565b60405180910390f35b60606008805461089b90614207565b80601f01602080910402602001604051908101604052809291908181526020018280546108c790614207565b80156109145780601f106108e957610100808354040283529160200191610914565b820191906000526020600020905b8154815290600101906020018083116108f757829003601f168201915b5050505050905090565b600061093261092b612b8d565b8484612b95565b6001905092915050565b60155481565b6000600754905090565b60185481565b60175481565b6000610965848484612d60565b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a7c57610a7b846109c6612b8d565b610a76856040518060600160405280602881526020016143dd60289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610a2c612b8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ff99092919063ffffffff16565b612b95565b5b600190509392505050565b60125481565b6000600a60009054906101000a900460ff16905090565b68319a2d041f4a6c000081565b6000610b5a610abe612b8d565b84610b558560056000610acf612b8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461304e90919063ffffffff16565b612b95565b6001905092915050565b60105481565b600e5481565b60008073ffffffffffffffffffffffffffffffffffffffff16600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b8152600401610be49190613f67565b60206040518083038186803b158015610bfc57600080fd5b505afa158015610c10573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c349190613581565b73ffffffffffffffffffffffffffffffffffffffff161415610c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8290613e07565b60405180910390fd5b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610cf357600080fd5b505afa158015610d07573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d2b9190613745565b821115610d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6490613d87565b60405180910390fd5b60008060066000858152602001908152602001600020541415610d9257600154610da7565b60066000848152602001908152602001600020545b905080915050919050565b6000610dbe3383613064565b60019050919050565b60135481565b6012544211610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890613e27565b60405180910390fd5b600081604051602001610e249190613cf8565b604051602081830303815290604052805190602001209050600b54811480610e4d5750600c5481145b80610e595750600d5481145b80610e655750600e5481145b80610e715750600f5481145b80610e7d575060105481145b80610e89575060115481145b610ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebf90613f47565b60405180910390fd5b600b54811415610f2357600060135414610f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0e90613dc7565b60405180910390fd5b42601381905550611147565b600c54811415610f7e57600060145414610f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6990613dc7565b60405180910390fd5b42601481905550611146565b600d54811415610fd957600060155414610fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc490613dc7565b60405180910390fd5b42601581905550611145565b600e5481141561103457600060165414611028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101f90613dc7565b60405180910390fd5b42601681905550611144565b600f5481141561108f57600060175414611083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107a90613dc7565b60405180910390fd5b42601781905550611143565b6010548114156110ea576000601854146110de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d590613dc7565b60405180910390fd5b42601881905550611142565b60115481141561114157600060195414611139576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113090613dc7565b60405180910390fd5b426019819055505b5b5b5b5b5b5b5050565b60015481565b681dd0c885f9a0d8000081565b68319a2d041f4a6c000081565b6813c9647e25a994000081565b60165481565b600d5481565b600060015442116111ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c190613ea7565b60405180910390fd5b6000805b8351811015611ced57600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561123f57600080fd5b505afa158015611253573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112779190613745565b8482815181106112b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015111156112f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f090613d87565b60405180910390fd5b60006001826113089190614051565b90505b84518110156113ea5784818151811061134d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015185838151811061138e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015114156113d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ce90613e47565b60405180910390fd5b80806113e290614239565b91505061130b565b506000848281518110611426577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190503373ffffffffffffffffffffffffffffffffffffffff16600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016114a29190613f67565b60206040518083038186803b1580156114ba57600080fd5b505afa1580156114ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114f29190613581565b73ffffffffffffffffffffffffffffffffffffffff1614611548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153f90613e67565b60405180910390fd5b600061155382612023565b90506000811461158b57611570818561304e90919063ffffffff16565b93504260066000848152602001908152602001600020819055505b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9f50a836040518263ffffffff1660e01b81526004016115e69190613f67565b60206040518083038186803b1580156115fe57600080fd5b505afa158015611612573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116369190613745565b6013541180156116645750601a600083815260200190815260200160002060009054906101000a900460ff16155b15611696576001601a600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9f50a836040518263ffffffff1660e01b81526004016116f19190613f67565b60206040518083038186803b15801561170957600080fd5b505afa15801561171d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117419190613745565b60145411801561176f5750601b600083815260200190815260200160002060009054906101000a900460ff16155b156117a1576001601b600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9f50a836040518263ffffffff1660e01b81526004016117fc9190613f67565b60206040518083038186803b15801561181457600080fd5b505afa158015611828573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061184c9190613745565b60155411801561187a5750601c600083815260200190815260200160002060009054906101000a900460ff16155b156118ac576001601c600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9f50a836040518263ffffffff1660e01b81526004016119079190613f67565b60206040518083038186803b15801561191f57600080fd5b505afa158015611933573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119579190613745565b6016541180156119855750601d600083815260200190815260200160002060009054906101000a900460ff16155b156119b7576001601d600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9f50a836040518263ffffffff1660e01b8152600401611a129190613f67565b60206040518083038186803b158015611a2a57600080fd5b505afa158015611a3e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a629190613745565b601754118015611a905750601e600083815260200190815260200160002060009054906101000a900460ff16155b15611ac2576001601e600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9f50a836040518263ffffffff1660e01b8152600401611b1d9190613f67565b60206040518083038186803b158015611b3557600080fd5b505afa158015611b49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b6d9190613745565b601854118015611b9b5750601f600083815260200190815260200160002060009054906101000a900460ff16155b15611bcd576001601f600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9f50a836040518263ffffffff1660e01b8152600401611c289190613f67565b60206040518083038186803b158015611c4057600080fd5b505afa158015611c54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c789190613745565b601954118015611ca657506020600083815260200190815260200160002060009054906101000a900460ff16155b15611cd85760016020600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505b50508080611ce590614239565b9150506111ce565b506000811415611d32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2990613f07565b60405180910390fd5b611d3c3382613214565b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff16600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcd90613de7565b60405180910390fd5b80600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600381565b6863345a083e94d8000081565b600c5481565b60025481565b606060098054611e9090614207565b80601f0160208091040260200160405190810160405280929190818152602001828054611ebc90614207565b8015611f095780601f10611ede57610100808354040283529160200191611f09565b820191906000526020600020905b815481529060010190602001808311611eec57829003601f168201915b5050505050905090565b6822b1c8c1227a00000081565b6000611fe3611f2d612b8d565b84611fde856040518060600160405280602581526020016144056025913960056000611f57612b8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ff99092919063ffffffff16565b612b95565b6001905092915050565b6000612001611ffa612b8d565b8484612d60565b6001905092915050565b60035481565b600b5481565b60115481565b60195481565b60006001544211612069576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206090613ea7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b81526004016120dc9190613f67565b60206040518083038186803b1580156120f457600080fd5b505afa158015612108573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061212c9190613581565b73ffffffffffffffffffffffffffffffffffffffff161415612183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217a90613e07565b60405180910390fd5b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b1580156121eb57600080fd5b505afa1580156121ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122239190613745565b821115612265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225c90613d87565b60405180910390fd5b600061227083610b70565b90506002548110612285576000915050612ad5565b600060025442106122985760025461229a565b425b905060006122d96000546122cb6003546122bd87876133aa90919063ffffffff16565b6133c090919063ffffffff16565b6133d690919063ffffffff16565b90506001548314156123e357600060011515600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bc28d702886040518263ffffffff1660e01b81526004016123469190613f67565b60206040518083038186803b15801561235e57600080fd5b505afa158015612372573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061239691906136b2565b1515146123ac5768319a2d041f4a6c00006123ca565b6123c9600368319a2d041f4a6c00006133c090919063ffffffff16565b5b90506123df818361304e90919063ffffffff16565b9150505b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9f50a866040518263ffffffff1660e01b815260040161243e9190613f67565b60206040518083038186803b15801561245657600080fd5b505afa15801561246a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061248e9190613745565b6013541180156124bc5750601a600086815260200190815260200160002060009054906101000a900460ff16155b156124e0576124dd6813c9647e25a99400008261304e90919063ffffffff16565b90505b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9f50a866040518263ffffffff1660e01b815260040161253b9190613f67565b60206040518083038186803b15801561255357600080fd5b505afa158015612567573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061258b9190613745565b6014541180156125b95750601b600086815260200190815260200160002060009054906101000a900460ff16155b156125dd576125da6818efc84ad0c7b000008261304e90919063ffffffff16565b90505b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9f50a866040518263ffffffff1660e01b81526004016126389190613f67565b60206040518083038186803b15801561265057600080fd5b505afa158015612664573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126889190613745565b6015541180156126b65750601c600086815260200190815260200160002060009054906101000a900460ff16155b156126da576126d7681dd0c885f9a0d800008261304e90919063ffffffff16565b90505b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9f50a866040518263ffffffff1660e01b81526004016127359190613f67565b60206040518083038186803b15801561274d57600080fd5b505afa158015612761573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127859190613745565b6016541180156127b35750601d600086815260200190815260200160002060009054906101000a900460ff16155b156127d7576127d46822b1c8c1227a0000008261304e90919063ffffffff16565b90505b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9f50a866040518263ffffffff1660e01b81526004016128329190613f67565b60206040518083038186803b15801561284a57600080fd5b505afa15801561285e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128829190613745565b6017541180156128b05750601e600086815260200190815260200160002060009054906101000a900460ff16155b156128d4576128d1682792c8fc4b532800008261304e90919063ffffffff16565b90505b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9f50a866040518263ffffffff1660e01b815260040161292f9190613f67565b60206040518083038186803b15801561294757600080fd5b505afa15801561295b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061297f9190613745565b6018541180156129ad5750601f600086815260200190815260200160002060009054906101000a900460ff16155b156129d1576129ce68319a2d041f4a6c00008261304e90919063ffffffff16565b90505b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9f50a866040518263ffffffff1660e01b8152600401612a2c9190613f67565b60206040518083038186803b158015612a4457600080fd5b505afa158015612a58573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a7c9190613745565b601954118015612aaa57506020600086815260200190815260200160002060009054906101000a900460ff16155b15612ace57612acb6863345a083e94d800008261304e90919063ffffffff16565b90505b8093505050505b919050565b60145481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600f5481565b6818efc84ad0c7b0000081565b682792c8fc4b5328000081565b60005481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bfc90613ee7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6c90613da7565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612d539190613f67565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc790613ec7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3790613d67565b60405180910390fd5b612e4b8383836133ec565b612eb7816040518060600160405280602681526020016143b760269139600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ff99092919063ffffffff16565b600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612f4c81600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461304e90919063ffffffff16565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612fec9190613f67565b60405180910390a3505050565b6000838311158290613041576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130389190613d45565b60405180910390fd5b5082840390509392505050565b6000818361305c9190614051565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130cb90613e87565b60405180910390fd5b6130e0826000836133ec565b61314c8160405180606001604052806022815260200161439560229139600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ff99092919063ffffffff16565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506131a4816007546133aa90919063ffffffff16565b600781905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516132089190613f67565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327b90613f27565b60405180910390fd5b613290600083836133ec565b6132a58160075461304e90919063ffffffff16565b6007819055506132fd81600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461304e90919063ffffffff16565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161339e9190613f67565b60405180910390a35050565b600081836133b89190614132565b905092915050565b600081836133ce91906140d8565b905092915050565b600081836133e491906140a7565b905092915050565b505050565b60006134046133ff84613fce565b613f9d565b9050808382526020820190508285602086028201111561342357600080fd5b60005b858110156134535781613439888261352e565b845260208401935060208301925050600181019050613426565b5050509392505050565b600061347061346b84613ffa565b613f9d565b90508281526020810184848401111561348857600080fd5b6134938482856141c5565b509392505050565b6000813590506134aa8161434f565b92915050565b6000815190506134bf8161434f565b92915050565b600082601f8301126134d657600080fd5b81356134e68482602086016133f1565b91505092915050565b6000815190506134fe81614366565b92915050565b600082601f83011261351557600080fd5b813561352584826020860161345d565b91505092915050565b60008135905061353d8161437d565b92915050565b6000815190506135528161437d565b92915050565b60006020828403121561356a57600080fd5b60006135788482850161349b565b91505092915050565b60006020828403121561359357600080fd5b60006135a1848285016134b0565b91505092915050565b600080604083850312156135bd57600080fd5b60006135cb8582860161349b565b92505060206135dc8582860161349b565b9150509250929050565b6000806000606084860312156135fb57600080fd5b60006136098682870161349b565b935050602061361a8682870161349b565b925050604061362b8682870161352e565b9150509250925092565b6000806040838503121561364857600080fd5b60006136568582860161349b565b92505060206136678582860161352e565b9150509250929050565b60006020828403121561368357600080fd5b600082013567ffffffffffffffff81111561369d57600080fd5b6136a9848285016134c5565b91505092915050565b6000602082840312156136c457600080fd5b60006136d2848285016134ef565b91505092915050565b6000602082840312156136ed57600080fd5b600082013567ffffffffffffffff81111561370757600080fd5b61371384828501613504565b91505092915050565b60006020828403121561372e57600080fd5b600061373c8482850161352e565b91505092915050565b60006020828403121561375757600080fd5b600061376584828501613543565b91505092915050565b61377781614178565b82525050565b61378681614184565b82525050565b60006137978261402a565b6137a18185614035565b93506137b18185602086016141d4565b6137ba8161433e565b840191505092915050565b60006137d08261402a565b6137da8185614046565b93506137ea8185602086016141d4565b80840191505092915050565b6000613803602383614035565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613869602483614035565b91507f4e465420617420696e64657820686173206e6f74206265656e206d696e74656460008301527f20796574000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138cf602283614035565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613935600e83614035565b91507f616c726561647920736f6c7665640000000000000000000000000000000000006000830152602082019050919050565b6000613975600b83614035565b91507f416c7265616479207365740000000000000000000000000000000000000000006000830152602082019050919050565b60006139b5601983614035565b91507f4f776e65722063616e6e6f7420626520302061646472657373000000000000006000830152602082019050919050565b60006139f5601c83614035565b91507f526964646c65732068617665206e6f74207374617274656420796574000000006000830152602082019050919050565b6000613a35601583614035565b91507f4475706c696361746520746f6b656e20696e64657800000000000000000000006000830152602082019050919050565b6000613a75601783614035565b91507f53656e646572206973206e6f7420746865206f776e65720000000000000000006000830152602082019050919050565b6000613ab5602183614035565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b1b601c83614035565b91507f456d697373696f6e20686173206e6f74207374617274656420796574000000006000830152602082019050919050565b6000613b5b602583614035565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613bc1602483614035565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c27601283614035565b91507f4e6f20616363756d756c6174656420504e5400000000000000000000000000006000830152602082019050919050565b6000613c67601f83614035565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6000613ca7600b83614035565b91507f57726f6e672067756573730000000000000000000000000000000000000000006000830152602082019050919050565b613ce3816141ae565b82525050565b613cf2816141b8565b82525050565b6000613d0482846137c5565b915081905092915050565b6000602082019050613d24600083018461376e565b92915050565b6000602082019050613d3f600083018461377d565b92915050565b60006020820190508181036000830152613d5f818461378c565b905092915050565b60006020820190508181036000830152613d80816137f6565b9050919050565b60006020820190508181036000830152613da08161385c565b9050919050565b60006020820190508181036000830152613dc0816138c2565b9050919050565b60006020820190508181036000830152613de081613928565b9050919050565b60006020820190508181036000830152613e0081613968565b9050919050565b60006020820190508181036000830152613e20816139a8565b9050919050565b60006020820190508181036000830152613e40816139e8565b9050919050565b60006020820190508181036000830152613e6081613a28565b9050919050565b60006020820190508181036000830152613e8081613a68565b9050919050565b60006020820190508181036000830152613ea081613aa8565b9050919050565b60006020820190508181036000830152613ec081613b0e565b9050919050565b60006020820190508181036000830152613ee081613b4e565b9050919050565b60006020820190508181036000830152613f0081613bb4565b9050919050565b60006020820190508181036000830152613f2081613c1a565b9050919050565b60006020820190508181036000830152613f4081613c5a565b9050919050565b60006020820190508181036000830152613f6081613c9a565b9050919050565b6000602082019050613f7c6000830184613cda565b92915050565b6000602082019050613f976000830184613ce9565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613fc457613fc361430f565b5b8060405250919050565b600067ffffffffffffffff821115613fe957613fe861430f565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156140155761401461430f565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600061405c826141ae565b9150614067836141ae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561409c5761409b614282565b5b828201905092915050565b60006140b2826141ae565b91506140bd836141ae565b9250826140cd576140cc6142b1565b5b828204905092915050565b60006140e3826141ae565b91506140ee836141ae565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561412757614126614282565b5b828202905092915050565b600061413d826141ae565b9150614148836141ae565b92508282101561415b5761415a614282565b5b828203905092915050565b60006141718261418e565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156141f25780820151818401526020810190506141d7565b83811115614201576000848401525b50505050565b6000600282049050600182168061421f57607f821691505b60208210811415614233576142326142e0565b5b50919050565b6000614244826141ae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561427757614276614282565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61435881614166565b811461436357600080fd5b50565b61436f81614178565b811461437a57600080fd5b50565b614386816141ae565b811461439157600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220caf7bcca8ef0d1b3056abfde3e0d2049f8a4c437d4db95660b36f6cfb813b91f64736f6c63430008000033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000612d1ca00000000000000000000000000000000000000000000000000000000061365720000000000000000000000000000000000000000000000000000000000000001250617261626c654e616d696e67546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003504e540000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061027f5760003560e01c806369e72f8d1161015c578063a9059cbb116100ce578063c9d71d5e11610087578063c9d71d5e146107c6578063dd62ed3e146107e4578063e26085e314610814578063e4e0c50f14610832578063e9f0cee014610850578063f9cfa06f1461086e5761027f565b8063a9059cbb146106ee578063b551b82f1461071e578063be90c6571461073c578063c03a030a1461075a578063c20bbc5914610778578063c607cde7146107965761027f565b806376e607561161012057806376e60756146106285780637774d438146106465780638368909c1461066457806395d89b411461068257806398d8b906146106a0578063a457c2d7146106be5761027f565b806369e72f8d146105705780636ba4c1381461058e5780636cdb1b75146105be57806370a08231146105da57806373422b311461060a5761027f565b80633c91b4bc116101f55780634eee59b3116101b95780634eee59b3146104be578063513da948146104da578063527ef9f4146104f857806365c8c6121461051657806366d5850714610534578063672403ea146105525761027f565b80633c91b4bc146104045780633cbc034b146104225780633d3728b51461044057806342966c68146104705780634d4edb91146104a05761027f565b8063233eae9311610247578063233eae931461032c57806323b872dd1461034a5780632ed6a14f1461037a578063313ce56714610398578063367df165146103b657806339509351146103d45761027f565b806306fdde0314610284578063095ea7b3146102a257806316602018146102d257806318160ddd146102f05780632152dc8b1461030e575b600080fd5b61028c61088c565b6040516102999190613d45565b60405180910390f35b6102bc60048036038101906102b79190613635565b61091e565b6040516102c99190613d0f565b60405180910390f35b6102da61093c565b6040516102e79190613f67565b60405180910390f35b6102f8610942565b6040516103059190613f67565b60405180910390f35b61031661094c565b6040516103239190613f67565b60405180910390f35b610334610952565b6040516103419190613f67565b60405180910390f35b610364600480360381019061035f91906135e6565b610958565b6040516103719190613d0f565b60405180910390f35b610382610a87565b60405161038f9190613f67565b60405180910390f35b6103a0610a8d565b6040516103ad9190613f82565b60405180910390f35b6103be610aa4565b6040516103cb9190613f67565b60405180910390f35b6103ee60048036038101906103e99190613635565b610ab1565b6040516103fb9190613d0f565b60405180910390f35b61040c610b64565b6040516104199190613d2a565b60405180910390f35b61042a610b6a565b6040516104379190613d2a565b60405180910390f35b61045a6004803603810190610455919061371c565b610b70565b6040516104679190613f67565b60405180910390f35b61048a6004803603810190610485919061371c565b610db2565b6040516104979190613d0f565b60405180910390f35b6104a8610dc7565b6040516104b59190613f67565b60405180910390f35b6104d860048036038101906104d391906136db565b610dcd565b005b6104e261114b565b6040516104ef9190613f67565b60405180910390f35b610500611151565b60405161050d9190613f67565b60405180910390f35b61051e61115e565b60405161052b9190613f67565b60405180910390f35b61053c61116b565b6040516105499190613f67565b60405180910390f35b61055a611178565b6040516105679190613f67565b60405180910390f35b61057861117e565b6040516105859190613d2a565b60405180910390f35b6105a860048036038101906105a39190613671565b611184565b6040516105b59190613f67565b60405180910390f35b6105d860048036038101906105d39190613558565b611d45565b005b6105f460048036038101906105ef9190613558565b611e1a565b6040516106019190613f67565b60405180910390f35b610612611e63565b60405161061f9190613f67565b60405180910390f35b610630611e68565b60405161063d9190613f67565b60405180910390f35b61064e611e75565b60405161065b9190613d2a565b60405180910390f35b61066c611e7b565b6040516106799190613f67565b60405180910390f35b61068a611e81565b6040516106979190613d45565b60405180910390f35b6106a8611f13565b6040516106b59190613f67565b60405180910390f35b6106d860048036038101906106d39190613635565b611f20565b6040516106e59190613d0f565b60405180910390f35b61070860048036038101906107039190613635565b611fed565b6040516107159190613d0f565b60405180910390f35b61072661200b565b6040516107339190613f67565b60405180910390f35b610744612011565b6040516107519190613d2a565b60405180910390f35b610762612017565b60405161076f9190613d2a565b60405180910390f35b61078061201d565b60405161078d9190613f67565b60405180910390f35b6107b060048036038101906107ab919061371c565b612023565b6040516107bd9190613f67565b60405180910390f35b6107ce612ada565b6040516107db9190613f67565b60405180910390f35b6107fe60048036038101906107f991906135aa565b612ae0565b60405161080b9190613f67565b60405180910390f35b61081c612b67565b6040516108299190613d2a565b60405180910390f35b61083a612b6d565b6040516108479190613f67565b60405180910390f35b610858612b7a565b6040516108659190613f67565b60405180910390f35b610876612b87565b6040516108839190613f67565b60405180910390f35b60606008805461089b90614207565b80601f01602080910402602001604051908101604052809291908181526020018280546108c790614207565b80156109145780601f106108e957610100808354040283529160200191610914565b820191906000526020600020905b8154815290600101906020018083116108f757829003601f168201915b5050505050905090565b600061093261092b612b8d565b8484612b95565b6001905092915050565b60155481565b6000600754905090565b60185481565b60175481565b6000610965848484612d60565b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a7c57610a7b846109c6612b8d565b610a76856040518060600160405280602881526020016143dd60289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610a2c612b8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ff99092919063ffffffff16565b612b95565b5b600190509392505050565b60125481565b6000600a60009054906101000a900460ff16905090565b68319a2d041f4a6c000081565b6000610b5a610abe612b8d565b84610b558560056000610acf612b8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461304e90919063ffffffff16565b612b95565b6001905092915050565b60105481565b600e5481565b60008073ffffffffffffffffffffffffffffffffffffffff16600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b8152600401610be49190613f67565b60206040518083038186803b158015610bfc57600080fd5b505afa158015610c10573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c349190613581565b73ffffffffffffffffffffffffffffffffffffffff161415610c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8290613e07565b60405180910390fd5b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610cf357600080fd5b505afa158015610d07573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d2b9190613745565b821115610d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6490613d87565b60405180910390fd5b60008060066000858152602001908152602001600020541415610d9257600154610da7565b60066000848152602001908152602001600020545b905080915050919050565b6000610dbe3383613064565b60019050919050565b60135481565b6012544211610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890613e27565b60405180910390fd5b600081604051602001610e249190613cf8565b604051602081830303815290604052805190602001209050600b54811480610e4d5750600c5481145b80610e595750600d5481145b80610e655750600e5481145b80610e715750600f5481145b80610e7d575060105481145b80610e89575060115481145b610ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebf90613f47565b60405180910390fd5b600b54811415610f2357600060135414610f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0e90613dc7565b60405180910390fd5b42601381905550611147565b600c54811415610f7e57600060145414610f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6990613dc7565b60405180910390fd5b42601481905550611146565b600d54811415610fd957600060155414610fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc490613dc7565b60405180910390fd5b42601581905550611145565b600e5481141561103457600060165414611028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101f90613dc7565b60405180910390fd5b42601681905550611144565b600f5481141561108f57600060175414611083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107a90613dc7565b60405180910390fd5b42601781905550611143565b6010548114156110ea576000601854146110de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d590613dc7565b60405180910390fd5b42601881905550611142565b60115481141561114157600060195414611139576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113090613dc7565b60405180910390fd5b426019819055505b5b5b5b5b5b5b5050565b60015481565b681dd0c885f9a0d8000081565b68319a2d041f4a6c000081565b6813c9647e25a994000081565b60165481565b600d5481565b600060015442116111ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c190613ea7565b60405180910390fd5b6000805b8351811015611ced57600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561123f57600080fd5b505afa158015611253573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112779190613745565b8482815181106112b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015111156112f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f090613d87565b60405180910390fd5b60006001826113089190614051565b90505b84518110156113ea5784818151811061134d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015185838151811061138e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015114156113d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ce90613e47565b60405180910390fd5b80806113e290614239565b91505061130b565b506000848281518110611426577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190503373ffffffffffffffffffffffffffffffffffffffff16600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016114a29190613f67565b60206040518083038186803b1580156114ba57600080fd5b505afa1580156114ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114f29190613581565b73ffffffffffffffffffffffffffffffffffffffff1614611548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153f90613e67565b60405180910390fd5b600061155382612023565b90506000811461158b57611570818561304e90919063ffffffff16565b93504260066000848152602001908152602001600020819055505b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9f50a836040518263ffffffff1660e01b81526004016115e69190613f67565b60206040518083038186803b1580156115fe57600080fd5b505afa158015611612573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116369190613745565b6013541180156116645750601a600083815260200190815260200160002060009054906101000a900460ff16155b15611696576001601a600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9f50a836040518263ffffffff1660e01b81526004016116f19190613f67565b60206040518083038186803b15801561170957600080fd5b505afa15801561171d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117419190613745565b60145411801561176f5750601b600083815260200190815260200160002060009054906101000a900460ff16155b156117a1576001601b600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9f50a836040518263ffffffff1660e01b81526004016117fc9190613f67565b60206040518083038186803b15801561181457600080fd5b505afa158015611828573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061184c9190613745565b60155411801561187a5750601c600083815260200190815260200160002060009054906101000a900460ff16155b156118ac576001601c600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9f50a836040518263ffffffff1660e01b81526004016119079190613f67565b60206040518083038186803b15801561191f57600080fd5b505afa158015611933573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119579190613745565b6016541180156119855750601d600083815260200190815260200160002060009054906101000a900460ff16155b156119b7576001601d600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9f50a836040518263ffffffff1660e01b8152600401611a129190613f67565b60206040518083038186803b158015611a2a57600080fd5b505afa158015611a3e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a629190613745565b601754118015611a905750601e600083815260200190815260200160002060009054906101000a900460ff16155b15611ac2576001601e600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9f50a836040518263ffffffff1660e01b8152600401611b1d9190613f67565b60206040518083038186803b158015611b3557600080fd5b505afa158015611b49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b6d9190613745565b601854118015611b9b5750601f600083815260200190815260200160002060009054906101000a900460ff16155b15611bcd576001601f600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9f50a836040518263ffffffff1660e01b8152600401611c289190613f67565b60206040518083038186803b158015611c4057600080fd5b505afa158015611c54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c789190613745565b601954118015611ca657506020600083815260200190815260200160002060009054906101000a900460ff16155b15611cd85760016020600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505b50508080611ce590614239565b9150506111ce565b506000811415611d32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2990613f07565b60405180910390fd5b611d3c3382613214565b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff16600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcd90613de7565b60405180910390fd5b80600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600381565b6863345a083e94d8000081565b600c5481565b60025481565b606060098054611e9090614207565b80601f0160208091040260200160405190810160405280929190818152602001828054611ebc90614207565b8015611f095780601f10611ede57610100808354040283529160200191611f09565b820191906000526020600020905b815481529060010190602001808311611eec57829003601f168201915b5050505050905090565b6822b1c8c1227a00000081565b6000611fe3611f2d612b8d565b84611fde856040518060600160405280602581526020016144056025913960056000611f57612b8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ff99092919063ffffffff16565b612b95565b6001905092915050565b6000612001611ffa612b8d565b8484612d60565b6001905092915050565b60035481565b600b5481565b60115481565b60195481565b60006001544211612069576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206090613ea7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b81526004016120dc9190613f67565b60206040518083038186803b1580156120f457600080fd5b505afa158015612108573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061212c9190613581565b73ffffffffffffffffffffffffffffffffffffffff161415612183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217a90613e07565b60405180910390fd5b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b1580156121eb57600080fd5b505afa1580156121ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122239190613745565b821115612265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225c90613d87565b60405180910390fd5b600061227083610b70565b90506002548110612285576000915050612ad5565b600060025442106122985760025461229a565b425b905060006122d96000546122cb6003546122bd87876133aa90919063ffffffff16565b6133c090919063ffffffff16565b6133d690919063ffffffff16565b90506001548314156123e357600060011515600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bc28d702886040518263ffffffff1660e01b81526004016123469190613f67565b60206040518083038186803b15801561235e57600080fd5b505afa158015612372573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061239691906136b2565b1515146123ac5768319a2d041f4a6c00006123ca565b6123c9600368319a2d041f4a6c00006133c090919063ffffffff16565b5b90506123df818361304e90919063ffffffff16565b9150505b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9f50a866040518263ffffffff1660e01b815260040161243e9190613f67565b60206040518083038186803b15801561245657600080fd5b505afa15801561246a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061248e9190613745565b6013541180156124bc5750601a600086815260200190815260200160002060009054906101000a900460ff16155b156124e0576124dd6813c9647e25a99400008261304e90919063ffffffff16565b90505b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9f50a866040518263ffffffff1660e01b815260040161253b9190613f67565b60206040518083038186803b15801561255357600080fd5b505afa158015612567573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061258b9190613745565b6014541180156125b95750601b600086815260200190815260200160002060009054906101000a900460ff16155b156125dd576125da6818efc84ad0c7b000008261304e90919063ffffffff16565b90505b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9f50a866040518263ffffffff1660e01b81526004016126389190613f67565b60206040518083038186803b15801561265057600080fd5b505afa158015612664573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126889190613745565b6015541180156126b65750601c600086815260200190815260200160002060009054906101000a900460ff16155b156126da576126d7681dd0c885f9a0d800008261304e90919063ffffffff16565b90505b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9f50a866040518263ffffffff1660e01b81526004016127359190613f67565b60206040518083038186803b15801561274d57600080fd5b505afa158015612761573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127859190613745565b6016541180156127b35750601d600086815260200190815260200160002060009054906101000a900460ff16155b156127d7576127d46822b1c8c1227a0000008261304e90919063ffffffff16565b90505b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9f50a866040518263ffffffff1660e01b81526004016128329190613f67565b60206040518083038186803b15801561284a57600080fd5b505afa15801561285e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128829190613745565b6017541180156128b05750601e600086815260200190815260200160002060009054906101000a900460ff16155b156128d4576128d1682792c8fc4b532800008261304e90919063ffffffff16565b90505b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9f50a866040518263ffffffff1660e01b815260040161292f9190613f67565b60206040518083038186803b15801561294757600080fd5b505afa15801561295b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061297f9190613745565b6018541180156129ad5750601f600086815260200190815260200160002060009054906101000a900460ff16155b156129d1576129ce68319a2d041f4a6c00008261304e90919063ffffffff16565b90505b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166312d9f50a866040518263ffffffff1660e01b8152600401612a2c9190613f67565b60206040518083038186803b158015612a4457600080fd5b505afa158015612a58573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a7c9190613745565b601954118015612aaa57506020600086815260200190815260200160002060009054906101000a900460ff16155b15612ace57612acb6863345a083e94d800008261304e90919063ffffffff16565b90505b8093505050505b919050565b60145481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600f5481565b6818efc84ad0c7b0000081565b682792c8fc4b5328000081565b60005481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bfc90613ee7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6c90613da7565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612d539190613f67565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc790613ec7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3790613d67565b60405180910390fd5b612e4b8383836133ec565b612eb7816040518060600160405280602681526020016143b760269139600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ff99092919063ffffffff16565b600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612f4c81600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461304e90919063ffffffff16565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612fec9190613f67565b60405180910390a3505050565b6000838311158290613041576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130389190613d45565b60405180910390fd5b5082840390509392505050565b6000818361305c9190614051565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130cb90613e87565b60405180910390fd5b6130e0826000836133ec565b61314c8160405180606001604052806022815260200161439560229139600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ff99092919063ffffffff16565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506131a4816007546133aa90919063ffffffff16565b600781905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516132089190613f67565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327b90613f27565b60405180910390fd5b613290600083836133ec565b6132a58160075461304e90919063ffffffff16565b6007819055506132fd81600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461304e90919063ffffffff16565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161339e9190613f67565b60405180910390a35050565b600081836133b89190614132565b905092915050565b600081836133ce91906140d8565b905092915050565b600081836133e491906140a7565b905092915050565b505050565b60006134046133ff84613fce565b613f9d565b9050808382526020820190508285602086028201111561342357600080fd5b60005b858110156134535781613439888261352e565b845260208401935060208301925050600181019050613426565b5050509392505050565b600061347061346b84613ffa565b613f9d565b90508281526020810184848401111561348857600080fd5b6134938482856141c5565b509392505050565b6000813590506134aa8161434f565b92915050565b6000815190506134bf8161434f565b92915050565b600082601f8301126134d657600080fd5b81356134e68482602086016133f1565b91505092915050565b6000815190506134fe81614366565b92915050565b600082601f83011261351557600080fd5b813561352584826020860161345d565b91505092915050565b60008135905061353d8161437d565b92915050565b6000815190506135528161437d565b92915050565b60006020828403121561356a57600080fd5b60006135788482850161349b565b91505092915050565b60006020828403121561359357600080fd5b60006135a1848285016134b0565b91505092915050565b600080604083850312156135bd57600080fd5b60006135cb8582860161349b565b92505060206135dc8582860161349b565b9150509250929050565b6000806000606084860312156135fb57600080fd5b60006136098682870161349b565b935050602061361a8682870161349b565b925050604061362b8682870161352e565b9150509250925092565b6000806040838503121561364857600080fd5b60006136568582860161349b565b92505060206136678582860161352e565b9150509250929050565b60006020828403121561368357600080fd5b600082013567ffffffffffffffff81111561369d57600080fd5b6136a9848285016134c5565b91505092915050565b6000602082840312156136c457600080fd5b60006136d2848285016134ef565b91505092915050565b6000602082840312156136ed57600080fd5b600082013567ffffffffffffffff81111561370757600080fd5b61371384828501613504565b91505092915050565b60006020828403121561372e57600080fd5b600061373c8482850161352e565b91505092915050565b60006020828403121561375757600080fd5b600061376584828501613543565b91505092915050565b61377781614178565b82525050565b61378681614184565b82525050565b60006137978261402a565b6137a18185614035565b93506137b18185602086016141d4565b6137ba8161433e565b840191505092915050565b60006137d08261402a565b6137da8185614046565b93506137ea8185602086016141d4565b80840191505092915050565b6000613803602383614035565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613869602483614035565b91507f4e465420617420696e64657820686173206e6f74206265656e206d696e74656460008301527f20796574000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138cf602283614035565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613935600e83614035565b91507f616c726561647920736f6c7665640000000000000000000000000000000000006000830152602082019050919050565b6000613975600b83614035565b91507f416c7265616479207365740000000000000000000000000000000000000000006000830152602082019050919050565b60006139b5601983614035565b91507f4f776e65722063616e6e6f7420626520302061646472657373000000000000006000830152602082019050919050565b60006139f5601c83614035565b91507f526964646c65732068617665206e6f74207374617274656420796574000000006000830152602082019050919050565b6000613a35601583614035565b91507f4475706c696361746520746f6b656e20696e64657800000000000000000000006000830152602082019050919050565b6000613a75601783614035565b91507f53656e646572206973206e6f7420746865206f776e65720000000000000000006000830152602082019050919050565b6000613ab5602183614035565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b1b601c83614035565b91507f456d697373696f6e20686173206e6f74207374617274656420796574000000006000830152602082019050919050565b6000613b5b602583614035565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613bc1602483614035565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c27601283614035565b91507f4e6f20616363756d756c6174656420504e5400000000000000000000000000006000830152602082019050919050565b6000613c67601f83614035565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6000613ca7600b83614035565b91507f57726f6e672067756573730000000000000000000000000000000000000000006000830152602082019050919050565b613ce3816141ae565b82525050565b613cf2816141b8565b82525050565b6000613d0482846137c5565b915081905092915050565b6000602082019050613d24600083018461376e565b92915050565b6000602082019050613d3f600083018461377d565b92915050565b60006020820190508181036000830152613d5f818461378c565b905092915050565b60006020820190508181036000830152613d80816137f6565b9050919050565b60006020820190508181036000830152613da08161385c565b9050919050565b60006020820190508181036000830152613dc0816138c2565b9050919050565b60006020820190508181036000830152613de081613928565b9050919050565b60006020820190508181036000830152613e0081613968565b9050919050565b60006020820190508181036000830152613e20816139a8565b9050919050565b60006020820190508181036000830152613e40816139e8565b9050919050565b60006020820190508181036000830152613e6081613a28565b9050919050565b60006020820190508181036000830152613e8081613a68565b9050919050565b60006020820190508181036000830152613ea081613aa8565b9050919050565b60006020820190508181036000830152613ec081613b0e565b9050919050565b60006020820190508181036000830152613ee081613b4e565b9050919050565b60006020820190508181036000830152613f0081613bb4565b9050919050565b60006020820190508181036000830152613f2081613c1a565b9050919050565b60006020820190508181036000830152613f4081613c5a565b9050919050565b60006020820190508181036000830152613f6081613c9a565b9050919050565b6000602082019050613f7c6000830184613cda565b92915050565b6000602082019050613f976000830184613ce9565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613fc457613fc361430f565b5b8060405250919050565b600067ffffffffffffffff821115613fe957613fe861430f565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156140155761401461430f565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600061405c826141ae565b9150614067836141ae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561409c5761409b614282565b5b828201905092915050565b60006140b2826141ae565b91506140bd836141ae565b9250826140cd576140cc6142b1565b5b828204905092915050565b60006140e3826141ae565b91506140ee836141ae565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561412757614126614282565b5b828202905092915050565b600061413d826141ae565b9150614148836141ae565b92508282101561415b5761415a614282565b5b828203905092915050565b60006141718261418e565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156141f25780820151818401526020810190506141d7565b83811115614201576000848401525b50505050565b6000600282049050600182168061421f57607f821691505b60208210811415614233576142326142e0565b5b50919050565b6000614244826141ae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561427757614276614282565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61435881614166565b811461436357600080fd5b50565b61436f81614178565b811461437a57600080fd5b50565b614386816141ae565b811461439157600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220caf7bcca8ef0d1b3056abfde3e0d2049f8a4c437d4db95660b36f6cfb813b91f64736f6c63430008000033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000612d1ca00000000000000000000000000000000000000000000000000000000061365720000000000000000000000000000000000000000000000000000000000000001250617261626c654e616d696e67546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003504e540000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): ParableNamingToken
Arg [1] : symbol (string): PNT
Arg [2] : emissionStartTimestamp (uint256): 1630346400
Arg [3] : riddleStartTimestamp (uint256): 1630951200

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 00000000000000000000000000000000000000000000000000000000612d1ca0
Arg [3] : 0000000000000000000000000000000000000000000000000000000061365720
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [5] : 50617261626c654e616d696e67546f6b656e0000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 504e540000000000000000000000000000000000000000000000000000000000


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.