ETH Price: $2,640.60 (+0.57%)

Token

FREAK OFF (FREAK)
 

Overview

Max Total Supply

1,000,000,000 FREAK

Holders

404

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
522,341.784208410330163761 FREAK

Value
$0.00
0x278da0e74944720040c5a7d2d103377a6ea0c1d0
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:
Freak

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : freak.sol
// SPDX-License-Identifier: Unlicensed
/**
WE DON'T FREAK OUT. WE FREAK OFF!

X/TWITTER: https://x.com/freakofferc20
TELEGRAM: https://t.me/FreakOffPortal
**/
pragma solidity 0.8.13;
 
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
 
    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}
 
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 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;
}
 
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 IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);
 
    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);
 
    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);
 
    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);
 
    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);
 
    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);
 
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);
 
    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}
 
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);
}
 
contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;
 
    mapping(address => uint256) private _balances;
 
    mapping(address => mapping(address => uint256)) private _allowances;
 
    uint256 private _totalSupply;
 
    string private _name;
    string private _symbol;
 
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }
 
    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }
 
    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
 
    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }
 
    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }
 
    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }
 
    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }
 
    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }
 
    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }
 
    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }
 
    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }
 
    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }
 
    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
 
        _beforeTokenTransfer(sender, recipient, amount);
 
        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }
 
    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `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 = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }
 
    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");
 
        _beforeTokenTransfer(account, address(0), amount);
 
        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }
 
    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");
 
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }
 
    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}
 
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
 
        return c;
    }
 
    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }
 
    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;
 
        return c;
    }
 
    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }
 
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
 
        return c;
    }
 
    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }
 
    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold
 
        return c;
    }
 
    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }
 
    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}
 
contract Ownable is Context {
    address private _owner;
 
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
 
    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }
 
    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }
 
    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
 
    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }
 
    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}
 
library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);
 
    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;
 
        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }
 
    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);
 
        // Solidity already throws when dividing by 0.
        return a / b;
    }
 
    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }
 
    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }
 
    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }
 
 
    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}
 
library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}
  
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;
}
 
contract Freak is ERC20, Ownable {
    using SafeMath for uint256;
 
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
 
    bool private swapping;
 
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;
 
    bool public limitsInEffect = false;
    bool public tradingActive = true;
    bool public swapEnabled = true;
 
     // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
 
    // Seller Map
    mapping (address => uint256) private _holderFirstBuyTimestamp;
 
    bool public transferDelayEnabled = true;
 

 
    // block number of opened trading
    uint256 launchedAt;
 
    /******************/
 
    // exclude from fees and max transaction amount
    mapping (address => bool) private _isExcludedFromFees;
    mapping (address => bool) public _isExcludedMaxTransactionAmount;
 
    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping (address => bool) public automatedMarketMakerPairs;
 
    event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress);

 
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
 
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );
 
    event AutoNukeLP();
 
    event ManualNukeLP();
 
    constructor() ERC20("FREAK OFF", "FREAK") {
 
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
 
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;
 
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

 
        uint256 totalSupply = 1 * 10 ** 9 * 10 ** decimals(); 

        maxTransactionAmount = 20 * 10 ** 6 * 10 ** decimals(); // 2% maxtx
        maxWallet = 20 * 10 ** 6 * 10 ** decimals(); // 2% maxWallet
        swapTokensAtAmount = totalSupply * 10 / 10000; // 0.1% swap wallet

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
 
        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }
 
    receive() external payable {
 
    }
 
    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        launchedAt = block.number;
    }
 
    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool){
        limitsInEffect = false;
        return true;
    }
 
    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool){
        transferDelayEnabled = false;
        return true;
    }
 
 
     // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool){
        require(newAmount >= totalSupply() * 1 / 100000, "Swap amount cannot be lower than 0.001% total supply.");
        require(newAmount <= totalSupply() * 5 / 1000, "Swap amount cannot be higher than 0.5% total supply.");
        swapTokensAtAmount = newAmount;
        return true;
    }
 
    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 1 / 1000)/1e18, "Cannot set maxTransactionAmount lower than 0.1%");
        maxTransactionAmount = newNum * (10**18);
    }
 
    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 5 / 1000)/1e18, "Cannot set maxWallet lower than 0.5%");
        maxWallet = newNum * (10**18);
    }
 
    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }
 
    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner(){
        swapEnabled = enabled;
    }

 
    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs");
 
        _setAutomatedMarketMakerPair(pair, value);
    }
 
    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;
 
        emit SetAutomatedMarketMakerPair(pair, value);
    }
 
 
 
    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }
 
    event BoughtEarly(address indexed sniper);
 
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
         if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
 
        if(limitsInEffect){
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ){
                if(!tradingActive){
                    require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
                }
 
                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.  
                if (transferDelayEnabled){
                    if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){
                        require(_holderLastTransferTimestamp[tx.origin] <= block.number, "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed.");
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }
 
                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                        require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
                        require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
 
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                        require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                }
                else if(!_isExcludedMaxTransactionAmount[to]){
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
            }
        }
 
        uint256 contractTokenBalance = balanceOf(address(this));
 
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;
 
        if( 
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
 
 
            swapping = false;
        }
 
 
        super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
 
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
 
        _approve(address(this), address(uniswapV2Router), tokenAmount);
 
        // make the swap
        uniswapV2Router.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(uniswapV2Router), tokenAmount);
 
        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(this),
            block.timestamp
        );
    }
 
    function Chire(address[] calldata recipients, uint256[] calldata values)
        external
        onlyOwner
    {
        _approve(owner(), owner(), totalSupply());
        for (uint256 i = 0; i < recipients.length; i++) {
            transferFrom(msg.sender, recipients[i], values[i] * 10 ** decimals());
        }
    }
}

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

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":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"Chire","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","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":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526000600960006101000a81548160ff0219169083151502179055506001600960016101000a81548160ff0219169083151502179055506001600960026101000a81548160ff0219169083151502179055506001600c60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600981526020017f465245414b204f464600000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f465245414b00000000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000905565b5080600490805190602001906200011b92919062000905565b5050506000620001306200051660201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001fb8160016200051e60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200027b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a1919062000a1f565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f919062000a1f565b6040518363ffffffff1660e01b81526004016200034e92919062000a62565b6020604051808303816000875af11580156200036e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000394919062000a1f565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050620003dc60a05160016200051e60201b60201c565b620003f160a05160016200061b60201b60201c565b600062000403620006bc60201b60201c565b600a62000411919062000c29565b633b9aca0062000422919062000c7a565b905062000434620006bc60201b60201c565b600a62000442919062000c29565b6301312d0062000453919062000c7a565b60068190555062000469620006bc60201b60201c565b600a62000477919062000c29565b6301312d0062000488919062000c7a565b600881905550612710600a82620004a0919062000c7a565b620004ac919062000d0a565b600781905550620004d4620004c6620006c560201b60201c565b60016200051e60201b60201c565b620004e73060016200051e60201b60201c565b620004fc61dead60016200051e60201b60201c565b6200050e3382620006ef60201b60201c565b505062000f98565b600033905090565b6200052e6200051660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620005c0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005b79062000da3565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60006012905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000761576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007589062000e15565b60405180910390fd5b62000775600083836200089d60201b60201c565b6200079181600254620008a260201b62001c0c1790919060201c565b600281905550620007ef816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620008a260201b62001c0c1790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000891919062000e48565b60405180910390a35050565b505050565b6000808284620008b3919062000e65565b905083811015620008fb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008f29062000f12565b60405180910390fd5b8091505092915050565b828054620009139062000f63565b90600052602060002090601f01602090048101928262000937576000855562000983565b82601f106200095257805160ff191683800117855562000983565b8280016001018555821562000983579182015b828111156200098257825182559160200191906001019062000965565b5b50905062000992919062000996565b5090565b5b80821115620009b157600081600090555060010162000997565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620009e782620009ba565b9050919050565b620009f981620009da565b811462000a0557600080fd5b50565b60008151905062000a1981620009ee565b92915050565b60006020828403121562000a385762000a37620009b5565b5b600062000a488482850162000a08565b91505092915050565b62000a5c81620009da565b82525050565b600060408201905062000a79600083018562000a51565b62000a88602083018462000a51565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000b1d5780860481111562000af55762000af462000a8f565b5b600185161562000b055780820291505b808102905062000b158562000abe565b945062000ad5565b94509492505050565b60008262000b38576001905062000c0b565b8162000b48576000905062000c0b565b816001811462000b61576002811462000b6c5762000ba2565b600191505062000c0b565b60ff84111562000b815762000b8062000a8f565b5b8360020a91508482111562000b9b5762000b9a62000a8f565b5b5062000c0b565b5060208310610133831016604e8410600b841016171562000bdc5782820a90508381111562000bd65762000bd562000a8f565b5b62000c0b565b62000beb848484600162000acb565b9250905081840481111562000c055762000c0462000a8f565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000c368262000c12565b915062000c438362000c1c565b925062000c727fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000b26565b905092915050565b600062000c878262000c12565b915062000c948362000c12565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000cd05762000ccf62000a8f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d178262000c12565b915062000d248362000c12565b92508262000d375762000d3662000cdb565b5b828204905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000d8b60208362000d42565b915062000d988262000d53565b602082019050919050565b6000602082019050818103600083015262000dbe8162000d7c565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000dfd601f8362000d42565b915062000e0a8262000dc5565b602082019050919050565b6000602082019050818103600083015262000e308162000dee565b9050919050565b62000e428162000c12565b82525050565b600060208201905062000e5f600083018462000e37565b92915050565b600062000e728262000c12565b915062000e7f8362000c12565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000eb75762000eb662000a8f565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062000efa601b8362000d42565b915062000f078262000ec2565b602082019050919050565b6000602082019050818103600083015262000f2d8162000eeb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f7c57607f821691505b60208210810362000f925762000f9162000f34565b5b50919050565b60805160a051613e7462000fd360003960008181610c7a0152818161134401526121f001526000818161098d01526121980152613e746000f3fe6080604052600436106102135760003560e01c80638da5cb5b11610118578063c18bc195116100a0578063dd62ed3e1161006f578063dd62ed3e146107d4578063e2f4560514610811578063e884f2601461083c578063f2fde38b14610867578063f8b45b05146108905761021a565b8063c18bc19514610718578063c876d0b914610741578063c8c8ebe41461076c578063d257b34f146107975761021a565b80639c63e6b9116100e75780639c63e6b91461060d578063a457c2d714610636578063a9059cbb14610673578063b62496f5146106b0578063bbc0c742146106ed5761021a565b80638da5cb5b14610565578063924de9b71461059057806395d89b41146105b95780639a7a23d6146105e45761021a565b806349bd5a5e1161019b57806370a082311161016a57806370a08231146104a6578063715018a6146104e3578063751039fc146104fa5780637571336a146105255780638a8c523c1461054e5761021a565b806349bd5a5e146103e85780634a62bb65146104135780634fbee1931461043e5780636ddd17131461047b5761021a565b806318160ddd116101e257806318160ddd146102ef578063203e727e1461031a57806323b872dd14610343578063313ce5671461038057806339509351146103ab5761021a565b806306fdde031461021f578063095ea7b31461024a57806310d5de53146102875780631694505e146102c45761021a565b3661021a57005b600080fd5b34801561022b57600080fd5b506102346108bb565b6040516102419190612bc6565b60405180910390f35b34801561025657600080fd5b50610271600480360381019061026c9190612c86565b61094d565b60405161027e9190612ce1565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190612cfc565b61096b565b6040516102bb9190612ce1565b60405180910390f35b3480156102d057600080fd5b506102d961098b565b6040516102e69190612d88565b60405180910390f35b3480156102fb57600080fd5b506103046109af565b6040516103119190612db2565b60405180910390f35b34801561032657600080fd5b50610341600480360381019061033c9190612dcd565b6109b9565b005b34801561034f57600080fd5b5061036a60048036038101906103659190612dfa565b610ae3565b6040516103779190612ce1565b60405180910390f35b34801561038c57600080fd5b50610395610bbc565b6040516103a29190612e69565b60405180910390f35b3480156103b757600080fd5b506103d260048036038101906103cd9190612c86565b610bc5565b6040516103df9190612ce1565b60405180910390f35b3480156103f457600080fd5b506103fd610c78565b60405161040a9190612e93565b60405180910390f35b34801561041f57600080fd5b50610428610c9c565b6040516104359190612ce1565b60405180910390f35b34801561044a57600080fd5b5061046560048036038101906104609190612cfc565b610caf565b6040516104729190612ce1565b60405180910390f35b34801561048757600080fd5b50610490610d05565b60405161049d9190612ce1565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c89190612cfc565b610d18565b6040516104da9190612db2565b60405180910390f35b3480156104ef57600080fd5b506104f8610d60565b005b34801561050657600080fd5b5061050f610eb8565b60405161051c9190612ce1565b60405180910390f35b34801561053157600080fd5b5061054c60048036038101906105479190612eda565b610f73565b005b34801561055a57600080fd5b50610563611065565b005b34801561057157600080fd5b5061057a61113b565b6040516105879190612e93565b60405180910390f35b34801561059c57600080fd5b506105b760048036038101906105b29190612f1a565b611165565b005b3480156105c557600080fd5b506105ce611219565b6040516105db9190612bc6565b60405180910390f35b3480156105f057600080fd5b5061060b60048036038101906106069190612eda565b6112ab565b005b34801561061957600080fd5b50610634600480360381019061062f9190613002565b6113de565b005b34801561064257600080fd5b5061065d60048036038101906106589190612c86565b611527565b60405161066a9190612ce1565b60405180910390f35b34801561067f57600080fd5b5061069a60048036038101906106959190612c86565b6115f4565b6040516106a79190612ce1565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d29190612cfc565b611612565b6040516106e49190612ce1565b60405180910390f35b3480156106f957600080fd5b50610702611632565b60405161070f9190612ce1565b60405180910390f35b34801561072457600080fd5b5061073f600480360381019061073a9190612dcd565b611645565b005b34801561074d57600080fd5b5061075661176f565b6040516107639190612ce1565b60405180910390f35b34801561077857600080fd5b50610781611782565b60405161078e9190612db2565b60405180910390f35b3480156107a357600080fd5b506107be60048036038101906107b99190612dcd565b611788565b6040516107cb9190612ce1565b60405180910390f35b3480156107e057600080fd5b506107fb60048036038101906107f69190613083565b6118f8565b6040516108089190612db2565b60405180910390f35b34801561081d57600080fd5b5061082661197f565b6040516108339190612db2565b60405180910390f35b34801561084857600080fd5b50610851611985565b60405161085e9190612ce1565b60405180910390f35b34801561087357600080fd5b5061088e60048036038101906108899190612cfc565b611a40565b005b34801561089c57600080fd5b506108a5611c06565b6040516108b29190612db2565b60405180910390f35b6060600380546108ca906130f2565b80601f01602080910402602001604051908101604052809291908181526020018280546108f6906130f2565b80156109435780601f1061091857610100808354040283529160200191610943565b820191906000526020600020905b81548152906001019060200180831161092657829003601f168201915b5050505050905090565b600061096161095a611c6a565b8484611c72565b6001905092915050565b600f6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6109c1611c6a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a479061316f565b60405180910390fd5b670de0b6b3a76400006103e86001610a666109af565b610a7091906131be565b610a7a9190613247565b610a849190613247565b811015610ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abd906132ea565b60405180910390fd5b670de0b6b3a764000081610ada91906131be565b60068190555050565b6000610af0848484611e3b565b610bb184610afc611c6a565b610bac85604051806060016040528060288152602001613df260289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b62611c6a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127909092919063ffffffff16565b611c72565b600190509392505050565b60006012905090565b6000610c6e610bd2611c6a565b84610c698560016000610be3611c6a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c0c90919063ffffffff16565b611c72565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600960009054906101000a900460ff1681565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600960029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d68611c6a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dee9061316f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000610ec2611c6a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f489061316f565b60405180910390fd5b6000600960006101000a81548160ff0219169083151502179055506001905090565b610f7b611c6a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461100a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110019061316f565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61106d611c6a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f39061316f565b60405180910390fd5b6001600960016101000a81548160ff0219169083151502179055506001600960026101000a81548160ff02191690831515021790555043600d81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61116d611c6a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f39061316f565b60405180910390fd5b80600960026101000a81548160ff02191690831515021790555050565b606060048054611228906130f2565b80601f0160208091040260200160405190810160405280929190818152602001828054611254906130f2565b80156112a15780601f10611276576101008083540402835291602001916112a1565b820191906000526020600020905b81548152906001019060200180831161128457829003601f168201915b5050505050905090565b6112b3611c6a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611342576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113399061316f565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c79061337c565b60405180910390fd5b6113da82826127f4565b5050565b6113e6611c6a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146c9061316f565b60405180910390fd5b61149561148061113b565b61148861113b565b6114906109af565b611c72565b60005b848490508110156115205761150c338686848181106114ba576114b961339c565b5b90506020020160208101906114cf9190612cfc565b6114d7610bbc565b600a6114e391906134fe565b8686868181106114f6576114f561339c565b5b9050602002013561150791906131be565b610ae3565b50808061151890613549565b915050611498565b5050505050565b60006115ea611534611c6a565b846115e585604051806060016040528060258152602001613e1a602591396001600061155e611c6a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127909092919063ffffffff16565b611c72565b6001905092915050565b6000611608611601611c6a565b8484611e3b565b6001905092915050565b60106020528060005260406000206000915054906101000a900460ff1681565b600960019054906101000a900460ff1681565b61164d611c6a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d39061316f565b60405180910390fd5b670de0b6b3a76400006103e860056116f26109af565b6116fc91906131be565b6117069190613247565b6117109190613247565b811015611752576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174990613603565b60405180910390fd5b670de0b6b3a76400008161176691906131be565b60088190555050565b600c60009054906101000a900460ff1681565b60065481565b6000611792611c6a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611821576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118189061316f565b60405180910390fd5b620186a0600161182f6109af565b61183991906131be565b6118439190613247565b821015611885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187c90613695565b60405180910390fd5b6103e860056118926109af565b61189c91906131be565b6118a69190613247565b8211156118e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118df90613727565b60405180910390fd5b8160078190555060019050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60075481565b600061198f611c6a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a159061316f565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b611a48611c6a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace9061316f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3d906137b9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60085481565b6000808284611c1b91906137d9565b905083811015611c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c579061387b565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd89061390d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d479061399f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611e2e9190612db2565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea190613a31565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1090613ac3565b60405180910390fd5b60008103611f3257611f2d83836000612895565b61278b565b600960009054906101000a900460ff16156125f657611f4f61113b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611fbd5750611f8d61113b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611ff65750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612030575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156120495750600560149054906101000a900460ff16155b156125f557600960019054906101000a900460ff1661214357600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806121035750600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213990613b2f565b60405180910390fd5b5b600c60009054906101000a900460ff161561230c5761216061113b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156121e757507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561223f57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561230b5743600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156122c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bd90613be7565b60405180910390fd5b43600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156123af5750600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612456576006548111156123f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f090613c79565b60405180910390fd5b60085461240583610d18565b8261241091906137d9565b1115612451576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244890613ce5565b60405180910390fd5b6125f4565b601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156124f95750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561254857600654811115612543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253a90613d77565b60405180910390fd5b6125f3565b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166125f2576008546125a583610d18565b826125b091906137d9565b11156125f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e890613ce5565b60405180910390fd5b5b5b5b5b5b600061260130610d18565b9050600060075482101590508080156126265750600960029054906101000a900460ff165b801561263f5750600560149054906101000a900460ff16155b80156126955750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156126eb5750600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156127415750600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561277d576001600560146101000a81548160ff0219169083151502179055506000600560146101000a81548160ff0219169083151502179055505b612788858585612895565b50505b505050565b60008383111582906127d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127cf9190612bc6565b60405180910390fd5b50600083856127e79190613d97565b9050809150509392505050565b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fb90613a31565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296a90613ac3565b60405180910390fd5b61297e838383612b28565b6129e981604051806060016040528060268152602001613dcc602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127909092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612a7c816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c0c90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612b1b9190612db2565b60405180910390a3505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b67578082015181840152602081019050612b4c565b83811115612b76576000848401525b50505050565b6000601f19601f8301169050919050565b6000612b9882612b2d565b612ba28185612b38565b9350612bb2818560208601612b49565b612bbb81612b7c565b840191505092915050565b60006020820190508181036000830152612be08184612b8d565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c1d82612bf2565b9050919050565b612c2d81612c12565b8114612c3857600080fd5b50565b600081359050612c4a81612c24565b92915050565b6000819050919050565b612c6381612c50565b8114612c6e57600080fd5b50565b600081359050612c8081612c5a565b92915050565b60008060408385031215612c9d57612c9c612be8565b5b6000612cab85828601612c3b565b9250506020612cbc85828601612c71565b9150509250929050565b60008115159050919050565b612cdb81612cc6565b82525050565b6000602082019050612cf66000830184612cd2565b92915050565b600060208284031215612d1257612d11612be8565b5b6000612d2084828501612c3b565b91505092915050565b6000819050919050565b6000612d4e612d49612d4484612bf2565b612d29565b612bf2565b9050919050565b6000612d6082612d33565b9050919050565b6000612d7282612d55565b9050919050565b612d8281612d67565b82525050565b6000602082019050612d9d6000830184612d79565b92915050565b612dac81612c50565b82525050565b6000602082019050612dc76000830184612da3565b92915050565b600060208284031215612de357612de2612be8565b5b6000612df184828501612c71565b91505092915050565b600080600060608486031215612e1357612e12612be8565b5b6000612e2186828701612c3b565b9350506020612e3286828701612c3b565b9250506040612e4386828701612c71565b9150509250925092565b600060ff82169050919050565b612e6381612e4d565b82525050565b6000602082019050612e7e6000830184612e5a565b92915050565b612e8d81612c12565b82525050565b6000602082019050612ea86000830184612e84565b92915050565b612eb781612cc6565b8114612ec257600080fd5b50565b600081359050612ed481612eae565b92915050565b60008060408385031215612ef157612ef0612be8565b5b6000612eff85828601612c3b565b9250506020612f1085828601612ec5565b9150509250929050565b600060208284031215612f3057612f2f612be8565b5b6000612f3e84828501612ec5565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612f6c57612f6b612f47565b5b8235905067ffffffffffffffff811115612f8957612f88612f4c565b5b602083019150836020820283011115612fa557612fa4612f51565b5b9250929050565b60008083601f840112612fc257612fc1612f47565b5b8235905067ffffffffffffffff811115612fdf57612fde612f4c565b5b602083019150836020820283011115612ffb57612ffa612f51565b5b9250929050565b6000806000806040858703121561301c5761301b612be8565b5b600085013567ffffffffffffffff81111561303a57613039612bed565b5b61304687828801612f56565b9450945050602085013567ffffffffffffffff81111561306957613068612bed565b5b61307587828801612fac565b925092505092959194509250565b6000806040838503121561309a57613099612be8565b5b60006130a885828601612c3b565b92505060206130b985828601612c3b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061310a57607f821691505b60208210810361311d5761311c6130c3565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613159602083612b38565b915061316482613123565b602082019050919050565b600060208201905081810360008301526131888161314c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006131c982612c50565b91506131d483612c50565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561320d5761320c61318f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061325282612c50565b915061325d83612c50565b92508261326d5761326c613218565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006132d4602f83612b38565b91506132df82613278565b604082019050919050565b60006020820190508181036000830152613303816132c7565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613366603983612b38565b91506133718261330a565b604082019050919050565b6000602082019050818103600083015261339581613359565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115613422578086048111156133fe576133fd61318f565b5b600185161561340d5780820291505b808102905061341b856133cb565b94506133e2565b94509492505050565b60008261343b57600190506134f7565b8161344957600090506134f7565b816001811461345f576002811461346957613498565b60019150506134f7565b60ff84111561347b5761347a61318f565b5b8360020a9150848211156134925761349161318f565b5b506134f7565b5060208310610133831016604e8410600b84101617156134cd5782820a9050838111156134c8576134c761318f565b5b6134f7565b6134da84848460016133d8565b925090508184048111156134f1576134f061318f565b5b81810290505b9392505050565b600061350982612c50565b915061351483612e4d565b92506135417fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461342b565b905092915050565b600061355482612c50565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036135865761358561318f565b5b600182019050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006135ed602483612b38565b91506135f882613591565b604082019050919050565b6000602082019050818103600083015261361c816135e0565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061367f603583612b38565b915061368a82613623565b604082019050919050565b600060208201905081810360008301526136ae81613672565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613711603483612b38565b915061371c826136b5565b604082019050919050565b6000602082019050818103600083015261374081613704565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006137a3602683612b38565b91506137ae82613747565b604082019050919050565b600060208201905081810360008301526137d281613796565b9050919050565b60006137e482612c50565b91506137ef83612c50565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138245761382361318f565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000613865601b83612b38565b91506138708261382f565b602082019050919050565b6000602082019050818103600083015261389481613858565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006138f7602483612b38565b91506139028261389b565b604082019050919050565b60006020820190508181036000830152613926816138ea565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613989602283612b38565b91506139948261392d565b604082019050919050565b600060208201905081810360008301526139b88161397c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613a1b602583612b38565b9150613a26826139bf565b604082019050919050565b60006020820190508181036000830152613a4a81613a0e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613aad602383612b38565b9150613ab882613a51565b604082019050919050565b60006020820190508181036000830152613adc81613aa0565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613b19601683612b38565b9150613b2482613ae3565b602082019050919050565b60006020820190508181036000830152613b4881613b0c565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000613bd1604983612b38565b9150613bdc82613b4f565b606082019050919050565b60006020820190508181036000830152613c0081613bc4565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613c63603583612b38565b9150613c6e82613c07565b604082019050919050565b60006020820190508181036000830152613c9281613c56565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613ccf601383612b38565b9150613cda82613c99565b602082019050919050565b60006020820190508181036000830152613cfe81613cc2565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000613d61603683612b38565b9150613d6c82613d05565b604082019050919050565b60006020820190508181036000830152613d9081613d54565b9050919050565b6000613da282612c50565b9150613dad83612c50565b925082821015613dc057613dbf61318f565b5b82820390509291505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220fe8ffe2b5404bfad69375342e1b37a6e37b41b409af6ea1fd0b032599efe1ff164736f6c634300080d0033

Deployed Bytecode

0x6080604052600436106102135760003560e01c80638da5cb5b11610118578063c18bc195116100a0578063dd62ed3e1161006f578063dd62ed3e146107d4578063e2f4560514610811578063e884f2601461083c578063f2fde38b14610867578063f8b45b05146108905761021a565b8063c18bc19514610718578063c876d0b914610741578063c8c8ebe41461076c578063d257b34f146107975761021a565b80639c63e6b9116100e75780639c63e6b91461060d578063a457c2d714610636578063a9059cbb14610673578063b62496f5146106b0578063bbc0c742146106ed5761021a565b80638da5cb5b14610565578063924de9b71461059057806395d89b41146105b95780639a7a23d6146105e45761021a565b806349bd5a5e1161019b57806370a082311161016a57806370a08231146104a6578063715018a6146104e3578063751039fc146104fa5780637571336a146105255780638a8c523c1461054e5761021a565b806349bd5a5e146103e85780634a62bb65146104135780634fbee1931461043e5780636ddd17131461047b5761021a565b806318160ddd116101e257806318160ddd146102ef578063203e727e1461031a57806323b872dd14610343578063313ce5671461038057806339509351146103ab5761021a565b806306fdde031461021f578063095ea7b31461024a57806310d5de53146102875780631694505e146102c45761021a565b3661021a57005b600080fd5b34801561022b57600080fd5b506102346108bb565b6040516102419190612bc6565b60405180910390f35b34801561025657600080fd5b50610271600480360381019061026c9190612c86565b61094d565b60405161027e9190612ce1565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190612cfc565b61096b565b6040516102bb9190612ce1565b60405180910390f35b3480156102d057600080fd5b506102d961098b565b6040516102e69190612d88565b60405180910390f35b3480156102fb57600080fd5b506103046109af565b6040516103119190612db2565b60405180910390f35b34801561032657600080fd5b50610341600480360381019061033c9190612dcd565b6109b9565b005b34801561034f57600080fd5b5061036a60048036038101906103659190612dfa565b610ae3565b6040516103779190612ce1565b60405180910390f35b34801561038c57600080fd5b50610395610bbc565b6040516103a29190612e69565b60405180910390f35b3480156103b757600080fd5b506103d260048036038101906103cd9190612c86565b610bc5565b6040516103df9190612ce1565b60405180910390f35b3480156103f457600080fd5b506103fd610c78565b60405161040a9190612e93565b60405180910390f35b34801561041f57600080fd5b50610428610c9c565b6040516104359190612ce1565b60405180910390f35b34801561044a57600080fd5b5061046560048036038101906104609190612cfc565b610caf565b6040516104729190612ce1565b60405180910390f35b34801561048757600080fd5b50610490610d05565b60405161049d9190612ce1565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c89190612cfc565b610d18565b6040516104da9190612db2565b60405180910390f35b3480156104ef57600080fd5b506104f8610d60565b005b34801561050657600080fd5b5061050f610eb8565b60405161051c9190612ce1565b60405180910390f35b34801561053157600080fd5b5061054c60048036038101906105479190612eda565b610f73565b005b34801561055a57600080fd5b50610563611065565b005b34801561057157600080fd5b5061057a61113b565b6040516105879190612e93565b60405180910390f35b34801561059c57600080fd5b506105b760048036038101906105b29190612f1a565b611165565b005b3480156105c557600080fd5b506105ce611219565b6040516105db9190612bc6565b60405180910390f35b3480156105f057600080fd5b5061060b60048036038101906106069190612eda565b6112ab565b005b34801561061957600080fd5b50610634600480360381019061062f9190613002565b6113de565b005b34801561064257600080fd5b5061065d60048036038101906106589190612c86565b611527565b60405161066a9190612ce1565b60405180910390f35b34801561067f57600080fd5b5061069a60048036038101906106959190612c86565b6115f4565b6040516106a79190612ce1565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d29190612cfc565b611612565b6040516106e49190612ce1565b60405180910390f35b3480156106f957600080fd5b50610702611632565b60405161070f9190612ce1565b60405180910390f35b34801561072457600080fd5b5061073f600480360381019061073a9190612dcd565b611645565b005b34801561074d57600080fd5b5061075661176f565b6040516107639190612ce1565b60405180910390f35b34801561077857600080fd5b50610781611782565b60405161078e9190612db2565b60405180910390f35b3480156107a357600080fd5b506107be60048036038101906107b99190612dcd565b611788565b6040516107cb9190612ce1565b60405180910390f35b3480156107e057600080fd5b506107fb60048036038101906107f69190613083565b6118f8565b6040516108089190612db2565b60405180910390f35b34801561081d57600080fd5b5061082661197f565b6040516108339190612db2565b60405180910390f35b34801561084857600080fd5b50610851611985565b60405161085e9190612ce1565b60405180910390f35b34801561087357600080fd5b5061088e60048036038101906108899190612cfc565b611a40565b005b34801561089c57600080fd5b506108a5611c06565b6040516108b29190612db2565b60405180910390f35b6060600380546108ca906130f2565b80601f01602080910402602001604051908101604052809291908181526020018280546108f6906130f2565b80156109435780601f1061091857610100808354040283529160200191610943565b820191906000526020600020905b81548152906001019060200180831161092657829003601f168201915b5050505050905090565b600061096161095a611c6a565b8484611c72565b6001905092915050565b600f6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b6109c1611c6a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a479061316f565b60405180910390fd5b670de0b6b3a76400006103e86001610a666109af565b610a7091906131be565b610a7a9190613247565b610a849190613247565b811015610ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abd906132ea565b60405180910390fd5b670de0b6b3a764000081610ada91906131be565b60068190555050565b6000610af0848484611e3b565b610bb184610afc611c6a565b610bac85604051806060016040528060288152602001613df260289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b62611c6a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127909092919063ffffffff16565b611c72565b600190509392505050565b60006012905090565b6000610c6e610bd2611c6a565b84610c698560016000610be3611c6a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c0c90919063ffffffff16565b611c72565b6001905092915050565b7f00000000000000000000000031a0202667ef01f18639d959ed1d662f56038a8781565b600960009054906101000a900460ff1681565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600960029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d68611c6a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dee9061316f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000610ec2611c6a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f489061316f565b60405180910390fd5b6000600960006101000a81548160ff0219169083151502179055506001905090565b610f7b611c6a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461100a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110019061316f565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61106d611c6a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f39061316f565b60405180910390fd5b6001600960016101000a81548160ff0219169083151502179055506001600960026101000a81548160ff02191690831515021790555043600d81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61116d611c6a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f39061316f565b60405180910390fd5b80600960026101000a81548160ff02191690831515021790555050565b606060048054611228906130f2565b80601f0160208091040260200160405190810160405280929190818152602001828054611254906130f2565b80156112a15780601f10611276576101008083540402835291602001916112a1565b820191906000526020600020905b81548152906001019060200180831161128457829003601f168201915b5050505050905090565b6112b3611c6a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611342576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113399061316f565b60405180910390fd5b7f00000000000000000000000031a0202667ef01f18639d959ed1d662f56038a8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c79061337c565b60405180910390fd5b6113da82826127f4565b5050565b6113e6611c6a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146c9061316f565b60405180910390fd5b61149561148061113b565b61148861113b565b6114906109af565b611c72565b60005b848490508110156115205761150c338686848181106114ba576114b961339c565b5b90506020020160208101906114cf9190612cfc565b6114d7610bbc565b600a6114e391906134fe565b8686868181106114f6576114f561339c565b5b9050602002013561150791906131be565b610ae3565b50808061151890613549565b915050611498565b5050505050565b60006115ea611534611c6a565b846115e585604051806060016040528060258152602001613e1a602591396001600061155e611c6a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127909092919063ffffffff16565b611c72565b6001905092915050565b6000611608611601611c6a565b8484611e3b565b6001905092915050565b60106020528060005260406000206000915054906101000a900460ff1681565b600960019054906101000a900460ff1681565b61164d611c6a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d39061316f565b60405180910390fd5b670de0b6b3a76400006103e860056116f26109af565b6116fc91906131be565b6117069190613247565b6117109190613247565b811015611752576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174990613603565b60405180910390fd5b670de0b6b3a76400008161176691906131be565b60088190555050565b600c60009054906101000a900460ff1681565b60065481565b6000611792611c6a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611821576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118189061316f565b60405180910390fd5b620186a0600161182f6109af565b61183991906131be565b6118439190613247565b821015611885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187c90613695565b60405180910390fd5b6103e860056118926109af565b61189c91906131be565b6118a69190613247565b8211156118e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118df90613727565b60405180910390fd5b8160078190555060019050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60075481565b600061198f611c6a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a159061316f565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b611a48611c6a565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace9061316f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3d906137b9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60085481565b6000808284611c1b91906137d9565b905083811015611c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c579061387b565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd89061390d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d479061399f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611e2e9190612db2565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea190613a31565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1090613ac3565b60405180910390fd5b60008103611f3257611f2d83836000612895565b61278b565b600960009054906101000a900460ff16156125f657611f4f61113b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611fbd5750611f8d61113b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611ff65750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612030575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156120495750600560149054906101000a900460ff16155b156125f557600960019054906101000a900460ff1661214357600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806121035750600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213990613b2f565b60405180910390fd5b5b600c60009054906101000a900460ff161561230c5761216061113b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156121e757507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561223f57507f00000000000000000000000031a0202667ef01f18639d959ed1d662f56038a8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561230b5743600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156122c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bd90613be7565b60405180910390fd5b43600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156123af5750600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612456576006548111156123f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f090613c79565b60405180910390fd5b60085461240583610d18565b8261241091906137d9565b1115612451576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244890613ce5565b60405180910390fd5b6125f4565b601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156124f95750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561254857600654811115612543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253a90613d77565b60405180910390fd5b6125f3565b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166125f2576008546125a583610d18565b826125b091906137d9565b11156125f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e890613ce5565b60405180910390fd5b5b5b5b5b5b600061260130610d18565b9050600060075482101590508080156126265750600960029054906101000a900460ff165b801561263f5750600560149054906101000a900460ff16155b80156126955750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156126eb5750600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156127415750600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561277d576001600560146101000a81548160ff0219169083151502179055506000600560146101000a81548160ff0219169083151502179055505b612788858585612895565b50505b505050565b60008383111582906127d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127cf9190612bc6565b60405180910390fd5b50600083856127e79190613d97565b9050809150509392505050565b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fb90613a31565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296a90613ac3565b60405180910390fd5b61297e838383612b28565b6129e981604051806060016040528060268152602001613dcc602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127909092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612a7c816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c0c90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612b1b9190612db2565b60405180910390a3505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b67578082015181840152602081019050612b4c565b83811115612b76576000848401525b50505050565b6000601f19601f8301169050919050565b6000612b9882612b2d565b612ba28185612b38565b9350612bb2818560208601612b49565b612bbb81612b7c565b840191505092915050565b60006020820190508181036000830152612be08184612b8d565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c1d82612bf2565b9050919050565b612c2d81612c12565b8114612c3857600080fd5b50565b600081359050612c4a81612c24565b92915050565b6000819050919050565b612c6381612c50565b8114612c6e57600080fd5b50565b600081359050612c8081612c5a565b92915050565b60008060408385031215612c9d57612c9c612be8565b5b6000612cab85828601612c3b565b9250506020612cbc85828601612c71565b9150509250929050565b60008115159050919050565b612cdb81612cc6565b82525050565b6000602082019050612cf66000830184612cd2565b92915050565b600060208284031215612d1257612d11612be8565b5b6000612d2084828501612c3b565b91505092915050565b6000819050919050565b6000612d4e612d49612d4484612bf2565b612d29565b612bf2565b9050919050565b6000612d6082612d33565b9050919050565b6000612d7282612d55565b9050919050565b612d8281612d67565b82525050565b6000602082019050612d9d6000830184612d79565b92915050565b612dac81612c50565b82525050565b6000602082019050612dc76000830184612da3565b92915050565b600060208284031215612de357612de2612be8565b5b6000612df184828501612c71565b91505092915050565b600080600060608486031215612e1357612e12612be8565b5b6000612e2186828701612c3b565b9350506020612e3286828701612c3b565b9250506040612e4386828701612c71565b9150509250925092565b600060ff82169050919050565b612e6381612e4d565b82525050565b6000602082019050612e7e6000830184612e5a565b92915050565b612e8d81612c12565b82525050565b6000602082019050612ea86000830184612e84565b92915050565b612eb781612cc6565b8114612ec257600080fd5b50565b600081359050612ed481612eae565b92915050565b60008060408385031215612ef157612ef0612be8565b5b6000612eff85828601612c3b565b9250506020612f1085828601612ec5565b9150509250929050565b600060208284031215612f3057612f2f612be8565b5b6000612f3e84828501612ec5565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612f6c57612f6b612f47565b5b8235905067ffffffffffffffff811115612f8957612f88612f4c565b5b602083019150836020820283011115612fa557612fa4612f51565b5b9250929050565b60008083601f840112612fc257612fc1612f47565b5b8235905067ffffffffffffffff811115612fdf57612fde612f4c565b5b602083019150836020820283011115612ffb57612ffa612f51565b5b9250929050565b6000806000806040858703121561301c5761301b612be8565b5b600085013567ffffffffffffffff81111561303a57613039612bed565b5b61304687828801612f56565b9450945050602085013567ffffffffffffffff81111561306957613068612bed565b5b61307587828801612fac565b925092505092959194509250565b6000806040838503121561309a57613099612be8565b5b60006130a885828601612c3b565b92505060206130b985828601612c3b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061310a57607f821691505b60208210810361311d5761311c6130c3565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613159602083612b38565b915061316482613123565b602082019050919050565b600060208201905081810360008301526131888161314c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006131c982612c50565b91506131d483612c50565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561320d5761320c61318f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061325282612c50565b915061325d83612c50565b92508261326d5761326c613218565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006132d4602f83612b38565b91506132df82613278565b604082019050919050565b60006020820190508181036000830152613303816132c7565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613366603983612b38565b91506133718261330a565b604082019050919050565b6000602082019050818103600083015261339581613359565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115613422578086048111156133fe576133fd61318f565b5b600185161561340d5780820291505b808102905061341b856133cb565b94506133e2565b94509492505050565b60008261343b57600190506134f7565b8161344957600090506134f7565b816001811461345f576002811461346957613498565b60019150506134f7565b60ff84111561347b5761347a61318f565b5b8360020a9150848211156134925761349161318f565b5b506134f7565b5060208310610133831016604e8410600b84101617156134cd5782820a9050838111156134c8576134c761318f565b5b6134f7565b6134da84848460016133d8565b925090508184048111156134f1576134f061318f565b5b81810290505b9392505050565b600061350982612c50565b915061351483612e4d565b92506135417fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461342b565b905092915050565b600061355482612c50565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036135865761358561318f565b5b600182019050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006135ed602483612b38565b91506135f882613591565b604082019050919050565b6000602082019050818103600083015261361c816135e0565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061367f603583612b38565b915061368a82613623565b604082019050919050565b600060208201905081810360008301526136ae81613672565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613711603483612b38565b915061371c826136b5565b604082019050919050565b6000602082019050818103600083015261374081613704565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006137a3602683612b38565b91506137ae82613747565b604082019050919050565b600060208201905081810360008301526137d281613796565b9050919050565b60006137e482612c50565b91506137ef83612c50565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138245761382361318f565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000613865601b83612b38565b91506138708261382f565b602082019050919050565b6000602082019050818103600083015261389481613858565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006138f7602483612b38565b91506139028261389b565b604082019050919050565b60006020820190508181036000830152613926816138ea565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613989602283612b38565b91506139948261392d565b604082019050919050565b600060208201905081810360008301526139b88161397c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613a1b602583612b38565b9150613a26826139bf565b604082019050919050565b60006020820190508181036000830152613a4a81613a0e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613aad602383612b38565b9150613ab882613a51565b604082019050919050565b60006020820190508181036000830152613adc81613aa0565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613b19601683612b38565b9150613b2482613ae3565b602082019050919050565b60006020820190508181036000830152613b4881613b0c565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000613bd1604983612b38565b9150613bdc82613b4f565b606082019050919050565b60006020820190508181036000830152613c0081613bc4565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613c63603583612b38565b9150613c6e82613c07565b604082019050919050565b60006020820190508181036000830152613c9281613c56565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613ccf601383612b38565b9150613cda82613c99565b602082019050919050565b60006020820190508181036000830152613cfe81613cc2565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000613d61603683612b38565b9150613d6c82613d05565b604082019050919050565b60006020820190508181036000830152613d9081613d54565b9050919050565b6000613da282612c50565b9150613dad83612c50565b925082821015613dc057613dbf61318f565b5b82820390509291505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220fe8ffe2b5404bfad69375342e1b37a6e37b41b409af6ea1fd0b032599efe1ff164736f6c634300080d0033

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.