ETH Price: $2,637.87 (-1.45%)
Gas: 3 Gwei

Token

 

Overview

Max Total Supply

420,690,000,000,000

Holders

88

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
404,841,117,900.649077430559284446

Value
$0.00
0x8c416c381fa0da2df0a33b5245cefe3c0f8c774d
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Redimere

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev 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 2 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/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;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 3 of 6 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 6 of 6 : Redimere.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

contract Redimere is ERC20, Ownable {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    mapping(address => bool) _excludeFromFee;
    IUniswapV2Router02 public immutable router;
    address public immutable pair;

    mapping(address => bool) blacklists;

    uint public fee = 500;
    bool public _burnFees = false;
    uint public liquidityFee = 8000;
    uint liquifyAbove;
    bool inSwapAndLiquify;
    address public treasury;
    uint public maxTransfer;
    bool public claimStarted = false;
    uint public totalClaimAmount;
    uint public totalClaimedAmount = 0;
    bytes32 merkleRoot;
    uint public claimAmount;
    mapping(address => bool) public didClaim;
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    constructor() ERC20("Redimere", "GRIFT") {
        uint tSupply = 420690000000000 * 10 ** decimals();
        maxTransfer = tSupply * 2 / 100; // 2% of supply
        totalClaimAmount = tSupply / 10; // 10% airdrop
        claimAmount = totalClaimAmount / 1000; // 1000 slots

        _mint(owner(), tSupply - totalClaimAmount);
        _mint(address(this), totalClaimAmount);

        router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        pair = IUniswapV2Factory(router.factory()).createPair(address(this), router.WETH());

        treasury = owner();
        liquifyAbove = totalSupply() * 5 / 10000; // liquify when contract holds more than 0.05% of the supply

        _excludeFromFee[owner()] = true;
        _excludeFromFee[address(this)] = true;
    }

    function name() public view virtual override returns (string memory) {
        return _name;
    }

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

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

    function increaseAllowance(address spender, uint256 addedValue) override public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) override 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;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) override 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");

        uint _availableTokens = availableTokens();
        if (_availableTokens > liquifyAbove && from != pair && !inSwapAndLiquify) {
            swapAndLiquify(_availableTokens);
        }

        _balances[from] = fromBalance - amount;

        if (_excludeFromFee[from] || _excludeFromFee[to]) {
            _balances[to] += amount;
            emit Transfer(from, to, amount);
        } else {
            uint _fee = amount * fee / 10000;
            uint _liquidityFee = _fee * liquidityFee / 10000;
            uint _taxFee = _fee - _liquidityFee;

            if (_burnFees) {
                _balances[to] += amount - _taxFee;
                _balances[treasury] += _taxFee;
                _burn(to, _liquidityFee);
                emit Transfer(from, to, amount - _taxFee);
                emit Transfer(from, treasury, _taxFee);
            } else {
                _balances[to] += amount - _fee;
                _balances[treasury] += _taxFee;
                _balances[address(this)] += _liquidityFee;
                emit Transfer(from, to, amount - _fee);
                emit Transfer(from, treasury, _taxFee);
                emit Transfer(from, address(this), _liquidityFee);
            }
        }

        _afterTokenTransfer(from, to, amount);
    }

    function swapAndLiquify(uint tokenAmount) private lockTheSwap {
        uint half = tokenAmount / 2;
        uint otherHalf = tokenAmount - half;
        uint initialBalance = address(this).balance;
        
        swapTokensForETH(half);

        uint newBalance = address(this).balance - initialBalance;

        addLiquidity(otherHalf, newBalance);
    }

    function swapTokensForETH(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();

        // make the swap
        _approve(address(this), address(router), tokenAmount);
        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(router), tokenAmount);

        // add the liquidity
        router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(0),
            block.timestamp
        );
    }

    function availableTokens() public view returns (uint) {
        return balanceOf(address(this)) - totalClaimAmount + totalClaimedAmount;
    }

    function blacklist(address[] calldata _addresses, bool _isBlacklisted) external onlyOwner {
        for (uint i = 0; i < _addresses.length; i++) {
            blacklists[_addresses[i]] = _isBlacklisted;
        }
    }

    function setFee(uint _fee) external onlyOwner {
        require(_fee <= 1500, "max fee is 15%");
        fee = _fee;
    }

    function setLiquidityFee(uint _fee) external onlyOwner {
        require(_fee <= 10000, "max liquidity fee is 100% of the fees");
        liquidityFee = _fee;
    }

    function burnFees(bool doBurnFees) external onlyOwner {
        _burnFees = doBurnFees;
    }

    function startClaim(bool _isStarted) external onlyOwner {
        claimStarted = _isStarted;
    }

    function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function setMaxTransfer(uint _maxTransfer) external onlyOwner {
        maxTransfer = _maxTransfer;
    }

    function isWhitelisted(address _address, bytes32[] calldata merkleProof) public view returns (bool) {
        bytes32 node = keccak256(abi.encodePacked(_address));
        return MerkleProof.verifyCalldata(merkleProof, merkleRoot, node);
    }

    function claim(bytes32[] calldata merkleProof) external {
        require(claimStarted, "not started yet");
        require(!didClaim[msg.sender], "already claimed");
        require(totalClaimedAmount < totalClaimAmount, "minted out");
        require(isWhitelisted(msg.sender, merkleProof), "your address cannot claim");

        didClaim[msg.sender] = true;
        totalClaimedAmount += claimAmount;

        _approve(address(this), msg.sender, claimAmount);
        require(transferFrom(address(this), msg.sender, claimAmount));
    }

    function _mint(address account, uint256 amount) override internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    function _burn(address account, uint256 amount) override 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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

        _afterTokenTransfer(account, address(0), amount);
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) override 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);
    }

    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) override internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {
        require(!blacklists[from] && !blacklists[to], "blacklisted");
        require(amount <= maxTransfer || (from == owner() || to == owner() || from == address(this) || to == address(this)), "cannot exceed max transfer amount");
    }

    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {}

    receive() external payable {
        require(msg.sender == address(router));
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_burnFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"availableTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"bool","name":"_isBlacklisted","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"doBurnFees","type":"bool"}],"name":"burnFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"didClaim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransfer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setLiquidityFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTransfer","type":"uint256"}],"name":"setMaxTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isStarted","type":"bool"}],"name":"startClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalClaimAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalClaimedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526101f4600d556000600e60006101000a81548160ff021916908315150217905550611f40600f556000601360006101000a81548160ff02191690831515021790555060006015553480156200005857600080fd5b506040518060400160405280600881526020017f526564696d6572650000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f47524946540000000000000000000000000000000000000000000000000000008152508160039081620000d6919062000c28565b508060049081620000e8919062000c28565b5050506200010b620000ff6200050260201b60201c565b6200050a60201b60201c565b60006200011d620005d060201b60201c565b600a6200012b919062000e9f565b66017e9d8602b4006200013f919062000ef0565b9050606460028262000152919062000ef0565b6200015e919062000f6a565b601281905550600a8162000173919062000f6a565b6014819055506103e86014546200018b919062000f6a565b601781905550620001c1620001a5620005d960201b60201c565b60145483620001b5919062000fa2565b6200060360201b60201c565b620001d5306014546200060360201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505060805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200026b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000291919062001047565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000321919062001047565b6040518363ffffffff1660e01b8152600401620003409291906200108a565b6020604051808303816000875af115801562000360573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000386919062001047565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050620003c9620005d960201b60201c565b601160016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061271060056200041e6200077160201b60201c565b6200042a919062000ef0565b62000436919062000f6a565b6010819055506001600b600062000452620005d960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050620012ad565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000675576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200066c9062001118565b60405180910390fd5b62000689600083836200077b60201b60201c565b80600860008282546200069d91906200113a565b9250508190555080600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000751919062001186565b60405180910390a36200076d60008383620009a960201b60201c565b5050565b6000600854905090565b600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015620008205750600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b62000862576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200085990620011f3565b60405180910390fd5b601254811115806200096257506200087f620005d960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620008f35750620008c4620005d960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b806200092a57503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806200096157503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b5b620009a4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200099b906200128b565b60405180910390fd5b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a3057607f821691505b60208210810362000a465762000a45620009e8565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000ab07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a71565b62000abc868362000a71565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000b0962000b0362000afd8462000ad4565b62000ade565b62000ad4565b9050919050565b6000819050919050565b62000b258362000ae8565b62000b3d62000b348262000b10565b84845462000a7e565b825550505050565b600090565b62000b5462000b45565b62000b6181848462000b1a565b505050565b5b8181101562000b895762000b7d60008262000b4a565b60018101905062000b67565b5050565b601f82111562000bd85762000ba28162000a4c565b62000bad8462000a61565b8101602085101562000bbd578190505b62000bd562000bcc8562000a61565b83018262000b66565b50505b505050565b600082821c905092915050565b600062000bfd6000198460080262000bdd565b1980831691505092915050565b600062000c18838362000bea565b9150826002028217905092915050565b62000c3382620009ae565b67ffffffffffffffff81111562000c4f5762000c4e620009b9565b5b62000c5b825462000a17565b62000c6882828562000b8d565b600060209050601f83116001811462000ca0576000841562000c8b578287015190505b62000c97858262000c0a565b86555062000d07565b601f19841662000cb08662000a4c565b60005b8281101562000cda5784890151825560018201915060208501945060208101905062000cb3565b8683101562000cfa578489015162000cf6601f89168262000bea565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000d9d5780860481111562000d755762000d7462000d0f565b5b600185161562000d855780820291505b808102905062000d958562000d3e565b945062000d55565b94509492505050565b60008262000db8576001905062000e8b565b8162000dc8576000905062000e8b565b816001811462000de1576002811462000dec5762000e22565b600191505062000e8b565b60ff84111562000e015762000e0062000d0f565b5b8360020a91508482111562000e1b5762000e1a62000d0f565b5b5062000e8b565b5060208310610133831016604e8410600b841016171562000e5c5782820a90508381111562000e565762000e5562000d0f565b5b62000e8b565b62000e6b848484600162000d4b565b9250905081840481111562000e855762000e8462000d0f565b5b81810290505b9392505050565b600060ff82169050919050565b600062000eac8262000ad4565b915062000eb98362000e92565b925062000ee87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000da6565b905092915050565b600062000efd8262000ad4565b915062000f0a8362000ad4565b925082820262000f1a8162000ad4565b9150828204841483151762000f345762000f3362000d0f565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000f778262000ad4565b915062000f848362000ad4565b92508262000f975762000f9662000f3b565b5b828204905092915050565b600062000faf8262000ad4565b915062000fbc8362000ad4565b925082820390508181111562000fd75762000fd662000d0f565b5b92915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200100f8262000fe2565b9050919050565b620010218162001002565b81146200102d57600080fd5b50565b600081519050620010418162001016565b92915050565b60006020828403121562001060576200105f62000fdd565b5b6000620010708482850162001030565b91505092915050565b620010848162001002565b82525050565b6000604082019050620010a1600083018562001079565b620010b0602083018462001079565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001100601f83620010b7565b91506200110d82620010c8565b602082019050919050565b600060208201905081810360008301526200113381620010f1565b9050919050565b6000620011478262000ad4565b9150620011548362000ad4565b92508282019050808211156200116f576200116e62000d0f565b5b92915050565b620011808162000ad4565b82525050565b60006020820190506200119d600083018462001175565b92915050565b7f626c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b6000620011db600b83620010b7565b9150620011e882620011a3565b602082019050919050565b600060208201905081810360008301526200120e81620011cc565b9050919050565b7f63616e6e6f7420657863656564206d6178207472616e7366657220616d6f756e60008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b600062001273602183620010b7565b9150620012808262001215565b604082019050919050565b60006020820190508181036000830152620012a68162001264565b9050919050565b60805160a051613b8a6200130460003960008181610dba01526115e601526000818161021a015281816111dd015281816123b701528181612498015281816124bf0152818161255b01526125820152613b8a6000f3fe6080604052600436106102135760003560e01c8063830953ab11610118578063a9059cbb116100a0578063dd62ed3e1161006f578063dd62ed3e14610818578063ddca3f4314610855578063ed233ee914610880578063f2fde38b146108ab578063f887ea40146108d457610272565b8063a9059cbb1461075e578063b391c5081461079b578063c1664b13146107c4578063c997eb8d146107ef57610272565b806395d89b41116100e757806395d89b41146106755780639661cb0d146106a057806398118cb4146106cb578063a457c2d7146106f6578063a8aa1b311461073357610272565b8063830953ab146105cb5780638523b7db146105f657806389f830b2146106215780638da5cb5b1461064a57610272565b806349cdac381161019b57806369fe0e2d1161016a57806369fe0e2d146104fc57806370a0823114610525578063715018a61461056257806377348de9146105795780637cb64759146105a257610272565b806349cdac38146104405780635a23dd991461046957806361d027b3146104a657806369bb4dc2146104d157610272565b8063313ce567116101e2578063313ce5671461034757806332d2cda414610372578063357bf15c146103af57806339509351146103d8578063490a662b1461041557610272565b806306fdde0314610277578063095ea7b3146102a257806318160ddd146102df57806323b872dd1461030a57610272565b36610272577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461027057600080fd5b005b600080fd5b34801561028357600080fd5b5061028c6108ff565b6040516102999190612702565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c491906127c2565b610991565b6040516102d6919061281d565b60405180910390f35b3480156102eb57600080fd5b506102f46109b4565b6040516103019190612847565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c9190612862565b6109be565b60405161033e919061281d565b60405180910390f35b34801561035357600080fd5b5061035c6109ed565b60405161036991906128d1565b60405180910390f35b34801561037e57600080fd5b50610399600480360381019061039491906128ec565b6109f6565b6040516103a6919061281d565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190612919565b610a16565b005b3480156103e457600080fd5b506103ff60048036038101906103fa91906127c2565b610a6d565b60405161040c919061281d565b60405180910390f35b34801561042157600080fd5b5061042a610aa4565b604051610437919061281d565b60405180910390f35b34801561044c57600080fd5b5061046760048036038101906104629190612972565b610ab7565b005b34801561047557600080fd5b50610490600480360381019061048b9190612a04565b610adc565b60405161049d919061281d565b60405180910390f35b3480156104b257600080fd5b506104bb610b20565b6040516104c89190612a73565b60405180910390f35b3480156104dd57600080fd5b506104e6610b46565b6040516104f39190612847565b60405180910390f35b34801561050857600080fd5b50610523600480360381019061051e9190612919565b610b70565b005b34801561053157600080fd5b5061054c600480360381019061054791906128ec565b610bc7565b6040516105599190612847565b60405180910390f35b34801561056e57600080fd5b50610577610c10565b005b34801561058557600080fd5b506105a0600480360381019061059b9190612919565b610c24565b005b3480156105ae57600080fd5b506105c960048036038101906105c49190612ac4565b610c36565b005b3480156105d757600080fd5b506105e0610c48565b6040516105ed9190612847565b60405180910390f35b34801561060257600080fd5b5061060b610c4e565b6040516106189190612847565b60405180910390f35b34801561062d57600080fd5b5061064860048036038101906106439190612972565b610c54565b005b34801561065657600080fd5b5061065f610c79565b60405161066c9190612a73565b60405180910390f35b34801561068157600080fd5b5061068a610ca3565b6040516106979190612702565b60405180910390f35b3480156106ac57600080fd5b506106b5610d35565b6040516106c29190612847565b60405180910390f35b3480156106d757600080fd5b506106e0610d3b565b6040516106ed9190612847565b60405180910390f35b34801561070257600080fd5b5061071d600480360381019061071891906127c2565b610d41565b60405161072a919061281d565b60405180910390f35b34801561073f57600080fd5b50610748610db8565b6040516107559190612a73565b60405180910390f35b34801561076a57600080fd5b50610785600480360381019061078091906127c2565b610ddc565b604051610792919061281d565b60405180910390f35b3480156107a757600080fd5b506107c260048036038101906107bd9190612af1565b610dff565b005b3480156107d057600080fd5b506107d9611005565b6040516107e6919061281d565b60405180910390f35b3480156107fb57600080fd5b5061081660048036038101906108119190612b94565b611018565b005b34801561082457600080fd5b5061083f600480360381019061083a9190612bf4565b6110c5565b60405161084c9190612847565b60405180910390f35b34801561086157600080fd5b5061086a61114c565b6040516108779190612847565b60405180910390f35b34801561088c57600080fd5b50610895611152565b6040516108a29190612847565b60405180910390f35b3480156108b757600080fd5b506108d260048036038101906108cd91906128ec565b611158565b005b3480156108e057600080fd5b506108e96111db565b6040516108f69190612c93565b60405180910390f35b60606009805461090e90612cdd565b80601f016020809104026020016040519081016040528092919081815260200182805461093a90612cdd565b80156109875780601f1061095c57610100808354040283529160200191610987565b820191906000526020600020905b81548152906001019060200180831161096a57829003601f168201915b5050505050905090565b60008061099c6111ff565b90506109a9818585611207565b600191505092915050565b6000600854905090565b6000806109c96111ff565b90506109d68582856113d0565b6109e185858561145c565b60019150509392505050565b60006012905090565b60186020528060005260406000206000915054906101000a900460ff1681565b610a1e611cf6565b612710811115610a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5a90612d80565b60405180910390fd5b80600f8190555050565b600080610a786111ff565b9050610a99818585610a8a85896110c5565b610a949190612dcf565b611207565b600191505092915050565b600e60009054906101000a900460ff1681565b610abf611cf6565b80600e60006101000a81548160ff02191690831515021790555050565b60008084604051602001610af09190612e4b565b604051602081830303815290604052805190602001209050610b16848460165484611d74565b9150509392505050565b601160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000601554601454610b5730610bc7565b610b619190612e66565b610b6b9190612dcf565b905090565b610b78611cf6565b6105dc811115610bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb490612ee6565b60405180910390fd5b80600d8190555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c18611cf6565b610c226000611d8d565b565b610c2c611cf6565b8060128190555050565b610c3e611cf6565b8060168190555050565b60175481565b60145481565b610c5c611cf6565b80601360006101000a81548160ff02191690831515021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600a8054610cb290612cdd565b80601f0160208091040260200160405190810160405280929190818152602001828054610cde90612cdd565b8015610d2b5780601f10610d0057610100808354040283529160200191610d2b565b820191906000526020600020905b815481529060010190602001808311610d0e57829003601f168201915b5050505050905090565b60155481565b600f5481565b600080610d4c6111ff565b90506000610d5a82866110c5565b905083811015610d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9690612f78565b60405180910390fd5b610dac8286868403611207565b60019250505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600080610de76111ff565b9050610df481858561145c565b600191505092915050565b601360009054906101000a900460ff16610e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4590612fe4565b60405180910390fd5b601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed290613050565b60405180910390fd5b60145460155410610f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f18906130bc565b60405180910390fd5b610f2c338383610adc565b610f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6290613128565b60405180910390fd5b6001601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060175460156000828254610fd79190612dcf565b92505081905550610feb3033601754611207565b610ff830336017546109be565b61100157600080fd5b5050565b601360009054906101000a900460ff1681565b611020611cf6565b60005b838390508110156110bf5781600c600086868581811061104657611045613148565b5b905060200201602081019061105b91906128ec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806110b790613177565b915050611023565b50505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600d5481565b60125481565b611160611cf6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c690613231565b60405180910390fd5b6111d881611d8d565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126d906132c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dc90613355565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113c39190612847565b60405180910390a3505050565b60006113dc84846110c5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114565781811015611448576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143f906133c1565b60405180910390fd5b6114558484848403611207565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c290613453565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361153a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611531906134e5565b60405180910390fd5b611545838383611e53565b6000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156115cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c390613577565b60405180910390fd5b60006115d6610b46565b90506010548111801561163557507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561164e5750601160009054906101000a900460ff16155b1561165d5761165c81612066565b5b82826116699190612e66565b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061174d5750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156118125782600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117a19190612dcf565b925050819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516118059190612847565b60405180910390a3611ce4565b6000612710600d54856118259190613597565b61182f9190613608565b90506000612710600f54836118449190613597565b61184e9190613608565b90506000818361185e9190612e66565b9050600e60009054906101000a900460ff1615611a545780866118819190612e66565b600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118cf9190612dcf565b925050819055508060066000601160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119479190612dcf565b9250508190555061195887836120ec565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83896119b39190612e66565b6040516119c09190612847565b60405180910390a3601160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611a479190612847565b60405180910390a3611ce0565b8286611a609190612e66565b600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611aae9190612dcf565b925050819055508060066000601160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b269190612dcf565b9250508190555081600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b7c9190612dcf565b925050819055508673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8589611bde9190612e66565b604051611beb9190612847565b60405180910390a3601160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c729190612847565b60405180910390a33073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611cd79190612847565b60405180910390a35b5050505b611cef8585856122bb565b5050505050565b611cfe6111ff565b73ffffffffffffffffffffffffffffffffffffffff16611d1c610c79565b73ffffffffffffffffffffffffffffffffffffffff1614611d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6990613685565b60405180910390fd5b565b600082611d828686856122c0565b149050949350505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611ef75750600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2d906136f1565b60405180910390fd5b601254811115806120225750611f4a610c79565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611fb55750611f86610c79565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80611feb57503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8061202157503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b5b612061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205890613783565b60405180910390fd5b505050565b6001601160006101000a81548160ff02191690831515021790555060006002826120909190613608565b9050600081836120a09190612e66565b905060004790506120b083612318565b600081476120be9190612e66565b90506120ca8382612555565b505050506000601160006101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361215b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215290613815565b60405180910390fd5b61216782600083611e53565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156121ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e5906138a7565b60405180910390fd5b818103600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600860008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516122a29190612847565b60405180910390a36122b6836000846122bb565b505050565b505050565b60008082905060005b8585905081101561230c576122f7828787848181106122eb576122ea613148565b5b90506020020135612630565b9150808061230490613177565b9150506122c9565b50809150509392505050565b6000600267ffffffffffffffff811115612335576123346138c7565b5b6040519080825280602002602001820160405280156123635781602001602082028036833780820191505090505b509050308160008151811061237b5761237a613148565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612420573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612444919061390b565b8160018151811061245857612457613148565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506124bd307f000000000000000000000000000000000000000000000000000000000000000084611207565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161251f959493929190613a31565b600060405180830381600087803b15801561253957600080fd5b505af115801561254d573d6000803e3d6000fd5b505050505050565b612580307f000000000000000000000000000000000000000000000000000000000000000084611207565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806000426040518863ffffffff1660e01b81526004016125e696959493929190613a8b565b60606040518083038185885af1158015612604573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906126299190613b01565b5050505050565b600081831061264857612643828461265b565b612653565b612652838361265b565b5b905092915050565b600082600052816020526040600020905092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156126ac578082015181840152602081019050612691565b60008484015250505050565b6000601f19601f8301169050919050565b60006126d482612672565b6126de818561267d565b93506126ee81856020860161268e565b6126f7816126b8565b840191505092915050565b6000602082019050818103600083015261271c81846126c9565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127598261272e565b9050919050565b6127698161274e565b811461277457600080fd5b50565b60008135905061278681612760565b92915050565b6000819050919050565b61279f8161278c565b81146127aa57600080fd5b50565b6000813590506127bc81612796565b92915050565b600080604083850312156127d9576127d8612724565b5b60006127e785828601612777565b92505060206127f8858286016127ad565b9150509250929050565b60008115159050919050565b61281781612802565b82525050565b6000602082019050612832600083018461280e565b92915050565b6128418161278c565b82525050565b600060208201905061285c6000830184612838565b92915050565b60008060006060848603121561287b5761287a612724565b5b600061288986828701612777565b935050602061289a86828701612777565b92505060406128ab868287016127ad565b9150509250925092565b600060ff82169050919050565b6128cb816128b5565b82525050565b60006020820190506128e660008301846128c2565b92915050565b60006020828403121561290257612901612724565b5b600061291084828501612777565b91505092915050565b60006020828403121561292f5761292e612724565b5b600061293d848285016127ad565b91505092915050565b61294f81612802565b811461295a57600080fd5b50565b60008135905061296c81612946565b92915050565b60006020828403121561298857612987612724565b5b60006129968482850161295d565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126129c4576129c361299f565b5b8235905067ffffffffffffffff8111156129e1576129e06129a4565b5b6020830191508360208202830111156129fd576129fc6129a9565b5b9250929050565b600080600060408486031215612a1d57612a1c612724565b5b6000612a2b86828701612777565b935050602084013567ffffffffffffffff811115612a4c57612a4b612729565b5b612a58868287016129ae565b92509250509250925092565b612a6d8161274e565b82525050565b6000602082019050612a886000830184612a64565b92915050565b6000819050919050565b612aa181612a8e565b8114612aac57600080fd5b50565b600081359050612abe81612a98565b92915050565b600060208284031215612ada57612ad9612724565b5b6000612ae884828501612aaf565b91505092915050565b60008060208385031215612b0857612b07612724565b5b600083013567ffffffffffffffff811115612b2657612b25612729565b5b612b32858286016129ae565b92509250509250929050565b60008083601f840112612b5457612b5361299f565b5b8235905067ffffffffffffffff811115612b7157612b706129a4565b5b602083019150836020820283011115612b8d57612b8c6129a9565b5b9250929050565b600080600060408486031215612bad57612bac612724565b5b600084013567ffffffffffffffff811115612bcb57612bca612729565b5b612bd786828701612b3e565b93509350506020612bea8682870161295d565b9150509250925092565b60008060408385031215612c0b57612c0a612724565b5b6000612c1985828601612777565b9250506020612c2a85828601612777565b9150509250929050565b6000819050919050565b6000612c59612c54612c4f8461272e565b612c34565b61272e565b9050919050565b6000612c6b82612c3e565b9050919050565b6000612c7d82612c60565b9050919050565b612c8d81612c72565b82525050565b6000602082019050612ca86000830184612c84565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612cf557607f821691505b602082108103612d0857612d07612cae565b5b50919050565b7f6d6178206c6971756964697479206665652069732031303025206f662074686560008201527f2066656573000000000000000000000000000000000000000000000000000000602082015250565b6000612d6a60258361267d565b9150612d7582612d0e565b604082019050919050565b60006020820190508181036000830152612d9981612d5d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612dda8261278c565b9150612de58361278c565b9250828201905080821115612dfd57612dfc612da0565b5b92915050565b60008160601b9050919050565b6000612e1b82612e03565b9050919050565b6000612e2d82612e10565b9050919050565b612e45612e408261274e565b612e22565b82525050565b6000612e578284612e34565b60148201915081905092915050565b6000612e718261278c565b9150612e7c8361278c565b9250828203905081811115612e9457612e93612da0565b5b92915050565b7f6d61782066656520697320313525000000000000000000000000000000000000600082015250565b6000612ed0600e8361267d565b9150612edb82612e9a565b602082019050919050565b60006020820190508181036000830152612eff81612ec3565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612f6260258361267d565b9150612f6d82612f06565b604082019050919050565b60006020820190508181036000830152612f9181612f55565b9050919050565b7f6e6f742073746172746564207965740000000000000000000000000000000000600082015250565b6000612fce600f8361267d565b9150612fd982612f98565b602082019050919050565b60006020820190508181036000830152612ffd81612fc1565b9050919050565b7f616c726561647920636c61696d65640000000000000000000000000000000000600082015250565b600061303a600f8361267d565b915061304582613004565b602082019050919050565b600060208201905081810360008301526130698161302d565b9050919050565b7f6d696e746564206f757400000000000000000000000000000000000000000000600082015250565b60006130a6600a8361267d565b91506130b182613070565b602082019050919050565b600060208201905081810360008301526130d581613099565b9050919050565b7f796f757220616464726573732063616e6e6f7420636c61696d00000000000000600082015250565b600061311260198361267d565b915061311d826130dc565b602082019050919050565b6000602082019050818103600083015261314181613105565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006131828261278c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036131b4576131b3612da0565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061321b60268361267d565b9150613226826131bf565b604082019050919050565b6000602082019050818103600083015261324a8161320e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006132ad60248361267d565b91506132b882613251565b604082019050919050565b600060208201905081810360008301526132dc816132a0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061333f60228361267d565b915061334a826132e3565b604082019050919050565b6000602082019050818103600083015261336e81613332565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006133ab601d8361267d565b91506133b682613375565b602082019050919050565b600060208201905081810360008301526133da8161339e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061343d60258361267d565b9150613448826133e1565b604082019050919050565b6000602082019050818103600083015261346c81613430565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006134cf60238361267d565b91506134da82613473565b604082019050919050565b600060208201905081810360008301526134fe816134c2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061356160268361267d565b915061356c82613505565b604082019050919050565b6000602082019050818103600083015261359081613554565b9050919050565b60006135a28261278c565b91506135ad8361278c565b92508282026135bb8161278c565b915082820484148315176135d2576135d1612da0565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006136138261278c565b915061361e8361278c565b92508261362e5761362d6135d9565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061366f60208361267d565b915061367a82613639565b602082019050919050565b6000602082019050818103600083015261369e81613662565b9050919050565b7f626c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b60006136db600b8361267d565b91506136e6826136a5565b602082019050919050565b6000602082019050818103600083015261370a816136ce565b9050919050565b7f63616e6e6f7420657863656564206d6178207472616e7366657220616d6f756e60008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b600061376d60218361267d565b915061377882613711565b604082019050919050565b6000602082019050818103600083015261379c81613760565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006137ff60218361267d565b915061380a826137a3565b604082019050919050565b6000602082019050818103600083015261382e816137f2565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061389160228361267d565b915061389c82613835565b604082019050919050565b600060208201905081810360008301526138c081613884565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061390581612760565b92915050565b60006020828403121561392157613920612724565b5b600061392f848285016138f6565b91505092915050565b6000819050919050565b600061395d61395861395384613938565b612c34565b61278c565b9050919050565b61396d81613942565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6139a88161274e565b82525050565b60006139ba838361399f565b60208301905092915050565b6000602082019050919050565b60006139de82613973565b6139e8818561397e565b93506139f38361398f565b8060005b83811015613a24578151613a0b88826139ae565b9750613a16836139c6565b9250506001810190506139f7565b5085935050505092915050565b600060a082019050613a466000830188612838565b613a536020830187613964565b8181036040830152613a6581866139d3565b9050613a746060830185612a64565b613a816080830184612838565b9695505050505050565b600060c082019050613aa06000830189612a64565b613aad6020830188612838565b613aba6040830187613964565b613ac76060830186613964565b613ad46080830185612a64565b613ae160a0830184612838565b979650505050505050565b600081519050613afb81612796565b92915050565b600080600060608486031215613b1a57613b19612724565b5b6000613b2886828701613aec565b9350506020613b3986828701613aec565b9250506040613b4a86828701613aec565b915050925092509256fea2646970667358221220da441c88ff7480872b785218b89af73be1753317c541a3ff0fb994863f5fe32664736f6c63430008130033

