ETH Price: $1,849.73 (-0.37%)
 

More Info

Private Name Tags

TokenTracker

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve245219952026-02-23 20:32:115 hrs ago1771878731IN
Sentio AI: SEN Token
0 ETH0.000035430.75057828
Approve245195592026-02-23 12:22:2313 hrs ago1771849343IN
Sentio AI: SEN Token
0 ETH0.00000150.03203629
Transfer245192762026-02-23 11:25:3514 hrs ago1771845935IN
Sentio AI: SEN Token
0 ETH0.000002350.04478881
Approve245134122026-02-22 15:49:2333 hrs ago1771775363IN
Sentio AI: SEN Token
0 ETH0.000049151.04123291
Transfer245128292026-02-22 13:52:2335 hrs ago1771768343IN
Sentio AI: SEN Token
0 ETH0.000035911.01235747
Transfer245128282026-02-22 13:52:1135 hrs ago1771768331IN
Sentio AI: SEN Token
0 ETH0.000053221.01235747
Transfer245128232026-02-22 13:51:1135 hrs ago1771768271IN
Sentio AI: SEN Token
0 ETH0.000053221.01235747
Transfer245128132026-02-22 13:49:1135 hrs ago1771768151IN
Sentio AI: SEN Token
0 ETH0.000053221.01235747
Transfer245128032026-02-22 13:47:1135 hrs ago1771768031IN
Sentio AI: SEN Token
0 ETH0.000053221.01235747
Transfer245126922026-02-22 13:24:5936 hrs ago1771766699IN
Sentio AI: SEN Token
0 ETH0.000050171.04977134
Approve245016872026-02-21 0:35:233 days ago1771634123IN
Sentio AI: SEN Token
0 ETH0.000001590.06398409
Approve245016852026-02-21 0:34:593 days ago1771634099IN
Sentio AI: SEN Token
0 ETH0.000001680.06757468
Transfer244996352026-02-20 17:44:113 days ago1771609451IN
Sentio AI: SEN Token
0 ETH0.000329426.26580851
Approve244970902026-02-20 9:12:473 days ago1771578767IN
Sentio AI: SEN Token
0 ETH0.000098742.09424779
Approve244937172026-02-19 21:55:474 days ago1771538147IN
Sentio AI: SEN Token
0 ETH0.000001920.04086681
Approve244923852026-02-19 17:27:594 days ago1771522079IN
Sentio AI: SEN Token
0 ETH0.000013920.29493504
Transfer244916692026-02-19 15:04:114 days ago1771513451IN
Sentio AI: SEN Token
0 ETH0.00006921.31637585
Approve244860402026-02-18 20:13:475 days ago1771445627IN
Sentio AI: SEN Token
0 ETH0.000103852.20257328
Approve244829342026-02-18 9:50:115 days ago1771408211IN
Sentio AI: SEN Token
0 ETH0.000001490.03193265
Transfer244784182026-02-17 18:43:116 days ago1771353791IN
Sentio AI: SEN Token
0 ETH0.000414927.8921026
Approve244772842026-02-17 14:55:236 days ago1771340123IN
Sentio AI: SEN Token
0 ETH0.000024790.99488236
Approve244762562026-02-17 11:28:596 days ago1771327739IN
Sentio AI: SEN Token
0 ETH0.000096742.05186675
Transfer244722192026-02-16 21:58:117 days ago1771279091IN
Sentio AI: SEN Token
0 ETH0.00004691.32224731
Transfer244721092026-02-16 21:36:117 days ago1771277771IN
Sentio AI: SEN Token
0 ETH0.000069691.32566033
Approve244719902026-02-16 21:12:237 days ago1771276343IN
Sentio AI: SEN Token
0 ETH0.00000250.05310798
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer215050002024-12-29 2:00:11421 days ago1735437611
Sentio AI: SEN Token
0.12367972 ETH
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
SENTIO

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2024-12-26
*/

// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.19;

/*     
    Website:    https://sentio.ai
    Twitter:    https://x.com/sentio_ai
    Telegram:   https://t.me/sentioai
    Docs:       https://docs.sentio.ai/

    Build powerful autonomous on-chain AI agents. No-code required.
*/

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

interface IERC20 {
    function totalSupply() external view returns (uint256);

    function balanceOf(address account) external view returns (uint256);

    function transfer(
        address recipient,
        uint256 amount
    ) external returns (bool);

    function allowance(
        address owner,
        address spender
    ) external view returns (uint256);

