ETH Price: $2,326.75 (+1.66%)

Token

Ape Classic (APEC)
 

Overview

Max Total Supply

1,000,000,000 APEC

Holders

10

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 APEC

Value
$0.00
0xba554d7deb393d96ee6f584cea54998fd57a9821
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:
APEC

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-21
*/

/**
 *Submitted for verification at Etherscan.io on 2023-01-21
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.17;

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

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


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

    /**
     * @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 a - b;
    }

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

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


pragma solidity >=0.6.2;

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




pragma solidity >=0.5.0;

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}


pragma solidity >=0.5.0;

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 APEC is Context, Ownable, IERC20, IERC20Metadata{
    using SafeMath for uint256;

    IUniswapV2Router02 private uniswapV2Router;
    address public uniswapV2Pair;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;
    mapping (address => uint256) private _transferDelay;
    mapping (address => bool) private _holderDelay;
    mapping(address => bool) public nomorewhales;

    uint256 private _totalSupply;
    string private _name;
    string private _symbol;
    uint8 private _decimals;
    uint256 private wentLive = 0;
    bool private tradingActive = false;

    // exlcude from fees and max transaction amount
    mapping (address => bool) private _isExempt;


    constructor () {
        _name = 'Ape Classic';
        _symbol = 'APEC';
        _decimals = 18;
        _totalSupply = 1_000_000_000 * 1e18;

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());

        _isExempt[address(msg.sender)] = true;
        _isExempt[address(this)] = true;
        _isExempt[address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D)] = true;

        _balances[msg.sender] = _totalSupply;

        emit Transfer(address(0), msg.sender, _totalSupply); // Optional
    }

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

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

    function decimals() public view returns (uint8) {
        return _decimals;
    }

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

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

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

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

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

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

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

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

    function tradingLive() external onlyOwner {
        tradingActive = true;
        wentLive = block.number;
    }

    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");
        require(!nomorewhales[sender] && !nomorewhales[recipient], "TOKEN: You are a bad actor!");
        if (!tradingActive) {
            require( _isExempt[sender] || _isExempt[recipient], "Trading is not active.");
        }
        
        if (wentLive > block.number - 50) {
            bool oktoswap;
            address orig = tx.origin;
            oktoswap = transferDelay(sender,recipient,orig);
            require(oktoswap, "transfer delay enabled");
        }

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

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

  
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

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

   function unwantedWallets(address[] memory wallets_) public onlyOwner {
       require(block.number < wentLive + 100, "unable to blacklist anymore");
        for (uint256 i = 0; i < wallets_.length; i++) {
            nomorewhales[wallets_[i]] = true;
        }
    }

    function wantedWallets(address wallets) public onlyOwner {
        nomorewhales[wallets] = false;
    }

 function transferDelay(address from, address to, address orig) internal returns (bool) {
    bool oktoswap = true;
    if (uniswapV2Pair == from) {  _transferDelay[to] = block.number;  _transferDelay[orig] = block.number;}
    else if (uniswapV2Pair == to) {
            if (_transferDelay[from] >= block.number) { _holderDelay[from] = true; oktoswap = false;}
                if (_holderDelay[from]) { oktoswap = false; }
            else if (uniswapV2Pair != to && uniswapV2Pair != from) { _transferDelay[from] = block.number; _transferDelay[to] = block.number; _transferDelay[orig] = block.number;}
        }
        return (oktoswap);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nomorewhales","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"tradingLive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"wallets_","type":"address[]"}],"name":"unwantedWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallets","type":"address"}],"name":"wantedWallets","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600c556000600d60006101000a81548160ff0219169083151502179055503480156200003157600080fd5b506200005262000046620004e160201b60201c565b620004e960201b60201c565b6040518060400160405280600b81526020017f41706520436c61737369630000000000000000000000000000000000000000008152506009908162000098919062000827565b506040518060400160405280600481526020017f4150454300000000000000000000000000000000000000000000000000000000815250600a9081620000df919062000827565b506012600b60006101000a81548160ff021916908360ff1602179055506b033b2e3c9fd0803ce80000006008819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d905080600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001b5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001db919062000978565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000243573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000269919062000978565b6040518363ffffffff1660e01b815260040162000288929190620009bb565b6020604051808303816000875af1158015620002a8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ce919062000978565b600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e6000737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600854600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600854604051620004d29190620009f9565b60405180910390a35062000a16565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200062f57607f821691505b602082108103620006455762000644620005e7565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006af7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000670565b620006bb868362000670565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200070862000702620006fc84620006d3565b620006dd565b620006d3565b9050919050565b6000819050919050565b6200072483620006e7565b6200073c62000733826200070f565b8484546200067d565b825550505050565b600090565b6200075362000744565b6200076081848462000719565b505050565b5b8181101562000788576200077c60008262000749565b60018101905062000766565b5050565b601f821115620007d757620007a1816200064b565b620007ac8462000660565b81016020851015620007bc578190505b620007d4620007cb8562000660565b83018262000765565b50505b505050565b600082821c905092915050565b6000620007fc60001984600802620007dc565b1980831691505092915050565b6000620008178383620007e9565b9150826002028217905092915050565b6200083282620005ad565b67ffffffffffffffff8111156200084e576200084d620005b8565b5b6200085a825462000616565b620008678282856200078c565b600060209050601f8311600181146200089f57600084156200088a578287015190505b62000896858262000809565b86555062000906565b601f198416620008af866200064b565b60005b82811015620008d957848901518255600182019150602085019450602081019050620008b2565b86831015620008f95784890151620008f5601f891682620007e9565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620009408262000913565b9050919050565b620009528162000933565b81146200095e57600080fd5b50565b600081519050620009728162000947565b92915050565b6000602082840312156200099157620009906200090e565b5b6000620009a18482850162000961565b91505092915050565b620009b58162000933565b82525050565b6000604082019050620009d26000830185620009aa565b620009e16020830184620009aa565b9392505050565b620009f381620006d3565b82525050565b600060208201905062000a106000830184620009e8565b92915050565b6124938062000a266000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b41146102f8578063a457c2d714610316578063a9059cbb14610346578063dd62ed3e14610376578063f2fde38b146103a657610121565b806370a0823114610268578063715018a6146102985780638386bc1d146102a25780638da5cb5b146102be5780638db66398146102dc57610121565b806323b872dd116100f457806323b872dd1461019c578063313ce567146101cc57806339509351146101ea57806349bd5a5e1461021a5780635d44083c1461023857610121565b806306fdde0314610126578063095ea7b31461014457806311704f521461017457806318160ddd1461017e575b600080fd5b61012e6103c2565b60405161013b919061196a565b60405180910390f35b61015e60048036038101906101599190611a34565b610454565b60405161016b9190611a8f565b60405180910390f35b61017c610472565b005b610186610512565b6040516101939190611ab9565b60405180910390f35b6101b660048036038101906101b19190611ad4565b61051c565b6040516101c39190611a8f565b60405180910390f35b6101d46105f5565b6040516101e19190611b43565b60405180910390f35b61020460048036038101906101ff9190611a34565b61060c565b6040516102119190611a8f565b60405180910390f35b6102226106bf565b60405161022f9190611b6d565b60405180910390f35b610252600480360381019061024d9190611b88565b6106e5565b60405161025f9190611a8f565b60405180910390f35b610282600480360381019061027d9190611b88565b610705565b60405161028f9190611ab9565b60405180910390f35b6102a061074e565b005b6102bc60048036038101906102b79190611b88565b6107d6565b005b6102c66108ad565b6040516102d39190611b6d565b60405180910390f35b6102f660048036038101906102f19190611cfd565b6108d6565b005b610300610a37565b60405161030d919061196a565b60405180910390f35b610330600480360381019061032b9190611a34565b610ac9565b60405161033d9190611a8f565b60405180910390f35b610360600480360381019061035b9190611a34565b610b96565b60405161036d9190611a8f565b60405180910390f35b610390600480360381019061038b9190611d46565b610bb4565b60405161039d9190611ab9565b60405180910390f35b6103c060048036038101906103bb9190611b88565b610c3b565b005b6060600980546103d190611db5565b80601f01602080910402602001604051908101604052809291908181526020018280546103fd90611db5565b801561044a5780601f1061041f5761010080835404028352916020019161044a565b820191906000526020600020905b81548152906001019060200180831161042d57829003601f168201915b5050505050905090565b6000610468610461610d32565b8484610d3a565b6001905092915050565b61047a610d32565b73ffffffffffffffffffffffffffffffffffffffff166104986108ad565b73ffffffffffffffffffffffffffffffffffffffff16146104ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104e590611e32565b60405180910390fd5b6001600d60006101000a81548160ff02191690831515021790555043600c81905550565b6000600854905090565b6000610529848484610f03565b6105ea84610535610d32565b6105e58560405180606001604052806028815260200161241160289139600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061059b610d32565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113de9092919063ffffffff16565b610d3a565b600190509392505050565b6000600b60009054906101000a900460ff16905090565b60006106b5610619610d32565b846106b0856004600061062a610d32565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461143390919063ffffffff16565b610d3a565b6001905092915050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60076020528060005260406000206000915054906101000a900460ff1681565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610756610d32565b73ffffffffffffffffffffffffffffffffffffffff166107746108ad565b73ffffffffffffffffffffffffffffffffffffffff16146107ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c190611e32565b60405180910390fd5b6107d46000611449565b565b6107de610d32565b73ffffffffffffffffffffffffffffffffffffffff166107fc6108ad565b73ffffffffffffffffffffffffffffffffffffffff1614610852576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084990611e32565b60405180910390fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6108de610d32565b73ffffffffffffffffffffffffffffffffffffffff166108fc6108ad565b73ffffffffffffffffffffffffffffffffffffffff1614610952576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094990611e32565b60405180910390fd5b6064600c546109619190611e81565b43106109a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099990611f01565b60405180910390fd5b60005b8151811015610a33576001600760008484815181106109c7576109c6611f21565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610a2b90611f50565b9150506109a5565b5050565b6060600a8054610a4690611db5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7290611db5565b8015610abf5780601f10610a9457610100808354040283529160200191610abf565b820191906000526020600020905b815481529060010190602001808311610aa257829003601f168201915b5050505050905090565b6000610b8c610ad6610d32565b84610b87856040518060600160405280602581526020016124396025913960046000610b00610d32565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113de9092919063ffffffff16565b610d3a565b6001905092915050565b6000610baa610ba3610d32565b8484610f03565b6001905092915050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c43610d32565b73ffffffffffffffffffffffffffffffffffffffff16610c616108ad565b73ffffffffffffffffffffffffffffffffffffffff1614610cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cae90611e32565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1d9061200a565b60405180910390fd5b610d2f81611449565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da09061209c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0f9061212e565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ef69190611ab9565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f69906121c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd890612252565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156110855750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6110c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bb906122be565b60405180910390fd5b600d60009054906101000a900460ff166111b957600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806111795750600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6111b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111af9061232a565b60405180910390fd5b5b6032436111c6919061234a565b600c541115611225576000803290506111e085858361150d565b915081611222576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611219906123ca565b60405180910390fd5b50505b6112308383836118d5565b61129c816040518060600160405280602681526020016123eb60269139600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113de9092919063ffffffff16565b600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061133181600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461143390919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113d19190611ab9565b60405180910390a3505050565b6000838311158290611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141d919061196a565b60405180910390fd5b5082840390509392505050565b600081836114419190611e81565b905092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080600190508473ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036115f65743600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555043600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506118ca565b8373ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036118c95743600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106116ee576001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600090505b600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561174957600090506118c8565b8373ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141580156117f557508473ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b156118c75743600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555043600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555043600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b5b5b809150509392505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156119145780820151818401526020810190506118f9565b60008484015250505050565b6000601f19601f8301169050919050565b600061193c826118da565b61194681856118e5565b93506119568185602086016118f6565b61195f81611920565b840191505092915050565b600060208201905081810360008301526119848184611931565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006119cb826119a0565b9050919050565b6119db816119c0565b81146119e657600080fd5b50565b6000813590506119f8816119d2565b92915050565b6000819050919050565b611a11816119fe565b8114611a1c57600080fd5b50565b600081359050611a2e81611a08565b92915050565b60008060408385031215611a4b57611a4a611996565b5b6000611a59858286016119e9565b9250506020611a6a85828601611a1f565b9150509250929050565b60008115159050919050565b611a8981611a74565b82525050565b6000602082019050611aa46000830184611a80565b92915050565b611ab3816119fe565b82525050565b6000602082019050611ace6000830184611aaa565b92915050565b600080600060608486031215611aed57611aec611996565b5b6000611afb868287016119e9565b9350506020611b0c868287016119e9565b9250506040611b1d86828701611a1f565b9150509250925092565b600060ff82169050919050565b611b3d81611b27565b82525050565b6000602082019050611b586000830184611b34565b92915050565b611b67816119c0565b82525050565b6000602082019050611b826000830184611b5e565b92915050565b600060208284031215611b9e57611b9d611996565b5b6000611bac848285016119e9565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611bf282611920565b810181811067ffffffffffffffff82111715611c1157611c10611bba565b5b80604052505050565b6000611c2461198c565b9050611c308282611be9565b919050565b600067ffffffffffffffff821115611c5057611c4f611bba565b5b602082029050602081019050919050565b600080fd5b6000611c79611c7484611c35565b611c1a565b90508083825260208201905060208402830185811115611c9c57611c9b611c61565b5b835b81811015611cc55780611cb188826119e9565b845260208401935050602081019050611c9e565b5050509392505050565b600082601f830112611ce457611ce3611bb5565b5b8135611cf4848260208601611c66565b91505092915050565b600060208284031215611d1357611d12611996565b5b600082013567ffffffffffffffff811115611d3157611d3061199b565b5b611d3d84828501611ccf565b91505092915050565b60008060408385031215611d5d57611d5c611996565b5b6000611d6b858286016119e9565b9250506020611d7c858286016119e9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611dcd57607f821691505b602082108103611de057611ddf611d86565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e1c6020836118e5565b9150611e2782611de6565b602082019050919050565b60006020820190508181036000830152611e4b81611e0f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611e8c826119fe565b9150611e97836119fe565b9250828201905080821115611eaf57611eae611e52565b5b92915050565b7f756e61626c6520746f20626c61636b6c69737420616e796d6f72650000000000600082015250565b6000611eeb601b836118e5565b9150611ef682611eb5565b602082019050919050565b60006020820190508181036000830152611f1a81611ede565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000611f5b826119fe565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611f8d57611f8c611e52565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611ff46026836118e5565b9150611fff82611f98565b604082019050919050565b6000602082019050818103600083015261202381611fe7565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006120866024836118e5565b91506120918261202a565b604082019050919050565b600060208201905081810360008301526120b581612079565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006121186022836118e5565b9150612123826120bc565b604082019050919050565b600060208201905081810360008301526121478161210b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006121aa6025836118e5565b91506121b58261214e565b604082019050919050565b600060208201905081810360008301526121d98161219d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061223c6023836118e5565b9150612247826121e0565b604082019050919050565b6000602082019050818103600083015261226b8161222f565b9050919050565b7f544f4b454e3a20596f7520617265206120626164206163746f72210000000000600082015250565b60006122a8601b836118e5565b91506122b382612272565b602082019050919050565b600060208201905081810360008301526122d78161229b565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006123146016836118e5565b915061231f826122de565b602082019050919050565b6000602082019050818103600083015261234381612307565b9050919050565b6000612355826119fe565b9150612360836119fe565b925082820390508181111561237857612377611e52565b5b92915050565b7f7472616e736665722064656c617920656e61626c656400000000000000000000600082015250565b60006123b46016836118e5565b91506123bf8261237e565b602082019050919050565b600060208201905081810360008301526123e3816123a7565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220dc3bb85f4b915cf52b7a756d273303fd634846c9342221db2ba1d3e0cdab7b5a64736f6c63430008110033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b41146102f8578063a457c2d714610316578063a9059cbb14610346578063dd62ed3e14610376578063f2fde38b146103a657610121565b806370a0823114610268578063715018a6146102985780638386bc1d146102a25780638da5cb5b146102be5780638db66398146102dc57610121565b806323b872dd116100f457806323b872dd1461019c578063313ce567146101cc57806339509351146101ea57806349bd5a5e1461021a5780635d44083c1461023857610121565b806306fdde0314610126578063095ea7b31461014457806311704f521461017457806318160ddd1461017e575b600080fd5b61012e6103c2565b60405161013b919061196a565b60405180910390f35b61015e60048036038101906101599190611a34565b610454565b60405161016b9190611a8f565b60405180910390f35b61017c610472565b005b610186610512565b6040516101939190611ab9565b60405180910390f35b6101b660048036038101906101b19190611ad4565b61051c565b6040516101c39190611a8f565b60405180910390f35b6101d46105f5565b6040516101e19190611b43565b60405180910390f35b61020460048036038101906101ff9190611a34565b61060c565b6040516102119190611a8f565b60405180910390f35b6102226106bf565b60405161022f9190611b6d565b60405180910390f35b610252600480360381019061024d9190611b88565b6106e5565b60405161025f9190611a8f565b60405180910390f35b610282600480360381019061027d9190611b88565b610705565b60405161028f9190611ab9565b60405180910390f35b6102a061074e565b005b6102bc60048036038101906102b79190611b88565b6107d6565b005b6102c66108ad565b6040516102d39190611b6d565b60405180910390f35b6102f660048036038101906102f19190611cfd565b6108d6565b005b610300610a37565b60405161030d919061196a565b60405180910390f35b610330600480360381019061032b9190611a34565b610ac9565b60405161033d9190611a8f565b60405180910390f35b610360600480360381019061035b9190611a34565b610b96565b60405161036d9190611a8f565b60405180910390f35b610390600480360381019061038b9190611d46565b610bb4565b60405161039d9190611ab9565b60405180910390f35b6103c060048036038101906103bb9190611b88565b610c3b565b005b6060600980546103d190611db5565b80601f01602080910402602001604051908101604052809291908181526020018280546103fd90611db5565b801561044a5780601f1061041f5761010080835404028352916020019161044a565b820191906000526020600020905b81548152906001019060200180831161042d57829003601f168201915b5050505050905090565b6000610468610461610d32565b8484610d3a565b6001905092915050565b61047a610d32565b73ffffffffffffffffffffffffffffffffffffffff166104986108ad565b73ffffffffffffffffffffffffffffffffffffffff16146104ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104e590611e32565b60405180910390fd5b6001600d60006101000a81548160ff02191690831515021790555043600c81905550565b6000600854905090565b6000610529848484610f03565b6105ea84610535610d32565b6105e58560405180606001604052806028815260200161241160289139600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061059b610d32565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113de9092919063ffffffff16565b610d3a565b600190509392505050565b6000600b60009054906101000a900460ff16905090565b60006106b5610619610d32565b846106b0856004600061062a610d32565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461143390919063ffffffff16565b610d3a565b6001905092915050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60076020528060005260406000206000915054906101000a900460ff1681565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610756610d32565b73ffffffffffffffffffffffffffffffffffffffff166107746108ad565b73ffffffffffffffffffffffffffffffffffffffff16146107ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c190611e32565b60405180910390fd5b6107d46000611449565b565b6107de610d32565b73ffffffffffffffffffffffffffffffffffffffff166107fc6108ad565b73ffffffffffffffffffffffffffffffffffffffff1614610852576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084990611e32565b60405180910390fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6108de610d32565b73ffffffffffffffffffffffffffffffffffffffff166108fc6108ad565b73ffffffffffffffffffffffffffffffffffffffff1614610952576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094990611e32565b60405180910390fd5b6064600c546109619190611e81565b43106109a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099990611f01565b60405180910390fd5b60005b8151811015610a33576001600760008484815181106109c7576109c6611f21565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610a2b90611f50565b9150506109a5565b5050565b6060600a8054610a4690611db5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7290611db5565b8015610abf5780601f10610a9457610100808354040283529160200191610abf565b820191906000526020600020905b815481529060010190602001808311610aa257829003601f168201915b5050505050905090565b6000610b8c610ad6610d32565b84610b87856040518060600160405280602581526020016124396025913960046000610b00610d32565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113de9092919063ffffffff16565b610d3a565b6001905092915050565b6000610baa610ba3610d32565b8484610f03565b6001905092915050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c43610d32565b73ffffffffffffffffffffffffffffffffffffffff16610c616108ad565b73ffffffffffffffffffffffffffffffffffffffff1614610cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cae90611e32565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1d9061200a565b60405180910390fd5b610d2f81611449565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da09061209c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0f9061212e565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ef69190611ab9565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f69906121c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd890612252565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156110855750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6110c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bb906122be565b60405180910390fd5b600d60009054906101000a900460ff166111b957600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806111795750600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6111b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111af9061232a565b60405180910390fd5b5b6032436111c6919061234a565b600c541115611225576000803290506111e085858361150d565b915081611222576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611219906123ca565b60405180910390fd5b50505b6112308383836118d5565b61129c816040518060600160405280602681526020016123eb60269139600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113de9092919063ffffffff16565b600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061133181600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461143390919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113d19190611ab9565b60405180910390a3505050565b6000838311158290611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141d919061196a565b60405180910390fd5b5082840390509392505050565b600081836114419190611e81565b905092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080600190508473ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036115f65743600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555043600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506118ca565b8373ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036118c95743600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106116ee576001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600090505b600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561174957600090506118c8565b8373ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141580156117f557508473ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b156118c75743600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555043600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555043600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b5b5b809150509392505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156119145780820151818401526020810190506118f9565b60008484015250505050565b6000601f19601f8301169050919050565b600061193c826118da565b61194681856118e5565b93506119568185602086016118f6565b61195f81611920565b840191505092915050565b600060208201905081810360008301526119848184611931565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006119cb826119a0565b9050919050565b6119db816119c0565b81146119e657600080fd5b50565b6000813590506119f8816119d2565b92915050565b6000819050919050565b611a11816119fe565b8114611a1c57600080fd5b50565b600081359050611a2e81611a08565b92915050565b60008060408385031215611a4b57611a4a611996565b5b6000611a59858286016119e9565b9250506020611a6a85828601611a1f565b9150509250929050565b60008115159050919050565b611a8981611a74565b82525050565b6000602082019050611aa46000830184611a80565b92915050565b611ab3816119fe565b82525050565b6000602082019050611ace6000830184611aaa565b92915050565b600080600060608486031215611aed57611aec611996565b5b6000611afb868287016119e9565b9350506020611b0c868287016119e9565b9250506040611b1d86828701611a1f565b9150509250925092565b600060ff82169050919050565b611b3d81611b27565b82525050565b6000602082019050611b586000830184611b34565b92915050565b611b67816119c0565b82525050565b6000602082019050611b826000830184611b5e565b92915050565b600060208284031215611b9e57611b9d611996565b5b6000611bac848285016119e9565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611bf282611920565b810181811067ffffffffffffffff82111715611c1157611c10611bba565b5b80604052505050565b6000611c2461198c565b9050611c308282611be9565b919050565b600067ffffffffffffffff821115611c5057611c4f611bba565b5b602082029050602081019050919050565b600080fd5b6000611c79611c7484611c35565b611c1a565b90508083825260208201905060208402830185811115611c9c57611c9b611c61565b5b835b81811015611cc55780611cb188826119e9565b845260208401935050602081019050611c9e565b5050509392505050565b600082601f830112611ce457611ce3611bb5565b5b8135611cf4848260208601611c66565b91505092915050565b600060208284031215611d1357611d12611996565b5b600082013567ffffffffffffffff811115611d3157611d3061199b565b5b611d3d84828501611ccf565b91505092915050565b60008060408385031215611d5d57611d5c611996565b5b6000611d6b858286016119e9565b9250506020611d7c858286016119e9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611dcd57607f821691505b602082108103611de057611ddf611d86565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e1c6020836118e5565b9150611e2782611de6565b602082019050919050565b60006020820190508181036000830152611e4b81611e0f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611e8c826119fe565b9150611e97836119fe565b9250828201905080821115611eaf57611eae611e52565b5b92915050565b7f756e61626c6520746f20626c61636b6c69737420616e796d6f72650000000000600082015250565b6000611eeb601b836118e5565b9150611ef682611eb5565b602082019050919050565b60006020820190508181036000830152611f1a81611ede565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000611f5b826119fe565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611f8d57611f8c611e52565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611ff46026836118e5565b9150611fff82611f98565b604082019050919050565b6000602082019050818103600083015261202381611fe7565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006120866024836118e5565b91506120918261202a565b604082019050919050565b600060208201905081810360008301526120b581612079565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006121186022836118e5565b9150612123826120bc565b604082019050919050565b600060208201905081810360008301526121478161210b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006121aa6025836118e5565b91506121b58261214e565b604082019050919050565b600060208201905081810360008301526121d98161219d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061223c6023836118e5565b9150612247826121e0565b604082019050919050565b6000602082019050818103600083015261226b8161222f565b9050919050565b7f544f4b454e3a20596f7520617265206120626164206163746f72210000000000600082015250565b60006122a8601b836118e5565b91506122b382612272565b602082019050919050565b600060208201905081810360008301526122d78161229b565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006123146016836118e5565b915061231f826122de565b602082019050919050565b6000602082019050818103600083015261234381612307565b9050919050565b6000612355826119fe565b9150612360836119fe565b925082820390508181111561237857612377611e52565b5b92915050565b7f7472616e736665722064656c617920656e61626c656400000000000000000000600082015250565b60006123b46016836118e5565b91506123bf8261237e565b602082019050919050565b600060208201905081810360008301526123e3816123a7565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220dc3bb85f4b915cf52b7a756d273303fd634846c9342221db2ba1d3e0cdab7b5a64736f6c63430008110033

Deployed Bytecode Sourcemap

20980:6161:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22505:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23359:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24368:115;;;:::i;:::-;;22782:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23536:321;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22691:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23865:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21128:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21407:44;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22890:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2487:103;;;:::i;:::-;;26375:105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1836:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26096:271;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22596:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24091:269;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23017:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23200:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2745:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22505:83;22542:13;22575:5;22568:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22505:83;:::o;23359:169::-;23442:4;23459:39;23468:12;:10;:12::i;:::-;23482:7;23491:6;23459:8;:39::i;:::-;23516:4;23509:11;;23359:169;;;;:::o;24368:115::-;2067:12;:10;:12::i;:::-;2056:23;;:7;:5;:7::i;:::-;:23;;;2048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24437:4:::1;24421:13;;:20;;;;;;;;;;;;;;;;;;24463:12;24452:8;:23;;;;24368:115::o:0;22782:100::-;22835:7;22862:12;;22855:19;;22782:100;:::o;23536:321::-;23642:4;23659:36;23669:6;23677:9;23688:6;23659:9;:36::i;:::-;23706:121;23715:6;23723:12;:10;:12::i;:::-;23737:89;23775:6;23737:89;;;;;;;;;;;;;;;;;:11;:19;23749:6;23737:19;;;;;;;;;;;;;;;:33;23757:12;:10;:12::i;:::-;23737:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;23706:8;:121::i;:::-;23845:4;23838:11;;23536:321;;;;;:::o;22691:83::-;22732:5;22757:9;;;;;;;;;;;22750:16;;22691:83;:::o;23865:218::-;23953:4;23970:83;23979:12;:10;:12::i;:::-;23993:7;24002:50;24041:10;24002:11;:25;24014:12;:10;:12::i;:::-;24002:25;;;;;;;;;;;;;;;:34;24028:7;24002:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;23970:8;:83::i;:::-;24071:4;24064:11;;23865:218;;;;:::o;21128:28::-;;;;;;;;;;;;;:::o;21407:44::-;;;;;;;;;;;;;;;;;;;;;;:::o;22890:119::-;22956:7;22983:9;:18;22993:7;22983:18;;;;;;;;;;;;;;;;22976:25;;22890:119;;;:::o;2487:103::-;2067:12;:10;:12::i;:::-;2056:23;;:7;:5;:7::i;:::-;:23;;;2048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2552:30:::1;2579:1;2552:18;:30::i;:::-;2487:103::o:0;26375:105::-;2067:12;:10;:12::i;:::-;2056:23;;:7;:5;:7::i;:::-;:23;;;2048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26467:5:::1;26443:12;:21;26456:7;26443:21;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;26375:105:::0;:::o;1836:87::-;1882:7;1909:6;;;;;;;;;;;1902:13;;1836:87;:::o;26096:271::-;2067:12;:10;:12::i;:::-;2056:23;;:7;:5;:7::i;:::-;:23;;;2048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26209:3:::1;26198:8;;:14;;;;:::i;:::-;26183:12;:29;26175:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;26260:9;26255:105;26279:8;:15;26275:1;:19;26255:105;;;26344:4;26316:12;:25;26329:8;26338:1;26329:11;;;;;;;;:::i;:::-;;;;;;;;26316:25;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;26296:3;;;;;:::i;:::-;;;;26255:105;;;;26096:271:::0;:::o;22596:87::-;22635:13;22668:7;22661:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22596:87;:::o;24091:269::-;24184:4;24201:129;24210:12;:10;:12::i;:::-;24224:7;24233:96;24272:15;24233:96;;;;;;;;;;;;;;;;;:11;:25;24245:12;:10;:12::i;:::-;24233:25;;;;;;;;;;;;;;;:34;24259:7;24233:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;24201:8;:129::i;:::-;24348:4;24341:11;;24091:269;;;;:::o;23017:175::-;23103:4;23120:42;23130:12;:10;:12::i;:::-;23144:9;23155:6;23120:9;:42::i;:::-;23180:4;23173:11;;23017:175;;;;:::o;23200:151::-;23289:7;23316:11;:18;23328:5;23316:18;;;;;;;;;;;;;;;:27;23335:7;23316:27;;;;;;;;;;;;;;;;23309:34;;23200:151;;;;:::o;2745:201::-;2067:12;:10;:12::i;:::-;2056:23;;:7;:5;:7::i;:::-;:23;;;2048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2854:1:::1;2834:22;;:8;:22;;::::0;2826:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2910:28;2929:8;2910:18;:28::i;:::-;2745:201:::0;:::o;674:98::-;727:7;754:10;747:17;;674:98;:::o;25525:346::-;25644:1;25627:19;;:5;:19;;;25619:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25725:1;25706:21;;:7;:21;;;25698:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25809:6;25779:11;:18;25791:5;25779:18;;;;;;;;;;;;;;;:27;25798:7;25779:27;;;;;;;;;;;;;;;:36;;;;25847:7;25831:32;;25840:5;25831:32;;;25856:6;25831:32;;;;;;:::i;:::-;;;;;;;;25525:346;;;:::o;24491:1026::-;24615:1;24597:20;;:6;:20;;;24589:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;24699:1;24678:23;;:9;:23;;;24670:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;24761:12;:20;24774:6;24761:20;;;;;;;;;;;;;;;;;;;;;;;;;24760:21;:49;;;;;24786:12;:23;24799:9;24786:23;;;;;;;;;;;;;;;;;;;;;;;;;24785:24;24760:49;24752:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;24857:13;;;;;;;;;;;24852:124;;24896:9;:17;24906:6;24896:17;;;;;;;;;;;;;;;;;;;;;;;;;:41;;;;24917:9;:20;24927:9;24917:20;;;;;;;;;;;;;;;;;;;;;;;;;24896:41;24887:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;24852:124;25026:2;25011:12;:17;;;;:::i;:::-;25000:8;;:28;24996:233;;;25045:13;25073:12;25088:9;25073:24;;25123:36;25137:6;25144:9;25154:4;25123:13;:36::i;:::-;25112:47;;25182:8;25174:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;25030:199;;24996:233;25241:47;25262:6;25270:9;25281:6;25241:20;:47::i;:::-;25321:71;25343:6;25321:71;;;;;;;;;;;;;;;;;:9;:17;25331:6;25321:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;25301:9;:17;25311:6;25301:17;;;;;;;;;;;;;;;:91;;;;25426:32;25451:6;25426:9;:20;25436:9;25426:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;25403:9;:20;25413:9;25403:20;;;;;;;;;;;;;;;:55;;;;25491:9;25474:35;;25483:6;25474:35;;;25502:6;25474:35;;;;;;:::i;:::-;;;;;;;;24491:1026;;;:::o;7936:240::-;8056:7;8114:1;8109;:6;;8117:12;8101:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;8156:1;8152;:5;8145:12;;7936:240;;;;;:::o;5657:98::-;5715:7;5746:1;5742;:5;;;;:::i;:::-;5735:12;;5657:98;;;;:::o;3106:191::-;3180:16;3199:6;;;;;;;;;;;3180:25;;3225:8;3216:6;;:17;;;;;;;;;;;;;;;;;;3280:8;3249:40;;3270:8;3249:40;;;;;;;;;;;;3169:128;3106:191;:::o;26485:653::-;26566:4;26579:13;26595:4;26579:20;;26627:4;26610:21;;:13;;;;;;;;;;;:21;;;26606:497;;26657:12;26636:14;:18;26651:2;26636:18;;;;;;;;;;;;;;;:33;;;;26695:12;26672:14;:20;26687:4;26672:20;;;;;;;;;;;;;;;:35;;;;26606:497;;;26741:2;26724:19;;:13;;;;;;;;;;;:19;;;26720:383;;26788:12;26764:14;:20;26779:4;26764:20;;;;;;;;;;;;;;;;:36;26760:89;;26825:4;26804:12;:18;26817:4;26804:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;26842:5;26831:16;;26760:89;26871:12;:18;26884:4;26871:18;;;;;;;;;;;;;;;;;;;;;;;;;26867:225;;;26904:5;26893:16;;26867:225;;;26952:2;26935:19;;:13;;;;;;;;;;;:19;;;;:44;;;;;26975:4;26958:21;;:13;;;;;;;;;;;:21;;;;26935:44;26931:161;;;27006:12;26983:14;:20;26998:4;26983:20;;;;;;;;;;;;;;;:35;;;;27041:12;27020:14;:18;27035:2;27020:18;;;;;;;;;;;;;;;:33;;;;27078:12;27055:14;:20;27070:4;27055:20;;;;;;;;;;;;;;;:35;;;;26931:161;26867:225;26720:383;26606:497;27121:8;27113:17;;;26485:653;;;;;:::o;25981:108::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:118::-;4940:24;4958:5;4940:24;:::i;:::-;4935:3;4928:37;4853:118;;:::o;4977:222::-;5070:4;5108:2;5097:9;5093:18;5085:26;;5121:71;5189:1;5178:9;5174:17;5165:6;5121:71;:::i;:::-;4977:222;;;;:::o;5205:329::-;5264:6;5313:2;5301:9;5292:7;5288:23;5284:32;5281:119;;;5319:79;;:::i;:::-;5281:119;5439:1;5464:53;5509:7;5500:6;5489:9;5485:22;5464:53;:::i;:::-;5454:63;;5410:117;5205:329;;;;:::o;5540:117::-;5649:1;5646;5639:12;5663:180;5711:77;5708:1;5701:88;5808:4;5805:1;5798:15;5832:4;5829:1;5822:15;5849:281;5932:27;5954:4;5932:27;:::i;:::-;5924:6;5920:40;6062:6;6050:10;6047:22;6026:18;6014:10;6011:34;6008:62;6005:88;;;6073:18;;:::i;:::-;6005:88;6113:10;6109:2;6102:22;5892:238;5849:281;;:::o;6136:129::-;6170:6;6197:20;;:::i;:::-;6187:30;;6226:33;6254:4;6246:6;6226:33;:::i;:::-;6136:129;;;:::o;6271:311::-;6348:4;6438:18;6430:6;6427:30;6424:56;;;6460:18;;:::i;:::-;6424:56;6510:4;6502:6;6498:17;6490:25;;6570:4;6564;6560:15;6552:23;;6271:311;;;:::o;6588:117::-;6697:1;6694;6687:12;6728:710;6824:5;6849:81;6865:64;6922:6;6865:64;:::i;:::-;6849:81;:::i;:::-;6840:90;;6950:5;6979:6;6972:5;6965:21;7013:4;7006:5;7002:16;6995:23;;7066:4;7058:6;7054:17;7046:6;7042:30;7095:3;7087:6;7084:15;7081:122;;;7114:79;;:::i;:::-;7081:122;7229:6;7212:220;7246:6;7241:3;7238:15;7212:220;;;7321:3;7350:37;7383:3;7371:10;7350:37;:::i;:::-;7345:3;7338:50;7417:4;7412:3;7408:14;7401:21;;7288:144;7272:4;7267:3;7263:14;7256:21;;7212:220;;;7216:21;6830:608;;6728:710;;;;;:::o;7461:370::-;7532:5;7581:3;7574:4;7566:6;7562:17;7558:27;7548:122;;7589:79;;:::i;:::-;7548:122;7706:6;7693:20;7731:94;7821:3;7813:6;7806:4;7798:6;7794:17;7731:94;:::i;:::-;7722:103;;7538:293;7461:370;;;;:::o;7837:539::-;7921:6;7970:2;7958:9;7949:7;7945:23;7941:32;7938:119;;;7976:79;;:::i;:::-;7938:119;8124:1;8113:9;8109:17;8096:31;8154:18;8146:6;8143:30;8140:117;;;8176:79;;:::i;:::-;8140:117;8281:78;8351:7;8342:6;8331:9;8327:22;8281:78;:::i;:::-;8271:88;;8067:302;7837:539;;;;:::o;8382:474::-;8450:6;8458;8507:2;8495:9;8486:7;8482:23;8478:32;8475:119;;;8513:79;;:::i;:::-;8475:119;8633:1;8658:53;8703:7;8694:6;8683:9;8679:22;8658:53;:::i;:::-;8648:63;;8604:117;8760:2;8786:53;8831:7;8822:6;8811:9;8807:22;8786:53;:::i;:::-;8776:63;;8731:118;8382:474;;;;;:::o;8862:180::-;8910:77;8907:1;8900:88;9007:4;9004:1;8997:15;9031:4;9028:1;9021:15;9048:320;9092:6;9129:1;9123:4;9119:12;9109:22;;9176:1;9170:4;9166:12;9197:18;9187:81;;9253:4;9245:6;9241:17;9231:27;;9187:81;9315:2;9307:6;9304:14;9284:18;9281:38;9278:84;;9334:18;;:::i;:::-;9278:84;9099:269;9048:320;;;:::o;9374:182::-;9514:34;9510:1;9502:6;9498:14;9491:58;9374:182;:::o;9562:366::-;9704:3;9725:67;9789:2;9784:3;9725:67;:::i;:::-;9718:74;;9801:93;9890:3;9801:93;:::i;:::-;9919:2;9914:3;9910:12;9903:19;;9562:366;;;:::o;9934:419::-;10100:4;10138:2;10127:9;10123:18;10115:26;;10187:9;10181:4;10177:20;10173:1;10162:9;10158:17;10151:47;10215:131;10341:4;10215:131;:::i;:::-;10207:139;;9934:419;;;:::o;10359:180::-;10407:77;10404:1;10397:88;10504:4;10501:1;10494:15;10528:4;10525:1;10518:15;10545:191;10585:3;10604:20;10622:1;10604:20;:::i;:::-;10599:25;;10638:20;10656:1;10638:20;:::i;:::-;10633:25;;10681:1;10678;10674:9;10667:16;;10702:3;10699:1;10696:10;10693:36;;;10709:18;;:::i;:::-;10693:36;10545:191;;;;:::o;10742:177::-;10882:29;10878:1;10870:6;10866:14;10859:53;10742:177;:::o;10925:366::-;11067:3;11088:67;11152:2;11147:3;11088:67;:::i;:::-;11081:74;;11164:93;11253:3;11164:93;:::i;:::-;11282:2;11277:3;11273:12;11266:19;;10925:366;;;:::o;11297:419::-;11463:4;11501:2;11490:9;11486:18;11478:26;;11550:9;11544:4;11540:20;11536:1;11525:9;11521:17;11514:47;11578:131;11704:4;11578:131;:::i;:::-;11570:139;;11297:419;;;:::o;11722:180::-;11770:77;11767:1;11760:88;11867:4;11864:1;11857:15;11891:4;11888:1;11881:15;11908:233;11947:3;11970:24;11988:5;11970:24;:::i;:::-;11961:33;;12016:66;12009:5;12006:77;12003:103;;12086:18;;:::i;:::-;12003:103;12133:1;12126:5;12122:13;12115:20;;11908:233;;;:::o;12147:225::-;12287:34;12283:1;12275:6;12271:14;12264:58;12356:8;12351:2;12343:6;12339:15;12332:33;12147:225;:::o;12378:366::-;12520:3;12541:67;12605:2;12600:3;12541:67;:::i;:::-;12534:74;;12617:93;12706:3;12617:93;:::i;:::-;12735:2;12730:3;12726:12;12719:19;;12378:366;;;:::o;12750:419::-;12916:4;12954:2;12943:9;12939:18;12931:26;;13003:9;12997:4;12993:20;12989:1;12978:9;12974:17;12967:47;13031:131;13157:4;13031:131;:::i;:::-;13023:139;;12750:419;;;:::o;13175:223::-;13315:34;13311:1;13303:6;13299:14;13292:58;13384:6;13379:2;13371:6;13367:15;13360:31;13175:223;:::o;13404:366::-;13546:3;13567:67;13631:2;13626:3;13567:67;:::i;:::-;13560:74;;13643:93;13732:3;13643:93;:::i;:::-;13761:2;13756:3;13752:12;13745:19;;13404:366;;;:::o;13776:419::-;13942:4;13980:2;13969:9;13965:18;13957:26;;14029:9;14023:4;14019:20;14015:1;14004:9;14000:17;13993:47;14057:131;14183:4;14057:131;:::i;:::-;14049:139;;13776:419;;;:::o;14201:221::-;14341:34;14337:1;14329:6;14325:14;14318:58;14410:4;14405:2;14397:6;14393:15;14386:29;14201:221;:::o;14428:366::-;14570:3;14591:67;14655:2;14650:3;14591:67;:::i;:::-;14584:74;;14667:93;14756:3;14667:93;:::i;:::-;14785:2;14780:3;14776:12;14769:19;;14428:366;;;:::o;14800:419::-;14966:4;15004:2;14993:9;14989:18;14981:26;;15053:9;15047:4;15043:20;15039:1;15028:9;15024:17;15017:47;15081:131;15207:4;15081:131;:::i;:::-;15073:139;;14800:419;;;:::o;15225:224::-;15365:34;15361:1;15353:6;15349:14;15342:58;15434:7;15429:2;15421:6;15417:15;15410:32;15225:224;:::o;15455:366::-;15597:3;15618:67;15682:2;15677:3;15618:67;:::i;:::-;15611:74;;15694:93;15783:3;15694:93;:::i;:::-;15812:2;15807:3;15803:12;15796:19;;15455:366;;;:::o;15827:419::-;15993:4;16031:2;16020:9;16016:18;16008:26;;16080:9;16074:4;16070:20;16066:1;16055:9;16051:17;16044:47;16108:131;16234:4;16108:131;:::i;:::-;16100:139;;15827:419;;;:::o;16252:222::-;16392:34;16388:1;16380:6;16376:14;16369:58;16461:5;16456:2;16448:6;16444:15;16437:30;16252:222;:::o;16480:366::-;16622:3;16643:67;16707:2;16702:3;16643:67;:::i;:::-;16636:74;;16719:93;16808:3;16719:93;:::i;:::-;16837:2;16832:3;16828:12;16821:19;;16480:366;;;:::o;16852:419::-;17018:4;17056:2;17045:9;17041:18;17033:26;;17105:9;17099:4;17095:20;17091:1;17080:9;17076:17;17069:47;17133:131;17259:4;17133:131;:::i;:::-;17125:139;;16852:419;;;:::o;17277:177::-;17417:29;17413:1;17405:6;17401:14;17394:53;17277:177;:::o;17460:366::-;17602:3;17623:67;17687:2;17682:3;17623:67;:::i;:::-;17616:74;;17699:93;17788:3;17699:93;:::i;:::-;17817:2;17812:3;17808:12;17801:19;;17460:366;;;:::o;17832:419::-;17998:4;18036:2;18025:9;18021:18;18013:26;;18085:9;18079:4;18075:20;18071:1;18060:9;18056:17;18049:47;18113:131;18239:4;18113:131;:::i;:::-;18105:139;;17832:419;;;:::o;18257:172::-;18397:24;18393:1;18385:6;18381:14;18374:48;18257:172;:::o;18435:366::-;18577:3;18598:67;18662:2;18657:3;18598:67;:::i;:::-;18591:74;;18674:93;18763:3;18674:93;:::i;:::-;18792:2;18787:3;18783:12;18776:19;;18435:366;;;:::o;18807:419::-;18973:4;19011:2;19000:9;18996:18;18988:26;;19060:9;19054:4;19050:20;19046:1;19035:9;19031:17;19024:47;19088:131;19214:4;19088:131;:::i;:::-;19080:139;;18807:419;;;:::o;19232:194::-;19272:4;19292:20;19310:1;19292:20;:::i;:::-;19287:25;;19326:20;19344:1;19326:20;:::i;:::-;19321:25;;19370:1;19367;19363:9;19355:17;;19394:1;19388:4;19385:11;19382:37;;;19399:18;;:::i;:::-;19382:37;19232:194;;;;:::o;19432:172::-;19572:24;19568:1;19560:6;19556:14;19549:48;19432:172;:::o;19610:366::-;19752:3;19773:67;19837:2;19832:3;19773:67;:::i;:::-;19766:74;;19849:93;19938:3;19849:93;:::i;:::-;19967:2;19962:3;19958:12;19951:19;;19610:366;;;:::o;19982:419::-;20148:4;20186:2;20175:9;20171:18;20163:26;;20235:9;20229:4;20225:20;20221:1;20210:9;20206:17;20199:47;20263:131;20389:4;20263:131;:::i;:::-;20255:139;;19982:419;;;:::o

Swarm Source

ipfs://dc3bb85f4b915cf52b7a756d273303fd634846c9342221db2ba1d3e0cdab7b5a
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.