ETH Price: $2,269.79 (+2.76%)

Token

NOUN (NOUN)
 

Overview

Max Total Supply

8,130 NOUN

Holders

4

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
100 NOUN

Value
$0.00
0x7fad6ac16a5004fea4866961d4a1b55746de2e6f
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:
YieldToken

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : NounsToken.sol
// SPDX-License-Identifier: NONE

//  author Name: Alex Yap
//  author-email: <[email protected]>
//  author-website: https://alexyap.dev

pragma solidity ^0.8.0;

interface INouns3d {
    function balanceN3D(address _user) external view returns(uint256);
}

// Part: OpenZeppelin/[email protected]/Address
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract YieldToken is ERC20, Ownable {
    //Start 1641600000 - Sat, January 8, 2022 12:00:00 AM 
    //End   1799280000 - Thu, January 7, 2027 12:00:00 AM, 5 years, 157680000
    uint256 constant public END = 1799280000;
    uint256 constant public BASE_RATE = 10 ether; 

    // max supply 
    uint256 public constant MAX_YIELD_SUPPLY = 135050000 ether;
    uint256 public constant MAX_COMMUNITY_FUND_SUPPLY = 100000000 ether;
    uint256 public constant MAX_PUBLIC_SALES_SUPPLY = 50000000 ether;
    uint256 public constant MAX_TEAM_RESERVE_SUPPLY = 30000000 ether;

    // minted amount
    uint256 public totalYieldSupply;
    uint256 public totalCommunityFundSupply;
    uint256 public totalPublicSalesSupply;
    uint256 public totalTeamReserveSupply;

    mapping(address => bool) councillors;
    mapping(address => uint256) public rewards;
    mapping(address => uint256) public lastUpdate;

    INouns3d public nouns3dContract;

    event CouncillorAdded(address councillor);
    event CouncillorRemoved(address councillor);
    event RewardPaid(address indexed user, uint256 reward);

    constructor(address _nouns3d) ERC20("NOUN", "NOUN") {
        nouns3dContract = INouns3d(_nouns3d);
        addCouncillor(_nouns3d);
    }

    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    function isCouncillor(address _councillor) public view returns(bool) {
        return councillors[_councillor];
    }

    function addCouncillor(address _councillor) public onlyOwner {
       require(_councillor != address(0), "Cannot add null address");
       councillors[_councillor] = true;
       emit CouncillorAdded(_councillor);
    }

    function removeCouncillor(address _councillor) public onlyOwner {
        require(isCouncillor(_councillor), "Not a councillor");
        delete councillors[_councillor];
        emit CouncillorRemoved(_councillor);
    }

    // updated_amount = (balanceN3D(user) * base_rate * delta / 86400) + amount * initial rate
    function updateRewardOnMint(address _user) external {
        require(councillors[msg.sender], "Unauthorized");

        uint256 time = min(block.timestamp, END);
        uint256 timerUser = lastUpdate[_user];
        uint256 timerRemainder = 0;
        if (timerUser > 0) {
            rewards[_user] = rewards[_user] + (nouns3dContract.balanceN3D(_user) * BASE_RATE * ((time - timerUser) / 86400));
            timerRemainder = (time - timerUser) % 86400;
        } else {
            rewards[_user] = 0;
        }
        
        lastUpdate[_user] = time - timerRemainder;
    }

    // called on transfers
    function updateReward(address _from, address _to, uint256 _tokenId) external {
        require(councillors[msg.sender], "Unauthorized");
        
        if (_tokenId < 7400) {
            uint256 time = min(block.timestamp, END);
            uint256 timerFrom = lastUpdate[_from];
            uint256 timerRemainderFrom = 0;
            
            if (timerFrom > 0) {
                rewards[_from] += nouns3dContract.balanceN3D(_from) * BASE_RATE * ((time - timerFrom) / 86400);
                timerRemainderFrom = (time - timerFrom) % 86400;
            }

            if (timerFrom != END) {
                lastUpdate[_from] = time - timerRemainderFrom;
            }

            if (_to != address(0)) {
                uint256 timerTo = lastUpdate[_to];
                uint256 timerRemainderTo = 0;

                if (timerTo > 0) {
                    rewards[_to] += nouns3dContract.balanceN3D(_to) * BASE_RATE * ((time - timerTo) / 86400);
                    timerRemainderTo = (time - timerTo) % 86400;
                }

                if (timerTo != END) {
                    lastUpdate[_to] = time - timerRemainderTo;
                }
            }
        }
    }

    function getReward(address _to) external {
        require(councillors[msg.sender], "Unauthorized");
        
        uint256 reward = rewards[_to];
        if (reward > 0) {
            require(
                totalYieldSupply + reward <= MAX_YIELD_SUPPLY,
                "Maximum yield supply reached"
            );

            rewards[_to] = 0;
            totalYieldSupply += reward;
            
            _mint(_to, reward);
            emit RewardPaid(_to, reward);
        }
    }

    function communityFundMint(address to, uint256 amount) external {
        require(councillors[msg.sender], "Unauthorized");
        require(
            totalCommunityFundSupply + amount <= MAX_COMMUNITY_FUND_SUPPLY,
            "Maximum community fund supply reached"
        );

        totalCommunityFundSupply += amount;
        _mint(to, amount);
    }

    function publicSalesMint(address to, uint256 amount) external {
        require(councillors[msg.sender], "Unauthorized");
        require(
            totalPublicSalesSupply + amount <= MAX_PUBLIC_SALES_SUPPLY,
            "Maximum public sales supply reached"
        );

        totalPublicSalesSupply += amount;
        _mint(to, amount);
    }

    function teamReserveMint(address to, uint256 amount) external {
        require(councillors[msg.sender], "Unauthorized");
        require(
            totalTeamReserveSupply + amount <= MAX_TEAM_RESERVE_SUPPLY,
            "Maximum team reserve supply reached"
        );

        totalTeamReserveSupply += amount;
        _mint(to, amount);
    }

    function burn(address _from, uint256 _amount) external {
        require(councillors[msg.sender], "Unauthorized");
        
        _burn(_from, _amount);
    }

    function getTotalClaimable(address _user) external view returns(uint256) {
        uint256 time = min(block.timestamp, END);
        uint256 pending = nouns3dContract.balanceN3D(_user) * BASE_RATE * ((time - lastUpdate[_user]) / 86400);
        return rewards[_user] + pending;
    }
}

