false
true
0

Contract Address Details

0x8854bC985fB5725F872c8856bEA11B917cAEb2fE

Token
PHAME (PHAME)
Creator
0x64e7ff–1c04a3 at 0x2ae891–bd7a35
Balance
0 PLS ( )
Tokens
Fetching tokens...
Transactions
12,627 Transactions
Transfers
0 Transfers
Gas Used
0
Last Balance Update
25963819
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
Contract name:
PHAME




Optimization enabled
true
Compiler version
v0.7.6+commit.7338295f




Optimization runs
200
EVM Version
istanbul




Verified at
2023-09-15T17:57:51.349719Z

Constructor Arguments

0x00000000000000000000000000000000000000000000000000000000650598c0000000000000000000000000000000000000000000000000000000006505a6d00000000000000000000000000000000000000000000000000000000066e6da5000000000000000000000000064e7ff734848dc7b04d00da71615649d321c04a3

Arg [0] (uint256) : 1694865600
Arg [1] (uint256) : 1694869200
Arg [2] (uint256) : 1726405200
Arg [3] (address) : 0x64e7ff734848dc7b04d00da71615649d321c04a3

              

contracts/protocol/tokens/PHAME.sol

// SPDX-License-Identifier: agpl-3.0
pragma solidity 0.7.6;

import "../../dependencies/openzeppelin/contracts/SafeMath.sol";
import "../../dependencies/openzeppelin/contracts/Ownable.sol";
import "../../dependencies/openzeppelin/contracts/ERC20Capped.sol";
import "../../dependencies/governance/TreasuryOwnable.sol";

