Contract Address Details

0x83f5E6f0Eb916c067b7cCd4E08C7078937Fb4d3B

Token
THE BOOK OF DOG (BODO)
Creator
0xacd320–1fac21 at 0x0e35bc–76049d
Balance
0.09 Doge
Tokens
Fetching tokens...
Transactions
449 Transactions
Transfers
383 Transfers
Gas Used
67,474,373
Last Balance Update
26571750
Contract name:
TheBookOfDog




Optimization enabled
false
Compiler version
v0.8.16+commit.07a7930e




EVM Version
default




Verified at
2022-08-22T20:07:42.192945Z

Constructor Arguments

000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000002540be400000000000000000000000000000000000000000000000000000000003b9aca0000000000000000000000000000000000000000000000000003782dace9d90000

Arg [0] (uint8) : 8
Arg [1] (uint256) : 10000000000
Arg [2] (uint256) : 1000000000
Arg [3] (uint256) : 250000000000000000

              

Contract source code

// File: @openzeppelin/contracts/utils/Context.sol


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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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: TheBookOfDog.sol



pragma solidity ^0.8.16;






contract TheBookOfDog is ERC20, Ownable {

    uint8 private _decimals;

    uint256 public mintAmount1;

    uint256 public mintAmount2;

    uint256 public postPrice;

    string public sender;

    string public message;

    uint public messageCount = 0;

    address public guest;



    mapping(uint => Message) public messages;



    struct Message {

        uint id;

        string sender;

        string message;

        address guest;

    }



    event MessageCreated(

        uint id,

        string sender,

        string message,

        address guest

    );



    constructor(

        uint8 decimals_,

        uint256 _mintAmount1,

        uint256 _mintAmount2,

        uint256 _postPrice) ERC20("THE BOOK OF DOG", "BODO") {

        _decimals = decimals_;

        mintAmount1 = _mintAmount1;

        mintAmount2 = _mintAmount2;

        postPrice = _postPrice;

    }



    function decimals() public view virtual override returns (uint8) {

        return _decimals;

    }



    function newMintAmount1(uint256 _mintAmount1) external onlyOwner {

        mintAmount1 = _mintAmount1;

    }



    function newMintAmount2(uint256 _mintAmount2) external onlyOwner {

        mintAmount2 = _mintAmount2;

    }



    function newPostPrice(uint256 _postPrice) external onlyOwner() {

        postPrice = _postPrice;

    }



    function sendMessage(string memory _sender, string memory _message) external payable {    

        sender = _sender;

        message = _message;

        guest = msg.sender;

        require(bytes(_sender).length > 0);

        require(bytes(_message).length > 0);

        messageCount ++;

        messages[messageCount] = Message(messageCount, _sender, _message, guest);

        emit MessageCreated(messageCount, _sender, _message, guest);

        require(msg.value >= postPrice, "Not enough WDOGE sent, check postPrice");

        _mint(msg.sender, mintAmount1);

        _mint(address(this), mintAmount2);

    }



    // Transfer WDOGE from contract 



    function transferValue(address payable _to) external onlyOwner {

        uint256 amount = address(this).balance;

        (bool success, ) = _to.call{value: amount}("");

        require(success, "Failed to send WDOGE");

    }



    // Transfer tokens (BODO or accidentally sent) from contract



    function transferTokens(address tokenAddress) external onlyOwner {

        uint256 balance = IERC20(tokenAddress).balanceOf(address(this));

        IERC20(tokenAddress).transfer(msg.sender, balance);

    }

}
        

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"uint8","name":"decimals_","internalType":"uint8"},{"type":"uint256","name":"_mintAmount1","internalType":"uint256"},{"type":"uint256","name":"_mintAmount2","internalType":"uint256"},{"type":"uint256","name":"_postPrice","internalType":"uint256"}]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"MessageCreated","inputs":[{"type":"uint256","name":"id","internalType":"uint256","indexed":false},{"type":"string","name":"sender","internalType":"string","indexed":false},{"type":"string","name":"message","internalType":"string","indexed":false},{"type":"address","name":"guest","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"decreaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"subtractedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"guest","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"increaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"addedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"message","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"messageCount","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"id","internalType":"uint256"},{"type":"string","name":"sender","internalType":"string"},{"type":"string","name":"message","internalType":"string"},{"type":"address","name":"guest","internalType":"address"}],"name":"messages","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"mintAmount1","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"mintAmount2","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"newMintAmount1","inputs":[{"type":"uint256","name":"_mintAmount1","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"newMintAmount2","inputs":[{"type":"uint256","name":"_mintAmount2","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"newPostPrice","inputs":[{"type":"uint256","name":"_postPrice","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"postPrice","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"payable","outputs":[],"name":"sendMessage","inputs":[{"type":"string","name":"_sender","internalType":"string"},{"type":"string","name":"_message","internalType":"string"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"sender","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferTokens","inputs":[{"type":"address","name":"tokenAddress","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferValue","inputs":[{"type":"address","name":"_to","internalType":"address payable"}]}]
            

Contract Creation Code

0x60806040526000600b553480156200001657600080fd5b506040516200305c3803806200305c83398181016040528101906200003c919062000274565b6040518060400160405280600f81526020017f54484520424f4f4b204f4620444f4700000000000000000000000000000000008152506040518060400160405280600481526020017f424f444f000000000000000000000000000000000000000000000000000000008152508160039081620000b9919062000556565b508060049081620000cb919062000556565b505050620000ee620000e26200012860201b60201c565b6200013060201b60201c565b83600560146101000a81548160ff021916908360ff160217905550826006819055508160078190555080600881905550505050506200063d565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600060ff82169050919050565b6200021381620001fb565b81146200021f57600080fd5b50565b600081519050620002338162000208565b92915050565b6000819050919050565b6200024e8162000239565b81146200025a57600080fd5b50565b6000815190506200026e8162000243565b92915050565b60008060008060808587031215620002915762000290620001f6565b5b6000620002a18782880162000222565b9450506020620002b4878288016200025d565b9350506040620002c7878288016200025d565b9250506060620002da878288016200025d565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200036857607f821691505b6020821081036200037e576200037d62000320565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003e87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003a9565b620003f48683620003a9565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000437620004316200042b8462000239565b6200040c565b62000239565b9050919050565b6000819050919050565b620004538362000416565b6200046b62000462826200043e565b848454620003b6565b825550505050565b600090565b6200048262000473565b6200048f81848462000448565b505050565b5b81811015620004b757620004ab60008262000478565b60018101905062000495565b5050565b601f8211156200050657620004d08162000384565b620004db8462000399565b81016020851015620004eb578190505b62000503620004fa8562000399565b83018262000494565b50505b505050565b600082821c905092915050565b60006200052b600019846008026200050b565b1980831691505092915050565b600062000546838362000518565b9150826002028217905092915050565b6200056182620002e6565b67ffffffffffffffff8111156200057d576200057c620002f1565b5b6200058982546200034f565b62000596828285620004bb565b600060209050601f831160018114620005ce5760008415620005b9578287015190505b620005c5858262000538565b86555062000635565b601f198416620005de8662000384565b60005b828110156200060857848901518255600182019150602085019450602081019050620005e1565b8683101562000628578489015162000624601f89168262000518565b8355505b6001600288020188555050505b505050505050565b612a0f806200064d6000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec578063a9059cbb1161008a578063dd62ed3e11610064578063dd62ed3e1461061a578063e21f37ce14610657578063f2fde38b14610682578063ff753d98146106ab576101b7565b8063a9059cbb14610587578063b9a4b93b146105c4578063dcdaa35b146105ef576101b7565b806395d89b41116100c657806395d89b41146104cb5780639a04f704146104f6578063a457c2d714610521578063a4b09e601461055e576101b7565b806370a082311461044c578063715018a6146104895780638da5cb5b146104a0576101b7565b806323b872dd116101595780633dbcc8d1116101335780633dbcc8d1146103af578063467fba0f146103da57806367e404ce146103f657806369d6b88014610421576101b7565b806323b872dd1461030a578063313ce567146103475780633950935114610372576101b7565b80630c89a0df116101955780630c89a0df1461024d5780630d80fefd1461027657806318160ddd146102b65780631e4198e0146102e1576101b7565b8063065b2754146101bc57806306fdde03146101e5578063095ea7b314610210575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de919061199d565b6106d4565b005b3480156101f157600080fd5b506101fa6106e6565b6040516102079190611a5a565b60405180910390f35b34801561021c57600080fd5b5061023760048036038101906102329190611ada565b610778565b6040516102449190611b35565b60405180910390f35b34801561025957600080fd5b50610274600480360381019061026f9190611b50565b61079b565b005b34801561028257600080fd5b5061029d6004803603810190610298919061199d565b6108a4565b6040516102ad9493929190611b9b565b60405180910390f35b3480156102c257600080fd5b506102cb610a04565b6040516102d89190611bee565b60405180910390f35b3480156102ed57600080fd5b5061030860048036038101906103039190611c47565b610a0e565b005b34801561031657600080fd5b50610331600480360381019061032c9190611c74565b610acc565b60405161033e9190611b35565b60405180910390f35b34801561035357600080fd5b5061035c610afb565b6040516103699190611ce3565b60405180910390f35b34801561037e57600080fd5b5061039960048036038101906103949190611ada565b610b12565b6040516103a69190611b35565b60405180910390f35b3480156103bb57600080fd5b506103c4610b49565b6040516103d19190611bee565b60405180910390f35b6103f460048036038101906103ef9190611e33565b610b4f565b005b34801561040257600080fd5b5061040b610d96565b6040516104189190611a5a565b60405180910390f35b34801561042d57600080fd5b50610436610e24565b6040516104439190611bee565b60405180910390f35b34801561045857600080fd5b50610473600480360381019061046e9190611b50565b610e2a565b6040516104809190611bee565b60405180910390f35b34801561049557600080fd5b5061049e610e72565b005b3480156104ac57600080fd5b506104b5610e86565b6040516104c29190611eab565b60405180910390f35b3480156104d757600080fd5b506104e0610eb0565b6040516104ed9190611a5a565b60405180910390f35b34801561050257600080fd5b5061050b610f42565b6040516105189190611eab565b60405180910390f35b34801561052d57600080fd5b5061054860048036038101906105439190611ada565b610f68565b6040516105559190611b35565b60405180910390f35b34801561056a57600080fd5b506105856004803603810190610580919061199d565b610fdf565b005b34801561059357600080fd5b506105ae60048036038101906105a99190611ada565b610ff1565b6040516105bb9190611b35565b60405180910390f35b3480156105d057600080fd5b506105d9611014565b6040516105e69190611bee565b60405180910390f35b3480156105fb57600080fd5b5061060461101a565b6040516106119190611bee565b60405180910390f35b34801561062657600080fd5b50610641600480360381019061063c9190611ec6565b611020565b60405161064e9190611bee565b60405180910390f35b34801561066357600080fd5b5061066c6110a7565b6040516106799190611a5a565b60405180910390f35b34801561068e57600080fd5b506106a960048036038101906106a49190611b50565b611135565b005b3480156106b757600080fd5b506106d260048036038101906106cd919061199d565b6111b8565b005b6106dc6111ca565b8060088190555050565b6060600380546106f590611f35565b80601f016020809104026020016040519081016040528092919081815260200182805461072190611f35565b801561076e5780601f106107435761010080835404028352916020019161076e565b820191906000526020600020905b81548152906001019060200180831161075157829003601f168201915b5050505050905090565b600080610783611248565b9050610790818585611250565b600191505092915050565b6107a36111ca565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016107de9190611eab565b602060405180830381865afa1580156107fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061081f9190611f7b565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b815260040161085c929190611fa8565b6020604051808303816000875af115801561087b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061089f9190611ffd565b505050565b600d6020528060005260406000206000915090508060000154908060010180546108cd90611f35565b80601f01602080910402602001604051908101604052809291908181526020018280546108f990611f35565b80156109465780601f1061091b57610100808354040283529160200191610946565b820191906000526020600020905b81548152906001019060200180831161092957829003601f168201915b50505050509080600201805461095b90611f35565b80601f016020809104026020016040519081016040528092919081815260200182805461098790611f35565b80156109d45780601f106109a9576101008083540402835291602001916109d4565b820191906000526020600020905b8154815290600101906020018083116109b757829003601f168201915b5050505050908060030160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905084565b6000600254905090565b610a166111ca565b600047905060008273ffffffffffffffffffffffffffffffffffffffff1682604051610a419061205b565b60006040518083038185875af1925050503d8060008114610a7e576040519150601f19603f3d011682016040523d82523d6000602084013e610a83565b606091505b5050905080610ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abe906120bc565b60405180910390fd5b505050565b600080610ad7611248565b9050610ae4858285611419565b610aef8585856114a5565b60019150509392505050565b6000600560149054906101000a900460ff16905090565b600080610b1d611248565b9050610b3e818585610b2f8589611020565b610b39919061210b565b611250565b600191505092915050565b600b5481565b8160099081610b5e91906122eb565b5080600a9081610b6e91906122eb565b5033600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000825111610bbe57600080fd5b6000815111610bcc57600080fd5b600b6000815480929190610bdf906123bd565b91905055506040518060800160405280600b548152602001838152602001828152602001600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250600d6000600b548152602001908152602001600020600082015181600001556020820151816001019081610c7391906122eb565b506040820151816002019081610c8991906122eb565b5060608201518160030160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509050507f8b3e964895e96808e6c5dd3d1333a107be5df7e506ae6bedf6287e02064416d0600b548383600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16604051610d2d9493929190611b9b565b60405180910390a1600854341015610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7190612477565b60405180910390fd5b610d8633600654611724565b610d9230600754611724565b5050565b60098054610da390611f35565b80601f0160208091040260200160405190810160405280929190818152602001828054610dcf90611f35565b8015610e1c5780601f10610df157610100808354040283529160200191610e1c565b820191906000526020600020905b815481529060010190602001808311610dff57829003601f168201915b505050505081565b60065481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e7a6111ca565b610e846000611883565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610ebf90611f35565b80601f0160208091040260200160405190810160405280929190818152602001828054610eeb90611f35565b8015610f385780601f10610f0d57610100808354040283529160200191610f38565b820191906000526020600020905b815481529060010190602001808311610f1b57829003601f168201915b5050505050905090565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610f73611248565b90506000610f818286611020565b905083811015610fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbd90612509565b60405180910390fd5b610fd38286868403611250565b60019250505092915050565b610fe76111ca565b8060078190555050565b600080610ffc611248565b90506110098185856114a5565b600191505092915050565b60085481565b60075481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a80546110b490611f35565b80601f01602080910402602001604051908101604052809291908181526020018280546110e090611f35565b801561112d5780601f106111025761010080835404028352916020019161112d565b820191906000526020600020905b81548152906001019060200180831161111057829003601f168201915b505050505081565b61113d6111ca565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a39061259b565b60405180910390fd5b6111b581611883565b50565b6111c06111ca565b8060068190555050565b6111d2611248565b73ffffffffffffffffffffffffffffffffffffffff166111f0610e86565b73ffffffffffffffffffffffffffffffffffffffff1614611246576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123d90612607565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b690612699565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361132e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113259061272b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161140c9190611bee565b60405180910390a3505050565b60006114258484611020565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461149f5781811015611491576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148890612797565b60405180910390fd5b61149e8484848403611250565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150b90612829565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157a906128bb565b60405180910390fd5b61158e838383611949565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b9061294d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116a7919061210b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161170b9190611bee565b60405180910390a361171e84848461194e565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178a906129b9565b60405180910390fd5b61179f60008383611949565b80600260008282546117b1919061210b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611806919061210b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161186b9190611bee565b60405180910390a361187f6000838361194e565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b61197a81611967565b811461198557600080fd5b50565b60008135905061199781611971565b92915050565b6000602082840312156119b3576119b261195d565b5b60006119c184828501611988565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611a045780820151818401526020810190506119e9565b60008484015250505050565b6000601f19601f8301169050919050565b6000611a2c826119ca565b611a3681856119d5565b9350611a468185602086016119e6565b611a4f81611a10565b840191505092915050565b60006020820190508181036000830152611a748184611a21565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611aa782611a7c565b9050919050565b611ab781611a9c565b8114611ac257600080fd5b50565b600081359050611ad481611aae565b92915050565b60008060408385031215611af157611af061195d565b5b6000611aff85828601611ac5565b9250506020611b1085828601611988565b9150509250929050565b60008115159050919050565b611b2f81611b1a565b82525050565b6000602082019050611b4a6000830184611b26565b92915050565b600060208284031215611b6657611b6561195d565b5b6000611b7484828501611ac5565b91505092915050565b611b8681611967565b82525050565b611b9581611a9c565b82525050565b6000608082019050611bb06000830187611b7d565b8181036020830152611bc28186611a21565b90508181036040830152611bd68185611a21565b9050611be56060830184611b8c565b95945050505050565b6000602082019050611c036000830184611b7d565b92915050565b6000611c1482611a7c565b9050919050565b611c2481611c09565b8114611c2f57600080fd5b50565b600081359050611c4181611c1b565b92915050565b600060208284031215611c5d57611c5c61195d565b5b6000611c6b84828501611c32565b91505092915050565b600080600060608486031215611c8d57611c8c61195d565b5b6000611c9b86828701611ac5565b9350506020611cac86828701611ac5565b9250506040611cbd86828701611988565b9150509250925092565b600060ff82169050919050565b611cdd81611cc7565b82525050565b6000602082019050611cf86000830184611cd4565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611d4082611a10565b810181811067ffffffffffffffff82111715611d5f57611d5e611d08565b5b80604052505050565b6000611d72611953565b9050611d7e8282611d37565b919050565b600067ffffffffffffffff821115611d9e57611d9d611d08565b5b611da782611a10565b9050602081019050919050565b82818337600083830152505050565b6000611dd6611dd184611d83565b611d68565b905082815260208101848484011115611df257611df1611d03565b5b611dfd848285611db4565b509392505050565b600082601f830112611e1a57611e19611cfe565b5b8135611e2a848260208601611dc3565b91505092915050565b60008060408385031215611e4a57611e4961195d565b5b600083013567ffffffffffffffff811115611e6857611e67611962565b5b611e7485828601611e05565b925050602083013567ffffffffffffffff811115611e9557611e94611962565b5b611ea185828601611e05565b9150509250929050565b6000602082019050611ec06000830184611b8c565b92915050565b60008060408385031215611edd57611edc61195d565b5b6000611eeb85828601611ac5565b9250506020611efc85828601611ac5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611f4d57607f821691505b602082108103611f6057611f5f611f06565b5b50919050565b600081519050611f7581611971565b92915050565b600060208284031215611f9157611f9061195d565b5b6000611f9f84828501611f66565b91505092915050565b6000604082019050611fbd6000830185611b8c565b611fca6020830184611b7d565b9392505050565b611fda81611b1a565b8114611fe557600080fd5b50565b600081519050611ff781611fd1565b92915050565b6000602082840312156120135761201261195d565b5b600061202184828501611fe8565b91505092915050565b600081905092915050565b50565b600061204560008361202a565b915061205082612035565b600082019050919050565b600061206682612038565b9150819050919050565b7f4661696c656420746f2073656e642057444f4745000000000000000000000000600082015250565b60006120a66014836119d5565b91506120b182612070565b602082019050919050565b600060208201905081810360008301526120d581612099565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061211682611967565b915061212183611967565b9250828201905080821115612139576121386120dc565b5b92915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026121a17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612164565b6121ab8683612164565b95508019841693508086168417925050509392505050565b6000819050919050565b60006121e86121e36121de84611967565b6121c3565b611967565b9050919050565b6000819050919050565b612202836121cd565b61221661220e826121ef565b848454612171565b825550505050565b600090565b61222b61221e565b6122368184846121f9565b505050565b5b8181101561225a5761224f600082612223565b60018101905061223c565b5050565b601f82111561229f576122708161213f565b61227984612154565b81016020851015612288578190505b61229c61229485612154565b83018261223b565b50505b505050565b600082821c905092915050565b60006122c2600019846008026122a4565b1980831691505092915050565b60006122db83836122b1565b9150826002028217905092915050565b6122f4826119ca565b67ffffffffffffffff81111561230d5761230c611d08565b5b6123178254611f35565b61232282828561225e565b600060209050601f8311600181146123555760008415612343578287015190505b61234d85826122cf565b8655506123b5565b601f1984166123638661213f565b60005b8281101561238b57848901518255600182019150602085019450602081019050612366565b868310156123a857848901516123a4601f8916826122b1565b8355505b6001600288020188555050505b505050505050565b60006123c882611967565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036123fa576123f96120dc565b5b600182019050919050565b7f4e6f7420656e6f7567682057444f47452073656e742c20636865636b20706f7360008201527f7450726963650000000000000000000000000000000000000000000000000000602082015250565b60006124616026836119d5565b915061246c82612405565b604082019050919050565b6000602082019050818103600083015261249081612454565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006124f36025836119d5565b91506124fe82612497565b604082019050919050565b60006020820190508181036000830152612522816124e6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006125856026836119d5565b915061259082612529565b604082019050919050565b600060208201905081810360008301526125b481612578565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006125f16020836119d5565b91506125fc826125bb565b602082019050919050565b60006020820190508181036000830152612620816125e4565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006126836024836119d5565b915061268e82612627565b604082019050919050565b600060208201905081810360008301526126b281612676565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006127156022836119d5565b9150612720826126b9565b604082019050919050565b6000602082019050818103600083015261274481612708565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612781601d836119d5565b915061278c8261274b565b602082019050919050565b600060208201905081810360008301526127b081612774565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006128136025836119d5565b915061281e826127b7565b604082019050919050565b6000602082019050818103600083015261284281612806565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006128a56023836119d5565b91506128b082612849565b604082019050919050565b600060208201905081810360008301526128d481612898565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006129376026836119d5565b9150612942826128db565b604082019050919050565b600060208201905081810360008301526129668161292a565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006129a3601f836119d5565b91506129ae8261296d565b602082019050919050565b600060208201905081810360008301526129d281612996565b905091905056fea264697066735822122012503a3cd3542752746d5104a993f05125b6bcda847ac10eeeef0bb5d9e0ab3864736f6c63430008100033000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000002540be400000000000000000000000000000000000000000000000000000000003b9aca0000000000000000000000000000000000000000000000000003782dace9d90000

Deployed ByteCode

0x6080604052600436106101b75760003560e01c806370a08231116100ec578063a9059cbb1161008a578063dd62ed3e11610064578063dd62ed3e1461061a578063e21f37ce14610657578063f2fde38b14610682578063ff753d98146106ab576101b7565b8063a9059cbb14610587578063b9a4b93b146105c4578063dcdaa35b146105ef576101b7565b806395d89b41116100c657806395d89b41146104cb5780639a04f704146104f6578063a457c2d714610521578063a4b09e601461055e576101b7565b806370a082311461044c578063715018a6146104895780638da5cb5b146104a0576101b7565b806323b872dd116101595780633dbcc8d1116101335780633dbcc8d1146103af578063467fba0f146103da57806367e404ce146103f657806369d6b88014610421576101b7565b806323b872dd1461030a578063313ce567146103475780633950935114610372576101b7565b80630c89a0df116101955780630c89a0df1461024d5780630d80fefd1461027657806318160ddd146102b65780631e4198e0146102e1576101b7565b8063065b2754146101bc57806306fdde03146101e5578063095ea7b314610210575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de919061199d565b6106d4565b005b3480156101f157600080fd5b506101fa6106e6565b6040516102079190611a5a565b60405180910390f35b34801561021c57600080fd5b5061023760048036038101906102329190611ada565b610778565b6040516102449190611b35565b60405180910390f35b34801561025957600080fd5b50610274600480360381019061026f9190611b50565b61079b565b005b34801561028257600080fd5b5061029d6004803603810190610298919061199d565b6108a4565b6040516102ad9493929190611b9b565b60405180910390f35b3480156102c257600080fd5b506102cb610a04565b6040516102d89190611bee565b60405180910390f35b3480156102ed57600080fd5b5061030860048036038101906103039190611c47565b610a0e565b005b34801561031657600080fd5b50610331600480360381019061032c9190611c74565b610acc565b60405161033e9190611b35565b60405180910390f35b34801561035357600080fd5b5061035c610afb565b6040516103699190611ce3565b60405180910390f35b34801561037e57600080fd5b5061039960048036038101906103949190611ada565b610b12565b6040516103a69190611b35565b60405180910390f35b3480156103bb57600080fd5b506103c4610b49565b6040516103d19190611bee565b60405180910390f35b6103f460048036038101906103ef9190611e33565b610b4f565b005b34801561040257600080fd5b5061040b610d96565b6040516104189190611a5a565b60405180910390f35b34801561042d57600080fd5b50610436610e24565b6040516104439190611bee565b60405180910390f35b34801561045857600080fd5b50610473600480360381019061046e9190611b50565b610e2a565b6040516104809190611bee565b60405180910390f35b34801561049557600080fd5b5061049e610e72565b005b3480156104ac57600080fd5b506104b5610e86565b6040516104c29190611eab565b60405180910390f35b3480156104d757600080fd5b506104e0610eb0565b6040516104ed9190611a5a565b60405180910390f35b34801561050257600080fd5b5061050b610f42565b6040516105189190611eab565b60405180910390f35b34801561052d57600080fd5b5061054860048036038101906105439190611ada565b610f68565b6040516105559190611b35565b60405180910390f35b34801561056a57600080fd5b506105856004803603810190610580919061199d565b610fdf565b005b34801561059357600080fd5b506105ae60048036038101906105a99190611ada565b610ff1565b6040516105bb9190611b35565b60405180910390f35b3480156105d057600080fd5b506105d9611014565b6040516105e69190611bee565b60405180910390f35b3480156105fb57600080fd5b5061060461101a565b6040516106119190611bee565b60405180910390f35b34801561062657600080fd5b50610641600480360381019061063c9190611ec6565b611020565b60405161064e9190611bee565b60405180910390f35b34801561066357600080fd5b5061066c6110a7565b6040516106799190611a5a565b60405180910390f35b34801561068e57600080fd5b506106a960048036038101906106a49190611b50565b611135565b005b3480156106b757600080fd5b506106d260048036038101906106cd919061199d565b6111b8565b005b6106dc6111ca565b8060088190555050565b6060600380546106f590611f35565b80601f016020809104026020016040519081016040528092919081815260200182805461072190611f35565b801561076e5780601f106107435761010080835404028352916020019161076e565b820191906000526020600020905b81548152906001019060200180831161075157829003601f168201915b5050505050905090565b600080610783611248565b9050610790818585611250565b600191505092915050565b6107a36111ca565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016107de9190611eab565b602060405180830381865afa1580156107fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061081f9190611f7b565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b815260040161085c929190611fa8565b6020604051808303816000875af115801561087b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061089f9190611ffd565b505050565b600d6020528060005260406000206000915090508060000154908060010180546108cd90611f35565b80601f01602080910402602001604051908101604052809291908181526020018280546108f990611f35565b80156109465780601f1061091b57610100808354040283529160200191610946565b820191906000526020600020905b81548152906001019060200180831161092957829003601f168201915b50505050509080600201805461095b90611f35565b80601f016020809104026020016040519081016040528092919081815260200182805461098790611f35565b80156109d45780601f106109a9576101008083540402835291602001916109d4565b820191906000526020600020905b8154815290600101906020018083116109b757829003601f168201915b5050505050908060030160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905084565b6000600254905090565b610a166111ca565b600047905060008273ffffffffffffffffffffffffffffffffffffffff1682604051610a419061205b565b60006040518083038185875af1925050503d8060008114610a7e576040519150601f19603f3d011682016040523d82523d6000602084013e610a83565b606091505b5050905080610ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abe906120bc565b60405180910390fd5b505050565b600080610ad7611248565b9050610ae4858285611419565b610aef8585856114a5565b60019150509392505050565b6000600560149054906101000a900460ff16905090565b600080610b1d611248565b9050610b3e818585610b2f8589611020565b610b39919061210b565b611250565b600191505092915050565b600b5481565b8160099081610b5e91906122eb565b5080600a9081610b6e91906122eb565b5033600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000825111610bbe57600080fd5b6000815111610bcc57600080fd5b600b6000815480929190610bdf906123bd565b91905055506040518060800160405280600b548152602001838152602001828152602001600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250600d6000600b548152602001908152602001600020600082015181600001556020820151816001019081610c7391906122eb565b506040820151816002019081610c8991906122eb565b5060608201518160030160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509050507f8b3e964895e96808e6c5dd3d1333a107be5df7e506ae6bedf6287e02064416d0600b548383600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16604051610d2d9493929190611b9b565b60405180910390a1600854341015610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7190612477565b60405180910390fd5b610d8633600654611724565b610d9230600754611724565b5050565b60098054610da390611f35565b80601f0160208091040260200160405190810160405280929190818152602001828054610dcf90611f35565b8015610e1c5780601f10610df157610100808354040283529160200191610e1c565b820191906000526020600020905b815481529060010190602001808311610dff57829003601f168201915b505050505081565b60065481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e7a6111ca565b610e846000611883565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610ebf90611f35565b80601f0160208091040260200160405190810160405280929190818152602001828054610eeb90611f35565b8015610f385780601f10610f0d57610100808354040283529160200191610f38565b820191906000526020600020905b815481529060010190602001808311610f1b57829003601f168201915b5050505050905090565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610f73611248565b90506000610f818286611020565b905083811015610fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbd90612509565b60405180910390fd5b610fd38286868403611250565b60019250505092915050565b610fe76111ca565b8060078190555050565b600080610ffc611248565b90506110098185856114a5565b600191505092915050565b60085481565b60075481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a80546110b490611f35565b80601f01602080910402602001604051908101604052809291908181526020018280546110e090611f35565b801561112d5780601f106111025761010080835404028352916020019161112d565b820191906000526020600020905b81548152906001019060200180831161111057829003601f168201915b505050505081565b61113d6111ca565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a39061259b565b60405180910390fd5b6111b581611883565b50565b6111c06111ca565b8060068190555050565b6111d2611248565b73ffffffffffffffffffffffffffffffffffffffff166111f0610e86565b73ffffffffffffffffffffffffffffffffffffffff1614611246576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123d90612607565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b690612699565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361132e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113259061272b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161140c9190611bee565b60405180910390a3505050565b60006114258484611020565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461149f5781811015611491576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148890612797565b60405180910390fd5b61149e8484848403611250565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150b90612829565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157a906128bb565b60405180910390fd5b61158e838383611949565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b9061294d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116a7919061210b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161170b9190611bee565b60405180910390a361171e84848461194e565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178a906129b9565b60405180910390fd5b61179f60008383611949565b80600260008282546117b1919061210b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611806919061210b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161186b9190611bee565b60405180910390a361187f6000838361194e565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b61197a81611967565b811461198557600080fd5b50565b60008135905061199781611971565b92915050565b6000602082840312156119b3576119b261195d565b5b60006119c184828501611988565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611a045780820151818401526020810190506119e9565b60008484015250505050565b6000601f19601f8301169050919050565b6000611a2c826119ca565b611a3681856119d5565b9350611a468185602086016119e6565b611a4f81611a10565b840191505092915050565b60006020820190508181036000830152611a748184611a21565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611aa782611a7c565b9050919050565b611ab781611a9c565b8114611ac257600080fd5b50565b600081359050611ad481611aae565b92915050565b60008060408385031215611af157611af061195d565b5b6000611aff85828601611ac5565b9250506020611b1085828601611988565b9150509250929050565b60008115159050919050565b611b2f81611b1a565b82525050565b6000602082019050611b4a6000830184611b26565b92915050565b600060208284031215611b6657611b6561195d565b5b6000611b7484828501611ac5565b91505092915050565b611b8681611967565b82525050565b611b9581611a9c565b82525050565b6000608082019050611bb06000830187611b7d565b8181036020830152611bc28186611a21565b90508181036040830152611bd68185611a21565b9050611be56060830184611b8c565b95945050505050565b6000602082019050611c036000830184611b7d565b92915050565b6000611c1482611a7c565b9050919050565b611c2481611c09565b8114611c2f57600080fd5b50565b600081359050611c4181611c1b565b92915050565b600060208284031215611c5d57611c5c61195d565b5b6000611c6b84828501611c32565b91505092915050565b600080600060608486031215611c8d57611c8c61195d565b5b6000611c9b86828701611ac5565b9350506020611cac86828701611ac5565b9250506040611cbd86828701611988565b9150509250925092565b600060ff82169050919050565b611cdd81611cc7565b82525050565b6000602082019050611cf86000830184611cd4565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611d4082611a10565b810181811067ffffffffffffffff82111715611d5f57611d5e611d08565b5b80604052505050565b6000611d72611953565b9050611d7e8282611d37565b919050565b600067ffffffffffffffff821115611d9e57611d9d611d08565b5b611da782611a10565b9050602081019050919050565b82818337600083830152505050565b6000611dd6611dd184611d83565b611d68565b905082815260208101848484011115611df257611df1611d03565b5b611dfd848285611db4565b509392505050565b600082601f830112611e1a57611e19611cfe565b5b8135611e2a848260208601611dc3565b91505092915050565b60008060408385031215611e4a57611e4961195d565b5b600083013567ffffffffffffffff811115611e6857611e67611962565b5b611e7485828601611e05565b925050602083013567ffffffffffffffff811115611e9557611e94611962565b5b611ea185828601611e05565b9150509250929050565b6000602082019050611ec06000830184611b8c565b92915050565b60008060408385031215611edd57611edc61195d565b5b6000611eeb85828601611ac5565b9250506020611efc85828601611ac5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611f4d57607f821691505b602082108103611f6057611f5f611f06565b5b50919050565b600081519050611f7581611971565b92915050565b600060208284031215611f9157611f9061195d565b5b6000611f9f84828501611f66565b91505092915050565b6000604082019050611fbd6000830185611b8c565b611fca6020830184611b7d565b9392505050565b611fda81611b1a565b8114611fe557600080fd5b50565b600081519050611ff781611fd1565b92915050565b6000602082840312156120135761201261195d565b5b600061202184828501611fe8565b91505092915050565b600081905092915050565b50565b600061204560008361202a565b915061205082612035565b600082019050919050565b600061206682612038565b9150819050919050565b7f4661696c656420746f2073656e642057444f4745000000000000000000000000600082015250565b60006120a66014836119d5565b91506120b182612070565b602082019050919050565b600060208201905081810360008301526120d581612099565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061211682611967565b915061212183611967565b9250828201905080821115612139576121386120dc565b5b92915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026121a17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612164565b6121ab8683612164565b95508019841693508086168417925050509392505050565b6000819050919050565b60006121e86121e36121de84611967565b6121c3565b611967565b9050919050565b6000819050919050565b612202836121cd565b61221661220e826121ef565b848454612171565b825550505050565b600090565b61222b61221e565b6122368184846121f9565b505050565b5b8181101561225a5761224f600082612223565b60018101905061223c565b5050565b601f82111561229f576122708161213f565b61227984612154565b81016020851015612288578190505b61229c61229485612154565b83018261223b565b50505b505050565b600082821c905092915050565b60006122c2600019846008026122a4565b1980831691505092915050565b60006122db83836122b1565b9150826002028217905092915050565b6122f4826119ca565b67ffffffffffffffff81111561230d5761230c611d08565b5b6123178254611f35565b61232282828561225e565b600060209050601f8311600181146123555760008415612343578287015190505b61234d85826122cf565b8655506123b5565b601f1984166123638661213f565b60005b8281101561238b57848901518255600182019150602085019450602081019050612366565b868310156123a857848901516123a4601f8916826122b1565b8355505b6001600288020188555050505b505050505050565b60006123c882611967565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036123fa576123f96120dc565b5b600182019050919050565b7f4e6f7420656e6f7567682057444f47452073656e742c20636865636b20706f7360008201527f7450726963650000000000000000000000000000000000000000000000000000602082015250565b60006124616026836119d5565b915061246c82612405565b604082019050919050565b6000602082019050818103600083015261249081612454565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006124f36025836119d5565b91506124fe82612497565b604082019050919050565b60006020820190508181036000830152612522816124e6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006125856026836119d5565b915061259082612529565b604082019050919050565b600060208201905081810360008301526125b481612578565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006125f16020836119d5565b91506125fc826125bb565b602082019050919050565b60006020820190508181036000830152612620816125e4565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006126836024836119d5565b915061268e82612627565b604082019050919050565b600060208201905081810360008301526126b281612676565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006127156022836119d5565b9150612720826126b9565b604082019050919050565b6000602082019050818103600083015261274481612708565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612781601d836119d5565b915061278c8261274b565b602082019050919050565b600060208201905081810360008301526127b081612774565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006128136025836119d5565b915061281e826127b7565b604082019050919050565b6000602082019050818103600083015261284281612806565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006128a56023836119d5565b91506128b082612849565b604082019050919050565b600060208201905081810360008301526128d481612898565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006129376026836119d5565b9150612942826128db565b604082019050919050565b600060208201905081810360008301526129668161292a565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006129a3601f836119d5565b91506129ae8261296d565b602082019050919050565b600060208201905081810360008301526129d281612996565b905091905056fea264697066735822122012503a3cd3542752746d5104a993f05125b6bcda847ac10eeeef0bb5d9e0ab3864736f6c63430008100033