File 2 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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 this function is
     * overridden;
     *
     * 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 virtual override returns (uint8) {
        return 18;
    }

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

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

    /**
     * @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);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        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] + addedValue);
        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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This 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);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(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:
     *
     * - `account` 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 += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(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);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(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 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 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 {}

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

File 3 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 4 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/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);

    /**
     * @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 5 of 6 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 6 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_nouns3d","type":"address"}],"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":false,"internalType":"address","name":"councillor","type":"address"}],"name":"CouncillorAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"councillor","type":"address"}],"name":"CouncillorRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardPaid","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":"BASE_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"END","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_COMMUNITY_FUND_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_SALES_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TEAM_RESERVE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_YIELD_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_councillor","type":"address"}],"name":"addCouncillor","outputs":[],"stateMutability":"nonpayable","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":[{"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":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"communityFundMint","outputs":[],"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":[{"internalType":"address","name":"_to","type":"address"}],"name":"getReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getTotalClaimable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"address","name":"_councillor","type":"address"}],"name":"isCouncillor","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastUpdate","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":"nouns3dContract","outputs":[{"internalType":"contract INouns3d","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicSalesMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_councillor","type":"address"}],"name":"removeCouncillor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"teamReserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalCommunityFundSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPublicSalesSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTeamReserveSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalYieldSupply","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"updateReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"updateRewardOnMint","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200400f3803806200400f8339818101604052810190620000379190620004f8565b6040518060400160405280600481526020017f4e4f554e000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4e4f554e000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000bb929190620003de565b508060049080519060200190620000d4929190620003de565b505050620000f7620000eb6200015060201b60201c565b6200015860201b60201c565b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000149816200021e60201b60201c565b50620006b2565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200022e6200015060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000254620003b460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002ad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002a4906200058b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141562000320576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200031790620005fd565b60405180910390fd5b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f683022275b534cbe101e7fbecfa9dba48b55d462866355b31b809bca1c35600181604051620003a9919062000630565b60405180910390a150565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003ec906200067c565b90600052602060002090601f0160209004810192826200041057600085556200045c565b82601f106200042b57805160ff19168380011785556200045c565b828001600101855582156200045c579182015b828111156200045b5782518255916020019190600101906200043e565b5b5090506200046b91906200046f565b5090565b5b808211156200048a57600081600090555060010162000470565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620004c08262000493565b9050919050565b620004d281620004b3565b8114620004de57600080fd5b50565b600081519050620004f281620004c7565b92915050565b6000602082840312156200051157620005106200048e565b5b60006200052184828501620004e1565b91505092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620005736020836200052a565b915062000580826200053b565b602082019050919050565b60006020820190508181036000830152620005a68162000564565b9050919050565b7f43616e6e6f7420616464206e756c6c2061646472657373000000000000000000600082015250565b6000620005e56017836200052a565b9150620005f282620005ad565b602082019050919050565b600060208201905081810360008301526200061881620005d6565b9050919050565b6200062a81620004b3565b82525050565b60006020820190506200064760008301846200061f565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200069557607f821691505b60208210811415620006ac57620006ab6200064d565b5b50919050565b61394d80620006c26000396000f3fe608060405234801561001057600080fd5b50600436106102325760003560e01c8063656229cc11610130578063a9059cbb116100b8578063e07cddea1161007c578063e07cddea146106b7578063efe7a504146106d3578063f2fde38b146106f1578063fd090b661461070d578063fd7a3a151461072b57610232565b8063a9059cbb146105ef578063c00007b01461061f578063cb03fb1e1461063b578063d37c9b6f1461066b578063dd62ed3e1461068757610232565b80638da5cb5b116100ff5780638da5cb5b1461054b5780638f7985a81461056957806395d89b41146105855780639dc29fac146105a3578063a457c2d7146105bf57610232565b8063656229cc146104d757806370a08231146104f3578063715018a61461052357806372185e201461052d57610232565b806321041513116101be578063313ce56711610182578063313ce5671461042f5780633177d1d11461044d578063395093511461046b57806341910f901461049b5780634cbc0047146104b957610232565b8063210415131461036557806323b872dd1461039557806324a4558e146103c5578063267e8ab6146103e35780632c8e8dfa1461041357610232565b80630d0fbe9b116102055780630d0fbe9b146102d3578063157cc8d8146102ef57806315f27dac1461030b57806317ffe6701461032957806318160ddd1461034757610232565b8063044760381461023757806306fdde03146102555780630700037d14610273578063095ea7b3146102a3575b600080fd5b61023f610749565b60405161024c9190612968565b60405180910390f35b61025d61074f565b60405161026a9190612a1c565b60405180910390f35b61028d60048036038101906102889190612aa1565b6107e1565b60405161029a9190612968565b60405180910390f35b6102bd60048036038101906102b89190612afa565b6107f9565b6040516102ca9190612b55565b60405180910390f35b6102ed60048036038101906102e89190612aa1565b610817565b005b61030960048036038101906103049190612afa565b610995565b005b610313610aa3565b6040516103209190612bcf565b60405180910390f35b610331610ac9565b60405161033e9190612968565b60405180910390f35b61034f610ad8565b60405161035c9190612968565b60405180910390f35b61037f600480360381019061037a9190612aa1565b610ae2565b60405161038c9190612b55565b60405180910390f35b6103af60048036038101906103aa9190612bea565b610b38565b6040516103bc9190612b55565b60405180910390f35b6103cd610c30565b6040516103da9190612968565b60405180910390f35b6103fd60048036038101906103f89190612aa1565b610c36565b60405161040a9190612968565b60405180910390f35b61042d60048036038101906104289190612bea565b610dc2565b005b6104376112a4565b6040516104449190612c59565b60405180910390f35b6104556112ad565b6040516104629190612968565b60405180910390f35b61048560048036038101906104809190612afa565b6112bc565b6040516104929190612b55565b60405180910390f35b6104a3611368565b6040516104b09190612968565b60405180910390f35b6104c1611374565b6040516104ce9190612968565b60405180910390f35b6104f160048036038101906104ec9190612afa565b61137a565b005b61050d60048036038101906105089190612aa1565b611488565b60405161051a9190612968565b60405180910390f35b61052b6114d0565b005b610535611558565b6040516105429190612968565b60405180910390f35b610553611567565b6040516105609190612c83565b60405180910390f35b610583600480360381019061057e9190612aa1565b611591565b005b61058d6118a8565b60405161059a9190612a1c565b60405180910390f35b6105bd60048036038101906105b89190612afa565b61193a565b005b6105d960048036038101906105d49190612afa565b6119d4565b6040516105e69190612b55565b60405180910390f35b61060960048036038101906106049190612afa565b611abf565b6040516106169190612b55565b60405180910390f35b61063960048036038101906106349190612aa1565b611add565b005b61065560048036038101906106509190612aa1565b611ccc565b6040516106629190612968565b60405180910390f35b61068560048036038101906106809190612afa565b611ce4565b005b6106a1600480360381019061069c9190612c9e565b611df2565b6040516106ae9190612968565b60405180910390f35b6106d160048036038101906106cc9190612aa1565b611e79565b005b6106db611fc6565b6040516106e89190612968565b60405180910390f35b61070b60048036038101906107069190612aa1565b611fce565b005b6107156120c6565b6040516107229190612968565b60405180910390f35b6107336120cc565b6040516107409190612968565b60405180910390f35b60085481565b60606003805461075e90612d0d565b80601f016020809104026020016040519081016040528092919081815260200182805461078a90612d0d565b80156107d75780601f106107ac576101008083540402835291602001916107d7565b820191906000526020600020905b8154815290600101906020018083116107ba57829003601f168201915b5050505050905090565b600b6020528060005260406000206000915090505481565b600061080d6108066120db565b84846120e3565b6001905092915050565b61081f6120db565b73ffffffffffffffffffffffffffffffffffffffff1661083d611567565b73ffffffffffffffffffffffffffffffffffffffff1614610893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088a90612d8b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fa90612df7565b60405180910390fd5b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f683022275b534cbe101e7fbecfa9dba48b55d462866355b31b809bca1c3560018160405161098a9190612c83565b60405180910390a150565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1890612e63565b60405180910390fd5b6a52b7d2dcc80cd2e400000081600754610a3b9190612eb2565b1115610a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7390612f7a565b60405180910390fd5b8060076000828254610a8e9190612eb2565b92505081905550610a9f82826122ae565b5050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6a295be96e6406697200000081565b6000600254905090565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000610b4584848461240e565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b906120db565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c079061300c565b60405180910390fd5b610c2485610c1c6120db565b8584036120e3565b60019150509392505050565b60095481565b600080610c4742636b3ed58061268f565b9050600062015180600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483610c9a919061302c565b610ca4919061308f565b678ac7230489e80000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cf93c5f2876040518263ffffffff1660e01b8152600401610d089190612c83565b60206040518083038186803b158015610d2057600080fd5b505afa158015610d34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5891906130d5565b610d629190613102565b610d6c9190613102565b905080600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610db99190612eb2565b92505050919050565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4590612e63565b60405180910390fd5b611ce881101561129f576000610e6842636b3ed58061268f565b90506000600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008082111561100c57620151808284610ec8919061302c565b610ed2919061308f565b678ac7230489e80000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cf93c5f2896040518263ffffffff1660e01b8152600401610f369190612c83565b60206040518083038186803b158015610f4e57600080fd5b505afa158015610f62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f8691906130d5565b610f909190613102565b610f9a9190613102565b600b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fe89190612eb2565b92505081905550620151808284610fff919061302c565b611009919061315c565b90505b636b3ed5808214611067578083611023919061302c565b600c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161461129b576000600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008082111561123d576201518082866110f9919061302c565b611103919061308f565b678ac7230489e80000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cf93c5f28a6040518263ffffffff1660e01b81526004016111679190612c83565b60206040518083038186803b15801561117f57600080fd5b505afa158015611193573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111b791906130d5565b6111c19190613102565b6111cb9190613102565b600b60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112199190612eb2565b92505081905550620151808286611230919061302c565b61123a919061315c565b90505b636b3ed5808214611298578085611254919061302c565b600c60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50505b5050505b505050565b60006012905090565b6a6fb5f32b7201f56240000081565b600061135e6112c96120db565b8484600160006112d76120db565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113599190612eb2565b6120e3565b6001905092915050565b678ac7230489e8000081565b60075481565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fd90612e63565b60405180910390fd5b6a295be96e64066972000000816008546114209190612eb2565b1115611461576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611458906131ff565b60405180910390fd5b80600860008282546114739190612eb2565b9250508190555061148482826122ae565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114d86120db565b73ffffffffffffffffffffffffffffffffffffffff166114f6611567565b73ffffffffffffffffffffffffffffffffffffffff161461154c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154390612d8b565b60405180910390fd5b61155660006126a8565b565b6a18d0bf423c03d8de00000081565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661161d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161490612e63565b60405180910390fd5b600061162d42636b3ed58061268f565b90506000600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008082111561180d5762015180828461168d919061302c565b611697919061308f565b678ac7230489e80000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cf93c5f2876040518263ffffffff1660e01b81526004016116fb9190612c83565b60206040518083038186803b15801561171357600080fd5b505afa158015611727573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061174b91906130d5565b6117559190613102565b61175f9190613102565b600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117a99190612eb2565b600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506201518082846117fc919061302c565b611806919061315c565b9050611853565b6000600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b808361185f919061302c565b600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b6060600480546118b790612d0d565b80601f01602080910402602001604051908101604052809291908181526020018280546118e390612d0d565b80156119305780601f1061190557610100808354040283529160200191611930565b820191906000526020600020905b81548152906001019060200180831161191357829003601f168201915b5050505050905090565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166119c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bd90612e63565b60405180910390fd5b6119d0828261276e565b5050565b600080600160006119e36120db565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9790613291565b60405180910390fd5b611ab4611aab6120db565b858584036120e3565b600191505092915050565b6000611ad3611acc6120db565b848461240e565b6001905092915050565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6090612e63565b60405180910390fd5b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000811115611cc8576a6fb5f32b7201f56240000081600654611bd09190612eb2565b1115611c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c08906132fd565b60405180910390fd5b6000600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508060066000828254611c689190612eb2565b92505081905550611c7982826122ae565b8173ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e048682604051611cbf9190612968565b60405180910390a25b5050565b600c6020528060005260406000206000915090505481565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6790612e63565b60405180910390fd5b6a18d0bf423c03d8de00000081600954611d8a9190612eb2565b1115611dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc29061338f565b60405180910390fd5b8060096000828254611ddd9190612eb2565b92505081905550611dee82826122ae565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611e816120db565b73ffffffffffffffffffffffffffffffffffffffff16611e9f611567565b73ffffffffffffffffffffffffffffffffffffffff1614611ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eec90612d8b565b60405180910390fd5b611efe81610ae2565b611f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f34906133fb565b60405180910390fd5b600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff02191690557fe1d518851a4a8f6d2bdc707d44edf660e2ad1db5a7667376cf7c178eaeec0b4881604051611fbb9190612c83565b60405180910390a150565b636b3ed58081565b611fd66120db565b73ffffffffffffffffffffffffffffffffffffffff16611ff4611567565b73ffffffffffffffffffffffffffffffffffffffff161461204a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204190612d8b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b19061348d565b60405180910390fd5b6120c3816126a8565b50565b60065481565b6a52b7d2dcc80cd2e400000081565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214a9061351f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ba906135b1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516122a19190612968565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561231e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123159061361d565b60405180910390fd5b61232a60008383612945565b806002600082825461233c9190612eb2565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123919190612eb2565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516123f69190612968565b60405180910390a361240a6000838361294a565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561247e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612475906136af565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e590613741565b60405180910390fd5b6124f9838383612945565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561257f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612576906137d3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126129190612eb2565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516126769190612968565b60405180910390a361268984848461294a565b50505050565b600081831061269e57816126a0565b825b905092915050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d590613865565b60405180910390fd5b6127ea82600083612945565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612870576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612867906138f7565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546128c7919061302c565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161292c9190612968565b60405180910390a36129408360008461294a565b505050565b505050565b505050565b6000819050919050565b6129628161294f565b82525050565b600060208201905061297d6000830184612959565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156129bd5780820151818401526020810190506129a2565b838111156129cc576000848401525b50505050565b6000601f19601f8301169050919050565b60006129ee82612983565b6129f8818561298e565b9350612a0881856020860161299f565b612a11816129d2565b840191505092915050565b60006020820190508181036000830152612a3681846129e3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a6e82612a43565b9050919050565b612a7e81612a63565b8114612a8957600080fd5b50565b600081359050612a9b81612a75565b92915050565b600060208284031215612ab757612ab6612a3e565b5b6000612ac584828501612a8c565b91505092915050565b612ad78161294f565b8114612ae257600080fd5b50565b600081359050612af481612ace565b92915050565b60008060408385031215612b1157612b10612a3e565b5b6000612b1f85828601612a8c565b9250506020612b3085828601612ae5565b9150509250929050565b60008115159050919050565b612b4f81612b3a565b82525050565b6000602082019050612b6a6000830184612b46565b92915050565b6000819050919050565b6000612b95612b90612b8b84612a43565b612b70565b612a43565b9050919050565b6000612ba782612b7a565b9050919050565b6000612bb982612b9c565b9050919050565b612bc981612bae565b82525050565b6000602082019050612be46000830184612bc0565b92915050565b600080600060608486031215612c0357612c02612a3e565b5b6000612c1186828701612a8c565b9350506020612c2286828701612a8c565b9250506040612c3386828701612ae5565b9150509250925092565b600060ff82169050919050565b612c5381612c3d565b82525050565b6000602082019050612c6e6000830184612c4a565b92915050565b612c7d81612a63565b82525050565b6000602082019050612c986000830184612c74565b92915050565b60008060408385031215612cb557612cb4612a3e565b5b6000612cc385828601612a8c565b9250506020612cd485828601612a8c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612d2557607f821691505b60208210811415612d3957612d38612cde565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612d7560208361298e565b9150612d8082612d3f565b602082019050919050565b60006020820190508181036000830152612da481612d68565b9050919050565b7f43616e6e6f7420616464206e756c6c2061646472657373000000000000000000600082015250565b6000612de160178361298e565b9150612dec82612dab565b602082019050919050565b60006020820190508181036000830152612e1081612dd4565b9050919050565b7f556e617574686f72697a65640000000000000000000000000000000000000000600082015250565b6000612e4d600c8361298e565b9150612e5882612e17565b602082019050919050565b60006020820190508181036000830152612e7c81612e40565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ebd8261294f565b9150612ec88361294f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612efd57612efc612e83565b5b828201905092915050565b7f4d6178696d756d20636f6d6d756e6974792066756e6420737570706c7920726560008201527f6163686564000000000000000000000000000000000000000000000000000000602082015250565b6000612f6460258361298e565b9150612f6f82612f08565b604082019050919050565b60006020820190508181036000830152612f9381612f57565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000612ff660288361298e565b915061300182612f9a565b604082019050919050565b6000602082019050818103600083015261302581612fe9565b9050919050565b60006130378261294f565b91506130428361294f565b92508282101561305557613054612e83565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061309a8261294f565b91506130a58361294f565b9250826130b5576130b4613060565b5b828204905092915050565b6000815190506130cf81612ace565b92915050565b6000602082840312156130eb576130ea612a3e565b5b60006130f9848285016130c0565b91505092915050565b600061310d8261294f565b91506131188361294f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561315157613150612e83565b5b828202905092915050565b60006131678261294f565b91506131728361294f565b92508261318257613181613060565b5b828206905092915050565b7f4d6178696d756d207075626c69632073616c657320737570706c79207265616360008201527f6865640000000000000000000000000000000000000000000000000000000000602082015250565b60006131e960238361298e565b91506131f48261318d565b604082019050919050565b60006020820190508181036000830152613218816131dc565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061327b60258361298e565b91506132868261321f565b604082019050919050565b600060208201905081810360008301526132aa8161326e565b9050919050565b7f4d6178696d756d207969656c6420737570706c79207265616368656400000000600082015250565b60006132e7601c8361298e565b91506132f2826132b1565b602082019050919050565b60006020820190508181036000830152613316816132da565b9050919050565b7f4d6178696d756d207465616d207265736572766520737570706c79207265616360008201527f6865640000000000000000000000000000000000000000000000000000000000602082015250565b600061337960238361298e565b91506133848261331d565b604082019050919050565b600060208201905081810360008301526133a88161336c565b9050919050565b7f4e6f74206120636f756e63696c6c6f7200000000000000000000000000000000600082015250565b60006133e560108361298e565b91506133f0826133af565b602082019050919050565b60006020820190508181036000830152613414816133d8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061347760268361298e565b91506134828261341b565b604082019050919050565b600060208201905081810360008301526134a68161346a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061350960248361298e565b9150613514826134ad565b604082019050919050565b60006020820190508181036000830152613538816134fc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061359b60228361298e565b91506135a68261353f565b604082019050919050565b600060208201905081810360008301526135ca8161358e565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000613607601f8361298e565b9150613612826135d1565b602082019050919050565b60006020820190508181036000830152613636816135fa565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061369960258361298e565b91506136a48261363d565b604082019050919050565b600060208201905081810360008301526136c88161368c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061372b60238361298e565b9150613736826136cf565b604082019050919050565b6000602082019050818103600083015261375a8161371e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006137bd60268361298e565b91506137c882613761565b604082019050919050565b600060208201905081810360008301526137ec816137b0565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061384f60218361298e565b915061385a826137f3565b604082019050919050565b6000602082019050818103600083015261387e81613842565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006138e160228361298e565b91506138ec82613885565b604082019050919050565b60006020820190508181036000830152613910816138d4565b905091905056fea2646970667358221220f8a303d68315a79d71cfe0e29a068c50f4248d854beb3d8696d68ef7ac80167464736f6c6343000809003300000000000000000000000028f3acc53cc541a5e159ddc7c73a29f96679d873

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102325760003560e01c8063656229cc11610130578063a9059cbb116100b8578063e07cddea1161007c578063e07cddea146106b7578063efe7a504146106d3578063f2fde38b146106f1578063fd090b661461070d578063fd7a3a151461072b57610232565b8063a9059cbb146105ef578063c00007b01461061f578063cb03fb1e1461063b578063d37c9b6f1461066b578063dd62ed3e1461068757610232565b80638da5cb5b116100ff5780638da5cb5b1461054b5780638f7985a81461056957806395d89b41146105855780639dc29fac146105a3578063a457c2d7146105bf57610232565b8063656229cc146104d757806370a08231146104f3578063715018a61461052357806372185e201461052d57610232565b806321041513116101be578063313ce56711610182578063313ce5671461042f5780633177d1d11461044d578063395093511461046b57806341910f901461049b5780634cbc0047146104b957610232565b8063210415131461036557806323b872dd1461039557806324a4558e146103c5578063267e8ab6146103e35780632c8e8dfa1461041357610232565b80630d0fbe9b116102055780630d0fbe9b146102d3578063157cc8d8146102ef57806315f27dac1461030b57806317ffe6701461032957806318160ddd1461034757610232565b8063044760381461023757806306fdde03146102555780630700037d14610273578063095ea7b3146102a3575b600080fd5b61023f610749565b60405161024c9190612968565b60405180910390f35b61025d61074f565b60405161026a9190612a1c565b60405180910390f35b61028d60048036038101906102889190612aa1565b6107e1565b60405161029a9190612968565b60405180910390f35b6102bd60048036038101906102b89190612afa565b6107f9565b6040516102ca9190612b55565b60405180910390f35b6102ed60048036038101906102e89190612aa1565b610817565b005b61030960048036038101906103049190612afa565b610995565b005b610313610aa3565b6040516103209190612bcf565b60405180910390f35b610331610ac9565b60405161033e9190612968565b60405180910390f35b61034f610ad8565b60405161035c9190612968565b60405180910390f35b61037f600480360381019061037a9190612aa1565b610ae2565b60405161038c9190612b55565b60405180910390f35b6103af60048036038101906103aa9190612bea565b610b38565b6040516103bc9190612b55565b60405180910390f35b6103cd610c30565b6040516103da9190612968565b60405180910390f35b6103fd60048036038101906103f89190612aa1565b610c36565b60405161040a9190612968565b60405180910390f35b61042d60048036038101906104289190612bea565b610dc2565b005b6104376112a4565b6040516104449190612c59565b60405180910390f35b6104556112ad565b6040516104629190612968565b60405180910390f35b61048560048036038101906104809190612afa565b6112bc565b6040516104929190612b55565b60405180910390f35b6104a3611368565b6040516104b09190612968565b60405180910390f35b6104c1611374565b6040516104ce9190612968565b60405180910390f35b6104f160048036038101906104ec9190612afa565b61137a565b005b61050d60048036038101906105089190612aa1565b611488565b60405161051a9190612968565b60405180910390f35b61052b6114d0565b005b610535611558565b6040516105429190612968565b60405180910390f35b610553611567565b6040516105609190612c83565b60405180910390f35b610583600480360381019061057e9190612aa1565b611591565b005b61058d6118a8565b60405161059a9190612a1c565b60405180910390f35b6105bd60048036038101906105b89190612afa565b61193a565b005b6105d960048036038101906105d49190612afa565b6119d4565b6040516105e69190612b55565b60405180910390f35b61060960048036038101906106049190612afa565b611abf565b6040516106169190612b55565b60405180910390f35b61063960048036038101906106349190612aa1565b611add565b005b61065560048036038101906106509190612aa1565b611ccc565b6040516106629190612968565b60405180910390f35b61068560048036038101906106809190612afa565b611ce4565b005b6106a1600480360381019061069c9190612c9e565b611df2565b6040516106ae9190612968565b60405180910390f35b6106d160048036038101906106cc9190612aa1565b611e79565b005b6106db611fc6565b6040516106e89190612968565b60405180910390f35b61070b60048036038101906107069190612aa1565b611fce565b005b6107156120c6565b6040516107229190612968565b60405180910390f35b6107336120cc565b6040516107409190612968565b60405180910390f35b60085481565b60606003805461075e90612d0d565b80601f016020809104026020016040519081016040528092919081815260200182805461078a90612d0d565b80156107d75780601f106107ac576101008083540402835291602001916107d7565b820191906000526020600020905b8154815290600101906020018083116107ba57829003601f168201915b5050505050905090565b600b6020528060005260406000206000915090505481565b600061080d6108066120db565b84846120e3565b6001905092915050565b61081f6120db565b73ffffffffffffffffffffffffffffffffffffffff1661083d611567565b73ffffffffffffffffffffffffffffffffffffffff1614610893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088a90612d8b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fa90612df7565b60405180910390fd5b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f683022275b534cbe101e7fbecfa9dba48b55d462866355b31b809bca1c3560018160405161098a9190612c83565b60405180910390a150565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1890612e63565b60405180910390fd5b6a52b7d2dcc80cd2e400000081600754610a3b9190612eb2565b1115610a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7390612f7a565b60405180910390fd5b8060076000828254610a8e9190612eb2565b92505081905550610a9f82826122ae565b5050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6a295be96e6406697200000081565b6000600254905090565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000610b4584848461240e565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b906120db565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c079061300c565b60405180910390fd5b610c2485610c1c6120db565b8584036120e3565b60019150509392505050565b60095481565b600080610c4742636b3ed58061268f565b9050600062015180600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483610c9a919061302c565b610ca4919061308f565b678ac7230489e80000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cf93c5f2876040518263ffffffff1660e01b8152600401610d089190612c83565b60206040518083038186803b158015610d2057600080fd5b505afa158015610d34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5891906130d5565b610d629190613102565b610d6c9190613102565b905080600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610db99190612eb2565b92505050919050565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4590612e63565b60405180910390fd5b611ce881101561129f576000610e6842636b3ed58061268f565b90506000600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008082111561100c57620151808284610ec8919061302c565b610ed2919061308f565b678ac7230489e80000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cf93c5f2896040518263ffffffff1660e01b8152600401610f369190612c83565b60206040518083038186803b158015610f4e57600080fd5b505afa158015610f62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f8691906130d5565b610f909190613102565b610f9a9190613102565b600b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fe89190612eb2565b92505081905550620151808284610fff919061302c565b611009919061315c565b90505b636b3ed5808214611067578083611023919061302c565b600c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161461129b576000600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008082111561123d576201518082866110f9919061302c565b611103919061308f565b678ac7230489e80000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cf93c5f28a6040518263ffffffff1660e01b81526004016111679190612c83565b60206040518083038186803b15801561117f57600080fd5b505afa158015611193573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111b791906130d5565b6111c19190613102565b6111cb9190613102565b600b60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112199190612eb2565b92505081905550620151808286611230919061302c565b61123a919061315c565b90505b636b3ed5808214611298578085611254919061302c565b600c60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50505b5050505b505050565b60006012905090565b6a6fb5f32b7201f56240000081565b600061135e6112c96120db565b8484600160006112d76120db565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113599190612eb2565b6120e3565b6001905092915050565b678ac7230489e8000081565b60075481565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fd90612e63565b60405180910390fd5b6a295be96e64066972000000816008546114209190612eb2565b1115611461576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611458906131ff565b60405180910390fd5b80600860008282546114739190612eb2565b9250508190555061148482826122ae565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114d86120db565b73ffffffffffffffffffffffffffffffffffffffff166114f6611567565b73ffffffffffffffffffffffffffffffffffffffff161461154c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154390612d8b565b60405180910390fd5b61155660006126a8565b565b6a18d0bf423c03d8de00000081565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661161d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161490612e63565b60405180910390fd5b600061162d42636b3ed58061268f565b90506000600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008082111561180d5762015180828461168d919061302c565b611697919061308f565b678ac7230489e80000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cf93c5f2876040518263ffffffff1660e01b81526004016116fb9190612c83565b60206040518083038186803b15801561171357600080fd5b505afa158015611727573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061174b91906130d5565b6117559190613102565b61175f9190613102565b600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117a99190612eb2565b600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506201518082846117fc919061302c565b611806919061315c565b9050611853565b6000600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b808361185f919061302c565b600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b6060600480546118b790612d0d565b80601f01602080910402602001604051908101604052809291908181526020018280546118e390612d0d565b80156119305780601f1061190557610100808354040283529160200191611930565b820191906000526020600020905b81548152906001019060200180831161191357829003601f168201915b5050505050905090565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166119c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bd90612e63565b60405180910390fd5b6119d0828261276e565b5050565b600080600160006119e36120db565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9790613291565b60405180910390fd5b611ab4611aab6120db565b858584036120e3565b600191505092915050565b6000611ad3611acc6120db565b848461240e565b6001905092915050565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6090612e63565b60405180910390fd5b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000811115611cc8576a6fb5f32b7201f56240000081600654611bd09190612eb2565b1115611c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c08906132fd565b60405180910390fd5b6000600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508060066000828254611c689190612eb2565b92505081905550611c7982826122ae565b8173ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e048682604051611cbf9190612968565b60405180910390a25b5050565b600c6020528060005260406000206000915090505481565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6790612e63565b60405180910390fd5b6a18d0bf423c03d8de00000081600954611d8a9190612eb2565b1115611dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc29061338f565b60405180910390fd5b8060096000828254611ddd9190612eb2565b92505081905550611dee82826122ae565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611e816120db565b73ffffffffffffffffffffffffffffffffffffffff16611e9f611567565b73ffffffffffffffffffffffffffffffffffffffff1614611ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eec90612d8b565b60405180910390fd5b611efe81610ae2565b611f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f34906133fb565b60405180910390fd5b600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff02191690557fe1d518851a4a8f6d2bdc707d44edf660e2ad1db5a7667376cf7c178eaeec0b4881604051611fbb9190612c83565b60405180910390a150565b636b3ed58081565b611fd66120db565b73ffffffffffffffffffffffffffffffffffffffff16611ff4611567565b73ffffffffffffffffffffffffffffffffffffffff161461204a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204190612d8b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b19061348d565b60405180910390fd5b6120c3816126a8565b50565b60065481565b6a52b7d2dcc80cd2e400000081565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214a9061351f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ba906135b1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516122a19190612968565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561231e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123159061361d565b60405180910390fd5b61232a60008383612945565b806002600082825461233c9190612eb2565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123919190612eb2565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516123f69190612968565b60405180910390a361240a6000838361294a565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561247e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612475906136af565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e590613741565b60405180910390fd5b6124f9838383612945565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561257f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612576906137d3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126129190612eb2565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516126769190612968565b60405180910390a361268984848461294a565b50505050565b600081831061269e57816126a0565b825b905092915050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d590613865565b60405180910390fd5b6127ea82600083612945565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612870576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612867906138f7565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546128c7919061302c565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161292c9190612968565b60405180910390a36129408360008461294a565b505050565b505050565b505050565b6000819050919050565b6129628161294f565b82525050565b600060208201905061297d6000830184612959565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156129bd5780820151818401526020810190506129a2565b838111156129cc576000848401525b50505050565b6000601f19601f8301169050919050565b60006129ee82612983565b6129f8818561298e565b9350612a0881856020860161299f565b612a11816129d2565b840191505092915050565b60006020820190508181036000830152612a3681846129e3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a6e82612a43565b9050919050565b612a7e81612a63565b8114612a8957600080fd5b50565b600081359050612a9b81612a75565b92915050565b600060208284031215612ab757612ab6612a3e565b5b6000612ac584828501612a8c565b91505092915050565b612ad78161294f565b8114612ae257600080fd5b50565b600081359050612af481612ace565b92915050565b60008060408385031215612b1157612b10612a3e565b5b6000612b1f85828601612a8c565b9250506020612b3085828601612ae5565b9150509250929050565b60008115159050919050565b612b4f81612b3a565b82525050565b6000602082019050612b6a6000830184612b46565b92915050565b6000819050919050565b6000612b95612b90612b8b84612a43565b612b70565b612a43565b9050919050565b6000612ba782612b7a565b9050919050565b6000612bb982612b9c565b9050919050565b612bc981612bae565b82525050565b6000602082019050612be46000830184612bc0565b92915050565b600080600060608486031215612c0357612c02612a3e565b5b6000612c1186828701612a8c565b9350506020612c2286828701612a8c565b9250506040612c3386828701612ae5565b9150509250925092565b600060ff82169050919050565b612c5381612c3d565b82525050565b6000602082019050612c6e6000830184612c4a565b92915050565b612c7d81612a63565b82525050565b6000602082019050612c986000830184612c74565b92915050565b60008060408385031215612cb557612cb4612a3e565b5b6000612cc385828601612a8c565b9250506020612cd485828601612a8c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612d2557607f821691505b60208210811415612d3957612d38612cde565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612d7560208361298e565b9150612d8082612d3f565b602082019050919050565b60006020820190508181036000830152612da481612d68565b9050919050565b7f43616e6e6f7420616464206e756c6c2061646472657373000000000000000000600082015250565b6000612de160178361298e565b9150612dec82612dab565b602082019050919050565b60006020820190508181036000830152612e1081612dd4565b9050919050565b7f556e617574686f72697a65640000000000000000000000000000000000000000600082015250565b6000612e4d600c8361298e565b9150612e5882612e17565b602082019050919050565b60006020820190508181036000830152612e7c81612e40565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ebd8261294f565b9150612ec88361294f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612efd57612efc612e83565b5b828201905092915050565b7f4d6178696d756d20636f6d6d756e6974792066756e6420737570706c7920726560008201527f6163686564000000000000000000000000000000000000000000000000000000602082015250565b6000612f6460258361298e565b9150612f6f82612f08565b604082019050919050565b60006020820190508181036000830152612f9381612f57565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000612ff660288361298e565b915061300182612f9a565b604082019050919050565b6000602082019050818103600083015261302581612fe9565b9050919050565b60006130378261294f565b91506130428361294f565b92508282101561305557613054612e83565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061309a8261294f565b91506130a58361294f565b9250826130b5576130b4613060565b5b828204905092915050565b6000815190506130cf81612ace565b92915050565b6000602082840312156130eb576130ea612a3e565b5b60006130f9848285016130c0565b91505092915050565b600061310d8261294f565b91506131188361294f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561315157613150612e83565b5b828202905092915050565b60006131678261294f565b91506131728361294f565b92508261318257613181613060565b5b828206905092915050565b7f4d6178696d756d207075626c69632073616c657320737570706c79207265616360008201527f6865640000000000000000000000000000000000000000000000000000000000602082015250565b60006131e960238361298e565b91506131f48261318d565b604082019050919050565b60006020820190508181036000830152613218816131dc565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061327b60258361298e565b91506132868261321f565b604082019050919050565b600060208201905081810360008301526132aa8161326e565b9050919050565b7f4d6178696d756d207969656c6420737570706c79207265616368656400000000600082015250565b60006132e7601c8361298e565b91506132f2826132b1565b602082019050919050565b60006020820190508181036000830152613316816132da565b9050919050565b7f4d6178696d756d207465616d207265736572766520737570706c79207265616360008201527f6865640000000000000000000000000000000000000000000000000000000000602082015250565b600061337960238361298e565b91506133848261331d565b604082019050919050565b600060208201905081810360008301526133a88161336c565b9050919050565b7f4e6f74206120636f756e63696c6c6f7200000000000000000000000000000000600082015250565b60006133e560108361298e565b91506133f0826133af565b602082019050919050565b60006020820190508181036000830152613414816133d8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061347760268361298e565b91506134828261341b565b604082019050919050565b600060208201905081810360008301526134a68161346a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061350960248361298e565b9150613514826134ad565b604082019050919050565b60006020820190508181036000830152613538816134fc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061359b60228361298e565b91506135a68261353f565b604082019050919050565b600060208201905081810360008301526135ca8161358e565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000613607601f8361298e565b9150613612826135d1565b602082019050919050565b60006020820190508181036000830152613636816135fa565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061369960258361298e565b91506136a48261363d565b604082019050919050565b600060208201905081810360008301526136c88161368c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061372b60238361298e565b9150613736826136cf565b604082019050919050565b6000602082019050818103600083015261375a8161371e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006137bd60268361298e565b91506137c882613761565b604082019050919050565b600060208201905081810360008301526137ec816137b0565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061384f60218361298e565b915061385a826137f3565b604082019050919050565b6000602082019050818103600083015261387e81613842565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006138e160228361298e565b91506138ec82613885565b604082019050919050565b60006020820190508181036000830152613910816138d4565b905091905056fea2646970667358221220f8a303d68315a79d71cfe0e29a068c50f4248d854beb3d8696d68ef7ac80167464736f6c63430008090033

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

00000000000000000000000028f3acc53cc541a5e159ddc7c73a29f96679d873

-----Decoded View---------------
Arg [0] : _nouns3d (address): 0x28F3aCc53cC541a5E159DdC7c73a29F96679d873

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000028f3acc53cc541a5e159ddc7c73a29f96679d873


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.