contract PHAME is Ownable, ERC20Capped, TreasuryOwnable {
    using SafeMath for uint256;

    uint256 public immutable mintLockTime; // no more mint amount change
    // can mint between start time and expiration time
    uint256 public immutable mintStartTime;
    uint256 public immutable mintExpirationTime;

    mapping(address => uint256) private _mints;

    event Mint(
        address indexed minter,
        address indexed onBehalfOf,
        uint256 amount
    );

    constructor(
        uint256 mintLockTime_,
        uint256 mintStartTime_,
        uint256 mintExpirationTime_,
        address treasury_
    )
        Ownable()
        TreasuryOwnable(treasury_)
        ERC20("PHAME", "PHAME")
        ERC20Capped(55555000000000000000000000)
    {
        require(
            mintLockTime_ < mintStartTime_,
            "PHAME: Mint should not start before mint amounts are locked"
        );
        require(
            mintStartTime_ < mintExpirationTime_,
            "PHAME: Mint Should not expire before it starts"
        );
        mintLockTime = mintLockTime_;
        mintStartTime = mintStartTime_;
        mintExpirationTime = mintExpirationTime_;

        _mints[treasury_] = 55555000000000000000000000;
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal override {
        require(
            block.timestamp >= mintStartTime,
            "PHAME: Cannot transfer before mint starts"
        );
        super._transfer(sender, recipient, amount);
    }

    function transferTreasury(
        address newTreasury
    ) external override onlyTreasury {
        require(
            newTreasury != address(0),
            "TreasuryOwnable: new treasury is the zero address"
        );
        // transfer mintable amount
        uint256 mintAmount = _mints[treasury()];
        if (mintAmount > 0) {
            delete _mints[treasury()];
            _mints[newTreasury] = _mints[newTreasury].add(mintAmount);
        }
        _transferTreasury(newTreasury);
    }

    function mintOf(address account) public view returns (uint256) {
        return _mints[account];
    }

    function mint() external returns (bool) {
        require(
            block.timestamp >= mintStartTime,
            "PHAME: Cannot mint before mint started"
        );
        require(
            block.timestamp < mintExpirationTime,
            "PHAME: Cannot mint after mint expired"
        );

        address sender = _msgSender();
        uint256 mintAmount = _mints[sender];
        require(mintAmount > 0, "PHAME: nothing to mint");

        delete _mints[sender];
        _mint(sender, mintAmount);
        emit Mint(sender, sender, mintAmount);
        return true;
    }

    function mintByTreasury(
        address account
    ) external onlyTreasury returns (bool) {
        require(
            block.timestamp >= mintExpirationTime,
            "PHAME: No expired token for treasury to mint before mint expired"
        );

        uint256 mintAmount = _mints[account];
        require(mintAmount > 0, "PHAME: nothing to mint");

        delete _mints[account];
        _mint(treasury(), mintAmount);
        emit Mint(treasury(), account, mintAmount);
        return true;
    }

    function setMint(address account, uint256 amount) external onlyOwner {
        require(
            block.timestamp < mintLockTime,
            "PHAME: Cannot set mint amount after mint locked"
        );
        require(
            account != treasury(),
            "PHAME: Should not adjust mint amount for treasury"
        );
        uint256 currentAmount = _mints[account];
        // adjust treasury's mintable amount
        _mints[treasury()] = _mints[treasury()].add(currentAmount).sub(
            amount,
            "PHAME: amount exceeds maximum allowance"
        );
        // record new amount
        if (amount == 0) {
            delete _mints[account];
        } else {
            _mints[account] = amount;
        }
    }

    function setMints(
        address[] memory accounts,
        uint256[] memory amounts
    ) external onlyOwner {
        require(
            block.timestamp < mintLockTime,
            "PHAME: Cannot set mint amount after mint locked"
        );
        require(accounts.length == amounts.length, "PHAME: input mismatch");
        for (uint256 i = 0; i < accounts.length; i++) {
            address account = accounts[i];
            uint256 amount = amounts[i];
            require(
                account != treasury(),
                "PHAME: Should not adjust mint amount for treasury"
            );
            uint256 currentAmount = _mints[account];
            // adjust treasury's mintable amount
            _mints[treasury()] = _mints[treasury()].add(currentAmount).sub(
                amount,
                "PHAME: amount exceeds maximum allowance"
            );
            // record new amount
            if (amount == 0) {
                delete _mints[account];
            } else {
                _mints[account] = amount;
            }
        }
    }

    function addMint(address account, uint256 amount) external onlyOwner {
        require(
            block.timestamp < mintLockTime,
            "PHAME: Cannot add mint amount after mint locked"
        );
        require(amount > 0, "PHAME: Meaningless to add zero amount");
        require(
            account != treasury(),
            "PHAME: Should not adjust mint amount for treasury"
        );

        // adjust treasury's mintable amount
        _mints[treasury()] = _mints[treasury()].sub(
            amount,
            "PHAME: amount exceeds maximum allowance"
        );
        // record new amount
        _mints[account] = _mints[account].add(amount);
    }
}
        

contracts/dependencies/governance/TreasuryOwnable.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "../openzeppelin/contracts/Context.sol";

abstract contract TreasuryOwnable is Context {
    address private _treasury;

    event TreasuryTransferred(
        address indexed previousTreasury,
        address indexed newTreasury
    );

    /**
     * @dev Initializes the contract setting the given account (`treasury_`) as the initial treasury.
     */
    constructor(address treasury_) {
        _treasury = treasury_;
        emit TreasuryTransferred(address(0), treasury_);
    }

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

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

    /**
     * @dev Transfers treasury of the contract to a new account (`newTreasury`).
     * Can only be called by the current treasury.
     */
    function transferTreasury(
        address newTreasury
    ) external virtual onlyTreasury {
        require(
            newTreasury != address(0),
            "TreasuryOwnable: new treasury is the zero address"
        );
        _transferTreasury(newTreasury);
    }

    function _transferTreasury(address newTreasury) internal virtual {
        emit TreasuryTransferred(_treasury, newTreasury);
        _treasury = newTreasury;
    }
}
          

contracts/dependencies/openzeppelin/contracts/Context.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

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

contracts/dependencies/openzeppelin/contracts/ERC20.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "./Context.sol";
import "./IERC20Metadata.sol";
import "./SafeMath.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 guidelines: functions revert instead
 * of 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, IERC20Metadata {
    using SafeMath for uint256;

    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

    /**
     * @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 {_setupDecimals} is
     * called.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }

    /**
     * @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) {
        uint256 currentAllowance = allowance(sender, _msgSender());
        if (currentAllowance != type(uint256).max) {
            uint256 decreasedAllowance = currentAllowance.sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            );

            _approve(sender, _msgSender(), decreasedAllowance);
        }
        _transfer(sender, recipient, 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].add(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)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

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

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

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

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

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

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

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

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

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

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

contracts/dependencies/openzeppelin/contracts/ERC20Capped.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "./IERC20Capped.sol";
import "./ERC20.sol";

/**
 * @dev Extension of {ERC20} that adds a cap to the supply of tokens.
 */
abstract contract ERC20Capped is IERC20Capped, ERC20 {
    using SafeMath for uint256;

    uint256 private immutable _cap;

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor(uint256 cap_) {
        require(cap_ > 0, "ERC20Capped: cap is 0");
        _cap = cap_;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view virtual override returns (uint256) {
        return _cap;
    }

    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - minted tokens must not cause the total supply to go over the cap.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        if (from == address(0)) {
            // When minting tokens
            require(
                totalSupply().add(amount) <= cap(),
                "ERC20Capped: cap exceeded"
            );
        }
    }
}
          

contracts/dependencies/openzeppelin/contracts/IERC20.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <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
    );
}
          

contracts/dependencies/openzeppelin/contracts/IERC20Capped.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "./IERC20Metadata.sol";

/**
 * @dev Extension of {ERC20} that adds a cap to the supply of tokens.
 */
interface IERC20Capped is IERC20Metadata {
    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() external view returns (uint256);
}
          

contracts/dependencies/openzeppelin/contracts/IERC20Metadata.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity 0.7.6;

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

contracts/dependencies/openzeppelin/contracts/Ownable.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "./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() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

contracts/dependencies/openzeppelin/contracts/SafeMath.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}
          