Deployed Bytecode

0x6080604052600436106102135760003560e01c8063830953ab11610118578063a9059cbb116100a0578063dd62ed3e1161006f578063dd62ed3e14610818578063ddca3f4314610855578063ed233ee914610880578063f2fde38b146108ab578063f887ea40146108d457610272565b8063a9059cbb1461075e578063b391c5081461079b578063c1664b13146107c4578063c997eb8d146107ef57610272565b806395d89b41116100e757806395d89b41146106755780639661cb0d146106a057806398118cb4146106cb578063a457c2d7146106f6578063a8aa1b311461073357610272565b8063830953ab146105cb5780638523b7db146105f657806389f830b2146106215780638da5cb5b1461064a57610272565b806349cdac381161019b57806369fe0e2d1161016a57806369fe0e2d146104fc57806370a0823114610525578063715018a61461056257806377348de9146105795780637cb64759146105a257610272565b806349cdac38146104405780635a23dd991461046957806361d027b3146104a657806369bb4dc2146104d157610272565b8063313ce567116101e2578063313ce5671461034757806332d2cda414610372578063357bf15c146103af57806339509351146103d8578063490a662b1461041557610272565b806306fdde0314610277578063095ea7b3146102a257806318160ddd146102df57806323b872dd1461030a57610272565b36610272577f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461027057600080fd5b005b600080fd5b34801561028357600080fd5b5061028c6108ff565b6040516102999190612702565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c491906127c2565b610991565b6040516102d6919061281d565b60405180910390f35b3480156102eb57600080fd5b506102f46109b4565b6040516103019190612847565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c9190612862565b6109be565b60405161033e919061281d565b60405180910390f35b34801561035357600080fd5b5061035c6109ed565b60405161036991906128d1565b60405180910390f35b34801561037e57600080fd5b50610399600480360381019061039491906128ec565b6109f6565b6040516103a6919061281d565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190612919565b610a16565b005b3480156103e457600080fd5b506103ff60048036038101906103fa91906127c2565b610a6d565b60405161040c919061281d565b60405180910390f35b34801561042157600080fd5b5061042a610aa4565b604051610437919061281d565b60405180910390f35b34801561044c57600080fd5b5061046760048036038101906104629190612972565b610ab7565b005b34801561047557600080fd5b50610490600480360381019061048b9190612a04565b610adc565b60405161049d919061281d565b60405180910390f35b3480156104b257600080fd5b506104bb610b20565b6040516104c89190612a73565b60405180910390f35b3480156104dd57600080fd5b506104e6610b46565b6040516104f39190612847565b60405180910390f35b34801561050857600080fd5b50610523600480360381019061051e9190612919565b610b70565b005b34801561053157600080fd5b5061054c600480360381019061054791906128ec565b610bc7565b6040516105599190612847565b60405180910390f35b34801561056e57600080fd5b50610577610c10565b005b34801561058557600080fd5b506105a0600480360381019061059b9190612919565b610c24565b005b3480156105ae57600080fd5b506105c960048036038101906105c49190612ac4565b610c36565b005b3480156105d757600080fd5b506105e0610c48565b6040516105ed9190612847565b60405180910390f35b34801561060257600080fd5b5061060b610c4e565b6040516106189190612847565b60405180910390f35b34801561062d57600080fd5b5061064860048036038101906106439190612972565b610c54565b005b34801561065657600080fd5b5061065f610c79565b60405161066c9190612a73565b60405180910390f35b34801561068157600080fd5b5061068a610ca3565b6040516106979190612702565b60405180910390f35b3480156106ac57600080fd5b506106b5610d35565b6040516106c29190612847565b60405180910390f35b3480156106d757600080fd5b506106e0610d3b565b6040516106ed9190612847565b60405180910390f35b34801561070257600080fd5b5061071d600480360381019061071891906127c2565b610d41565b60405161072a919061281d565b60405180910390f35b34801561073f57600080fd5b50610748610db8565b6040516107559190612a73565b60405180910390f35b34801561076a57600080fd5b50610785600480360381019061078091906127c2565b610ddc565b604051610792919061281d565b60405180910390f35b3480156107a757600080fd5b506107c260048036038101906107bd9190612af1565b610dff565b005b3480156107d057600080fd5b506107d9611005565b6040516107e6919061281d565b60405180910390f35b3480156107fb57600080fd5b5061081660048036038101906108119190612b94565b611018565b005b34801561082457600080fd5b5061083f600480360381019061083a9190612bf4565b6110c5565b60405161084c9190612847565b60405180910390f35b34801561086157600080fd5b5061086a61114c565b6040516108779190612847565b60405180910390f35b34801561088c57600080fd5b50610895611152565b6040516108a29190612847565b60405180910390f35b3480156108b757600080fd5b506108d260048036038101906108cd91906128ec565b611158565b005b3480156108e057600080fd5b506108e96111db565b6040516108f69190612c93565b60405180910390f35b60606009805461090e90612cdd565b80601f016020809104026020016040519081016040528092919081815260200182805461093a90612cdd565b80156109875780601f1061095c57610100808354040283529160200191610987565b820191906000526020600020905b81548152906001019060200180831161096a57829003601f168201915b5050505050905090565b60008061099c6111ff565b90506109a9818585611207565b600191505092915050565b6000600854905090565b6000806109c96111ff565b90506109d68582856113d0565b6109e185858561145c565b60019150509392505050565b60006012905090565b60186020528060005260406000206000915054906101000a900460ff1681565b610a1e611cf6565b612710811115610a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5a90612d80565b60405180910390fd5b80600f8190555050565b600080610a786111ff565b9050610a99818585610a8a85896110c5565b610a949190612dcf565b611207565b600191505092915050565b600e60009054906101000a900460ff1681565b610abf611cf6565b80600e60006101000a81548160ff02191690831515021790555050565b60008084604051602001610af09190612e4b565b604051602081830303815290604052805190602001209050610b16848460165484611d74565b9150509392505050565b601160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000601554601454610b5730610bc7565b610b619190612e66565b610b6b9190612dcf565b905090565b610b78611cf6565b6105dc811115610bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb490612ee6565b60405180910390fd5b80600d8190555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c18611cf6565b610c226000611d8d565b565b610c2c611cf6565b8060128190555050565b610c3e611cf6565b8060168190555050565b60175481565b60145481565b610c5c611cf6565b80601360006101000a81548160ff02191690831515021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600a8054610cb290612cdd565b80601f0160208091040260200160405190810160405280929190818152602001828054610cde90612cdd565b8015610d2b5780601f10610d0057610100808354040283529160200191610d2b565b820191906000526020600020905b815481529060010190602001808311610d0e57829003601f168201915b5050505050905090565b60155481565b600f5481565b600080610d4c6111ff565b90506000610d5a82866110c5565b905083811015610d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9690612f78565b60405180910390fd5b610dac8286868403611207565b60019250505092915050565b7f000000000000000000000000e7127b93d9245060db764c496c07b6694d23ba3881565b600080610de76111ff565b9050610df481858561145c565b600191505092915050565b601360009054906101000a900460ff16610e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4590612fe4565b60405180910390fd5b601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed290613050565b60405180910390fd5b60145460155410610f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f18906130bc565b60405180910390fd5b610f2c338383610adc565b610f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6290613128565b60405180910390fd5b6001601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060175460156000828254610fd79190612dcf565b92505081905550610feb3033601754611207565b610ff830336017546109be565b61100157600080fd5b5050565b601360009054906101000a900460ff1681565b611020611cf6565b60005b838390508110156110bf5781600c600086868581811061104657611045613148565b5b905060200201602081019061105b91906128ec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806110b790613177565b915050611023565b50505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600d5481565b60125481565b611160611cf6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c690613231565b60405180910390fd5b6111d881611d8d565b50565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126d906132c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dc90613355565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113c39190612847565b60405180910390a3505050565b60006113dc84846110c5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114565781811015611448576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143f906133c1565b60405180910390fd5b6114558484848403611207565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c290613453565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361153a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611531906134e5565b60405180910390fd5b611545838383611e53565b6000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156115cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c390613577565b60405180910390fd5b60006115d6610b46565b90506010548111801561163557507f000000000000000000000000e7127b93d9245060db764c496c07b6694d23ba3873ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561164e5750601160009054906101000a900460ff16155b1561165d5761165c81612066565b5b82826116699190612e66565b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061174d5750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156118125782600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117a19190612dcf565b925050819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516118059190612847565b60405180910390a3611ce4565b6000612710600d54856118259190613597565b61182f9190613608565b90506000612710600f54836118449190613597565b61184e9190613608565b90506000818361185e9190612e66565b9050600e60009054906101000a900460ff1615611a545780866118819190612e66565b600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118cf9190612dcf565b925050819055508060066000601160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119479190612dcf565b9250508190555061195887836120ec565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83896119b39190612e66565b6040516119c09190612847565b60405180910390a3601160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611a479190612847565b60405180910390a3611ce0565b8286611a609190612e66565b600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611aae9190612dcf565b925050819055508060066000601160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b269190612dcf565b9250508190555081600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b7c9190612dcf565b925050819055508673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8589611bde9190612e66565b604051611beb9190612847565b60405180910390a3601160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c729190612847565b60405180910390a33073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611cd79190612847565b60405180910390a35b5050505b611cef8585856122bb565b5050505050565b611cfe6111ff565b73ffffffffffffffffffffffffffffffffffffffff16611d1c610c79565b73ffffffffffffffffffffffffffffffffffffffff1614611d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6990613685565b60405180910390fd5b565b600082611d828686856122c0565b149050949350505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611ef75750600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2d906136f1565b60405180910390fd5b601254811115806120225750611f4a610c79565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611fb55750611f86610c79565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80611feb57503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8061202157503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b5b612061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205890613783565b60405180910390fd5b505050565b6001601160006101000a81548160ff02191690831515021790555060006002826120909190613608565b9050600081836120a09190612e66565b905060004790506120b083612318565b600081476120be9190612e66565b90506120ca8382612555565b505050506000601160006101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361215b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215290613815565b60405180910390fd5b61216782600083611e53565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156121ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e5906138a7565b60405180910390fd5b818103600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600860008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516122a29190612847565b60405180910390a36122b6836000846122bb565b505050565b505050565b60008082905060005b8585905081101561230c576122f7828787848181106122eb576122ea613148565b5b90506020020135612630565b9150808061230490613177565b9150506122c9565b50809150509392505050565b6000600267ffffffffffffffff811115612335576123346138c7565b5b6040519080825280602002602001820160405280156123635781602001602082028036833780820191505090505b509050308160008151811061237b5761237a613148565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612420573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612444919061390b565b8160018151811061245857612457613148565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506124bd307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611207565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161251f959493929190613a31565b600060405180830381600087803b15801561253957600080fd5b505af115801561254d573d6000803e3d6000fd5b505050505050565b612580307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611207565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806000426040518863ffffffff1660e01b81526004016125e696959493929190613a8b565b60606040518083038185885af1158015612604573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906126299190613b01565b5050505050565b600081831061264857612643828461265b565b612653565b612652838361265b565b5b905092915050565b600082600052816020526040600020905092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156126ac578082015181840152602081019050612691565b60008484015250505050565b6000601f19601f8301169050919050565b60006126d482612672565b6126de818561267d565b93506126ee81856020860161268e565b6126f7816126b8565b840191505092915050565b6000602082019050818103600083015261271c81846126c9565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127598261272e565b9050919050565b6127698161274e565b811461277457600080fd5b50565b60008135905061278681612760565b92915050565b6000819050919050565b61279f8161278c565b81146127aa57600080fd5b50565b6000813590506127bc81612796565b92915050565b600080604083850312156127d9576127d8612724565b5b60006127e785828601612777565b92505060206127f8858286016127ad565b9150509250929050565b60008115159050919050565b61281781612802565b82525050565b6000602082019050612832600083018461280e565b92915050565b6128418161278c565b82525050565b600060208201905061285c6000830184612838565b92915050565b60008060006060848603121561287b5761287a612724565b5b600061288986828701612777565b935050602061289a86828701612777565b92505060406128ab868287016127ad565b9150509250925092565b600060ff82169050919050565b6128cb816128b5565b82525050565b60006020820190506128e660008301846128c2565b92915050565b60006020828403121561290257612901612724565b5b600061291084828501612777565b91505092915050565b60006020828403121561292f5761292e612724565b5b600061293d848285016127ad565b91505092915050565b61294f81612802565b811461295a57600080fd5b50565b60008135905061296c81612946565b92915050565b60006020828403121561298857612987612724565b5b60006129968482850161295d565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126129c4576129c361299f565b5b8235905067ffffffffffffffff8111156129e1576129e06129a4565b5b6020830191508360208202830111156129fd576129fc6129a9565b5b9250929050565b600080600060408486031215612a1d57612a1c612724565b5b6000612a2b86828701612777565b935050602084013567ffffffffffffffff811115612a4c57612a4b612729565b5b612a58868287016129ae565b92509250509250925092565b612a6d8161274e565b82525050565b6000602082019050612a886000830184612a64565b92915050565b6000819050919050565b612aa181612a8e565b8114612aac57600080fd5b50565b600081359050612abe81612a98565b92915050565b600060208284031215612ada57612ad9612724565b5b6000612ae884828501612aaf565b91505092915050565b60008060208385031215612b0857612b07612724565b5b600083013567ffffffffffffffff811115612b2657612b25612729565b5b612b32858286016129ae565b92509250509250929050565b60008083601f840112612b5457612b5361299f565b5b8235905067ffffffffffffffff811115612b7157612b706129a4565b5b602083019150836020820283011115612b8d57612b8c6129a9565b5b9250929050565b600080600060408486031215612bad57612bac612724565b5b600084013567ffffffffffffffff811115612bcb57612bca612729565b5b612bd786828701612b3e565b93509350506020612bea8682870161295d565b9150509250925092565b60008060408385031215612c0b57612c0a612724565b5b6000612c1985828601612777565b9250506020612c2a85828601612777565b9150509250929050565b6000819050919050565b6000612c59612c54612c4f8461272e565b612c34565b61272e565b9050919050565b6000612c6b82612c3e565b9050919050565b6000612c7d82612c60565b9050919050565b612c8d81612c72565b82525050565b6000602082019050612ca86000830184612c84565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612cf557607f821691505b602082108103612d0857612d07612cae565b5b50919050565b7f6d6178206c6971756964697479206665652069732031303025206f662074686560008201527f2066656573000000000000000000000000000000000000000000000000000000602082015250565b6000612d6a60258361267d565b9150612d7582612d0e565b604082019050919050565b60006020820190508181036000830152612d9981612d5d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612dda8261278c565b9150612de58361278c565b9250828201905080821115612dfd57612dfc612da0565b5b92915050565b60008160601b9050919050565b6000612e1b82612e03565b9050919050565b6000612e2d82612e10565b9050919050565b612e45612e408261274e565b612e22565b82525050565b6000612e578284612e34565b60148201915081905092915050565b6000612e718261278c565b9150612e7c8361278c565b9250828203905081811115612e9457612e93612da0565b5b92915050565b7f6d61782066656520697320313525000000000000000000000000000000000000600082015250565b6000612ed0600e8361267d565b9150612edb82612e9a565b602082019050919050565b60006020820190508181036000830152612eff81612ec3565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612f6260258361267d565b9150612f6d82612f06565b604082019050919050565b60006020820190508181036000830152612f9181612f55565b9050919050565b7f6e6f742073746172746564207965740000000000000000000000000000000000600082015250565b6000612fce600f8361267d565b9150612fd982612f98565b602082019050919050565b60006020820190508181036000830152612ffd81612fc1565b9050919050565b7f616c726561647920636c61696d65640000000000000000000000000000000000600082015250565b600061303a600f8361267d565b915061304582613004565b602082019050919050565b600060208201905081810360008301526130698161302d565b9050919050565b7f6d696e746564206f757400000000000000000000000000000000000000000000600082015250565b60006130a6600a8361267d565b91506130b182613070565b602082019050919050565b600060208201905081810360008301526130d581613099565b9050919050565b7f796f757220616464726573732063616e6e6f7420636c61696d00000000000000600082015250565b600061311260198361267d565b915061311d826130dc565b602082019050919050565b6000602082019050818103600083015261314181613105565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006131828261278c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036131b4576131b3612da0565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061321b60268361267d565b9150613226826131bf565b604082019050919050565b6000602082019050818103600083015261324a8161320e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006132ad60248361267d565b91506132b882613251565b604082019050919050565b600060208201905081810360008301526132dc816132a0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061333f60228361267d565b915061334a826132e3565b604082019050919050565b6000602082019050818103600083015261336e81613332565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006133ab601d8361267d565b91506133b682613375565b602082019050919050565b600060208201905081810360008301526133da8161339e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061343d60258361267d565b9150613448826133e1565b604082019050919050565b6000602082019050818103600083015261346c81613430565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006134cf60238361267d565b91506134da82613473565b604082019050919050565b600060208201905081810360008301526134fe816134c2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061356160268361267d565b915061356c82613505565b604082019050919050565b6000602082019050818103600083015261359081613554565b9050919050565b60006135a28261278c565b91506135ad8361278c565b92508282026135bb8161278c565b915082820484148315176135d2576135d1612da0565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006136138261278c565b915061361e8361278c565b92508261362e5761362d6135d9565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061366f60208361267d565b915061367a82613639565b602082019050919050565b6000602082019050818103600083015261369e81613662565b9050919050565b7f626c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b60006136db600b8361267d565b91506136e6826136a5565b602082019050919050565b6000602082019050818103600083015261370a816136ce565b9050919050565b7f63616e6e6f7420657863656564206d6178207472616e7366657220616d6f756e60008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b600061376d60218361267d565b915061377882613711565b604082019050919050565b6000602082019050818103600083015261379c81613760565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006137ff60218361267d565b915061380a826137a3565b604082019050919050565b6000602082019050818103600083015261382e816137f2565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061389160228361267d565b915061389c82613835565b604082019050919050565b600060208201905081810360008301526138c081613884565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061390581612760565b92915050565b60006020828403121561392157613920612724565b5b600061392f848285016138f6565b91505092915050565b6000819050919050565b600061395d61395861395384613938565b612c34565b61278c565b9050919050565b61396d81613942565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6139a88161274e565b82525050565b60006139ba838361399f565b60208301905092915050565b6000602082019050919050565b60006139de82613973565b6139e8818561397e565b93506139f38361398f565b8060005b83811015613a24578151613a0b88826139ae565b9750613a16836139c6565b9250506001810190506139f7565b5085935050505092915050565b600060a082019050613a466000830188612838565b613a536020830187613964565b8181036040830152613a6581866139d3565b9050613a746060830185612a64565b613a816080830184612838565b9695505050505050565b600060c082019050613aa06000830189612a64565b613aad6020830188612838565b613aba6040830187613964565b613ac76060830186613964565b613ad46080830185612a64565b613ae160a0830184612838565b979650505050505050565b600081519050613afb81612796565b92915050565b600080600060608486031215613b1a57613b19612724565b5b6000613b2886828701613aec565b9350506020613b3986828701613aec565b9250506040613b4a86828701613aec565b915050925092509256fea2646970667358221220da441c88ff7480872b785218b89af73be1753317c541a3ff0fb994863f5fe32664736f6c63430008130033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.