    function approve(address spender, uint256 amount) external returns (bool);

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
}

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    function isContract(address account) internal view returns (bool) {
        return account.code.length > 0;
    }

    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );
        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

    function functionCall(
        address target,
        bytes memory data
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                0,
                "Address: low-level call failed"
            );
    }

    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                value,
                "Address: low-level call with value failed"
            );
    }

    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );
        (bool success, bytes memory returndata) = target.call{value: value}(
            data
        );
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    function functionStaticCall(
        address target,
        bytes memory data
    ) internal view returns (bytes memory) {
        return
            functionStaticCall(
                target,
                data,
                "Address: low-level static call failed"
            );
    }

    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    function functionDelegateCall(
        address target,
        bytes memory data
    ) internal returns (bytes memory) {
        return
            functionDelegateCall(
                target,
                data,
                "Address: low-level delegate call failed"
            );
    }

    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            // If the call was successful but no data returned,
            // then the target might be a non-contract.
            if (returndata.length == 0) {
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            // Look for a revert reason and bubble it up if present.
            _revert(returndata, errorMessage);
        }
    }

    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) return returndata;
        _revert(returndata, errorMessage);
    }

    function _revert(
        bytes memory returndata,
        string memory errorMessage
    ) private pure {
        if (returndata.length > 0) {
            // Return the revert reason via assembly.
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

/**
 * @dev Contract module which provides a basic access control mechanism
 * with an account (an owner) that can be granted exclusive access.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    constructor() {
        _transferOwnership(_msgSender());
    }

    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    function owner() public view virtual returns (address) {
        return _owner;
    }

    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        _transferOwnership(newOwner);
    }

    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

    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(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 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 (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(
        address owner,
        address spender
    ) external view returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 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 (uint256);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    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 (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function burn(
        address to
    ) external returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity);

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (uint256 amountToken, uint256 amountETH, uint256 liquidity);

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETH(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(
        uint256 amountIn,
        address[] calldata path
    ) external view returns (uint256[] memory amounts);

    function getAmountsIn(
        uint256 amountOut,
        address[] calldata path
    ) external view returns (uint256[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

contract SENTIO is Context, IERC20, Ownable {
    using Address for address;

    // Basic ERC20 tracking
    mapping(address => uint256) private _tOwned;
    mapping(address => mapping(address => uint256)) private _allowances;

    // If an address is excluded from fees (no effect now).
    mapping(address => bool) private _isExcludedFromFee;

    // Logs and event definitions
    event Log(string, uint256);
    event AuditLog(string, address);

    // Standard ERC20 config
    uint256 private _tTotal = 100_000_000 ether;
    string public constant name = "Sentio Protocol";
    string public constant symbol = "SEN";
    uint8 public constant decimals = 18;

    // The "Dead" wallet for burns if needed
    address public constant deadWallet =
        0x000000000000000000000000000000000000dEaD;

    // Router and Pair configuration
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address private immutable WETH;

    // No tax collection logic; kept only to maintain structure
    bool private inSwapAndLiquify;
    modifier lockTheSwap() {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    constructor() {
        _tOwned[_msgSender()] = _tTotal;

        address currentRouter;
        if (block.chainid == 56) {
            currentRouter = 0x10ED43C718714eb63d5aA57B78B54704E256024E; // BSC Mainnet
        } else if (block.chainid == 97) {
            currentRouter = 0xD99D1c33F9fC3444f8101754aBC46c52416550D1; // BSC Testnet
        } else if (block.chainid == 43114) {
            currentRouter = 0x60aE616a2155Ee3d9A68541Ba4544862310933d4; // Avax Mainnet
        } else if (block.chainid == 137) {
            currentRouter = 0xa5E0829CaCEd8fFDD4De3c43696c57F7D7A678ff; // Polygon
        } else if (block.chainid == 6066) {
            currentRouter = 0x4169Db906fcBFB8b12DbD20d98850Aee05B7D889; // Tres Leches Chain
        } else if (block.chainid == 250) {
            currentRouter = 0xF491e7B69E4244ad4002BC14e878a34207E38c29; // Fantom
        } else if (block.chainid == 42161) {
            currentRouter = 0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506; // Arbitrum
        } else if (
            block.chainid == 1 || block.chainid == 4 || block.chainid == 5
        ) {
            currentRouter = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; // ETH main & test
        } else {
            revert("Unsupported chain");
        }

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(currentRouter);
        WETH = _uniswapV2Router.WETH();

        // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), WETH);
        uniswapV2Router = _uniswapV2Router;

        // Exclude contract and owner from fees (though no fees remain)
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;

        emit Transfer(address(0), _msgSender(), _tTotal);
    }

    // Basic ERC20 reads
    function totalSupply() public view override returns (uint256) {
        return _tTotal;
    }

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

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

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

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

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), currentAllowance - amount);
        return true;
    }

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

    function decreaseAllowance(
        address spender,
        uint256 subtractedValue
    ) public returns (bool) {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender] - subtractedValue
        );
        return true;
    }

    // Internal approve function
    function _approve(address _owner, address spender, uint256 amount) private {
        require(_owner != address(0), "ERC20: approve from zero address");
        require(spender != address(0), "ERC20: approve to zero address");

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

    /**
     * @dev Transfer function with NO taxes or fees. 
     */
    function _transfer(address from, address to, uint256 amount) private {
        require(from != address(0), "ERC20: from zero address");
        require(to != address(0), "ERC20: to zero address");
        require(amount > 0, "Transfer: amount must be > 0");
        require(_tOwned[from] >= amount, "Transfer: insufficient balance");

        _tOwned[from] -= amount;
        _tOwned[to] += amount;

        emit Transfer(from, to, amount);
    }

    // For completeness: check if an account is excluded from fee
    function isExcludedFromFee(address account) external view returns (bool) {
        return _isExcludedFromFee[account];
    }

    // Exclude an address from fee (no effect now, but left intact)
    function excludeFromFee(address account) external onlyOwner {
        _isExcludedFromFee[account] = true;
        emit AuditLog("Excluded from fees:", account);
    }

    // Include an address in fee (no effect now, but left intact)
    function includeInFee(address account) external onlyOwner {
        _isExcludedFromFee[account] = false;
        emit AuditLog("Included back in fees:", account);
    }

    // Allow this contract to receive ETH
    receive() external payable {}
}

Contract Security Audit

Contract ABI

API
[{"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":false,"internalType":"string","name":"","type":"string"},{"indexed":false,"internalType":"address","name":"","type":"address"}],"name":"AuditLog","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"","type":"string"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"Log","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":"deadWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"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":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60e06040526a52b7d2dcc80cd2e40000006004553480156200002057600080fd5b5062000041620000356200056f60201b60201c565b6200057760201b60201c565b60045460016000620000586200056f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600060384603620000be577310ed43c718714eb63d5aa57b78b54704e256024e905062000228565b60614603620000e45773d99d1c33f9fc3444f8101754abc46c52416550d1905062000227565b61a86a46036200010b577360ae616a2155ee3d9a68541ba4544862310933d4905062000226565b60894603620001315773a5e0829caced8ffdd4de3c43696c57f7d7a678ff905062000225565b6117b246036200015857734169db906fcbfb8b12dbd20d98850aee05b7d889905062000224565b60fa46036200017e5773f491e7b69e4244ad4002bc14e878a34207e38c29905062000223565b61a4b14603620001a557731b02da8cb0d097eb8d57a175b88c7d8b47997506905062000222565b6001461480620001b55750600446145b80620001c15750600546145b15620001e457737a250d5630b4cf539739df2c5dacb4c659f2488d905062000221565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200021890620006c5565b60405180910390fd5b5b5b5b5b5b5b5b60008190508073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000279573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029f919062000751565b73ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200031e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000344919062000751565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060c0516040518363ffffffff1660e01b81526004016200038292919062000794565b6020604051808303816000875af1158015620003a2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003c8919062000751565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1681525050600160036000620004456200063b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620004fe6200056f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6004546040516200055f9190620007dc565b60405180910390a35050620007f9565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600082825260208201905092915050565b7f556e737570706f7274656420636861696e000000000000000000000000000000600082015250565b6000620006ad60118362000664565b9150620006ba8262000675565b602082019050919050565b60006020820190508181036000830152620006e0816200069e565b9050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200071982620006ec565b9050919050565b6200072b816200070c565b81146200073757600080fd5b50565b6000815190506200074b8162000720565b92915050565b6000602082840312156200076a5762000769620006e7565b5b60006200077a848285016200073a565b91505092915050565b6200078e816200070c565b82525050565b6000604082019050620007ab600083018562000783565b620007ba602083018462000783565b9392505050565b6000819050919050565b620007d681620007c1565b82525050565b6000602082019050620007f36000830184620007cb565b92915050565b60805160a05160c051611aa9620008266000396000505060006107d30152600061055a0152611aa96000f3fe6080604052600436106101235760003560e01c806370a08231116100a0578063a457c2d711610064578063a457c2d7146103f8578063a9059cbb14610435578063dd62ed3e14610472578063ea2f0b37146104af578063f2fde38b146104d85761012a565b806370a0823114610323578063715018a61461036057806385141a77146103775780638da5cb5b146103a257806395d89b41146103cd5761012a565b8063313ce567116100e7578063313ce5671461022a5780633950935114610255578063437823ec1461029257806349bd5a5e146102bb5780635342acb4146102e65761012a565b806306fdde031461012f578063095ea7b31461015a5780631694505e1461019757806318160ddd146101c257806323b872dd146101ed5761012a565b3661012a57005b600080fd5b34801561013b57600080fd5b50610144610501565b60405161015191906111da565b60405180910390f35b34801561016657600080fd5b50610181600480360381019061017c9190611295565b61053a565b60405161018e91906112f0565b60405180910390f35b3480156101a357600080fd5b506101ac610558565b6040516101b9919061136a565b60405180910390f35b3480156101ce57600080fd5b506101d761057c565b6040516101e49190611394565b60405180910390f35b3480156101f957600080fd5b50610214600480360381019061020f91906113af565b610586565b60405161022191906112f0565b60405180910390f35b34801561023657600080fd5b5061023f610686565b60405161024c919061141e565b60405180910390f35b34801561026157600080fd5b5061027c60048036038101906102779190611295565b61068b565b60405161028991906112f0565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190611439565b610737565b005b3480156102c757600080fd5b506102d06107d1565b6040516102dd9190611475565b60405180910390f35b3480156102f257600080fd5b5061030d60048036038101906103089190611439565b6107f5565b60405161031a91906112f0565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190611439565b61084b565b6040516103579190611394565b60405180910390f35b34801561036c57600080fd5b50610375610894565b005b34801561038357600080fd5b5061038c6108a8565b6040516103999190611475565b60405180910390f35b3480156103ae57600080fd5b506103b76108ae565b6040516103c49190611475565b60405180910390f35b3480156103d957600080fd5b506103e26108d7565b6040516103ef91906111da565b60405180910390f35b34801561040457600080fd5b5061041f600480360381019061041a9190611295565b610910565b60405161042c91906112f0565b60405180910390f35b34801561044157600080fd5b5061045c60048036038101906104579190611295565b6109bc565b60405161046991906112f0565b60405180910390f35b34801561047e57600080fd5b5061049960048036038101906104949190611490565b6109da565b6040516104a69190611394565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d19190611439565b610a61565b005b3480156104e457600080fd5b506104ff60048036038101906104fa9190611439565b610afb565b005b6040518060400160405280600f81526020017f53656e74696f2050726f746f636f6c000000000000000000000000000000000081525081565b600061054e610547610b7e565b8484610b86565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600454905090565b600080600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105d2610b7e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610652576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064990611542565b60405180910390fd5b61065d858585610d4f565b61067a85610669610b7e565b85846106759190611591565b610b86565b60019150509392505050565b601281565b600061072d610698610b7e565b8484600260006106a6610b7e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461072891906115c5565b610b86565b6001905092915050565b61073f611008565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f025dbd6ad989fe1a64db7dc049e29723ff9d35a97d84ae9aab96196f00ec1a00816040516107c69190611645565b60405180910390a150565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61089c611008565b6108a66000611086565b565b61dead81565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6040518060400160405280600381526020017f53454e000000000000000000000000000000000000000000000000000000000081525081565b60006109b261091d610b7e565b84846002600061092b610b7e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109ad9190611591565b610b86565b6001905092915050565b60006109d06109c9610b7e565b8484610d4f565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a69611008565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f025dbd6ad989fe1a64db7dc049e29723ff9d35a97d84ae9aab96196f00ec1a0081604051610af091906116bf565b60405180910390a150565b610b03611008565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b699061175f565b60405180910390fd5b610b7b81611086565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bec906117cb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5b90611837565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d429190611394565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db5906118a3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e249061190f565b60405180910390fd5b60008111610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e679061197b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee9906119e7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f419190611591565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f9791906115c5565b925050819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ffb9190611394565b60405180910390a3505050565b611010610b7e565b73ffffffffffffffffffffffffffffffffffffffff1661102e6108ae565b73ffffffffffffffffffffffffffffffffffffffff1614611084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107b90611a53565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611184578082015181840152602081019050611169565b60008484015250505050565b6000601f19601f8301169050919050565b60006111ac8261114a565b6111b68185611155565b93506111c6818560208601611166565b6111cf81611190565b840191505092915050565b600060208201905081810360008301526111f481846111a1565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061122c82611201565b9050919050565b61123c81611221565b811461124757600080fd5b50565b60008135905061125981611233565b92915050565b6000819050919050565b6112728161125f565b811461127d57600080fd5b50565b60008135905061128f81611269565b92915050565b600080604083850312156112ac576112ab6111fc565b5b60006112ba8582860161124a565b92505060206112cb85828601611280565b9150509250929050565b60008115159050919050565b6112ea816112d5565b82525050565b600060208201905061130560008301846112e1565b92915050565b6000819050919050565b600061133061132b61132684611201565b61130b565b611201565b9050919050565b600061134282611315565b9050919050565b600061135482611337565b9050919050565b61136481611349565b82525050565b600060208201905061137f600083018461135b565b92915050565b61138e8161125f565b82525050565b60006020820190506113a96000830184611385565b92915050565b6000806000606084860312156113c8576113c76111fc565b5b60006113d68682870161124a565b93505060206113e78682870161124a565b92505060406113f886828701611280565b9150509250925092565b600060ff82169050919050565b61141881611402565b82525050565b6000602082019050611433600083018461140f565b92915050565b60006020828403121561144f5761144e6111fc565b5b600061145d8482850161124a565b91505092915050565b61146f81611221565b82525050565b600060208201905061148a6000830184611466565b92915050565b600080604083850312156114a7576114a66111fc565b5b60006114b58582860161124a565b92505060206114c68582860161124a565b9150509250929050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061152c602883611155565b9150611537826114d0565b604082019050919050565b6000602082019050818103600083015261155b8161151f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061159c8261125f565b91506115a78361125f565b92508282039050818111156115bf576115be611562565b5b92915050565b60006115d08261125f565b91506115db8361125f565b92508282019050808211156115f3576115f2611562565b5b92915050565b7f4578636c756465642066726f6d20666565733a00000000000000000000000000600082015250565b600061162f601383611155565b915061163a826115f9565b602082019050919050565b6000604082019050818103600083015261165e81611622565b905061166d6020830184611466565b92915050565b7f496e636c75646564206261636b20696e20666565733a00000000000000000000600082015250565b60006116a9601683611155565b91506116b482611673565b602082019050919050565b600060408201905081810360008301526116d88161169c565b90506116e76020830184611466565b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611749602683611155565b9150611754826116ed565b604082019050919050565b600060208201905081810360008301526117788161173c565b9050919050565b7f45524332303a20617070726f76652066726f6d207a65726f2061646472657373600082015250565b60006117b5602083611155565b91506117c08261177f565b602082019050919050565b600060208201905081810360008301526117e4816117a8565b9050919050565b7f45524332303a20617070726f766520746f207a65726f20616464726573730000600082015250565b6000611821601e83611155565b915061182c826117eb565b602082019050919050565b6000602082019050818103600083015261185081611814565b9050919050565b7f45524332303a2066726f6d207a65726f20616464726573730000000000000000600082015250565b600061188d601883611155565b915061189882611857565b602082019050919050565b600060208201905081810360008301526118bc81611880565b9050919050565b7f45524332303a20746f207a65726f206164647265737300000000000000000000600082015250565b60006118f9601683611155565b9150611904826118c3565b602082019050919050565b60006020820190508181036000830152611928816118ec565b9050919050565b7f5472616e736665723a20616d6f756e74206d757374206265203e203000000000600082015250565b6000611965601c83611155565b91506119708261192f565b602082019050919050565b6000602082019050818103600083015261199481611958565b9050919050565b7f5472616e736665723a20696e73756666696369656e742062616c616e63650000600082015250565b60006119d1601e83611155565b91506119dc8261199b565b602082019050919050565b60006020820190508181036000830152611a00816119c4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a3d602083611155565b9150611a4882611a07565b602082019050919050565b60006020820190508181036000830152611a6c81611a30565b905091905056fea26469706673582212203732d786046373b5dd096ad2e410b2c262250a9619d8c72a9e20a902086b7c0864736f6c63430008130033

Deployed Bytecode

0x6080604052600436106101235760003560e01c806370a08231116100a0578063a457c2d711610064578063a457c2d7146103f8578063a9059cbb14610435578063dd62ed3e14610472578063ea2f0b37146104af578063f2fde38b146104d85761012a565b806370a0823114610323578063715018a61461036057806385141a77146103775780638da5cb5b146103a257806395d89b41146103cd5761012a565b8063313ce567116100e7578063313ce5671461022a5780633950935114610255578063437823ec1461029257806349bd5a5e146102bb5780635342acb4146102e65761012a565b806306fdde031461012f578063095ea7b31461015a5780631694505e1461019757806318160ddd146101c257806323b872dd146101ed5761012a565b3661012a57005b600080fd5b34801561013b57600080fd5b50610144610501565b60405161015191906111da565b60405180910390f35b34801561016657600080fd5b50610181600480360381019061017c9190611295565b61053a565b60405161018e91906112f0565b60405180910390f35b3480156101a357600080fd5b506101ac610558565b6040516101b9919061136a565b60405180910390f35b3480156101ce57600080fd5b506101d761057c565b6040516101e49190611394565b60405180910390f35b3480156101f957600080fd5b50610214600480360381019061020f91906113af565b610586565b60405161022191906112f0565b60405180910390f35b34801561023657600080fd5b5061023f610686565b60405161024c919061141e565b60405180910390f35b34801561026157600080fd5b5061027c60048036038101906102779190611295565b61068b565b60405161028991906112f0565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190611439565b610737565b005b3480156102c757600080fd5b506102d06107d1565b6040516102dd9190611475565b60405180910390f35b3480156102f257600080fd5b5061030d60048036038101906103089190611439565b6107f5565b60405161031a91906112f0565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190611439565b61084b565b6040516103579190611394565b60405180910390f35b34801561036c57600080fd5b50610375610894565b005b34801561038357600080fd5b5061038c6108a8565b6040516103999190611475565b60405180910390f35b3480156103ae57600080fd5b506103b76108ae565b6040516103c49190611475565b60405180910390f35b3480156103d957600080fd5b506103e26108d7565b6040516103ef91906111da565b60405180910390f35b34801561040457600080fd5b5061041f600480360381019061041a9190611295565b610910565b60405161042c91906112f0565b60405180910390f35b34801561044157600080fd5b5061045c60048036038101906104579190611295565b6109bc565b60405161046991906112f0565b60405180910390f35b34801561047e57600080fd5b5061049960048036038101906104949190611490565b6109da565b6040516104a69190611394565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d19190611439565b610a61565b005b3480156104e457600080fd5b506104ff60048036038101906104fa9190611439565b610afb565b005b6040518060400160405280600f81526020017f53656e74696f2050726f746f636f6c000000000000000000000000000000000081525081565b600061054e610547610b7e565b8484610b86565b6001905092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600454905090565b600080600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105d2610b7e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610652576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064990611542565b60405180910390fd5b61065d858585610d4f565b61067a85610669610b7e565b85846106759190611591565b610b86565b60019150509392505050565b601281565b600061072d610698610b7e565b8484600260006106a6610b7e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461072891906115c5565b610b86565b6001905092915050565b61073f611008565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f025dbd6ad989fe1a64db7dc049e29723ff9d35a97d84ae9aab96196f00ec1a00816040516107c69190611645565b60405180910390a150565b7f000000000000000000000000468795e031c173942c9387aed0a302e26bdd046081565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61089c611008565b6108a66000611086565b565b61dead81565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6040518060400160405280600381526020017f53454e000000000000000000000000000000000000000000000000000000000081525081565b60006109b261091d610b7e565b84846002600061092b610b7e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109ad9190611591565b610b86565b6001905092915050565b60006109d06109c9610b7e565b8484610d4f565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a69611008565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f025dbd6ad989fe1a64db7dc049e29723ff9d35a97d84ae9aab96196f00ec1a0081604051610af091906116bf565b60405180910390a150565b610b03611008565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b699061175f565b60405180910390fd5b610b7b81611086565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bec906117cb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5b90611837565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d429190611394565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db5906118a3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e249061190f565b60405180910390fd5b60008111610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e679061197b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee9906119e7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f419190611591565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f9791906115c5565b925050819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ffb9190611394565b60405180910390a3505050565b611010610b7e565b73ffffffffffffffffffffffffffffffffffffffff1661102e6108ae565b73ffffffffffffffffffffffffffffffffffffffff1614611084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107b90611a53565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611184578082015181840152602081019050611169565b60008484015250505050565b6000601f19601f8301169050919050565b60006111ac8261114a565b6111b68185611155565b93506111c6818560208601611166565b6111cf81611190565b840191505092915050565b600060208201905081810360008301526111f481846111a1565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061122c82611201565b9050919050565b61123c81611221565b811461124757600080fd5b50565b60008135905061125981611233565b92915050565b6000819050919050565b6112728161125f565b811461127d57600080fd5b50565b60008135905061128f81611269565b92915050565b600080604083850312156112ac576112ab6111fc565b5b60006112ba8582860161124a565b92505060206112cb85828601611280565b9150509250929050565b60008115159050919050565b6112ea816112d5565b82525050565b600060208201905061130560008301846112e1565b92915050565b6000819050919050565b600061133061132b61132684611201565b61130b565b611201565b9050919050565b600061134282611315565b9050919050565b600061135482611337565b9050919050565b61136481611349565b82525050565b600060208201905061137f600083018461135b565b92915050565b61138e8161125f565b82525050565b60006020820190506113a96000830184611385565b92915050565b6000806000606084860312156113c8576113c76111fc565b5b60006113d68682870161124a565b93505060206113e78682870161124a565b92505060406113f886828701611280565b9150509250925092565b600060ff82169050919050565b61141881611402565b82525050565b6000602082019050611433600083018461140f565b92915050565b60006020828403121561144f5761144e6111fc565b5b600061145d8482850161124a565b91505092915050565b61146f81611221565b82525050565b600060208201905061148a6000830184611466565b92915050565b600080604083850312156114a7576114a66111fc565b5b60006114b58582860161124a565b92505060206114c68582860161124a565b9150509250929050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061152c602883611155565b9150611537826114d0565b604082019050919050565b6000602082019050818103600083015261155b8161151f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061159c8261125f565b91506115a78361125f565b92508282039050818111156115bf576115be611562565b5b92915050565b60006115d08261125f565b91506115db8361125f565b92508282019050808211156115f3576115f2611562565b5b92915050565b7f4578636c756465642066726f6d20666565733a00000000000000000000000000600082015250565b600061162f601383611155565b915061163a826115f9565b602082019050919050565b6000604082019050818103600083015261165e81611622565b905061166d6020830184611466565b92915050565b7f496e636c75646564206261636b20696e20666565733a00000000000000000000600082015250565b60006116a9601683611155565b91506116b482611673565b602082019050919050565b600060408201905081810360008301526116d88161169c565b90506116e76020830184611466565b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611749602683611155565b9150611754826116ed565b604082019050919050565b600060208201905081810360008301526117788161173c565b9050919050565b7f45524332303a20617070726f76652066726f6d207a65726f2061646472657373600082015250565b60006117b5602083611155565b91506117c08261177f565b602082019050919050565b600060208201905081810360008301526117e4816117a8565b9050919050565b7f45524332303a20617070726f766520746f207a65726f20616464726573730000600082015250565b6000611821601e83611155565b915061182c826117eb565b602082019050919050565b6000602082019050818103600083015261185081611814565b9050919050565b7f45524332303a2066726f6d207a65726f20616464726573730000000000000000600082015250565b600061188d601883611155565b915061189882611857565b602082019050919050565b600060208201905081810360008301526118bc81611880565b9050919050565b7f45524332303a20746f207a65726f206164647265737300000000000000000000600082015250565b60006118f9601683611155565b9150611904826118c3565b602082019050919050565b60006020820190508181036000830152611928816118ec565b9050919050565b7f5472616e736665723a20616d6f756e74206d757374206265203e203000000000600082015250565b6000611965601c83611155565b91506119708261192f565b602082019050919050565b6000602082019050818103600083015261199481611958565b9050919050565b7f5472616e736665723a20696e73756666696369656e742062616c616e63650000600082015250565b60006119d1601e83611155565b91506119dc8261199b565b602082019050919050565b60006020820190508181036000830152611a00816119c4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a3d602083611155565b9150611a4882611a07565b602082019050919050565b60006020820190508181036000830152611a6c81611a30565b905091905056fea26469706673582212203732d786046373b5dd096ad2e410b2c262250a9619d8c72a9e20a902086b7c0864736f6c63430008130033

Deployed Bytecode Sourcemap

16409:6719:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16958:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20175:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17281:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19539:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20369:481;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17056:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20858:282;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22630:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17339:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22427:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19642:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6828:103;;;;;;;;;;;;;:::i;:::-;;17146:88;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6593:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17012:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21148:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19797:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19997:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22874:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6939:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16958:47;;;;;;;;;;;;;;;;;;;:::o;20175:186::-;20275:4;20292:39;20301:12;:10;:12::i;:::-;20315:7;20324:6;20292:8;:39::i;:::-;20349:4;20342:11;;20175:186;;;;:::o;17281:51::-;;;:::o;19539:95::-;19592:7;19619;;19612:14;;19539:95;:::o;20369:481::-;20501:4;20518:24;20545:11;:19;20557:6;20545:19;;;;;;;;;;;;;;;:33;20565:12;:10;:12::i;:::-;20545:33;;;;;;;;;;;;;;;;20518:60;;20631:6;20611:16;:26;;20589:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;20716:36;20726:6;20734:9;20745:6;20716:9;:36::i;:::-;20763:57;20772:6;20780:12;:10;:12::i;:::-;20813:6;20794:16;:25;;;;:::i;:::-;20763:8;:57::i;:::-;20838:4;20831:11;;;20369:481;;;;;:::o;17056:35::-;17089:2;17056:35;:::o;20858:282::-;20963:4;20980:130;21003:12;:10;:12::i;:::-;21030:7;21089:10;21052:11;:25;21064:12;:10;:12::i;:::-;21052:25;;;;;;;;;;;;;;;:34;21078:7;21052:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;20980:8;:130::i;:::-;21128:4;21121:11;;20858:282;;;;:::o;22630:169::-;6552:13;:11;:13::i;:::-;22731:4:::1;22701:18;:27;22720:7;22701:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;22751:40;22783:7;22751:40;;;;;;:::i;:::-;;;;;;;;22630:169:::0;:::o;17339:38::-;;;:::o;22427:126::-;22494:4;22518:18;:27;22537:7;22518:27;;;;;;;;;;;;;;;;;;;;;;;;;22511:34;;22427:126;;;:::o;19642:117::-;19708:7;19735;:16;19743:7;19735:16;;;;;;;;;;;;;;;;19728:23;;19642:117;;;:::o;6828:103::-;6552:13;:11;:13::i;:::-;6893:30:::1;6920:1;6893:18;:30::i;:::-;6828:103::o:0;17146:88::-;17192:42;17146:88;:::o;6593:87::-;6639:7;6666:6;;;;;;;;;;;6659:13;;6593:87;:::o;17012:37::-;;;;;;;;;;;;;;;;;;;:::o;21148:292::-;21258:4;21275:135;21298:12;:10;:12::i;:::-;21325:7;21384:15;21347:11;:25;21359:12;:10;:12::i;:::-;21347:25;;;;;;;;;;;;;;;:34;21373:7;21347:34;;;;;;;;;;;;;;;;:52;;;;:::i;:::-;21275:8;:135::i;:::-;21428:4;21421:11;;21148:292;;;;:::o;19797:192::-;19900:4;19917:42;19927:12;:10;:12::i;:::-;19941:9;19952:6;19917:9;:42::i;:::-;19977:4;19970:11;;19797:192;;;;:::o;19997:170::-;20104:7;20131:11;:19;20143:6;20131:19;;;;;;;;;;;;;;;:28;20151:7;20131:28;;;;;;;;;;;;;;;;20124:35;;19997:170;;;;:::o;22874:171::-;6552:13;:11;:13::i;:::-;22973:5:::1;22943:18;:27;22962:7;22943:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;22994:43;23029:7;22994:43;;;;;;:::i;:::-;;;;;;;;22874:171:::0;:::o;6939:238::-;6552:13;:11;:13::i;:::-;7062:1:::1;7042:22;;:8;:22;;::::0;7020:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;7141:28;7160:8;7141:18;:28::i;:::-;6939:238:::0;:::o;342:98::-;395:7;422:10;415:17;;342:98;:::o;21482:333::-;21594:1;21576:20;;:6;:20;;;21568:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;21671:1;21652:21;;:7;:21;;;21644:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;21752:6;21721:11;:19;21733:6;21721:19;;;;;;;;;;;;;;;:28;21741:7;21721:28;;;;;;;;;;;;;;;:37;;;;21791:7;21774:33;;21783:6;21774:33;;;21800:6;21774:33;;;;;;:::i;:::-;;;;;;;;21482:333;;;:::o;21896:456::-;22000:1;21984:18;;:4;:18;;;21976:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;22064:1;22050:16;;:2;:16;;;22042:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;22121:1;22112:6;:10;22104:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;22191:6;22174:7;:13;22182:4;22174:13;;;;;;;;;;;;;;;;:23;;22166:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;22262:6;22245:7;:13;22253:4;22245:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;22294:6;22279:7;:11;22287:2;22279:11;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;22333:2;22318:26;;22327:4;22318:26;;;22337:6;22318:26;;;;;;:::i;:::-;;;;;;;;21896:456;;;:::o;6688:132::-;6763:12;:10;:12::i;:::-;6752:23;;:7;:5;:7::i;:::-;:23;;;6744:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6688:132::o;7185:191::-;7259:16;7278:6;;;;;;;;;;;7259:25;;7304:8;7295:6;;:17;;;;;;;;;;;;;;;;;;7359:8;7328:40;;7349:8;7328:40;;;;;;;;;;;;7248:128;7185:191;:::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;1430:117::-;1539:1;1536;1529: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:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:153::-;3869:9;3902:37;3933:5;3902:37;:::i;:::-;3889:50;;3792:153;;;:::o;3951:185::-;4065:64;4123:5;4065:64;:::i;:::-;4060:3;4053:77;3951:185;;:::o;4142:276::-;4262:4;4300:2;4289:9;4285:18;4277:26;;4313:98;4408:1;4397:9;4393:17;4384:6;4313:98;:::i;:::-;4142:276;;;;:::o;4424:118::-;4511:24;4529:5;4511:24;:::i;:::-;4506:3;4499:37;4424:118;;:::o;4548:222::-;4641:4;4679:2;4668:9;4664:18;4656:26;;4692:71;4760:1;4749:9;4745:17;4736:6;4692:71;:::i;:::-;4548:222;;;;:::o;4776:619::-;4853:6;4861;4869;4918:2;4906:9;4897:7;4893:23;4889:32;4886:119;;;4924:79;;:::i;:::-;4886:119;5044:1;5069:53;5114:7;5105:6;5094:9;5090:22;5069:53;:::i;:::-;5059:63;;5015:117;5171:2;5197:53;5242:7;5233:6;5222:9;5218:22;5197:53;:::i;:::-;5187:63;;5142:118;5299:2;5325:53;5370:7;5361:6;5350:9;5346:22;5325:53;:::i;:::-;5315:63;;5270:118;4776:619;;;;;:::o;5401:86::-;5436:7;5476:4;5469:5;5465:16;5454:27;;5401:86;;;:::o;5493:112::-;5576:22;5592:5;5576:22;:::i;:::-;5571:3;5564:35;5493:112;;:::o;5611:214::-;5700:4;5738:2;5727:9;5723:18;5715:26;;5751:67;5815:1;5804:9;5800:17;5791:6;5751:67;:::i;:::-;5611:214;;;;:::o;5831:329::-;5890:6;5939:2;5927:9;5918:7;5914:23;5910:32;5907:119;;;5945:79;;:::i;:::-;5907:119;6065:1;6090:53;6135:7;6126:6;6115:9;6111:22;6090:53;:::i;:::-;6080:63;;6036:117;5831:329;;;;:::o;6166:118::-;6253:24;6271:5;6253:24;:::i;:::-;6248:3;6241:37;6166:118;;:::o;6290:222::-;6383:4;6421:2;6410:9;6406:18;6398:26;;6434:71;6502:1;6491:9;6487:17;6478:6;6434:71;:::i;:::-;6290:222;;;;:::o;6518:474::-;6586:6;6594;6643:2;6631:9;6622:7;6618:23;6614:32;6611:119;;;6649:79;;:::i;:::-;6611:119;6769:1;6794:53;6839:7;6830:6;6819:9;6815:22;6794:53;:::i;:::-;6784:63;;6740:117;6896:2;6922:53;6967:7;6958:6;6947:9;6943:22;6922:53;:::i;:::-;6912:63;;6867:118;6518:474;;;;;:::o;6998:227::-;7138:34;7134:1;7126:6;7122:14;7115:58;7207:10;7202:2;7194:6;7190:15;7183:35;6998:227;:::o;7231:366::-;7373:3;7394:67;7458:2;7453:3;7394:67;:::i;:::-;7387:74;;7470:93;7559:3;7470:93;:::i;:::-;7588:2;7583:3;7579:12;7572:19;;7231:366;;;:::o;7603:419::-;7769:4;7807:2;7796:9;7792:18;7784:26;;7856:9;7850:4;7846:20;7842:1;7831:9;7827:17;7820:47;7884:131;8010:4;7884:131;:::i;:::-;7876:139;;7603:419;;;:::o;8028:180::-;8076:77;8073:1;8066:88;8173:4;8170:1;8163:15;8197:4;8194:1;8187:15;8214:194;8254:4;8274:20;8292:1;8274:20;:::i;:::-;8269:25;;8308:20;8326:1;8308:20;:::i;:::-;8303:25;;8352:1;8349;8345:9;8337:17;;8376:1;8370:4;8367:11;8364:37;;;8381:18;;:::i;:::-;8364:37;8214:194;;;;:::o;8414:191::-;8454:3;8473:20;8491:1;8473:20;:::i;:::-;8468:25;;8507:20;8525:1;8507:20;:::i;:::-;8502:25;;8550:1;8547;8543:9;8536:16;;8571:3;8568:1;8565:10;8562:36;;;8578:18;;:::i;:::-;8562:36;8414:191;;;;:::o;8611:169::-;8751:21;8747:1;8739:6;8735:14;8728:45;8611:169;:::o;8786:366::-;8928:3;8949:67;9013:2;9008:3;8949:67;:::i;:::-;8942:74;;9025:93;9114:3;9025:93;:::i;:::-;9143:2;9138:3;9134:12;9127:19;;8786:366;;;:::o;9158:529::-;9352:4;9390:2;9379:9;9375:18;9367:26;;9439:9;9433:4;9429:20;9425:1;9414:9;9410:17;9403:47;9467:131;9593:4;9467:131;:::i;:::-;9459:139;;9608:72;9676:2;9665:9;9661:18;9652:6;9608:72;:::i;:::-;9158:529;;;;:::o;9693:172::-;9833:24;9829:1;9821:6;9817:14;9810:48;9693:172;:::o;9871:366::-;10013:3;10034:67;10098:2;10093:3;10034:67;:::i;:::-;10027:74;;10110:93;10199:3;10110:93;:::i;:::-;10228:2;10223:3;10219:12;10212:19;;9871:366;;;:::o;10243:529::-;10437:4;10475:2;10464:9;10460:18;10452:26;;10524:9;10518:4;10514:20;10510:1;10499:9;10495:17;10488:47;10552:131;10678:4;10552:131;:::i;:::-;10544:139;;10693:72;10761:2;10750:9;10746:18;10737:6;10693:72;:::i;:::-;10243:529;;;;:::o;10778:225::-;10918:34;10914:1;10906:6;10902:14;10895:58;10987:8;10982:2;10974:6;10970:15;10963:33;10778:225;:::o;11009:366::-;11151:3;11172:67;11236:2;11231:3;11172:67;:::i;:::-;11165:74;;11248:93;11337:3;11248:93;:::i;:::-;11366:2;11361:3;11357:12;11350:19;;11009:366;;;:::o;11381:419::-;11547:4;11585:2;11574:9;11570:18;11562:26;;11634:9;11628:4;11624:20;11620:1;11609:9;11605:17;11598:47;11662:131;11788:4;11662:131;:::i;:::-;11654:139;;11381:419;;;:::o;11806:182::-;11946:34;11942:1;11934:6;11930:14;11923:58;11806:182;:::o;11994:366::-;12136:3;12157:67;12221:2;12216:3;12157:67;:::i;:::-;12150:74;;12233:93;12322:3;12233:93;:::i;:::-;12351:2;12346:3;12342:12;12335:19;;11994:366;;;:::o;12366:419::-;12532:4;12570:2;12559:9;12555:18;12547:26;;12619:9;12613:4;12609:20;12605:1;12594:9;12590:17;12583:47;12647:131;12773:4;12647:131;:::i;:::-;12639:139;;12366:419;;;:::o;12791:180::-;12931:32;12927:1;12919:6;12915:14;12908:56;12791:180;:::o;12977:366::-;13119:3;13140:67;13204:2;13199:3;13140:67;:::i;:::-;13133:74;;13216:93;13305:3;13216:93;:::i;:::-;13334:2;13329:3;13325:12;13318:19;;12977:366;;;:::o;13349:419::-;13515:4;13553:2;13542:9;13538:18;13530:26;;13602:9;13596:4;13592:20;13588:1;13577:9;13573:17;13566:47;13630:131;13756:4;13630:131;:::i;:::-;13622:139;;13349:419;;;:::o;13774:174::-;13914:26;13910:1;13902:6;13898:14;13891:50;13774:174;:::o;13954:366::-;14096:3;14117:67;14181:2;14176:3;14117:67;:::i;:::-;14110:74;;14193:93;14282:3;14193:93;:::i;:::-;14311:2;14306:3;14302:12;14295:19;;13954:366;;;:::o;14326:419::-;14492:4;14530:2;14519:9;14515:18;14507:26;;14579:9;14573:4;14569:20;14565:1;14554:9;14550:17;14543:47;14607:131;14733:4;14607:131;:::i;:::-;14599:139;;14326:419;;;:::o;14751:172::-;14891:24;14887:1;14879:6;14875:14;14868:48;14751:172;:::o;14929:366::-;15071:3;15092:67;15156:2;15151:3;15092:67;:::i;:::-;15085:74;;15168:93;15257:3;15168:93;:::i;:::-;15286:2;15281:3;15277:12;15270:19;;14929:366;;;:::o;15301:419::-;15467:4;15505:2;15494:9;15490:18;15482:26;;15554:9;15548:4;15544:20;15540:1;15529:9;15525:17;15518:47;15582:131;15708:4;15582:131;:::i;:::-;15574:139;;15301:419;;;:::o;15726:178::-;15866:30;15862:1;15854:6;15850:14;15843:54;15726:178;:::o;15910:366::-;16052:3;16073:67;16137:2;16132:3;16073:67;:::i;:::-;16066:74;;16149:93;16238:3;16149:93;:::i;:::-;16267:2;16262:3;16258:12;16251:19;;15910:366;;;:::o;16282:419::-;16448:4;16486:2;16475:9;16471:18;16463:26;;16535:9;16529:4;16525:20;16521:1;16510:9;16506:17;16499:47;16563:131;16689:4;16563:131;:::i;:::-;16555:139;;16282:419;;;:::o;16707:180::-;16847:32;16843:1;16835:6;16831:14;16824:56;16707:180;:::o;16893:366::-;17035:3;17056:67;17120:2;17115:3;17056:67;:::i;:::-;17049:74;;17132:93;17221:3;17132:93;:::i;:::-;17250:2;17245:3;17241:12;17234:19;;16893:366;;;:::o;17265:419::-;17431:4;17469:2;17458:9;17454:18;17446:26;;17518:9;17512:4;17508:20;17504:1;17493:9;17489:17;17482:47;17546:131;17672:4;17546:131;:::i;:::-;17538:139;;17265:419;;;:::o;17690:182::-;17830:34;17826:1;17818:6;17814:14;17807:58;17690:182;:::o;17878:366::-;18020:3;18041:67;18105:2;18100:3;18041:67;:::i;:::-;18034:74;;18117:93;18206:3;18117:93;:::i;:::-;18235:2;18230:3;18226:12;18219:19;;17878:366;;;:::o;18250:419::-;18416:4;18454:2;18443:9;18439:18;18431:26;;18503:9;18497:4;18493:20;18489:1;18478:9;18474:17;18467:47;18531:131;18657:4;18531:131;:::i;:::-;18523:139;;18250:419;;;:::o

Swarm Source

ipfs://3732d786046373b5dd096ad2e410b2c262250a9619d8c72a9e20a902086b7c08

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

Build Powerful On-Chain AI Agents—No Code Required Take your crypto strategy to the next level with autonomous, on-chain AI agents.

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

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.