Compiler Settings

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

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"uint256","name":"mintLockTime_","internalType":"uint256"},{"type":"uint256","name":"mintStartTime_","internalType":"uint256"},{"type":"uint256","name":"mintExpirationTime_","internalType":"uint256"},{"type":"address","name":"treasury_","internalType":"address"}]},{"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":"Mint","inputs":[{"type":"address","name":"minter","internalType":"address","indexed":true},{"type":"address","name":"onBehalfOf","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","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":"event","name":"TreasuryTransferred","inputs":[{"type":"address","name":"previousTreasury","internalType":"address","indexed":true},{"type":"address","name":"newTreasury","internalType":"address","indexed":true}],"anonymous":false},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"addMint","inputs":[{"type":"address","name":"account","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"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":"uint256","name":"","internalType":"uint256"}],"name":"cap","inputs":[]},{"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":"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":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"mint","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"mintByTreasury","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"mintExpirationTime","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"mintLockTime","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"mintOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"mintStartTime","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setMint","inputs":[{"type":"address","name":"account","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setMints","inputs":[{"type":"address[]","name":"accounts","internalType":"address[]"},{"type":"uint256[]","name":"amounts","internalType":"uint256[]"}]},{"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":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"sender","internalType":"address"},{"type":"address","name":"recipient","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":"transferTreasury","inputs":[{"type":"address","name":"newTreasury","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"treasury","inputs":[]}]
              

Contract Creation Code

0x6101006040523480156200001257600080fd5b506040516200231a3803806200231a833981810160405260808110156200003857600080fd5b508051602080830151604080850151606090950151815180830183526005808252645048414d4560d81b82870181905284518086019095529084529483019490945293949193919282916a2df43a95a9c3073be00000919060006200009c62000283565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508151620000fb90600490602085019062000287565b5080516200011190600590602084019062000287565b50506006805460ff19166012179055508062000174576040805162461bcd60e51b815260206004820152601560248201527f45524332304361707065643a2063617020697320300000000000000000000000604482015290519081900360640190fd5b60805260068054610100600160a81b0319166101006001600160a01b038416908102919091179091556040516000907febebcc22237fa047dcfebf54b185ec126c9b24d45f4bd2a18e4fa02e07308c40908290a350828410620002095760405162461bcd60e51b815260040180806020018281038252603b815260200180620022b1603b913960400191505060405180910390fd5b818310620002495760405162461bcd60e51b815260040180806020018281038252602e815260200180620022ec602e913960400191505060405180910390fd5b60a09390935260c09190915260e0526001600160a01b031660009081526007602052604090206a2df43a95a9c3073be00000905562000333565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620002bf57600085556200030a565b82601f10620002da57805160ff19168380011785556200030a565b828001600101855582156200030a579182015b828111156200030a578251825591602001919060010190620002ed565b50620003189291506200031c565b5090565b5b808211156200031857600081556001016200031d565b60805160a05160c05160e051611f256200038c60003980610729528061095c5280610e9f5250806106ca5280610cff52806118aa5250806109f65280610d23528061104952806114bd5250806108e55250611f256000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c80638da5cb5b116100de578063b1f536fa11610097578063d8a6021c11610071578063d8a6021c1461056d578063dd62ed3e14610593578063f2fde38b146105c1578063fd4d43c5146105e75761018e565b8063b1f536fa146104f5578063b280d9991461051b578063c2f1dcc8146105415761018e565b80638da5cb5b1461047d578063931e2e491461048557806393fea3f81461048d57806395d89b4114610495578063a457c2d71461049d578063a9059cbb146104c95761018e565b8063355274ea1161014b57806361d027b31161012557806361d027b3146103025780636f95f94e1461032657806370a082311461044f578063715018a6146104755761018e565b8063355274ea146102c657806339509351146102ce5780635813fd3d146102fa5761018e565b806306fdde0314610193578063095ea7b3146102105780631249c58b1461025057806318160ddd1461025857806323b872dd14610272578063313ce567146102a8575b600080fd5b61019b610613565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d55781810151838201526020016101bd565b50505050905090810190601f1680156102025780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61023c6004803603604081101561022657600080fd5b506001600160a01b0381351690602001356106a9565b604080519115158252519081900360200190f35b61023c6106c6565b610260610862565b60408051918252519081900360200190f35b61023c6004803603606081101561028857600080fd5b506001600160a01b03813581169160208101359091169060400135610868565b6102b06108da565b6040805160ff9092168252519081900360200190f35b6102606108e3565b61023c600480360360408110156102e457600080fd5b506001600160a01b038135169060200135610907565b61026061095a565b61030a61097e565b604080516001600160a01b039092168252519081900360200190f35b61044d6004803603604081101561033c57600080fd5b81019060208101813564010000000081111561035757600080fd5b82018360208201111561036957600080fd5b8035906020019184602083028401116401000000008311171561038b57600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092959493602081019350359150506401000000008111156103db57600080fd5b8201836020820111156103ed57600080fd5b8035906020019184602083028401116401000000008311171561040f57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610992945050505050565b005b6102606004803603602081101561046557600080fd5b50356001600160a01b0316610c27565b61044d610c42565b61030a610cee565b610260610cfd565b610260610d21565b61019b610d45565b61023c600480360360408110156104b357600080fd5b506001600160a01b038135169060200135610da6565b61023c600480360360408110156104df57600080fd5b506001600160a01b038135169060200135610e0e565b6102606004803603602081101561050b57600080fd5b50356001600160a01b0316610e22565b61023c6004803603602081101561053157600080fd5b50356001600160a01b0316610e3d565b61044d6004803603604081101561055757600080fd5b506001600160a01b038135169060200135610fe5565b61044d6004803603602081101561058357600080fd5b50356001600160a01b03166111ec565b610260600480360360408110156105a957600080fd5b506001600160a01b038135811691602001351661132c565b61044d600480360360208110156105d757600080fd5b50356001600160a01b0316611357565b61044d600480360360408110156105fd57600080fd5b506001600160a01b038135169060200135611459565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561069f5780601f106106745761010080835404028352916020019161069f565b820191906000526020600020905b81548152906001019060200180831161068257829003601f168201915b5050505050905090565b60006106bd6106b661162f565b8484611633565b50600192915050565b60007f00000000000000000000000000000000000000000000000000000000000000004210156107275760405162461bcd60e51b8152600401808060200182810382526026815260200180611e296026913960400191505060405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000042106107855760405162461bcd60e51b8152600401808060200182810382526025815260200180611cf06025913960400191505060405180910390fd5b600061078f61162f565b6001600160a01b038116600090815260076020526040902054909150806107f6576040805162461bcd60e51b815260206004820152601660248201527514121053514e881b9bdd1a1a5b99c81d1bc81b5a5b9d60521b604482015290519081900360640190fd5b6001600160a01b038216600090815260076020526040812055610819828261171f565b6040805182815290516001600160a01b0384169182917fab8530f87dc9b59234c4623bf917212bb2536d647574c8e7e5da92c2ede0c9f89181900360200190a360019250505090565b60035490565b60008061087c8561087761162f565b61132c565b905060001981146108c45760006108ae84604051806060016040528060288152602001611d8b60289139849190611811565b90506108c2866108bc61162f565b83611633565b505b6108cf8585856118a8565b506001949350505050565b60065460ff1690565b7f000000000000000000000000000000000000000000000000000000000000000090565b60006106bd61091461162f565b84610955856002600061092561162f565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611912565b611633565b7f000000000000000000000000000000000000000000000000000000000000000081565b60065461010090046001600160a01b031690565b61099a61162f565b6001600160a01b03166109ab610cee565b6001600160a01b0316146109f4576040805162461bcd60e51b81526020600482018190526024820152600080516020611db3833981519152604482015290519081900360640190fd5b7f00000000000000000000000000000000000000000000000000000000000000004210610a525760405162461bcd60e51b815260040180806020018281038252602f815260200180611be1602f913960400191505060405180910390fd5b8051825114610aa0576040805162461bcd60e51b81526020600482015260156024820152740a090829a8a7440d2dce0eae840dad2e6dac2e8c6d605b1b604482015290519081900360640190fd5b60005b8251811015610c22576000838281518110610aba57fe5b602002602001015190506000838381518110610ad257fe5b60200260200101519050610ae461097e565b6001600160a01b0316826001600160a01b03161415610b345760405162461bcd60e51b8152600401808060200182810382526031815260200180611c106031913960400191505060405180910390fd5b600060076000846001600160a01b03166001600160a01b03168152602001908152602001600020549050610bb282604051806060016040528060278152602001611c4160279139610bab8460076000610b8b61097e565b6001600160a01b0316815260208101919091526040016000205490611912565b9190611811565b60076000610bbe61097e565b6001600160a01b0316815260208101919091526040016000205581610bfb576001600160a01b038316600090815260076020526040812055610c17565b6001600160a01b03831660009081526007602052604090208290555b505050600101610aa3565b505050565b6001600160a01b031660009081526001602052604090205490565b610c4a61162f565b6001600160a01b0316610c5b610cee565b6001600160a01b031614610ca4576040805162461bcd60e51b81526020600482018190526024820152600080516020611db3833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b60058054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561069f5780601f106106745761010080835404028352916020019161069f565b60006106bd610db361162f565b8461095585604051806060016040528060258152602001611ecb6025913960026000610ddd61162f565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611811565b60006106bd610e1b61162f565b84846118a8565b6001600160a01b031660009081526007602052604090205490565b6000610e4761162f565b6001600160a01b0316610e5861097e565b6001600160a01b031614610e9d5760405162461bcd60e51b815260040180806020018281038252602b815260200180611d3b602b913960400191505060405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000421015610efc5760405162461bcd60e51b8152600401808060200182810382526040815260200180611cb06040913960400191505060405180910390fd5b6001600160a01b03821660009081526007602052604090205480610f60576040805162461bcd60e51b815260206004820152601660248201527514121053514e881b9bdd1a1a5b99c81d1bc81b5a5b9d60521b604482015290519081900360640190fd5b6001600160a01b038316600090815260076020526040812055610f8a610f8461097e565b8261171f565b826001600160a01b0316610f9c61097e565b6001600160a01b03167fab8530f87dc9b59234c4623bf917212bb2536d647574c8e7e5da92c2ede0c9f8836040518082815260200191505060405180910390a350600192915050565b610fed61162f565b6001600160a01b0316610ffe610cee565b6001600160a01b031614611047576040805162461bcd60e51b81526020600482018190526024820152600080516020611db3833981519152604482015290519081900360640190fd5b7f000000000000000000000000000000000000000000000000000000000000000042106110a55760405162461bcd60e51b815260040180806020018281038252602f815260200180611e73602f913960400191505060405180910390fd5b600081116110e45760405162461bcd60e51b8152600401808060200182810382526025815260200180611d666025913960400191505060405180910390fd5b6110ec61097e565b6001600160a01b0316826001600160a01b0316141561113c5760405162461bcd60e51b8152600401808060200182810382526031815260200180611c106031913960400191505060405180910390fd5b61118681604051806060016040528060278152602001611c41602791396007600061116561097e565b6001600160a01b031681526020810191909152604001600020549190611811565b6007600061119261097e565b6001600160a01b03908116825260208083019390935260409182016000908120949094558516835260079091529020546111cc9082611912565b6001600160a01b0390921660009081526007602052604090209190915550565b6111f461162f565b6001600160a01b031661120561097e565b6001600160a01b03161461124a5760405162461bcd60e51b815260040180806020018281038252602b815260200180611d3b602b913960400191505060405180910390fd5b6001600160a01b03811661128f5760405162461bcd60e51b8152600401808060200182810382526031815260200180611dd36031913960400191505060405180910390fd5b60006007600061129d61097e565b6001600160a01b031681526020810191909152604001600020549050801561131f57600760006112cb61097e565b6001600160a01b03908116825260208083019390935260409182016000908120819055908516815260079092529020546113059082611912565b6001600160a01b0383166000908152600760205260409020555b61132882611973565b5050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61135f61162f565b6001600160a01b0316611370610cee565b6001600160a01b0316146113b9576040805162461bcd60e51b81526020600482018190526024820152600080516020611db3833981519152604482015290519081900360640190fd5b6001600160a01b0381166113fe5760405162461bcd60e51b8152600401808060200182810382526026815260200180611c686026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b61146161162f565b6001600160a01b0316611472610cee565b6001600160a01b0316146114bb576040805162461bcd60e51b81526020600482018190526024820152600080516020611db3833981519152604482015290519081900360640190fd5b7f000000000000000000000000000000000000000000000000000000000000000042106115195760405162461bcd60e51b815260040180806020018281038252602f815260200180611be1602f913960400191505060405180910390fd5b61152161097e565b6001600160a01b0316826001600160a01b031614156115715760405162461bcd60e51b8152600401808060200182810382526031815260200180611c106031913960400191505060405180910390fd5b600060076000846001600160a01b03166001600160a01b031681526020019081526020016000205490506115c882604051806060016040528060278152602001611c4160279139610bab8460076000610b8b61097e565b600760006115d461097e565b6001600160a01b0316815260208101919091526040016000205581611611576001600160a01b038316600090815260076020526040812055610c22565b506001600160a01b0391909116600090815260076020526040902055565b3390565b6001600160a01b0383166116785760405162461bcd60e51b8152600401808060200182810382526024815260200180611e4f6024913960400191505060405180910390fd5b6001600160a01b0382166116bd5760405162461bcd60e51b8152600401808060200182810382526022815260200180611c8e6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03821661177a576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611786600083836119da565b6003546117939082611912565b6003556001600160a01b0382166000908152600160205260409020546117b99082611912565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600081848411156118a05760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561186557818101518382015260200161184d565b50505050905090810190601f1680156118925780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b7f00000000000000000000000000000000000000000000000000000000000000004210156119075760405162461bcd60e51b8152600401808060200182810382526029815260200180611ea26029913960400191505060405180910390fd5b610c22838383611a60565b60008282018381101561196c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6006546040516001600160a01b0380841692610100900416907febebcc22237fa047dcfebf54b185ec126c9b24d45f4bd2a18e4fa02e07308c4090600090a3600680546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6119e5838383610c22565b6001600160a01b038316610c22576119fb6108e3565b611a0d82611a07610862565b90611912565b1115610c22576040805162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b6001600160a01b038316611aa55760405162461bcd60e51b8152600401808060200182810382526025815260200180611e046025913960400191505060405180910390fd5b6001600160a01b038216611aea5760405162461bcd60e51b8152600401808060200182810382526023815260200180611bbe6023913960400191505060405180910390fd5b611af58383836119da565b611b3281604051806060016040528060268152602001611d15602691396001600160a01b0386166000908152600160205260409020549190611811565b6001600160a01b038085166000908152600160205260408082209390935590841681522054611b619082611912565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573735048414d453a2043616e6e6f7420736574206d696e7420616d6f756e74206166746572206d696e74206c6f636b65645048414d453a2053686f756c64206e6f742061646a757374206d696e7420616d6f756e7420666f722074726561737572795048414d453a20616d6f756e742065786365656473206d6178696d756d20616c6c6f77616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735048414d453a204e6f206578706972656420746f6b656e20666f7220747265617375727920746f206d696e74206265666f7265206d696e7420657870697265645048414d453a2043616e6e6f74206d696e74206166746572206d696e74206578706972656445524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636554726561737572794f776e61626c653a2063616c6c6572206973206e6f74207468652074726561737572795048414d453a204d65616e696e676c65737320746f20616464207a65726f20616d6f756e7445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657254726561737572794f776e61626c653a206e657720747265617375727920697320746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f20616464726573735048414d453a2043616e6e6f74206d696e74206265666f7265206d696e74207374617274656445524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735048414d453a2043616e6e6f7420616464206d696e7420616d6f756e74206166746572206d696e74206c6f636b65645048414d453a2043616e6e6f74207472616e73666572206265666f7265206d696e742073746172747345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c9d12b75459a32e9aafecd0bb6022580936522be93cb1a04c1bb96bcd094a5de64736f6c634300070600335048414d453a204d696e742073686f756c64206e6f74207374617274206265666f7265206d696e7420616d6f756e747320617265206c6f636b65645048414d453a204d696e742053686f756c64206e6f7420657870697265206265666f72652069742073746172747300000000000000000000000000000000000000000000000000000000650598c0000000000000000000000000000000000000000000000000000000006505a6d00000000000000000000000000000000000000000000000000000000066e6da5000000000000000000000000064e7ff734848dc7b04d00da71615649d321c04a3

Deployed ByteCode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c80638da5cb5b116100de578063b1f536fa11610097578063d8a6021c11610071578063d8a6021c1461056d578063dd62ed3e14610593578063f2fde38b146105c1578063fd4d43c5146105e75761018e565b8063b1f536fa146104f5578063b280d9991461051b578063c2f1dcc8146105415761018e565b80638da5cb5b1461047d578063931e2e491461048557806393fea3f81461048d57806395d89b4114610495578063a457c2d71461049d578063a9059cbb146104c95761018e565b8063355274ea1161014b57806361d027b31161012557806361d027b3146103025780636f95f94e1461032657806370a082311461044f578063715018a6146104755761018e565b8063355274ea146102c657806339509351146102ce5780635813fd3d146102fa5761018e565b806306fdde0314610193578063095ea7b3146102105780631249c58b1461025057806318160ddd1461025857806323b872dd14610272578063313ce567146102a8575b600080fd5b61019b610613565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d55781810151838201526020016101bd565b50505050905090810190601f1680156102025780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61023c6004803603604081101561022657600080fd5b506001600160a01b0381351690602001356106a9565b604080519115158252519081900360200190f35b61023c6106c6565b610260610862565b60408051918252519081900360200190f35b61023c6004803603606081101561028857600080fd5b506001600160a01b03813581169160208101359091169060400135610868565b6102b06108da565b6040805160ff9092168252519081900360200190f35b6102606108e3565b61023c600480360360408110156102e457600080fd5b506001600160a01b038135169060200135610907565b61026061095a565b61030a61097e565b604080516001600160a01b039092168252519081900360200190f35b61044d6004803603604081101561033c57600080fd5b81019060208101813564010000000081111561035757600080fd5b82018360208201111561036957600080fd5b8035906020019184602083028401116401000000008311171561038b57600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092959493602081019350359150506401000000008111156103db57600080fd5b8201836020820111156103ed57600080fd5b8035906020019184602083028401116401000000008311171561040f57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610992945050505050565b005b6102606004803603602081101561046557600080fd5b50356001600160a01b0316610c27565b61044d610c42565b61030a610cee565b610260610cfd565b610260610d21565b61019b610d45565b61023c600480360360408110156104b357600080fd5b506001600160a01b038135169060200135610da6565b61023c600480360360408110156104df57600080fd5b506001600160a01b038135169060200135610e0e565b6102606004803603602081101561050b57600080fd5b50356001600160a01b0316610e22565b61023c6004803603602081101561053157600080fd5b50356001600160a01b0316610e3d565b61044d6004803603604081101561055757600080fd5b506001600160a01b038135169060200135610fe5565b61044d6004803603602081101561058357600080fd5b50356001600160a01b03166111ec565b610260600480360360408110156105a957600080fd5b506001600160a01b038135811691602001351661132c565b61044d600480360360208110156105d757600080fd5b50356001600160a01b0316611357565b61044d600480360360408110156105fd57600080fd5b506001600160a01b038135169060200135611459565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561069f5780601f106106745761010080835404028352916020019161069f565b820191906000526020600020905b81548152906001019060200180831161068257829003601f168201915b5050505050905090565b60006106bd6106b661162f565b8484611633565b50600192915050565b60007f000000000000000000000000000000000000000000000000000000006505a6d04210156107275760405162461bcd60e51b8152600401808060200182810382526026815260200180611e296026913960400191505060405180910390fd5b7f0000000000000000000000000000000000000000000000000000000066e6da5042106107855760405162461bcd60e51b8152600401808060200182810382526025815260200180611cf06025913960400191505060405180910390fd5b600061078f61162f565b6001600160a01b038116600090815260076020526040902054909150806107f6576040805162461bcd60e51b815260206004820152601660248201527514121053514e881b9bdd1a1a5b99c81d1bc81b5a5b9d60521b604482015290519081900360640190fd5b6001600160a01b038216600090815260076020526040812055610819828261171f565b6040805182815290516001600160a01b0384169182917fab8530f87dc9b59234c4623bf917212bb2536d647574c8e7e5da92c2ede0c9f89181900360200190a360019250505090565b60035490565b60008061087c8561087761162f565b61132c565b905060001981146108c45760006108ae84604051806060016040528060288152602001611d8b60289139849190611811565b90506108c2866108bc61162f565b83611633565b505b6108cf8585856118a8565b506001949350505050565b60065460ff1690565b7f0000000000000000000000000000000000000000002df43a95a9c3073be0000090565b60006106bd61091461162f565b84610955856002600061092561162f565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611912565b611633565b7f0000000000000000000000000000000000000000000000000000000066e6da5081565b60065461010090046001600160a01b031690565b61099a61162f565b6001600160a01b03166109ab610cee565b6001600160a01b0316146109f4576040805162461bcd60e51b81526020600482018190526024820152600080516020611db3833981519152604482015290519081900360640190fd5b7f00000000000000000000000000000000000000000000000000000000650598c04210610a525760405162461bcd60e51b815260040180806020018281038252602f815260200180611be1602f913960400191505060405180910390fd5b8051825114610aa0576040805162461bcd60e51b81526020600482015260156024820152740a090829a8a7440d2dce0eae840dad2e6dac2e8c6d605b1b604482015290519081900360640190fd5b60005b8251811015610c22576000838281518110610aba57fe5b602002602001015190506000838381518110610ad257fe5b60200260200101519050610ae461097e565b6001600160a01b0316826001600160a01b03161415610b345760405162461bcd60e51b8152600401808060200182810382526031815260200180611c106031913960400191505060405180910390fd5b600060076000846001600160a01b03166001600160a01b03168152602001908152602001600020549050610bb282604051806060016040528060278152602001611c4160279139610bab8460076000610b8b61097e565b6001600160a01b0316815260208101919091526040016000205490611912565b9190611811565b60076000610bbe61097e565b6001600160a01b0316815260208101919091526040016000205581610bfb576001600160a01b038316600090815260076020526040812055610c17565b6001600160a01b03831660009081526007602052604090208290555b505050600101610aa3565b505050565b6001600160a01b031660009081526001602052604090205490565b610c4a61162f565b6001600160a01b0316610c5b610cee565b6001600160a01b031614610ca4576040805162461bcd60e51b81526020600482018190526024820152600080516020611db3833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b7f000000000000000000000000000000000000000000000000000000006505a6d081565b7f00000000000000000000000000000000000000000000000000000000650598c081565b60058054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561069f5780601f106106745761010080835404028352916020019161069f565b60006106bd610db361162f565b8461095585604051806060016040528060258152602001611ecb6025913960026000610ddd61162f565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611811565b60006106bd610e1b61162f565b84846118a8565b6001600160a01b031660009081526007602052604090205490565b6000610e4761162f565b6001600160a01b0316610e5861097e565b6001600160a01b031614610e9d5760405162461bcd60e51b815260040180806020018281038252602b815260200180611d3b602b913960400191505060405180910390fd5b7f0000000000000000000000000000000000000000000000000000000066e6da50421015610efc5760405162461bcd60e51b8152600401808060200182810382526040815260200180611cb06040913960400191505060405180910390fd5b6001600160a01b03821660009081526007602052604090205480610f60576040805162461bcd60e51b815260206004820152601660248201527514121053514e881b9bdd1a1a5b99c81d1bc81b5a5b9d60521b604482015290519081900360640190fd5b6001600160a01b038316600090815260076020526040812055610f8a610f8461097e565b8261171f565b826001600160a01b0316610f9c61097e565b6001600160a01b03167fab8530f87dc9b59234c4623bf917212bb2536d647574c8e7e5da92c2ede0c9f8836040518082815260200191505060405180910390a350600192915050565b610fed61162f565b6001600160a01b0316610ffe610cee565b6001600160a01b031614611047576040805162461bcd60e51b81526020600482018190526024820152600080516020611db3833981519152604482015290519081900360640190fd5b7f00000000000000000000000000000000000000000000000000000000650598c042106110a55760405162461bcd60e51b815260040180806020018281038252602f815260200180611e73602f913960400191505060405180910390fd5b600081116110e45760405162461bcd60e51b8152600401808060200182810382526025815260200180611d666025913960400191505060405180910390fd5b6110ec61097e565b6001600160a01b0316826001600160a01b0316141561113c5760405162461bcd60e51b8152600401808060200182810382526031815260200180611c106031913960400191505060405180910390fd5b61118681604051806060016040528060278152602001611c41602791396007600061116561097e565b6001600160a01b031681526020810191909152604001600020549190611811565b6007600061119261097e565b6001600160a01b03908116825260208083019390935260409182016000908120949094558516835260079091529020546111cc9082611912565b6001600160a01b0390921660009081526007602052604090209190915550565b6111f461162f565b6001600160a01b031661120561097e565b6001600160a01b03161461124a5760405162461bcd60e51b815260040180806020018281038252602b815260200180611d3b602b913960400191505060405180910390fd5b6001600160a01b03811661128f5760405162461bcd60e51b8152600401808060200182810382526031815260200180611dd36031913960400191505060405180910390fd5b60006007600061129d61097e565b6001600160a01b031681526020810191909152604001600020549050801561131f57600760006112cb61097e565b6001600160a01b03908116825260208083019390935260409182016000908120819055908516815260079092529020546113059082611912565b6001600160a01b0383166000908152600760205260409020555b61132882611973565b5050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61135f61162f565b6001600160a01b0316611370610cee565b6001600160a01b0316146113b9576040805162461bcd60e51b81526020600482018190526024820152600080516020611db3833981519152604482015290519081900360640190fd5b6001600160a01b0381166113fe5760405162461bcd60e51b8152600401808060200182810382526026815260200180611c686026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b61146161162f565b6001600160a01b0316611472610cee565b6001600160a01b0316146114bb576040805162461bcd60e51b81526020600482018190526024820152600080516020611db3833981519152604482015290519081900360640190fd5b7f00000000000000000000000000000000000000000000000000000000650598c042106115195760405162461bcd60e51b815260040180806020018281038252602f815260200180611be1602f913960400191505060405180910390fd5b61152161097e565b6001600160a01b0316826001600160a01b031614156115715760405162461bcd60e51b8152600401808060200182810382526031815260200180611c106031913960400191505060405180910390fd5b600060076000846001600160a01b03166001600160a01b031681526020019081526020016000205490506115c882604051806060016040528060278152602001611c4160279139610bab8460076000610b8b61097e565b600760006115d461097e565b6001600160a01b0316815260208101919091526040016000205581611611576001600160a01b038316600090815260076020526040812055610c22565b506001600160a01b0391909116600090815260076020526040902055565b3390565b6001600160a01b0383166116785760405162461bcd60e51b8152600401808060200182810382526024815260200180611e4f6024913960400191505060405180910390fd5b6001600160a01b0382166116bd5760405162461bcd60e51b8152600401808060200182810382526022815260200180611c8e6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03821661177a576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611786600083836119da565b6003546117939082611912565b6003556001600160a01b0382166000908152600160205260409020546117b99082611912565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600081848411156118a05760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561186557818101518382015260200161184d565b50505050905090810190601f1680156118925780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b7f000000000000000000000000000000000000000000000000000000006505a6d04210156119075760405162461bcd60e51b8152600401808060200182810382526029815260200180611ea26029913960400191505060405180910390fd5b610c22838383611a60565b60008282018381101561196c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6006546040516001600160a01b0380841692610100900416907febebcc22237fa047dcfebf54b185ec126c9b24d45f4bd2a18e4fa02e07308c4090600090a3600680546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6119e5838383610c22565b6001600160a01b038316610c22576119fb6108e3565b611a0d82611a07610862565b90611912565b1115610c22576040805162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b6001600160a01b038316611aa55760405162461bcd60e51b8152600401808060200182810382526025815260200180611e046025913960400191505060405180910390fd5b6001600160a01b038216611aea5760405162461bcd60e51b8152600401808060200182810382526023815260200180611bbe6023913960400191505060405180910390fd5b611af58383836119da565b611b3281604051806060016040528060268152602001611d15602691396001600160a01b0386166000908152600160205260409020549190611811565b6001600160a01b038085166000908152600160205260408082209390935590841681522054611b619082611912565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573735048414d453a2043616e6e6f7420736574206d696e7420616d6f756e74206166746572206d696e74206c6f636b65645048414d453a2053686f756c64206e6f742061646a757374206d696e7420616d6f756e7420666f722074726561737572795048414d453a20616d6f756e742065786365656473206d6178696d756d20616c6c6f77616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735048414d453a204e6f206578706972656420746f6b656e20666f7220747265617375727920746f206d696e74206265666f7265206d696e7420657870697265645048414d453a2043616e6e6f74206d696e74206166746572206d696e74206578706972656445524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636554726561737572794f776e61626c653a2063616c6c6572206973206e6f74207468652074726561737572795048414d453a204d65616e696e676c65737320746f20616464207a65726f20616d6f756e7445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657254726561737572794f776e61626c653a206e657720747265617375727920697320746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f20616464726573735048414d453a2043616e6e6f74206d696e74206265666f7265206d696e74207374617274656445524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735048414d453a2043616e6e6f7420616464206d696e7420616d6f756e74206166746572206d696e74206c6f636b65645048414d453a2043616e6e6f74207472616e73666572206265666f7265206d696e742073746172747345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c9d12b75459a32e9aafecd0bb6022580936522be93cb1a04c1bb96bcd094a5de64736f6c63430007060033