ETH Price: $2,593.68 (-2.34%)

Token

Pepepepepepepepepepepepepepepepepepepepepepepepepe... (SEPE)
 

Overview

Max Total Supply

1,000,000 SEPE

Holders

81

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
schumi4092.eth
Balance
320.96645770048870462 SEPE

Value
$0.00
0xCC7fF4440167FA7Bf3AcD27Bb88B2983509c98Ef
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:
Pepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepe

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-29
*/

/**

https://t.me/sizepepe

http://pepepepepepepepepepe.xyz/

https://x.com/sizepepe

**/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
pragma experimental ABIEncoderV2;

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

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

contract Ownable is Context {
    address private _owner;

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

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

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

    modifier onlyOwner() {
        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 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
    );
}

interface IERC20Metadata is IERC20 {

    function name() external view returns (string memory);

    function symbol() external view returns (string memory);

    function decimals() external view returns (uint8);
}

contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

    function transfer(address 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);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

        _afterTokenTransfer(account, address(0), 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 _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

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

library SafeMath {
    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);
        }
    }

    function trySub(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    function tryMul(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    function tryDiv(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    function tryMod(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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 Mint(address indexed sender, uint256 amount0, uint256 amount1);
    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 mint(address to) external returns (uint256 liquidity);

    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 IUniswapV2Router02 {
    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 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 Pepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepe is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address private AWallet;
    address private BWallet;
    address private CWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public limitsInEffect = true;
    bool public tradingActive = false;

    uint256 public launchedAt;
    uint256 public launchedAtTimestamp;
    uint256 antiBot = 0 seconds;

    uint256 public buyTotalFees = 4;
    uint256 public buyAFee = 4;
    uint256 public buyBFee = 0;
    uint256 public buyCFee = 0;
    uint256 public buyLiquidityFee = 0;
    uint256 public buyAutoBurnFee = 0;

    uint256 public sellTotalFees = 4;
    uint256 public sellAFee = 4;
    uint256 public sellBFee = 0;
    uint256 public sellCFee = 0;
    uint256 public sellLiquidityFee = 0;
    uint256 public sellAutoBurnFee = 0;

    uint256 public tokensForA;
    uint256 public tokensForLiquidity;
    uint256 public tokensForB;
    uint256 public tokensForC;
    uint256 public tokensForAutoburn;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;
    mapping(address => bool) public isBot;

    mapping(address => bool) public automatedMarketMakerPairs;

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event AWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event BWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event CWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor(

    ) ERC20("PepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepePepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepePepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepePepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepePepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepePepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepePepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepePepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepePepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepePepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepePepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepePepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepePepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepePepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepePepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepePepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepePepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepePepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepePepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepepe", "SEPE") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 totalSupply = 1_000_000 * 1e18;

        maxTransactionAmount = 20000 * 1e18;
        maxWallet = 20000 * 1e18;
        swapTokensAtAmount = 5000 * 1e18;

        AWallet = address(0xF6984ec430B128038848fFa067eDD4a246a34A11); 
        BWallet = address(0xF6984ec430B128038848fFa067eDD4a246a34A11);
        CWallet = address(0xF6984ec430B128038848fFa067eDD4a246a34A11);
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        _mint(owner(), totalSupply);
    }

    receive() external payable {}

    function launched() internal view returns (bool) {
        return launchedAt != 0;
    }

    function launch() public onlyOwner {
        require(launchedAt == 0, "Already launched");
        launchedAt = block.number;
        launchedAtTimestamp = block.timestamp;
        tradingActive = true;
    }

    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function updateBuyFees(
        uint256 _AFee,
        uint256 _BFee,
        uint256 _CFee,
        uint256 _liquidityFee,
        uint256 _autoBurnFee
    ) external onlyOwner {
        buyAFee = _AFee;
        buyBFee = _BFee;
        buyCFee = _CFee;
        buyLiquidityFee = _liquidityFee;
        buyAutoBurnFee = _autoBurnFee;
        buyTotalFees =
            buyAFee +
            buyBFee +
            buyCFee +
            buyLiquidityFee +
            buyAutoBurnFee;
    }

    function updateSellFees(
        uint256 _AFee,
        uint256 _BFee,
        uint256 _CFee,
        uint256 _liquidityFee,
        uint256 _autoBurnFee
    ) external onlyOwner {
        sellAFee = _AFee;
        sellBFee = _BFee;
        sellCFee = _CFee;
        sellLiquidityFee = _liquidityFee;
        sellAutoBurnFee = _autoBurnFee;
        sellTotalFees =
            sellAFee +
            sellBFee +
            sellCFee +
            sellLiquidityFee +
            sellAutoBurnFee;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateAWallet(address newAWallet) external onlyOwner {
        emit AWalletUpdated(newAWallet, AWallet);
        AWallet = newAWallet;
    }

    function updateBWallet(address newBWallet) external onlyOwner {
        emit BWalletUpdated(newBWallet, BWallet);
        BWallet = newBWallet;
    }

    function updateCWallet(address newWallet) external onlyOwner {
        emit CWalletUpdated(newWallet, CWallet);
        CWallet = newWallet;
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function addBotInList(address _account) external onlyOwner {
        require(
            _account != address(uniswapV2Router),
            "Can not blacklist router"
        );
        require(!isBot[_account], "Bot already added");
        isBot[_account] = true;
    }

    function removeBotFromList(address _account) external onlyOwner {
        require(isBot[_account], "Bot not found");
        isBot[_account] = false;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(!isBot[to], "Bot detected");
        require(!isBot[from], "Bot detected");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }
                if (
                    block.timestamp < launchedAtTimestamp + antiBot &&
                    from != address(uniswapV2Router)
                ) {
                    if (from == uniswapV2Pair) {
                        isBot[to] = true;
                    } else if (to == uniswapV2Pair) {
                        isBot[from] = true;
                    }
                }
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        if (takeFee) {
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForB += (fees * sellCFee) / sellTotalFees;
                tokensForA += (fees * sellAFee) / sellTotalFees;
                tokensForC += (fees * sellCFee) / sellTotalFees;
                tokensForAutoburn = (fees * sellAutoBurnFee) / sellTotalFees;
            }
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForB += (fees * buyCFee) / buyTotalFees;
                tokensForA += (fees * buyAFee) / buyTotalFees;
                tokensForC += (fees * buyCFee) / buyTotalFees;
                tokensForAutoburn = (fees * buyAutoBurnFee) / buyTotalFees;
            }

            if (fees > 0) {
                _burn(from, tokensForAutoburn);
                super._transfer(from, address(this), fees - tokensForAutoburn);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

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

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, 
            0, 
            deadAddress,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForA +
            tokensForB +
            tokensForC;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount) {
            contractBalance = swapTokensAtAmount;
        }

        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForA = ethBalance.mul(tokensForA).div(
            totalTokensToSwap
        );
        uint256 ethForB = ethBalance.mul(tokensForB).div(
            totalTokensToSwap
        );
        uint256 ethForC = ethBalance.mul(tokensForC).div(
            totalTokensToSwap
        );
        uint256 ethForLiquidity = ethBalance -
            ethForA -
            ethForB -
            ethForC;

        tokensForLiquidity = 0;
        tokensForA = 0;
        tokensForB = 0;
        tokensForC = 0;

        (success, ) = address(BWallet).call{value: ethForB}("");

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

        (success, ) = address(AWallet).call{value: ethForA}("");
        (success, ) = address(CWallet).call{
            value: address(this).balance
        }("");
    }

    function withdrawETH(uint256 _amount) external onlyOwner {
        require(address(this).balance >= _amount, "Invalid Amount");
        payable(msg.sender).transfer(_amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"AWalletUpdated","type":"event"},{"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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"BWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"CWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"addBotInList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyAFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyAutoBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyBFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyCFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","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"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launchedAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchedAtTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"removeBotFromList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellAFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellAutoBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellBFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellCFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForAutoburn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForB","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAWallet","type":"address"}],"name":"updateAWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newBWallet","type":"address"}],"name":"updateBWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_AFee","type":"uint256"},{"internalType":"uint256","name":"_BFee","type":"uint256"},{"internalType":"uint256","name":"_CFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_autoBurnFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateCWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_AFee","type":"uint256"},{"internalType":"uint256","name":"_BFee","type":"uint256"},{"internalType":"uint256","name":"_CFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_autoBurnFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600c805461ffff191660011790556000600f8190556004601081905560118190556012829055601382905560148290556015829055601681905560175560188190556019819055601a819055601b553480156200006057600080fd5b5060405180611060016040528061102681526020016200350f61102691396040805180820190915260048152635345504560e01b60208201526003620000a78382620006dd565b506004620000b68282620006dd565b505050620000d3620000cd6200038160201b60201c565b62000385565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000f5816001620003d7565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000140573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001669190620007a9565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001b4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001da9190620007a9565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000228573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024e9190620007a9565b6001600160a01b031660a081905262000269906001620003d7565b60a0516200027990600162000451565b69043c33c19375648000006009819055600b5569010f0cf064dd59200000600a556006805473f6984ec430b128038848ffa067edd4a246a34a116001600160a01b031991821681179092556007805482168317905560088054909116909117905569d3c21bcecceda100000062000304620002fc6005546001600160a01b031690565b6001620004a5565b62000311306001620004a5565b6200032061dead6001620004a5565b6200033f620003376005546001600160a01b031690565b6001620003d7565b6200034c306001620003d7565b6200035b61dead6001620003d7565b62000379620003726005546001600160a01b031690565b826200054f565b505062000803565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004265760405162461bcd60e51b815260206004820181905260248201526000805160206200453583398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152602260205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260246020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620004f05760405162461bcd60e51b815260206004820181905260248201526000805160206200453583398151915260448201526064016200041d565b6001600160a01b038216600081815260216020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005a75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200041d565b8060026000828254620005bb9190620007db565b90915550506001600160a01b03821660009081526020819052604081208054839290620005ea908490620007db565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200066457607f821691505b6020821081036200068557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200063457600081815260208120601f850160051c81016020861015620006b45750805b601f850160051c820191505b81811015620006d557828155600101620006c0565b505050505050565b81516001600160401b03811115620006f957620006f962000639565b62000711816200070a84546200064f565b846200068b565b602080601f831160018114620007495760008415620007305750858301515b600019600386901b1c1916600185901b178555620006d5565b600085815260208120601f198616915b828110156200077a5788860151825594840194600190910190840162000759565b5085821015620007995787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620007bc57600080fd5b81516001600160a01b0381168114620007d457600080fd5b9392505050565b80820180821115620007fd57634e487b7160e01b600052601160045260246000fd5b92915050565b60805160a051612ca06200086f600039600081816105c401528181610e3f015281816118c1015261192201526000818161046901528181610fc40152818161188501528181612635015281816126ee0152818161272a015281816127a401526128010152612ca06000f3fe6080604052600436106103855760003560e01c80639a7a23d6116101d1578063dd62ed3e11610102578063f11a24d3116100a0578063f63743421161006f578063f637434214610a35578063f8b45b0514610a4b578063fc78944614610a61578063ff935af614610a7757600080fd5b8063f11a24d3146109bf578063f14210a6146109d5578063f170d7fd146109f5578063f2fde38b14610a1557600080fd5b8063ebaff9c5116100dc578063ebaff9c514610953578063eec86e6114610973578063eed42ae014610993578063ef30a6b6146109a957600080fd5b8063dd62ed3e146108e1578063e2f4560514610927578063e6bb2cf21461093d57600080fd5b8063c02466681161016f578063c8c8ebe411610149578063c8c8ebe41461087f578063c99f2fed14610895578063d82a2c5d146108ab578063d85ba063146108cb57600080fd5b8063c024666814610833578063c453d6e914610853578063c6d2577d1461086957600080fd5b8063b62496f5116101ab578063b62496f5146107ae578063b656ff2c146107de578063bbc0c742146107fe578063bf56b3711461081d57600080fd5b80639a7a23d61461074e578063a457c2d71461076e578063a9059cbb1461078e57600080fd5b80633bbac579116102b657806370a08231116102545780638b81c107116102235780638b81c107146106e55780638da5cb5b146106fb57806392cdb84a1461071957806395d89b411461073957600080fd5b806370a0823114610665578063715018a61461069b578063751039fc146106b05780637571336a146106c557600080fd5b80634a62bb65116102905780634a62bb65146105e65780634fbee1931461060057806351dd3b9d146106395780636a486a8e1461064f57600080fd5b80633bbac5791461056c57806347afcbfe1461059c57806349bd5a5e146105b257600080fd5b80631a8145bb116103235780632d882159116102fd5780632d88215914610504578063313ce5671461051a578063369dcae814610536578063395093511461054c57600080fd5b80631a8145bb146104b857806323b872dd146104ce57806327c8f835146104ee57600080fd5b8063095ea7b31161035f578063095ea7b3146103f757806310d5de53146104275780631694505e1461045757806318160ddd146104a357600080fd5b806301339c211461039157806306fdde03146103a857806307b5db7f146103d357600080fd5b3661038c57005b600080fd5b34801561039d57600080fd5b506103a6610a97565b005b3480156103b457600080fd5b506103bd610b26565b6040516103ca919061287f565b60405180910390f35b3480156103df57600080fd5b506103e960115481565b6040519081526020016103ca565b34801561040357600080fd5b506104176104123660046128e2565b610bb8565b60405190151581526020016103ca565b34801561043357600080fd5b5061041761044236600461290e565b60226020526000908152604090205460ff1681565b34801561046357600080fd5b5061048b7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103ca565b3480156104af57600080fd5b506002546103e9565b3480156104c457600080fd5b506103e9601d5481565b3480156104da57600080fd5b506104176104e936600461292b565b610bcf565b3480156104fa57600080fd5b5061048b61dead81565b34801561051057600080fd5b506103e960195481565b34801561052657600080fd5b50604051601281526020016103ca565b34801561054257600080fd5b506103e9601f5481565b34801561055857600080fd5b506104176105673660046128e2565b610c79565b34801561057857600080fd5b5061041761058736600461290e565b60236020526000908152604090205460ff1681565b3480156105a857600080fd5b506103e9601b5481565b3480156105be57600080fd5b5061048b7f000000000000000000000000000000000000000000000000000000000000000081565b3480156105f257600080fd5b50600c546104179060ff1681565b34801561060c57600080fd5b5061041761061b36600461290e565b6001600160a01b031660009081526021602052604090205460ff1690565b34801561064557600080fd5b506103e960125481565b34801561065b57600080fd5b506103e960165481565b34801561067157600080fd5b506103e961068036600461290e565b6001600160a01b031660009081526020819052604090205490565b3480156106a757600080fd5b506103a6610cb5565b3480156106bc57600080fd5b50610417610ceb565b3480156106d157600080fd5b506103a66106e036600461296c565b610d28565b3480156106f157600080fd5b506103e960175481565b34801561070757600080fd5b506005546001600160a01b031661048b565b34801561072557600080fd5b506103a661073436600461290e565b610d7d565b34801561074557600080fd5b506103bd610e04565b34801561075a57600080fd5b506103a661076936600461296c565b610e13565b34801561077a57600080fd5b506104176107893660046128e2565b610ef2565b34801561079a57600080fd5b506104176107a93660046128e2565b610f8b565b3480156107ba57600080fd5b506104176107c936600461290e565b60246020526000908152604090205460ff1681565b3480156107ea57600080fd5b506103a66107f936600461290e565b610f98565b34801561080a57600080fd5b50600c5461041790610100900460ff1681565b34801561082957600080fd5b506103e9600d5481565b34801561083f57600080fd5b506103a661084e36600461296c565b6110c4565b34801561085f57600080fd5b506103e960185481565b34801561087557600080fd5b506103e9600e5481565b34801561088b57600080fd5b506103e960095481565b3480156108a157600080fd5b506103e960155481565b3480156108b757600080fd5b506103a66108c636600461290e565b61114d565b3480156108d757600080fd5b506103e960105481565b3480156108ed57600080fd5b506103e96108fc3660046129aa565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561093357600080fd5b506103e9600a5481565b34801561094957600080fd5b506103e960205481565b34801561095f57600080fd5b506103a661096e36600461290e565b6111d4565b34801561097f57600080fd5b506103a661098e36600461290e565b61125b565b34801561099f57600080fd5b506103e9601e5481565b3480156109b557600080fd5b506103e960135481565b3480156109cb57600080fd5b506103e960145481565b3480156109e157600080fd5b506103a66109f03660046129d8565b6112fe565b348015610a0157600080fd5b506103a6610a103660046129f1565b611396565b348015610a2157600080fd5b506103a6610a3036600461290e565b61140e565b348015610a4157600080fd5b506103e9601a5481565b348015610a5757600080fd5b506103e9600b5481565b348015610a6d57600080fd5b506103e9601c5481565b348015610a8357600080fd5b506103a6610a923660046129f1565b6114a9565b6005546001600160a01b03163314610aca5760405162461bcd60e51b8152600401610ac190612a2c565b60405180910390fd5b600d5415610b0d5760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e481b185d5b98da195960821b6044820152606401610ac1565b43600d5542600e55600c805461ff001916610100179055565b606060038054610b3590612a61565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6190612a61565b8015610bae5780601f10610b8357610100808354040283529160200191610bae565b820191906000526020600020905b815481529060010190602001808311610b9157829003601f168201915b5050505050905090565b6000610bc5338484611521565b5060015b92915050565b6000610bdc848484611645565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c615760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610ac1565b610c6e8533858403611521565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610bc5918590610cb0908690612ab1565b611521565b6005546001600160a01b03163314610cdf5760405162461bcd60e51b8152600401610ac190612a2c565b610ce96000611fb6565b565b6005546000906001600160a01b03163314610d185760405162461bcd60e51b8152600401610ac190612a2c565b50600c805460ff19169055600190565b6005546001600160a01b03163314610d525760405162461bcd60e51b8152600401610ac190612a2c565b6001600160a01b03919091166000908152602260205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610da75760405162461bcd60e51b8152600401610ac190612a2c565b6008546040516001600160a01b03918216918316907f494af6d2dcb65f4d44e0d53d3e2b47c8687913060f346f13cc61fa7985c094e090600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b606060048054610b3590612a61565b6005546001600160a01b03163314610e3d5760405162461bcd60e51b8152600401610ac190612a2c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610ee45760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610ac1565b610eee8282612008565b5050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610f745760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610ac1565b610f813385858403611521565b5060019392505050565b6000610bc5338484611645565b6005546001600160a01b03163314610fc25760405162461bcd60e51b8152600401610ac190612a2c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b0316036110435760405162461bcd60e51b815260206004820152601860248201527f43616e206e6f7420626c61636b6c69737420726f7574657200000000000000006044820152606401610ac1565b6001600160a01b03811660009081526023602052604090205460ff16156110a05760405162461bcd60e51b8152602060048201526011602482015270109bdd08185b1c9958591e481859191959607a1b6044820152606401610ac1565b6001600160a01b03166000908152602360205260409020805460ff19166001179055565b6005546001600160a01b031633146110ee5760405162461bcd60e51b8152600401610ac190612a2c565b6001600160a01b038216600081815260216020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146111775760405162461bcd60e51b8152600401610ac190612a2c565b6006546040516001600160a01b03918216918316907f2e07246a3520202621c413b6149ba2ae46b1f59b4025be34ec052bb3dc47cb0f90600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146111fe5760405162461bcd60e51b8152600401610ac190612a2c565b6007546040516001600160a01b03918216918316907fa05a0036312fe8892d7a2ff702a8d418bc7a54acb2fac4199811c25b637626a090600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146112855760405162461bcd60e51b8152600401610ac190612a2c565b6001600160a01b03811660009081526023602052604090205460ff166112dd5760405162461bcd60e51b815260206004820152600d60248201526c109bdd081b9bdd08199bdd5b99609a1b6044820152606401610ac1565b6001600160a01b03166000908152602360205260409020805460ff19169055565b6005546001600160a01b031633146113285760405162461bcd60e51b8152600401610ac190612a2c565b804710156113695760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908105b5bdd5b9d60921b6044820152606401610ac1565b604051339082156108fc029083906000818181858888f19350505050158015610eee573d6000803e3d6000fd5b6005546001600160a01b031633146113c05760405162461bcd60e51b8152600401610ac190612a2c565b601185905560128490556013839055601482905560158190558082846113e68789612ab1565b6113f09190612ab1565b6113fa9190612ab1565b6114049190612ab1565b6010555050505050565b6005546001600160a01b031633146114385760405162461bcd60e51b8152600401610ac190612a2c565b6001600160a01b03811661149d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ac1565b6114a681611fb6565b50565b6005546001600160a01b031633146114d35760405162461bcd60e51b8152600401610ac190612a2c565b601785905560188490556019839055601a829055601b8190558082846114f98789612ab1565b6115039190612ab1565b61150d9190612ab1565b6115179190612ab1565b6016555050505050565b6001600160a01b0383166115835760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610ac1565b6001600160a01b0382166115e45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610ac1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661166b5760405162461bcd60e51b8152600401610ac190612ac4565b6001600160a01b0382166116915760405162461bcd60e51b8152600401610ac190612b09565b6001600160a01b03821660009081526023602052604090205460ff16156116e95760405162461bcd60e51b815260206004820152600c60248201526b109bdd0819195d1958dd195960a21b6044820152606401610ac1565b6001600160a01b03831660009081526023602052604090205460ff16156117415760405162461bcd60e51b815260206004820152600c60248201526b109bdd0819195d1958dd195960a21b6044820152606401610ac1565b8060000361175a576117558383600061205c565b505050565b600c5460ff1615611be3576005546001600160a01b0384811691161480159061179157506005546001600160a01b03838116911614155b80156117a557506001600160a01b03821615155b80156117bc57506001600160a01b03821661dead14155b80156117d25750600554600160a01b900460ff16155b15611be357600c54610100900460ff1661186a576001600160a01b03831660009081526021602052604090205460ff168061182557506001600160a01b03821660009081526021602052604090205460ff165b61186a5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610ac1565b600f54600e5461187a9190612ab1565b421080156118ba57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614155b1561197d577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031603611920576001600160a01b0382166000908152602360205260409020805460ff1916600117905561197d565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03160361197d576001600160a01b0383166000908152602360205260409020805460ff191660011790555b6001600160a01b03831660009081526024602052604090205460ff1680156119be57506001600160a01b03821660009081526022602052604090205460ff16155b15611aa257600954811115611a335760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610ac1565b600b546001600160a01b038316600090815260208190526040902054611a599083612ab1565b1115611a9d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610ac1565b611be3565b6001600160a01b03821660009081526024602052604090205460ff168015611ae357506001600160a01b03831660009081526022602052604090205460ff16155b15611b5957600954811115611a9d5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610ac1565b6001600160a01b03821660009081526022602052604090205460ff16611be357600b546001600160a01b038316600090815260208190526040902054611b9f9083612ab1565b1115611be35760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610ac1565b30600090815260208190526040902054600a5481108015908190611c115750600554600160a01b900460ff16155b8015611c3657506001600160a01b03851660009081526024602052604090205460ff16155b8015611c5b57506001600160a01b03851660009081526021602052604090205460ff16155b8015611c8057506001600160a01b03841660009081526021602052604090205460ff16155b15611cae576005805460ff60a01b1916600160a01b179055611ca06121b1565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526021602052604090205460ff600160a01b909204821615911680611cfc57506001600160a01b03851660009081526021602052604090205460ff165b15611d05575060005b60008115611fa2576001600160a01b03861660009081526024602052604090205460ff168015611d3757506000601654115b15611e4157611d5c6064611d566016548861246590919063ffffffff16565b90612478565b9050601654601a5482611d6f9190612b4c565b611d799190612b63565b601d6000828254611d8a9190612ab1565b9091555050601654601954611d9f9083612b4c565b611da99190612b63565b601e6000828254611dba9190612ab1565b9091555050601654601754611dcf9083612b4c565b611dd99190612b63565b601c6000828254611dea9190612ab1565b9091555050601654601954611dff9083612b4c565b611e099190612b63565b601f6000828254611e1a9190612ab1565b9091555050601654601b54611e2f9083612b4c565b611e399190612b63565b602055611f6b565b6001600160a01b03871660009081526024602052604090205460ff168015611e6b57506000601054115b15611f6b57611e8a6064611d566010548861246590919063ffffffff16565b905060105460145482611e9d9190612b4c565b611ea79190612b63565b601d6000828254611eb89190612ab1565b9091555050601054601354611ecd9083612b4c565b611ed79190612b63565b601e6000828254611ee89190612ab1565b9091555050601054601154611efd9083612b4c565b611f079190612b63565b601c6000828254611f189190612ab1565b9091555050601054601354611f2d9083612b4c565b611f379190612b63565b601f6000828254611f489190612ab1565b9091555050601054601554611f5d9083612b4c565b611f679190612b63565b6020555b8015611f9557611f7d87602054612484565b611f95873060205484611f909190612b85565b61205c565b611f9f8186612b85565b94505b611fad87878761205c565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260246020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166120825760405162461bcd60e51b8152600401610ac190612ac4565b6001600160a01b0382166120a85760405162461bcd60e51b8152600401610ac190612b09565b6001600160a01b038316600090815260208190526040902054818110156121205760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610ac1565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612157908490612ab1565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516121a391815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601f54601e54601c54601d546121db9190612ab1565b6121e59190612ab1565b6121ef9190612ab1565b905060008215806121fe575081155b1561220857505050565b600a5483111561221857600a5492505b6000600283601d548661222b9190612b4c565b6122359190612b63565b61223f9190612b63565b9050600061224d85836125d2565b905047612259826125de565b600061226547836125d2565b9050600061228287611d56601c548561246590919063ffffffff16565b9050600061229f88611d56601e548661246590919063ffffffff16565b905060006122bc89611d56601f548761246590919063ffffffff16565b9050600081836122cc8688612b85565b6122d69190612b85565b6122e09190612b85565b6000601d819055601c819055601e819055601f8190556007546040519293506001600160a01b031691859181818185875af1925050503d8060008114612342576040519150601f19603f3d011682016040523d82523d6000602084013e612347565b606091505b5090995050871580159061235b5750600081115b156123ae5761236a888261279e565b601d54604080518981526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116908590600081818185875af1925050503d80600081146123fb576040519150601f19603f3d011682016040523d82523d6000602084013e612400565b606091505b5050600854604051919a506001600160a01b0316904790600081818185875af1925050503d8060008114612450576040519150601f19603f3d011682016040523d82523d6000602084013e612455565b606091505b5050505050505050505050505050565b60006124718284612b4c565b9392505050565b60006124718284612b63565b6001600160a01b0382166124e45760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610ac1565b6001600160a01b038216600090815260208190526040902054818110156125585760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610ac1565b6001600160a01b0383166000908152602081905260408120838303905560028054849290612587908490612b85565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b60006124718284612b85565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061261357612613612b98565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612691573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126b59190612bae565b816001815181106126c8576126c8612b98565b60200260200101906001600160a01b031690816001600160a01b031681525050612713307f000000000000000000000000000000000000000000000000000000000000000084611521565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612768908590600090869030904290600401612bcb565b600060405180830381600087803b15801561278257600080fd5b505af1158015612796573d6000803e3d6000fd5b505050505050565b6127c9307f000000000000000000000000000000000000000000000000000000000000000084611521565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612853573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906128789190612c3c565b5050505050565b600060208083528351808285015260005b818110156128ac57858101830151858201604001528201612890565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146114a657600080fd5b600080604083850312156128f557600080fd5b8235612900816128cd565b946020939093013593505050565b60006020828403121561292057600080fd5b8135612471816128cd565b60008060006060848603121561294057600080fd5b833561294b816128cd565b9250602084013561295b816128cd565b929592945050506040919091013590565b6000806040838503121561297f57600080fd5b823561298a816128cd565b91506020830135801515811461299f57600080fd5b809150509250929050565b600080604083850312156129bd57600080fd5b82356129c8816128cd565b9150602083013561299f816128cd565b6000602082840312156129ea57600080fd5b5035919050565b600080600080600060a08688031215612a0957600080fd5b505083359560208501359550604085013594606081013594506080013592509050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612a7557607f821691505b602082108103612a9557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610bc957610bc9612a9b565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8082028115828204841417610bc957610bc9612a9b565b600082612b8057634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115610bc957610bc9612a9b565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612bc057600080fd5b8151612471816128cd565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612c1b5784516001600160a01b031683529383019391830191600101612bf6565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612c5157600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220cf4149d879d5258ee1becf716a5e1dba2dffa6fbdb10fa0dddf37e339293d20d64736f6c634300081100335065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706550657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065506570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706550657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065506570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706550657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065506570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706550657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065506570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706550657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065506570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706550657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065506570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706550657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065506570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706550657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065506570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706550657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065506570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570657065706570654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106103855760003560e01c80639a7a23d6116101d1578063dd62ed3e11610102578063f11a24d3116100a0578063f63743421161006f578063f637434214610a35578063f8b45b0514610a4b578063fc78944614610a61578063ff935af614610a7757600080fd5b8063f11a24d3146109bf578063f14210a6146109d5578063f170d7fd146109f5578063f2fde38b14610a1557600080fd5b8063ebaff9c5116100dc578063ebaff9c514610953578063eec86e6114610973578063eed42ae014610993578063ef30a6b6146109a957600080fd5b8063dd62ed3e146108e1578063e2f4560514610927578063e6bb2cf21461093d57600080fd5b8063c02466681161016f578063c8c8ebe411610149578063c8c8ebe41461087f578063c99f2fed14610895578063d82a2c5d146108ab578063d85ba063146108cb57600080fd5b8063c024666814610833578063c453d6e914610853578063c6d2577d1461086957600080fd5b8063b62496f5116101ab578063b62496f5146107ae578063b656ff2c146107de578063bbc0c742146107fe578063bf56b3711461081d57600080fd5b80639a7a23d61461074e578063a457c2d71461076e578063a9059cbb1461078e57600080fd5b80633bbac579116102b657806370a08231116102545780638b81c107116102235780638b81c107146106e55780638da5cb5b146106fb57806392cdb84a1461071957806395d89b411461073957600080fd5b806370a0823114610665578063715018a61461069b578063751039fc146106b05780637571336a146106c557600080fd5b80634a62bb65116102905780634a62bb65146105e65780634fbee1931461060057806351dd3b9d146106395780636a486a8e1461064f57600080fd5b80633bbac5791461056c57806347afcbfe1461059c57806349bd5a5e146105b257600080fd5b80631a8145bb116103235780632d882159116102fd5780632d88215914610504578063313ce5671461051a578063369dcae814610536578063395093511461054c57600080fd5b80631a8145bb146104b857806323b872dd146104ce57806327c8f835146104ee57600080fd5b8063095ea7b31161035f578063095ea7b3146103f757806310d5de53146104275780631694505e1461045757806318160ddd146104a357600080fd5b806301339c211461039157806306fdde03146103a857806307b5db7f146103d357600080fd5b3661038c57005b600080fd5b34801561039d57600080fd5b506103a6610a97565b005b3480156103b457600080fd5b506103bd610b26565b6040516103ca919061287f565b60405180910390f35b3480156103df57600080fd5b506103e960115481565b6040519081526020016103ca565b34801561040357600080fd5b506104176104123660046128e2565b610bb8565b60405190151581526020016103ca565b34801561043357600080fd5b5061041761044236600461290e565b60226020526000908152604090205460ff1681565b34801561046357600080fd5b5061048b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103ca565b3480156104af57600080fd5b506002546103e9565b3480156104c457600080fd5b506103e9601d5481565b3480156104da57600080fd5b506104176104e936600461292b565b610bcf565b3480156104fa57600080fd5b5061048b61dead81565b34801561051057600080fd5b506103e960195481565b34801561052657600080fd5b50604051601281526020016103ca565b34801561054257600080fd5b506103e9601f5481565b34801561055857600080fd5b506104176105673660046128e2565b610c79565b34801561057857600080fd5b5061041761058736600461290e565b60236020526000908152604090205460ff1681565b3480156105a857600080fd5b506103e9601b5481565b3480156105be57600080fd5b5061048b7f0000000000000000000000009e57c7ae6f779653cbe405677e59d07d4a566f6e81565b3480156105f257600080fd5b50600c546104179060ff1681565b34801561060c57600080fd5b5061041761061b36600461290e565b6001600160a01b031660009081526021602052604090205460ff1690565b34801561064557600080fd5b506103e960125481565b34801561065b57600080fd5b506103e960165481565b34801561067157600080fd5b506103e961068036600461290e565b6001600160a01b031660009081526020819052604090205490565b3480156106a757600080fd5b506103a6610cb5565b3480156106bc57600080fd5b50610417610ceb565b3480156106d157600080fd5b506103a66106e036600461296c565b610d28565b3480156106f157600080fd5b506103e960175481565b34801561070757600080fd5b506005546001600160a01b031661048b565b34801561072557600080fd5b506103a661073436600461290e565b610d7d565b34801561074557600080fd5b506103bd610e04565b34801561075a57600080fd5b506103a661076936600461296c565b610e13565b34801561077a57600080fd5b506104176107893660046128e2565b610ef2565b34801561079a57600080fd5b506104176107a93660046128e2565b610f8b565b3480156107ba57600080fd5b506104176107c936600461290e565b60246020526000908152604090205460ff1681565b3480156107ea57600080fd5b506103a66107f936600461290e565b610f98565b34801561080a57600080fd5b50600c5461041790610100900460ff1681565b34801561082957600080fd5b506103e9600d5481565b34801561083f57600080fd5b506103a661084e36600461296c565b6110c4565b34801561085f57600080fd5b506103e960185481565b34801561087557600080fd5b506103e9600e5481565b34801561088b57600080fd5b506103e960095481565b3480156108a157600080fd5b506103e960155481565b3480156108b757600080fd5b506103a66108c636600461290e565b61114d565b3480156108d757600080fd5b506103e960105481565b3480156108ed57600080fd5b506103e96108fc3660046129aa565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561093357600080fd5b506103e9600a5481565b34801561094957600080fd5b506103e960205481565b34801561095f57600080fd5b506103a661096e36600461290e565b6111d4565b34801561097f57600080fd5b506103a661098e36600461290e565b61125b565b34801561099f57600080fd5b506103e9601e5481565b3480156109b557600080fd5b506103e960135481565b3480156109cb57600080fd5b506103e960145481565b3480156109e157600080fd5b506103a66109f03660046129d8565b6112fe565b348015610a0157600080fd5b506103a6610a103660046129f1565b611396565b348015610a2157600080fd5b506103a6610a3036600461290e565b61140e565b348015610a4157600080fd5b506103e9601a5481565b348015610a5757600080fd5b506103e9600b5481565b348015610a6d57600080fd5b506103e9601c5481565b348015610a8357600080fd5b506103a6610a923660046129f1565b6114a9565b6005546001600160a01b03163314610aca5760405162461bcd60e51b8152600401610ac190612a2c565b60405180910390fd5b600d5415610b0d5760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e481b185d5b98da195960821b6044820152606401610ac1565b43600d5542600e55600c805461ff001916610100179055565b606060038054610b3590612a61565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6190612a61565b8015610bae5780601f10610b8357610100808354040283529160200191610bae565b820191906000526020600020905b815481529060010190602001808311610b9157829003601f168201915b5050505050905090565b6000610bc5338484611521565b5060015b92915050565b6000610bdc848484611645565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c615760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610ac1565b610c6e8533858403611521565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610bc5918590610cb0908690612ab1565b611521565b6005546001600160a01b03163314610cdf5760405162461bcd60e51b8152600401610ac190612a2c565b610ce96000611fb6565b565b6005546000906001600160a01b03163314610d185760405162461bcd60e51b8152600401610ac190612a2c565b50600c805460ff19169055600190565b6005546001600160a01b03163314610d525760405162461bcd60e51b8152600401610ac190612a2c565b6001600160a01b03919091166000908152602260205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610da75760405162461bcd60e51b8152600401610ac190612a2c565b6008546040516001600160a01b03918216918316907f494af6d2dcb65f4d44e0d53d3e2b47c8687913060f346f13cc61fa7985c094e090600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b606060048054610b3590612a61565b6005546001600160a01b03163314610e3d5760405162461bcd60e51b8152600401610ac190612a2c565b7f0000000000000000000000009e57c7ae6f779653cbe405677e59d07d4a566f6e6001600160a01b0316826001600160a01b031603610ee45760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610ac1565b610eee8282612008565b5050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610f745760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610ac1565b610f813385858403611521565b5060019392505050565b6000610bc5338484611645565b6005546001600160a01b03163314610fc25760405162461bcd60e51b8152600401610ac190612a2c565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316816001600160a01b0316036110435760405162461bcd60e51b815260206004820152601860248201527f43616e206e6f7420626c61636b6c69737420726f7574657200000000000000006044820152606401610ac1565b6001600160a01b03811660009081526023602052604090205460ff16156110a05760405162461bcd60e51b8152602060048201526011602482015270109bdd08185b1c9958591e481859191959607a1b6044820152606401610ac1565b6001600160a01b03166000908152602360205260409020805460ff19166001179055565b6005546001600160a01b031633146110ee5760405162461bcd60e51b8152600401610ac190612a2c565b6001600160a01b038216600081815260216020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146111775760405162461bcd60e51b8152600401610ac190612a2c565b6006546040516001600160a01b03918216918316907f2e07246a3520202621c413b6149ba2ae46b1f59b4025be34ec052bb3dc47cb0f90600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146111fe5760405162461bcd60e51b8152600401610ac190612a2c565b6007546040516001600160a01b03918216918316907fa05a0036312fe8892d7a2ff702a8d418bc7a54acb2fac4199811c25b637626a090600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146112855760405162461bcd60e51b8152600401610ac190612a2c565b6001600160a01b03811660009081526023602052604090205460ff166112dd5760405162461bcd60e51b815260206004820152600d60248201526c109bdd081b9bdd08199bdd5b99609a1b6044820152606401610ac1565b6001600160a01b03166000908152602360205260409020805460ff19169055565b6005546001600160a01b031633146113285760405162461bcd60e51b8152600401610ac190612a2c565b804710156113695760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908105b5bdd5b9d60921b6044820152606401610ac1565b604051339082156108fc029083906000818181858888f19350505050158015610eee573d6000803e3d6000fd5b6005546001600160a01b031633146113c05760405162461bcd60e51b8152600401610ac190612a2c565b601185905560128490556013839055601482905560158190558082846113e68789612ab1565b6113f09190612ab1565b6113fa9190612ab1565b6114049190612ab1565b6010555050505050565b6005546001600160a01b031633146114385760405162461bcd60e51b8152600401610ac190612a2c565b6001600160a01b03811661149d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ac1565b6114a681611fb6565b50565b6005546001600160a01b031633146114d35760405162461bcd60e51b8152600401610ac190612a2c565b601785905560188490556019839055601a829055601b8190558082846114f98789612ab1565b6115039190612ab1565b61150d9190612ab1565b6115179190612ab1565b6016555050505050565b6001600160a01b0383166115835760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610ac1565b6001600160a01b0382166115e45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610ac1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661166b5760405162461bcd60e51b8152600401610ac190612ac4565b6001600160a01b0382166116915760405162461bcd60e51b8152600401610ac190612b09565b6001600160a01b03821660009081526023602052604090205460ff16156116e95760405162461bcd60e51b815260206004820152600c60248201526b109bdd0819195d1958dd195960a21b6044820152606401610ac1565b6001600160a01b03831660009081526023602052604090205460ff16156117415760405162461bcd60e51b815260206004820152600c60248201526b109bdd0819195d1958dd195960a21b6044820152606401610ac1565b8060000361175a576117558383600061205c565b505050565b600c5460ff1615611be3576005546001600160a01b0384811691161480159061179157506005546001600160a01b03838116911614155b80156117a557506001600160a01b03821615155b80156117bc57506001600160a01b03821661dead14155b80156117d25750600554600160a01b900460ff16155b15611be357600c54610100900460ff1661186a576001600160a01b03831660009081526021602052604090205460ff168061182557506001600160a01b03821660009081526021602052604090205460ff165b61186a5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610ac1565b600f54600e5461187a9190612ab1565b421080156118ba57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316836001600160a01b031614155b1561197d577f0000000000000000000000009e57c7ae6f779653cbe405677e59d07d4a566f6e6001600160a01b0316836001600160a01b031603611920576001600160a01b0382166000908152602360205260409020805460ff1916600117905561197d565b7f0000000000000000000000009e57c7ae6f779653cbe405677e59d07d4a566f6e6001600160a01b0316826001600160a01b03160361197d576001600160a01b0383166000908152602360205260409020805460ff191660011790555b6001600160a01b03831660009081526024602052604090205460ff1680156119be57506001600160a01b03821660009081526022602052604090205460ff16155b15611aa257600954811115611a335760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610ac1565b600b546001600160a01b038316600090815260208190526040902054611a599083612ab1565b1115611a9d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610ac1565b611be3565b6001600160a01b03821660009081526024602052604090205460ff168015611ae357506001600160a01b03831660009081526022602052604090205460ff16155b15611b5957600954811115611a9d5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610ac1565b6001600160a01b03821660009081526022602052604090205460ff16611be357600b546001600160a01b038316600090815260208190526040902054611b9f9083612ab1565b1115611be35760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610ac1565b30600090815260208190526040902054600a5481108015908190611c115750600554600160a01b900460ff16155b8015611c3657506001600160a01b03851660009081526024602052604090205460ff16155b8015611c5b57506001600160a01b03851660009081526021602052604090205460ff16155b8015611c8057506001600160a01b03841660009081526021602052604090205460ff16155b15611cae576005805460ff60a01b1916600160a01b179055611ca06121b1565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526021602052604090205460ff600160a01b909204821615911680611cfc57506001600160a01b03851660009081526021602052604090205460ff165b15611d05575060005b60008115611fa2576001600160a01b03861660009081526024602052604090205460ff168015611d3757506000601654115b15611e4157611d5c6064611d566016548861246590919063ffffffff16565b90612478565b9050601654601a5482611d6f9190612b4c565b611d799190612b63565b601d6000828254611d8a9190612ab1565b9091555050601654601954611d9f9083612b4c565b611da99190612b63565b601e6000828254611dba9190612ab1565b9091555050601654601754611dcf9083612b4c565b611dd99190612b63565b601c6000828254611dea9190612ab1565b9091555050601654601954611dff9083612b4c565b611e099190612b63565b601f6000828254611e1a9190612ab1565b9091555050601654601b54611e2f9083612b4c565b611e399190612b63565b602055611f6b565b6001600160a01b03871660009081526024602052604090205460ff168015611e6b57506000601054115b15611f6b57611e8a6064611d566010548861246590919063ffffffff16565b905060105460145482611e9d9190612b4c565b611ea79190612b63565b601d6000828254611eb89190612ab1565b9091555050601054601354611ecd9083612b4c565b611ed79190612b63565b601e6000828254611ee89190612ab1565b9091555050601054601154611efd9083612b4c565b611f079190612b63565b601c6000828254611f189190612ab1565b9091555050601054601354611f2d9083612b4c565b611f379190612b63565b601f6000828254611f489190612ab1565b9091555050601054601554611f5d9083612b4c565b611f679190612b63565b6020555b8015611f9557611f7d87602054612484565b611f95873060205484611f909190612b85565b61205c565b611f9f8186612b85565b94505b611fad87878761205c565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260246020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166120825760405162461bcd60e51b8152600401610ac190612ac4565b6001600160a01b0382166120a85760405162461bcd60e51b8152600401610ac190612b09565b6001600160a01b038316600090815260208190526040902054818110156121205760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610ac1565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612157908490612ab1565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516121a391815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601f54601e54601c54601d546121db9190612ab1565b6121e59190612ab1565b6121ef9190612ab1565b905060008215806121fe575081155b1561220857505050565b600a5483111561221857600a5492505b6000600283601d548661222b9190612b4c565b6122359190612b63565b61223f9190612b63565b9050600061224d85836125d2565b905047612259826125de565b600061226547836125d2565b9050600061228287611d56601c548561246590919063ffffffff16565b9050600061229f88611d56601e548661246590919063ffffffff16565b905060006122bc89611d56601f548761246590919063ffffffff16565b9050600081836122cc8688612b85565b6122d69190612b85565b6122e09190612b85565b6000601d819055601c819055601e819055601f8190556007546040519293506001600160a01b031691859181818185875af1925050503d8060008114612342576040519150601f19603f3d011682016040523d82523d6000602084013e612347565b606091505b5090995050871580159061235b5750600081115b156123ae5761236a888261279e565b601d54604080518981526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116908590600081818185875af1925050503d80600081146123fb576040519150601f19603f3d011682016040523d82523d6000602084013e612400565b606091505b5050600854604051919a506001600160a01b0316904790600081818185875af1925050503d8060008114612450576040519150601f19603f3d011682016040523d82523d6000602084013e612455565b606091505b5050505050505050505050505050565b60006124718284612b4c565b9392505050565b60006124718284612b63565b6001600160a01b0382166124e45760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610ac1565b6001600160a01b038216600090815260208190526040902054818110156125585760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610ac1565b6001600160a01b0383166000908152602081905260408120838303905560028054849290612587908490612b85565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b60006124718284612b85565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061261357612613612b98565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612691573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126b59190612bae565b816001815181106126c8576126c8612b98565b60200260200101906001600160a01b031690816001600160a01b031681525050612713307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611521565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612768908590600090869030904290600401612bcb565b600060405180830381600087803b15801561278257600080fd5b505af1158015612796573d6000803e3d6000fd5b505050505050565b6127c9307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611521565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612853573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906128789190612c3c565b5050505050565b600060208083528351808285015260005b818110156128ac57858101830151858201604001528201612890565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146114a657600080fd5b600080604083850312156128f557600080fd5b8235612900816128cd565b946020939093013593505050565b60006020828403121561292057600080fd5b8135612471816128cd565b60008060006060848603121561294057600080fd5b833561294b816128cd565b9250602084013561295b816128cd565b929592945050506040919091013590565b6000806040838503121561297f57600080fd5b823561298a816128cd565b91506020830135801515811461299f57600080fd5b809150509250929050565b600080604083850312156129bd57600080fd5b82356129c8816128cd565b9150602083013561299f816128cd565b6000602082840312156129ea57600080fd5b5035919050565b600080600080600060a08688031215612a0957600080fd5b505083359560208501359550604085013594606081013594506080013592509050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612a7557607f821691505b602082108103612a9557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610bc957610bc9612a9b565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8082028115828204841417610bc957610bc9612a9b565b600082612b8057634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115610bc957610bc9612a9b565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612bc057600080fd5b8151612471816128cd565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612c1b5784516001600160a01b031683529383019391830191600101612bf6565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612c5157600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220cf4149d879d5258ee1becf716a5e1dba2dffa6fbdb10fa0dddf37e339293d20d64736f6c63430008110033

Deployed Bytecode Sourcemap

15782:18782:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23810:213;;;;;;;;;;;;;:::i;:::-;;2914:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16661:26;;;;;;;;;;;;;;;;;;;713:25:1;;;701:2;686:18;16661:26:0;567:177:1;3969:210:0;;;;;;;;;;-1:-1:-1;3969:210:0;;;;;:::i;:::-;;:::i;:::-;;;1370:14:1;;1363:22;1345:41;;1333:2;1318:18;3969:210:0;1205:187:1;17305:63:0;;;;;;;;;;-1:-1:-1;17305:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;16030:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1840:32:1;;;1822:51;;1810:2;1795:18;16030:51:0;1649:230:1;3235:108:0;;;;;;;;;;-1:-1:-1;3323:12:0;;3235:108;;17101:33;;;;;;;;;;;;;;;;4187:529;;;;;;;;;;-1:-1:-1;4187:529:0;;;;;:::i;:::-;;:::i;16133:53::-;;;;;;;;;;;;16179:6;16133:53;;16950:27;;;;;;;;;;;;;;;;3134:93;;;;;;;;;;-1:-1:-1;3134:93:0;;3217:2;2695:36:1;;2683:2;2668:18;3134:93:0;2553:184:1;17173:25:0;;;;;;;;;;;;;;;;4724:297;;;;;;;;;;-1:-1:-1;4724:297:0;;;;;:::i;:::-;;:::i;17375:37::-;;;;;;;;;;-1:-1:-1;17375:37:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;17026:34;;;;;;;;;;;;;;;;16088:38;;;;;;;;;;;;;;;16432:33;;;;;;;;;;-1:-1:-1;16432:33:0;;;;;;;;26548:126;;;;;;;;;;-1:-1:-1;26548:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;26638:28:0;26614:4;26638:28;;;:19;:28;;;;;;;;;26548:126;16694:26;;;;;;;;;;;;;;;;16843:32;;;;;;;;;;;;;;;;3351:177;;;;;;;;;;-1:-1:-1;3351:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;3502:18:0;3470:7;3502:18;;;;;;;;;;;;3351:177;920:103;;;;;;;;;;;;;:::i;24031:121::-;;;;;;;;;;;;;:::i;24160:167::-;;;;;;;;;;-1:-1:-1;24160:167:0;;;;;:::i;:::-;;:::i;16882:27::-;;;;;;;;;;;;;;;;697:87;;;;;;;;;;-1:-1:-1;770:6:0;;-1:-1:-1;;;;;770:6:0;697:87;;26391:149;;;;;;;;;;-1:-1:-1;26391:149:0;;;;;:::i;:::-;;:::i;3022:104::-;;;;;;;;;;;;;:::i;25563:304::-;;;;;;;;;;-1:-1:-1;25563:304:0;;;;;:::i;:::-;;:::i;5029:482::-;;;;;;;;;;-1:-1:-1;5029:482:0;;;;;:::i;:::-;;:::i;3536:216::-;;;;;;;;;;-1:-1:-1;3536:216:0;;;;;:::i;:::-;;:::i;17421:57::-;;;;;;;;;;-1:-1:-1;17421:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;26682:278;;;;;;;;;;-1:-1:-1;26682:278:0;;;;;:::i;:::-;;:::i;16472:33::-;;;;;;;;;;-1:-1:-1;16472:33:0;;;;;;;;;;;16514:25;;;;;;;;;;;;;;;;25373:182;;;;;;;;;;-1:-1:-1;25373:182:0;;;;;:::i;:::-;;:::i;16916:27::-;;;;;;;;;;;;;;;;16546:34;;;;;;;;;;;;;;;;16317:35;;;;;;;;;;;;;;;;16801:33;;;;;;;;;;;;;;;;26071:152;;;;;;;;;;-1:-1:-1;26071:152:0;;;;;:::i;:::-;;:::i;16623:31::-;;;;;;;;;;;;;;;;3760:201;;;;;;;;;;-1:-1:-1;3760:201:0;;;;;:::i;:::-;-1:-1:-1;;;;;3926:18:0;;;3894:7;3926:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3760:201;16359:33;;;;;;;;;;;;;;;;17205:32;;;;;;;;;;;;;;;;26231:152;;;;;;;;;;-1:-1:-1;26231:152:0;;;;;:::i;:::-;;:::i;26968:158::-;;;;;;;;;;-1:-1:-1;26968:158:0;;;;;:::i;:::-;;:::i;17141:25::-;;;;;;;;;;;;;;;;16727:26;;;;;;;;;;;;;;;;16760:34;;;;;;;;;;;;;;;;34378:183;;;;;;;;;;-1:-1:-1;34378:183:0;;;;;:::i;:::-;;:::i;24335:505::-;;;;;;;;;;-1:-1:-1;24335:505:0;;;;;:::i;:::-;;:::i;1031:238::-;;;;;;;;;;-1:-1:-1;1031:238:0;;;;;:::i;:::-;;:::i;16984:35::-;;;;;;;;;;;;;;;;16399:24;;;;;;;;;;;;;;;;17069:25;;;;;;;;;;;;;;;;24848:517;;;;;;;;;;-1:-1:-1;24848:517:0;;;;;:::i;:::-;;:::i;23810:213::-;770:6;;-1:-1:-1;;;;;770:6:0;307:10;832:23;824:68;;;;-1:-1:-1;;;824:68:0;;;;;;;:::i;:::-;;;;;;;;;23864:10:::1;::::0;:15;23856:44:::1;;;::::0;-1:-1:-1;;;23856:44:0;;4763:2:1;23856:44:0::1;::::0;::::1;4745:21:1::0;4802:2;4782:18;;;4775:30;-1:-1:-1;;;4821:18:1;;;4814:46;4877:18;;23856:44:0::1;4561:340:1::0;23856:44:0::1;23924:12;23911:10;:25:::0;23969:15:::1;23947:19;:37:::0;23995:13:::1;:20:::0;;-1:-1:-1;;23995:20:0::1;;;::::0;;23810:213::o;2914:100::-;2968:13;3001:5;2994:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2914:100;:::o;3969:210::-;4088:4;4110:39;307:10;4133:7;4142:6;4110:8;:39::i;:::-;-1:-1:-1;4167:4:0;3969:210;;;;;:::o;4187:529::-;4327:4;4344:36;4354:6;4362:9;4373:6;4344:9;:36::i;:::-;-1:-1:-1;;;;;4420:19:0;;4393:24;4420:19;;;:11;:19;;;;;;;;307:10;4420:33;;;;;;;;4486:26;;;;4464:116;;;;-1:-1:-1;;;4464:116:0;;5493:2:1;4464:116:0;;;5475:21:1;5532:2;5512:18;;;5505:30;5571:34;5551:18;;;5544:62;-1:-1:-1;;;5622:18:1;;;5615:38;5670:19;;4464:116:0;5291:404:1;4464:116:0;4616:57;4625:6;307:10;4666:6;4647:16;:25;4616:8;:57::i;:::-;-1:-1:-1;4704:4:0;;4187:529;-1:-1:-1;;;;4187:529:0:o;4724:297::-;307:10;4839:4;4933:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;4933:34:0;;;;;;;;;;4839:4;;4861:130;;4911:7;;4933:47;;4970:10;;4933:47;:::i;:::-;4861:8;:130::i;920:103::-;770:6;;-1:-1:-1;;;;;770:6:0;307:10;832:23;824:68;;;;-1:-1:-1;;;824:68:0;;;;;;;:::i;:::-;985:30:::1;1012:1;985:18;:30::i;:::-;920:103::o:0;24031:121::-;770:6;;24083:4;;-1:-1:-1;;;;;770:6:0;307:10;832:23;824:68;;;;-1:-1:-1;;;824:68:0;;;;;;;:::i;:::-;-1:-1:-1;24100:14:0::1;:22:::0;;-1:-1:-1;;24100:22:0::1;::::0;;;24031:121;:::o;24160:167::-;770:6;;-1:-1:-1;;;;;770:6:0;307:10;832:23;824:68;;;;-1:-1:-1;;;824:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24273:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;24273:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;24160:167::o;26391:149::-;770:6;;-1:-1:-1;;;;;770:6:0;307:10;832:23;824:68;;;;-1:-1:-1;;;824:68:0;;;;;;;:::i;:::-;26494:7:::1;::::0;26468:34:::1;::::0;-1:-1:-1;;;;;26494:7:0;;::::1;::::0;26468:34;::::1;::::0;::::1;::::0;26494:7:::1;::::0;26468:34:::1;26513:7;:19:::0;;-1:-1:-1;;;;;;26513:19:0::1;-1:-1:-1::0;;;;;26513:19:0;;;::::1;::::0;;;::::1;::::0;;26391:149::o;3022:104::-;3078:13;3111:7;3104:14;;;;;:::i;25563:304::-;770:6;;-1:-1:-1;;;;;770:6:0;307:10;832:23;824:68;;;;-1:-1:-1;;;824:68:0;;;;;;;:::i;:::-;25707:13:::1;-1:-1:-1::0;;;;;25699:21:0::1;:4;-1:-1:-1::0;;;;;25699:21:0::1;::::0;25677:128:::1;;;::::0;-1:-1:-1;;;25677:128:0;;6164:2:1;25677:128:0::1;::::0;::::1;6146:21:1::0;6203:2;6183:18;;;6176:30;6242:34;6222:18;;;6215:62;6313:27;6293:18;;;6286:55;6358:19;;25677:128:0::1;5962:421:1::0;25677:128:0::1;25818:41;25847:4;25853:5;25818:28;:41::i;:::-;25563:304:::0;;:::o;5029:482::-;307:10;5149:4;5198:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5198:34:0;;;;;;;;;;5265:35;;;;5243:122;;;;-1:-1:-1;;;5243:122:0;;6590:2:1;5243:122:0;;;6572:21:1;6629:2;6609:18;;;6602:30;6668:34;6648:18;;;6641:62;-1:-1:-1;;;6719:18:1;;;6712:35;6764:19;;5243:122:0;6388:401:1;5243:122:0;5401:67;307:10;5424:7;5452:15;5433:16;:34;5401:8;:67::i;:::-;-1:-1:-1;5499:4:0;;5029:482;-1:-1:-1;;;5029:482:0:o;3536:216::-;3658:4;3680:42;307:10;3704:9;3715:6;3680:9;:42::i;26682:278::-;770:6;;-1:-1:-1;;;;;770:6:0;307:10;832:23;824:68;;;;-1:-1:-1;;;824:68:0;;;;;;;:::i;:::-;26794:15:::1;-1:-1:-1::0;;;;;26774:36:0::1;:8;-1:-1:-1::0;;;;;26774:36:0::1;::::0;26752:110:::1;;;::::0;-1:-1:-1;;;26752:110:0;;6996:2:1;26752:110:0::1;::::0;::::1;6978:21:1::0;7035:2;7015:18;;;7008:30;7074:26;7054:18;;;7047:54;7118:18;;26752:110:0::1;6794:348:1::0;26752:110:0::1;-1:-1:-1::0;;;;;26882:15:0;::::1;;::::0;;;:5:::1;:15;::::0;;;;;::::1;;26881:16;26873:46;;;::::0;-1:-1:-1;;;26873:46:0;;7349:2:1;26873:46:0::1;::::0;::::1;7331:21:1::0;7388:2;7368:18;;;7361:30;-1:-1:-1;;;7407:18:1;;;7400:47;7464:18;;26873:46:0::1;7147:341:1::0;26873:46:0::1;-1:-1:-1::0;;;;;26930:15:0::1;;::::0;;;:5:::1;:15;::::0;;;;:22;;-1:-1:-1;;26930:22:0::1;26948:4;26930:22;::::0;;26682:278::o;25373:182::-;770:6;;-1:-1:-1;;;;;770:6:0;307:10;832:23;824:68;;;;-1:-1:-1;;;824:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25458:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;25458:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;25513:34;;1345:41:1;;;25513:34:0::1;::::0;1318:18:1;25513:34:0::1;;;;;;;25373:182:::0;;:::o;26071:152::-;770:6;;-1:-1:-1;;;;;770:6:0;307:10;832:23;824:68;;;;-1:-1:-1;;;824:68:0;;;;;;;:::i;:::-;26176:7:::1;::::0;26149:35:::1;::::0;-1:-1:-1;;;;;26176:7:0;;::::1;::::0;26149:35;::::1;::::0;::::1;::::0;26176:7:::1;::::0;26149:35:::1;26195:7;:20:::0;;-1:-1:-1;;;;;;26195:20:0::1;-1:-1:-1::0;;;;;26195:20:0;;;::::1;::::0;;;::::1;::::0;;26071:152::o;26231:::-;770:6;;-1:-1:-1;;;;;770:6:0;307:10;832:23;824:68;;;;-1:-1:-1;;;824:68:0;;;;;;;:::i;:::-;26336:7:::1;::::0;26309:35:::1;::::0;-1:-1:-1;;;;;26336:7:0;;::::1;::::0;26309:35;::::1;::::0;::::1;::::0;26336:7:::1;::::0;26309:35:::1;26355:7;:20:::0;;-1:-1:-1;;;;;;26355:20:0::1;-1:-1:-1::0;;;;;26355:20:0;;;::::1;::::0;;;::::1;::::0;;26231:152::o;26968:158::-;770:6;;-1:-1:-1;;;;;770:6:0;307:10;832:23;824:68;;;;-1:-1:-1;;;824:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27051:15:0;::::1;;::::0;;;:5:::1;:15;::::0;;;;;::::1;;27043:41;;;::::0;-1:-1:-1;;;27043:41:0;;7695:2:1;27043:41:0::1;::::0;::::1;7677:21:1::0;7734:2;7714:18;;;7707:30;-1:-1:-1;;;7753:18:1;;;7746:43;7806:18;;27043:41:0::1;7493:337:1::0;27043:41:0::1;-1:-1:-1::0;;;;;27095:15:0::1;27113:5;27095:15:::0;;;:5:::1;:15;::::0;;;;:23;;-1:-1:-1;;27095:23:0::1;::::0;;26968:158::o;34378:183::-;770:6;;-1:-1:-1;;;;;770:6:0;307:10;832:23;824:68;;;;-1:-1:-1;;;824:68:0;;;;;;;:::i;:::-;34479:7:::1;34454:21;:32;;34446:59;;;::::0;-1:-1:-1;;;34446:59:0;;8037:2:1;34446:59:0::1;::::0;::::1;8019:21:1::0;8076:2;8056:18;;;8049:30;-1:-1:-1;;;8095:18:1;;;8088:44;8149:18;;34446:59:0::1;7835:338:1::0;34446:59:0::1;34516:37;::::0;34524:10:::1;::::0;34516:37;::::1;;;::::0;34545:7;;34516:37:::1;::::0;;;34545:7;34524:10;34516:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;24335:505:::0;770:6;;-1:-1:-1;;;;;770:6:0;307:10;832:23;824:68;;;;-1:-1:-1;;;824:68:0;;;;;;;:::i;:::-;24530:7:::1;:15:::0;;;24556:7:::1;:15:::0;;;24582:7:::1;:15:::0;;;24608::::1;:31:::0;;;24650:14:::1;:29:::0;;;24667:12;24626:13;24592:5;24718:30:::1;24566:5:::0;24540;24718:30:::1;:::i;:::-;:53;;;;:::i;:::-;:84;;;;:::i;:::-;:114;;;;:::i;:::-;24690:12;:142:::0;-1:-1:-1;;;;;24335:505:0:o;1031:238::-;770:6;;-1:-1:-1;;;;;770:6:0;307:10;832:23;824:68;;;;-1:-1:-1;;;824:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;1134:22:0;::::1;1112:110;;;::::0;-1:-1:-1;;;1112:110:0;;8380:2:1;1112:110:0::1;::::0;::::1;8362:21:1::0;8419:2;8399:18;;;8392:30;8458:34;8438:18;;;8431:62;-1:-1:-1;;;8509:18:1;;;8502:36;8555:19;;1112:110:0::1;8178:402:1::0;1112:110:0::1;1233:28;1252:8;1233:18;:28::i;:::-;1031:238:::0;:::o;24848:517::-;770:6;;-1:-1:-1;;;;;770:6:0;307:10;832:23;824:68;;;;-1:-1:-1;;;824:68:0;;;;;;;:::i;:::-;25044:8:::1;:16:::0;;;25071:8:::1;:16:::0;;;25098:8:::1;:16:::0;;;25125::::1;:32:::0;;;25168:15:::1;:30:::0;;;25186:12;25144:13;25109:5;25238:32:::1;25082:5:::0;25055;25238:32:::1;:::i;:::-;:56;;;;:::i;:::-;:88;;;;:::i;:::-;:119;;;;:::i;:::-;25209:13;:148:::0;-1:-1:-1;;;;;24848:517:0:o;7303:380::-;-1:-1:-1;;;;;7439:19:0;;7431:68;;;;-1:-1:-1;;;7431:68:0;;8787:2:1;7431:68:0;;;8769:21:1;8826:2;8806:18;;;8799:30;8865:34;8845:18;;;8838:62;-1:-1:-1;;;8916:18:1;;;8909:34;8960:19;;7431:68:0;8585:400:1;7431:68:0;-1:-1:-1;;;;;7518:21:0;;7510:68;;;;-1:-1:-1;;;7510:68:0;;9192:2:1;7510:68:0;;;9174:21:1;9231:2;9211:18;;;9204:30;9270:34;9250:18;;;9243:62;-1:-1:-1;;;9321:18:1;;;9314:32;9363:19;;7510:68:0;8990:398:1;7510:68:0;-1:-1:-1;;;;;7591:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;7643:32;;713:25:1;;;7643:32:0;;686:18:1;7643:32:0;;;;;;;7303:380;;;:::o;27134:4444::-;-1:-1:-1;;;;;27266:18:0;;27258:68;;;;-1:-1:-1;;;27258:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27345:16:0;;27337:64;;;;-1:-1:-1;;;27337:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27421:9:0;;;;;;:5;:9;;;;;;;;27420:10;27412:35;;;;-1:-1:-1;;;27412:35:0;;10405:2:1;27412:35:0;;;10387:21:1;10444:2;10424:18;;;10417:30;-1:-1:-1;;;10463:18:1;;;10456:42;10515:18;;27412:35:0;10203:336:1;27412:35:0;-1:-1:-1;;;;;27467:11:0;;;;;;:5;:11;;;;;;;;27466:12;27458:37;;;;-1:-1:-1;;;27458:37:0;;10405:2:1;27458:37:0;;;10387:21:1;10444:2;10424:18;;;10417:30;-1:-1:-1;;;10463:18:1;;;10456:42;10515:18;;27458:37:0;10203:336:1;27458:37:0;27512:6;27522:1;27512:11;27508:93;;27540:28;27556:4;27562:2;27566:1;27540:15;:28::i;:::-;27134:4444;;;:::o;27508:93::-;27617:14;;;;27613:2039;;;770:6;;-1:-1:-1;;;;;27670:15:0;;;770:6;;27670:15;;;;:49;;-1:-1:-1;770:6:0;;-1:-1:-1;;;;;27706:13:0;;;770:6;;27706:13;;27670:49;:86;;;;-1:-1:-1;;;;;;27740:16:0;;;;27670:86;:128;;;;-1:-1:-1;;;;;;27777:21:0;;27791:6;27777:21;;27670:128;:158;;;;-1:-1:-1;27820:8:0;;-1:-1:-1;;;27820:8:0;;;;27819:9;27670:158;27648:1993;;;27868:13;;;;;;;27863:223;;-1:-1:-1;;;;;27940:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;27969:23:0;;;;;;:19;:23;;;;;;;;27940:52;27906:160;;;;-1:-1:-1;;;27906:160:0;;10746:2:1;27906:160:0;;;10728:21:1;10785:2;10765:18;;;10758:30;-1:-1:-1;;;10804:18:1;;;10797:52;10866:18;;27906:160:0;10544:346:1;27906:160:0;28170:7;;28148:19;;:29;;;;:::i;:::-;28130:15;:47;:104;;;;;28218:15;-1:-1:-1;;;;;28202:32:0;:4;-1:-1:-1;;;;;28202:32:0;;;28130:104;28104:386;;;28289:13;-1:-1:-1;;;;;28281:21:0;:4;-1:-1:-1;;;;;28281:21:0;;28277:194;;-1:-1:-1;;;;;28331:9:0;;;;;;:5;:9;;;;;:16;;-1:-1:-1;;28331:16:0;28343:4;28331:16;;;28277:194;;;28387:13;-1:-1:-1;;;;;28381:19:0;:2;-1:-1:-1;;;;;28381:19:0;;28377:94;;-1:-1:-1;;;;;28429:11:0;;;;;;:5;:11;;;;;:18;;-1:-1:-1;;28429:18:0;28443:4;28429:18;;;28377:94;-1:-1:-1;;;;;28534:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;28591:35:0;;;;;;:31;:35;;;;;;;;28590:36;28534:92;28508:1118;;;28713:20;;28703:6;:30;;28669:169;;;;-1:-1:-1;;;28669:169:0;;11097:2:1;28669:169:0;;;11079:21:1;11136:2;11116:18;;;11109:30;11175:34;11155:18;;;11148:62;-1:-1:-1;;;11226:18:1;;;11219:51;11287:19;;28669:169:0;10895:417:1;28669:169:0;28921:9;;-1:-1:-1;;;;;3502:18:0;;3470:7;3502:18;;;;;;;;;;;28895:22;;:6;:22;:::i;:::-;:35;;28861:140;;;;-1:-1:-1;;;28861:140:0;;11519:2:1;28861:140:0;;;11501:21:1;11558:2;11538:18;;;11531:30;-1:-1:-1;;;11577:18:1;;;11570:49;11636:18;;28861:140:0;11317:343:1;28861:140:0;28508:1118;;;-1:-1:-1;;;;;29070:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;29125:37:0;;;;;;:31;:37;;;;;;;;29124:38;29070:92;29044:582;;;29249:20;;29239:6;:30;;29205:170;;;;-1:-1:-1;;;29205:170:0;;11867:2:1;29205:170:0;;;11849:21:1;11906:2;11886:18;;;11879:30;11945:34;11925:18;;;11918:62;-1:-1:-1;;;11996:18:1;;;11989:52;12058:19;;29205:170:0;11665:418:1;29044:582:0;-1:-1:-1;;;;;29406:35:0;;;;;;:31;:35;;;;;;;;29401:225;;29526:9;;-1:-1:-1;;;;;3502:18:0;;3470:7;3502:18;;;;;;;;;;;29500:22;;:6;:22;:::i;:::-;:35;;29466:140;;;;-1:-1:-1;;;29466:140:0;;11519:2:1;29466:140:0;;;11501:21:1;11558:2;11538:18;;;11531:30;-1:-1:-1;;;11577:18:1;;;11570:49;11636:18;;29466:140:0;11317:343:1;29466:140:0;29713:4;29664:28;3502:18;;;;;;;;;;;29771;;29747:42;;;;;;;29820:33;;-1:-1:-1;29845:8:0;;-1:-1:-1;;;29845:8:0;;;;29844:9;29820:33;:82;;;;-1:-1:-1;;;;;;29871:31:0;;;;;;:25;:31;;;;;;;;29870:32;29820:82;:125;;;;-1:-1:-1;;;;;;29920:25:0;;;;;;:19;:25;;;;;;;;29919:26;29820:125;:166;;;;-1:-1:-1;;;;;;29963:23:0;;;;;;:19;:23;;;;;;;;29962:24;29820:166;29802:298;;;30013:8;:15;;-1:-1:-1;;;;30013:15:0;-1:-1:-1;;;30013:15:0;;;30045:10;:8;:10::i;:::-;30072:8;:16;;-1:-1:-1;;;;30072:16:0;;;29802:298;30128:8;;-1:-1:-1;;;;;30153:25:0;;30112:12;30153:25;;;:19;:25;;;;;;30128:8;-1:-1:-1;;;30128:8:0;;;;;30127:9;;30153:25;;:52;;-1:-1:-1;;;;;;30182:23:0;;;;;;:19;:23;;;;;;;;30153:52;30149:100;;;-1:-1:-1;30232:5:0;30149:100;30261:12;30292:7;30288:1237;;;-1:-1:-1;;;;;30320:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;30369:1;30353:13;;:17;30320:50;30316:991;;;30398:34;30428:3;30398:25;30409:13;;30398:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;30391:41;;30501:13;;30481:16;;30474:4;:23;;;;:::i;:::-;30473:41;;;;:::i;:::-;30451:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;30567:13:0;;30555:8;;30548:15;;:4;:15;:::i;:::-;30547:33;;;;:::i;:::-;30533:10;;:47;;;;;;;:::i;:::-;;;;-1:-1:-1;;30633:13:0;;30621:8;;30614:15;;:4;:15;:::i;:::-;30613:33;;;;:::i;:::-;30599:10;;:47;;;;;;;:::i;:::-;;;;-1:-1:-1;;30699:13:0;;30687:8;;30680:15;;:4;:15;:::i;:::-;30679:33;;;;:::i;:::-;30665:10;;:47;;;;;;;:::i;:::-;;;;-1:-1:-1;;30778:13:0;;30759:15;;30752:22;;:4;:22;:::i;:::-;30751:40;;;;:::i;:::-;30731:17;:60;30316:991;;;-1:-1:-1;;;;;30830:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;30880:1;30865:12;;:16;30830:51;30826:481;;;30909:33;30938:3;30909:24;30920:12;;30909:6;:10;;:24;;;;:::i;:33::-;30902:40;;31010:12;;30991:15;;30984:4;:22;;;;:::i;:::-;30983:39;;;;:::i;:::-;30961:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;31074:12:0;;31063:7;;31056:14;;:4;:14;:::i;:::-;31055:31;;;;:::i;:::-;31041:10;;:45;;;;;;;:::i;:::-;;;;-1:-1:-1;;31138:12:0;;31127:7;;31120:14;;:4;:14;:::i;:::-;31119:31;;;;:::i;:::-;31105:10;;:45;;;;;;;:::i;:::-;;;;-1:-1:-1;;31202:12:0;;31191:7;;31184:14;;:4;:14;:::i;:::-;31183:31;;;;:::i;:::-;31169:10;;:45;;;;;;;:::i;:::-;;;;-1:-1:-1;;31279:12:0;;31261:14;;31254:21;;:4;:21;:::i;:::-;31253:38;;;;:::i;:::-;31233:17;:58;30826:481;31327:8;;31323:160;;31356:30;31362:4;31368:17;;31356:5;:30::i;:::-;31405:62;31421:4;31435;31449:17;;31442:4;:24;;;;:::i;:::-;31405:15;:62::i;:::-;31499:14;31509:4;31499:14;;:::i;:::-;;;30288:1237;31537:33;31553:4;31559:2;31563:6;31537:15;:33::i;:::-;27247:4331;;;;27134:4444;;;:::o;1277:191::-;1370:6;;;-1:-1:-1;;;;;1387:17:0;;;-1:-1:-1;;;;;;1387:17:0;;;;;;;1420:40;;1370:6;;;1387:17;1370:6;;1420:40;;1351:16;;1420:40;1340:128;1277:191;:::o;25875:188::-;-1:-1:-1;;;;;25958:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;25958:39:0;;;;;;;;;;26015:40;;25958:39;;:31;26015:40;;;25875:188;;:::o;5519:770::-;-1:-1:-1;;;;;5659:20:0;;5651:70;;;;-1:-1:-1;;;5651:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5740:23:0;;5732:71;;;;-1:-1:-1;;;5732:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5900:17:0;;5876:21;5900:17;;;;;;;;;;;5950:23;;;;5928:111;;;;-1:-1:-1;;;5928:111:0;;12818:2:1;5928:111:0;;;12800:21:1;12857:2;12837:18;;;12830:30;12896:34;12876:18;;;12869:62;-1:-1:-1;;;12947:18:1;;;12940:36;12993:19;;5928:111:0;12616:402:1;5928:111:0;-1:-1:-1;;;;;6075:17:0;;;:9;:17;;;;;;;;;;;6095:22;;;6075:42;;6139:20;;;;;;;;:30;;6111:6;;6075:9;6139:30;;6111:6;;6139:30;:::i;:::-;;;;;;;;6204:9;-1:-1:-1;;;;;6187:35:0;6196:6;-1:-1:-1;;;;;6187:35:0;;6215:6;6187:35;;;;713:25:1;;701:2;686:18;;567:177;6187:35:0;;;;;;;;5640:649;5519:770;;;:::o;32445:1925::-;32528:4;32484:23;3502:18;;;;;;;;;;;32484:50;;32545:25;32659:10;;32633;;32607;;32573:18;;:44;;;;:::i;:::-;:70;;;;:::i;:::-;:96;;;;:::i;:::-;32545:124;-1:-1:-1;32680:12:0;32709:20;;;:46;;-1:-1:-1;32733:22:0;;32709:46;32705:85;;;32772:7;;;32445:1925::o;32705:85::-;32824:18;;32806:15;:36;32802:105;;;32877:18;;32859:36;;32802:105;32919:23;33032:1;32999:17;32964:18;;32946:15;:36;;;;:::i;:::-;32945:71;;;;:::i;:::-;:88;;;;:::i;:::-;32919:114;-1:-1:-1;33044:26:0;33073:36;:15;32919:114;33073:19;:36::i;:::-;33044:65;-1:-1:-1;33150:21:0;33184:36;33044:65;33184:16;:36::i;:::-;33233:18;33254:44;:21;33280:17;33254:25;:44::i;:::-;33233:65;;33311:15;33329:73;33374:17;33329:26;33344:10;;33329;:14;;:26;;;;:::i;:73::-;33311:91;;33413:15;33431:73;33476:17;33431:26;33446:10;;33431;:14;;:26;;;;:::i;:73::-;33413:91;;33515:15;33533:73;33578:17;33533:26;33548:10;;33533;:14;;:26;;;;:::i;:73::-;33515:91;-1:-1:-1;33617:23:0;33515:91;33692:7;33643:33;33669:7;33643:10;:33;:::i;:::-;:56;;;;:::i;:::-;:79;;;;:::i;:::-;33756:1;33735:18;:22;;;33768:10;:14;;;33793:10;:14;;;33818:10;:14;;;33867:7;;33859:41;;33617:105;;-1:-1:-1;;;;;;33867:7:0;;33888;;33859:41;33756:1;33859:41;33888:7;33867;33859:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33845:55:0;;-1:-1:-1;;33917:19:0;;;;;:42;;;33958:1;33940:15;:19;33917:42;33913:278;;;33976:46;33989:15;34006;33976:12;:46::i;:::-;34146:18;;34042:137;;;13435:25:1;;;13491:2;13476:18;;13469:34;;;13519:18;;;13512:34;;;;34042:137:0;;;;;;13423:2:1;34042:137:0;;;33913:278;34225:7;;34217:41;;-1:-1:-1;;;;;34225:7:0;;;;34246;;34217:41;;;;34246:7;34225;34217:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;34291:7:0;;34283:79;;34203:55;;-1:-1:-1;;;;;;34291:7:0;;34326:21;;34283:79;;;;34326:21;34291:7;34283:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;32445:1925:0:o;9467:98::-;9525:7;9552:5;9556:1;9552;:5;:::i;:::-;9545:12;9467:98;-1:-1:-1;;;9467:98:0:o;9573:::-;9631:7;9658:5;9662:1;9658;:5;:::i;6704:591::-;-1:-1:-1;;;;;6788:21:0;;6780:67;;;;-1:-1:-1;;;6780:67:0;;13759:2:1;6780:67:0;;;13741:21:1;13798:2;13778:18;;;13771:30;13837:34;13817:18;;;13810:62;-1:-1:-1;;;13888:18:1;;;13881:31;13929:19;;6780:67:0;13557:397:1;6780:67:0;-1:-1:-1;;;;;6947:18:0;;6922:22;6947:18;;;;;;;;;;;6984:24;;;;6976:71;;;;-1:-1:-1;;;6976:71:0;;14161:2:1;6976:71:0;;;14143:21:1;14200:2;14180:18;;;14173:30;14239:34;14219:18;;;14212:62;-1:-1:-1;;;14290:18:1;;;14283:32;14332:19;;6976:71:0;13959:398:1;6976:71:0;-1:-1:-1;;;;;7083:18:0;;:9;:18;;;;;;;;;;7104:23;;;7083:44;;7149:12;:22;;7121:6;;7083:9;7149:22;;7121:6;;7149:22;:::i;:::-;;;;-1:-1:-1;;7189:37:0;;713:25:1;;;7215:1:0;;-1:-1:-1;;;;;7189:37:0;;;;;701:2:1;686:18;7189:37:0;;;;;;;27134:4444;;;:::o;9361:98::-;9419:7;9446:5;9450:1;9446;:5;:::i;31586:475::-;31676:16;;;31690:1;31676:16;;;;;;;;31652:21;;31676:16;;;;;;;;;;-1:-1:-1;31676:16:0;31652:40;;31721:4;31703;31708:1;31703:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;31703:23:0;;;-1:-1:-1;;;;;31703:23:0;;;;;31747:15;-1:-1:-1;;;;;31747:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31737:4;31742:1;31737:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;31737:32:0;;;-1:-1:-1;;;;;31737:32:0;;;;;31782:62;31799:4;31814:15;31832:11;31782:8;:62::i;:::-;31857:196;;-1:-1:-1;;;31857:196:0;;-1:-1:-1;;;;;31857:15:0;:66;;;;:196;;31938:11;;31964:1;;31980:4;;32007;;32027:15;;31857:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31641:420;31586:475;:::o;32069:368::-;32150:62;32167:4;32182:15;32200:11;32150:8;:62::i;:::-;32225:204;;-1:-1:-1;;;32225:204:0;;32297:4;32225:204;;;16208:34:1;16258:18;;;16251:34;;;32343:1:0;16301:18:1;;;16294:34;;;16344:18;;;16337:34;16179:6:0;16387:19:1;;;16380:44;32403:15:0;16440:19:1;;;16433:35;32225:15:0;-1:-1:-1;;;;;32225:31:0;;;;32264:9;;16142:19:1;;32225:204:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;32069:368;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;749:131::-;-1:-1:-1;;;;;824:31:1;;814:42;;804:70;;870:1;867;860:12;885:315;953:6;961;1014:2;1002:9;993:7;989:23;985:32;982:52;;;1030:1;1027;1020:12;982:52;1069:9;1056:23;1088:31;1113:5;1088:31;:::i;:::-;1138:5;1190:2;1175:18;;;;1162:32;;-1:-1:-1;;;885:315:1:o;1397:247::-;1456:6;1509:2;1497:9;1488:7;1484:23;1480:32;1477:52;;;1525:1;1522;1515:12;1477:52;1564:9;1551:23;1583:31;1608:5;1583:31;:::i;1884:456::-;1961:6;1969;1977;2030:2;2018:9;2009:7;2005:23;2001:32;1998:52;;;2046:1;2043;2036:12;1998:52;2085:9;2072:23;2104:31;2129:5;2104:31;:::i;:::-;2154:5;-1:-1:-1;2211:2:1;2196:18;;2183:32;2224:33;2183:32;2224:33;:::i;:::-;1884:456;;2276:7;;-1:-1:-1;;;2330:2:1;2315:18;;;;2302:32;;1884:456::o;2742:416::-;2807:6;2815;2868:2;2856:9;2847:7;2843:23;2839:32;2836:52;;;2884:1;2881;2874:12;2836:52;2923:9;2910:23;2942:31;2967:5;2942:31;:::i;:::-;2992:5;-1:-1:-1;3049:2:1;3034:18;;3021:32;3091:15;;3084:23;3072:36;;3062:64;;3122:1;3119;3112:12;3062:64;3145:7;3135:17;;;2742:416;;;;;:::o;3163:388::-;3231:6;3239;3292:2;3280:9;3271:7;3267:23;3263:32;3260:52;;;3308:1;3305;3298:12;3260:52;3347:9;3334:23;3366:31;3391:5;3366:31;:::i;:::-;3416:5;-1:-1:-1;3473:2:1;3458:18;;3445:32;3486:33;3445:32;3486:33;:::i;3556:180::-;3615:6;3668:2;3656:9;3647:7;3643:23;3639:32;3636:52;;;3684:1;3681;3674:12;3636:52;-1:-1:-1;3707:23:1;;3556:180;-1:-1:-1;3556:180:1:o;3741:454::-;3836:6;3844;3852;3860;3868;3921:3;3909:9;3900:7;3896:23;3892:33;3889:53;;;3938:1;3935;3928:12;3889:53;-1:-1:-1;;3961:23:1;;;4031:2;4016:18;;4003:32;;-1:-1:-1;4082:2:1;4067:18;;4054:32;;4133:2;4118:18;;4105:32;;-1:-1:-1;4184:3:1;4169:19;4156:33;;-1:-1:-1;3741:454:1;-1:-1:-1;3741:454:1:o;4200:356::-;4402:2;4384:21;;;4421:18;;;4414:30;4480:34;4475:2;4460:18;;4453:62;4547:2;4532:18;;4200:356::o;4906:380::-;4985:1;4981:12;;;;5028;;;5049:61;;5103:4;5095:6;5091:17;5081:27;;5049:61;5156:2;5148:6;5145:14;5125:18;5122:38;5119:161;;5202:10;5197:3;5193:20;5190:1;5183:31;5237:4;5234:1;5227:15;5265:4;5262:1;5255:15;5119:161;;4906:380;;;:::o;5700:127::-;5761:10;5756:3;5752:20;5749:1;5742:31;5792:4;5789:1;5782:15;5816:4;5813:1;5806:15;5832:125;5897:9;;;5918:10;;;5915:36;;;5931:18;;:::i;9393:401::-;9595:2;9577:21;;;9634:2;9614:18;;;9607:30;9673:34;9668:2;9653:18;;9646:62;-1:-1:-1;;;9739:2:1;9724:18;;9717:35;9784:3;9769:19;;9393:401::o;9799:399::-;10001:2;9983:21;;;10040:2;10020:18;;;10013:30;10079:34;10074:2;10059:18;;10052:62;-1:-1:-1;;;10145:2:1;10130:18;;10123:33;10188:3;10173:19;;9799:399::o;12088:168::-;12161:9;;;12192;;12209:15;;;12203:22;;12189:37;12179:71;;12230:18;;:::i;12261:217::-;12301:1;12327;12317:132;;12371:10;12366:3;12362:20;12359:1;12352:31;12406:4;12403:1;12396:15;12434:4;12431:1;12424:15;12317:132;-1:-1:-1;12463:9:1;;12261:217::o;12483:128::-;12550:9;;;12571:11;;;12568:37;;;12585:18;;:::i;14494:127::-;14555:10;14550:3;14546:20;14543:1;14536:31;14586:4;14583:1;14576:15;14610:4;14607:1;14600:15;14626:251;14696:6;14749:2;14737:9;14728:7;14724:23;14720:32;14717:52;;;14765:1;14762;14755:12;14717:52;14797:9;14791:16;14816:31;14841:5;14816:31;:::i;14882:980::-;15144:4;15192:3;15181:9;15177:19;15223:6;15212:9;15205:25;15249:2;15287:6;15282:2;15271:9;15267:18;15260:34;15330:3;15325:2;15314:9;15310:18;15303:31;15354:6;15389;15383:13;15420:6;15412;15405:22;15458:3;15447:9;15443:19;15436:26;;15497:2;15489:6;15485:15;15471:29;;15518:1;15528:195;15542:6;15539:1;15536:13;15528:195;;;15607:13;;-1:-1:-1;;;;;15603:39:1;15591:52;;15698:15;;;;15663:12;;;;15639:1;15557:9;15528:195;;;-1:-1:-1;;;;;;;15779:32:1;;;;15774:2;15759:18;;15752:60;-1:-1:-1;;;15843:3:1;15828:19;15821:35;15740:3;14882:980;-1:-1:-1;;;14882:980:1:o;16479:306::-;16567:6;16575;16583;16636:2;16624:9;16615:7;16611:23;16607:32;16604:52;;;16652:1;16649;16642:12;16604:52;16681:9;16675:16;16665:26;;16731:2;16720:9;16716:18;16710:25;16700:35;;16775:2;16764:9;16760:18;16754:25;16744:35;;16479:306;;;;;:::o

Swarm Source

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