ETH Price: $3,208.30 (-1.43%)
Gas: 1 Gwei

Token

SHIB2 (SHIB2)
 

Overview

Max Total Supply

100,000,000 SHIB2

Holders

156

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2.835942691363757703 SHIB2

Value
$0.00
0x73fe858ee37E0C5630F437F768a92489a9fE5473
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:
SHIB2Token

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-04
*/

// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.17;

abstract contract Context {

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

    function _msgData() internal view virtual returns (bytes memory) {
        this;
        // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

interface IERC20 {

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

    function name() external view returns (string memory);
    function symbol() external view returns (string memory);
    function decimals() external view returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);
    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from,
     address to, uint value) external returns (bool);
    
}

library MerkleProof {
    /**
     *@dev The multiproof provided is not valid.
     */
    error MerkleProofInvalidMultiproof();

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

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

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * of leafs & pre-images are assumed to be sorted.
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

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

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

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

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

        // Check proof validity.
        if (leavesLen + proofLen != totalHashes + 1) {
            revert MerkleProofInvalidMultiproof();
        }

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

        if (totalHashes > 0) {
            if (proofPos != proofLen) {
                revert MerkleProofInvalidMultiproof();
            }
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

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

        // Check proof validity.
        if (leavesLen + proofLen != totalHashes + 1) {
            revert MerkleProofInvalidMultiproof();
        }

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

        if (totalHashes > 0) {
            if (proofPos != proofLen) {
                revert MerkleProofInvalidMultiproof();
            }
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {    return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Sorts the pair (a, b) and hashes the result.
     */
    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    /**
     * @dev Implementation of keccak256(abi.encode(a, b)) that doesn't allocate or expand memory.
     */
    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

library SafeMath {

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

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

        return c;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

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

library Address {

    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly {codehash := extcodehash(account)}
        return (codehash != accountHash && codehash != 0x0);
    }

    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success,) = recipient.call{ value : amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{ value : weiValue}(data);
        if (success) {
            return returndata;
        } else {

            if (returndata.length > 0) {
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

contract Ownable is Context {
    address public _owner;

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


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

    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    function waiveOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

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

}

interface IUniswapV2Factory {


    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn,
     address[] calldata path) external view returns (uint[] memory amounts);
    
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

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

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

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

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

}

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

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

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


}

interface IUniswapV2Router02 is IUniswapV2Router01 {

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

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


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

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

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

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

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

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

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

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

    function initialize(address, address) external;

}

contract SHIB2Token is Context, IERC20, Ownable {


    using SafeMath for uint256;
    using Address for address;

    bytes16 private constant HEX_DIGITS = "0123456789abcdef";
    uint8 private constant ADDRESS_LENGTH = 20;

    string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    string private _name;
    string private _symbol;
    uint8 private _decimals;
    address payable private marketingWalletAddress;
    address payable private teamWalletAddress;
    address private deadAddress = 0x000000000000000000000000000000000000dEaD;
    uint256 private preLPUnlockTime = 1695560500;
    mapping (address => uint256) _balances;
    mapping (address => mapping (address => uint256)) private _allowances;

    mapping (address => bool) private isMarketPair;

    mapping(address => UserInfo) private _userInfo;
    struct UserInfo {
        uint256 lpAmount;
        bool preLP;
        uint256 unlockTime;
    }
    
    uint256 private _totalTaxIfBuying = 0;
    uint256 private _totalTaxIfSelling = 0;
    uint256 private _totalSupply;
    uint256 private _minimumTokensBeforeSwap = 0;

    IUniswapV2Router02 private uniswap;
    address private uniswapPair;

    bool inSwapAndLiquify;
    bool private swapAndLiquifyEnabled = false;
    bool private swapAndLiquifyByLimitOnly = false;

    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped, uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

    event SwapETHForTokens(
        uint256 amountIn,  address[] path
    );

    event SwapTokensForETH(
        uint256 amountIn, address[] path
    );

    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }


    constructor (
        string memory coinName,
        string memory coinSymbol,
        uint8 coinDecimals,
        uint256 supply
    ) payable {

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x10ED43C718714eb63d5aA57B78B54704E256024E);
        _name = coinName;
        _symbol = coinSymbol;
        _decimals = coinDecimals;
        _owner = 0xC6be4750f8948BA90B68fFf8F6361b8E745B0366;
        _totalSupply = supply  * 10 ** _decimals;
        marketingWalletAddress = payable(0xC6be4750f8948BA90B68fFf8F6361b8E745B0366);
        teamWalletAddress = payable(0xC6be4750f8948BA90B68fFf8F6361b8E745B0366);
        uniswap = _uniswapV2Router;
        _allowances[address(this)][address(uniswap)] = _totalSupply;

        _balances[_owner] = _totalSupply;
        emit Transfer(address(0), _owner, _totalSupply);
    }


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

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

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

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

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

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

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

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

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

    function _approve(address owner, address spender, uint256 amount) private {
        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 setNumTokensBeforeSwap(uint256 newLimit) external onlyOwner() {
        _minimumTokensBeforeSwap = newLimit;
    }


    function changeRouter(address newRouterAddress) external onlyOwner returns(address newPairAddress) {

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(uniswap);

        newPairAddress = IUniswapV2Factory(_uniswapV2Router.factory()).getPair(address(this), _uniswapV2Router.WETH());

        _uniswapV2Router = IUniswapV2Router02(newRouterAddress);
        uniswap = _uniswapV2Router;
        swapAndLiquifyEnabled = true;
        isMarketPair[address(uniswapPair)] = true;
    }


    function transferToAddressETH(address payable recipient, uint256 amount) private {
        recipient.transfer(amount);
    }
    
     //to recieve ETH from uniswapV2Router when swaping
    receive() external payable {}

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

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

    function _transfer(address sender, address recipient, uint256 amount) private returns (bool) {

        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");

        if(inSwapAndLiquify)
        {
            return _basicTransfer(sender, recipient, amount);
        }
        else
        {

            uint256 contractTokenBalance = balanceOf(address(this));
            bool overMinimumTokenBalance = contractTokenBalance >= _minimumTokensBeforeSwap;

            if (overMinimumTokenBalance && !inSwapAndLiquify && !isMarketPair[sender] && swapAndLiquifyEnabled)
            {
                if(swapAndLiquifyByLimitOnly)
                    contractTokenBalance = _minimumTokensBeforeSwap;
                addLiquidity(sender,contractTokenBalance);
            }

            _balances[sender] = _balances[sender].sub(amount, "Insufficient Balance");

            uint256 finalAmount = takeFee(sender, recipient, amount);


            _balances[recipient] = _balances[recipient].add(finalAmount);

            emit Transfer(sender, recipient, finalAmount);
            return true;
        }
    }

    function _basicTransfer(address sender, address recipient, uint256 amount) internal returns (bool) {
        _balances[sender] = _balances[sender].sub(amount, "Insufficient Balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
        return true;
    }


    function swapAndLiquify(uint256 tAmount) private lockTheSwap {

        
        // swap token -> eth
        swapTokensForEth(tAmount);
        uint256 amountReceived = address(this).balance;
         
        // team eth
        uint256 amountUSDTTeam = amountReceived.mul(50).div(100);
        // marketing eth
        uint256 amountUSDTMarketing = amountReceived.sub(amountUSDTTeam);

        if(amountUSDTMarketing > 0)
            transferToAddressETH(marketingWalletAddress, amountUSDTMarketing);

        if(amountUSDTTeam > 0)
            transferToAddressETH(teamWalletAddress, amountUSDTTeam);


    }

    function addLiquidity(address sender,uint256 tokenAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswap), tokenAmount);
        uint256 ethAmount =  address(this).balance;
        // add the liquidity
        uniswap.addLiquidityETH{value: ethAmount}(
            sender,
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(this),
            block.timestamp
        );
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswap.WETH();

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

        // make the swap
        uniswap.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this), // The contract
            block.timestamp
        );

        emit SwapTokensForETH(tokenAmount, path);
    }



    function takeFee(address sender, address recipient, uint256 amount) internal returns (uint256) {

        uint256 feeAmount = 0;
        if(isMarketPair[sender]) {
            feeAmount = amount.mul(_totalTaxIfBuying).div(100);
        }
        else if(isMarketPair[recipient]) {
            feeAmount = amount.mul(_totalTaxIfSelling).div(100); }

        if(feeAmount > 0) {
            _balances[address(this)] = _balances[address(this)].add(feeAmount);
            emit Transfer(sender, address(this), feeAmount);
        }

        return amount.sub(feeAmount);
    }

    /**
     * @dev Converts a `bytes` to its Bytes64 `string` representation.
     */
    function encode(bytes memory data) internal pure returns (string memory) {
        /**
         * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence
         * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol
         */
        if (data.length == 0) return "";

        // Loads the table into memory
        string memory table = _TABLE;

        // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter
        // and split into 4 numbers of 6 bits.
        // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up
        // - `data.length + 2`  -> Round up
        // - `/ 3`              -> Number of 3-bytes chunks
        // - `4 *`              -> 4 characters for each chunk
        string memory result = new string(4 * ((data.length + 2) / 3));

        /// @solidity memory-safe-assembly
        assembly {
            // Prepare the lookup table (skip the first "length" byte)
            let tablePtr := add(table, 1)

            // Prepare result pointer, jump over length
            let resultPtr := add(result, 32)

            // Run over the input, 3 bytes at a time
            for {
                let dataPtr := data
                let endPtr := add(data, mload(data))
            } lt(dataPtr, endPtr) {

            } {
                // Advance 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // To write each character, shift the 3 bytes (18 bits) chunk
                // 4 times in blocks of 6 bits for each character (18, 12, 6, 0)
                // and apply logical AND with 0x3F which is the number of
                // the previous character in the ASCII table prior to the Base64 Table
                // The result is then added to the table to get the character to write,
                // and finally write it in the result pointer but with a left shift
                // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits

                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance
            }

            // When data `bytes` is not exactly 3 bytes long
            // it is padded with `=` characters at the end
            switch mod(mload(data), 3)
            case 1 {
                mstore8(sub(resultPtr, 1), 0x3d)
                mstore8(sub(resultPtr, 2), 0x3d)
            }
            case 2 {
                mstore8(sub(resultPtr, 1), 0x3d)
            }
        }

        return result;
    }
    

}


library ECDSA {
    enum RecoverError {
        NoError,   InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS
    }

    /**
     * @dev The signature derives the `address(0)`.
     */
    error ECDSAInvalidSignature();

    /**
     * @dev The signature has an invalid length.
     */
    error ECDSAInvalidSignatureLength(uint256 length);

    /**
     * @dev The signature has an S value that is in the upper half order.
     */
    error ECDSAInvalidSignatureS(bytes32 s);

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with `signature` or an error. This will not
     * If no error is returned, then the address can be used for verification purposes.
     *
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError, bytes32) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength, bytes32(signature.length));
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, signature);
        _throwError(error, errorArg);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     */
    function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError, bytes32) {
        unchecked {
            bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
            // We do not check for an overflow here since the shift operation results in 0 or 1.
            uint8 v = uint8((uint256(vs) >> 255) + 27);
            return tryRecover(hash, v, r, s);
        }
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     */
    function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {
        (address recovered, RecoverError error,
         bytes32 errorArg) = tryRecover(hash, r, vs);
        _throwError(error, errorArg);  return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError, bytes32) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS, s);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0),
             RecoverError.InvalidSignature, bytes32(0));
        }

        return (signer, RecoverError.NoError, bytes32(0));
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {
        (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, v, r, s);
        _throwError(error, errorArg);
        return recovered;
    }

    /**
     * @dev Optionally reverts with the corresponding custom error according to the `error` argument provided.
     */
    function _throwError(RecoverError error, bytes32 errorArg) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert ECDSAInvalidSignature();
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert ECDSAInvalidSignatureLength(uint256(errorArg));
        } else if (error == RecoverError.InvalidSignatureS) {
            revert ECDSAInvalidSignatureS(errorArg);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"coinName","type":"string"},{"internalType":"string","name":"coinSymbol","type":"string"},{"internalType":"uint8","name":"coinDecimals","type":"uint8"},{"internalType":"uint256","name":"supply","type":"uint256"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"}],"name":"SwapETHForTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"}],"name":"SwapTokensForETH","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newRouterAddress","type":"address"}],"name":"changeRouter","outputs":[{"internalType":"address","name":"newPairAddress","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"setNumTokensBeforeSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"waiveOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405261dead600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555063651033346006556000600b556000600c556000600e556000601060156101000a81548160ff0219169083151502179055506000601060166101000a81548160ff021916908315150217905550604051620034e4380380620034e48339818101604052810190620000b991906200062e565b60007310ed43c718714eb63d5aa57b78b54704e256024e90508460019081620000e391906200091f565b508360029081620000f591906200091f565b5082600360006101000a81548160ff021916908360ff16021790555073c6be4750f8948ba90b68fff8f6361b8e745b03666000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600360009054906101000a900460ff16600a62000183919062000b89565b8262000190919062000bda565b600d8190555073c6be4750f8948ba90b68fff8f6361b8e745b0366600360016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073c6be4750f8948ba90b68fff8f6361b8e745b0366600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600d54600860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600d54600760008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600d546040516200040f919062000c36565b60405180910390a3505050505062000c53565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200048b8262000440565b810181811067ffffffffffffffff82111715620004ad57620004ac62000451565b5b80604052505050565b6000620004c262000422565b9050620004d0828262000480565b919050565b600067ffffffffffffffff821115620004f357620004f262000451565b5b620004fe8262000440565b9050602081019050919050565b60005b838110156200052b5780820151818401526020810190506200050e565b60008484015250505050565b60006200054e6200054884620004d5565b620004b6565b9050828152602081018484840111156200056d576200056c6200043b565b5b6200057a8482856200050b565b509392505050565b600082601f8301126200059a576200059962000436565b5b8151620005ac84826020860162000537565b91505092915050565b600060ff82169050919050565b620005cd81620005b5565b8114620005d957600080fd5b50565b600081519050620005ed81620005c2565b92915050565b6000819050919050565b6200060881620005f3565b81146200061457600080fd5b50565b6000815190506200062881620005fd565b92915050565b600080600080608085870312156200064b576200064a6200042c565b5b600085015167ffffffffffffffff8111156200066c576200066b62000431565b5b6200067a8782880162000582565b945050602085015167ffffffffffffffff8111156200069e576200069d62000431565b5b620006ac8782880162000582565b9350506040620006bf87828801620005dc565b9250506060620006d28782880162000617565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200073157607f821691505b602082108103620007475762000746620006e9565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007b17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000772565b620007bd868362000772565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000800620007fa620007f484620005f3565b620007d5565b620005f3565b9050919050565b6000819050919050565b6200081c83620007df565b620008346200082b8262000807565b8484546200077f565b825550505050565b600090565b6200084b6200083c565b6200085881848462000811565b505050565b5b8181101562000880576200087460008262000841565b6001810190506200085e565b5050565b601f821115620008cf5762000899816200074d565b620008a48462000762565b81016020851015620008b4578190505b620008cc620008c38562000762565b8301826200085d565b50505b505050565b600082821c905092915050565b6000620008f460001984600802620008d4565b1980831691505092915050565b60006200090f8383620008e1565b9150826002028217905092915050565b6200092a82620006de565b67ffffffffffffffff81111562000946576200094562000451565b5b62000952825462000718565b6200095f82828562000884565b600060209050601f83116001811462000997576000841562000982578287015190505b6200098e858262000901565b865550620009fe565b601f198416620009a7866200074d565b60005b82811015620009d157848901518255600182019150602085019450602081019050620009aa565b86831015620009f15784890151620009ed601f891682620008e1565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000a945780860481111562000a6c5762000a6b62000a06565b5b600185161562000a7c5780820291505b808102905062000a8c8562000a35565b945062000a4c565b94509492505050565b60008262000aaf576001905062000b82565b8162000abf576000905062000b82565b816001811462000ad8576002811462000ae35762000b19565b600191505062000b82565b60ff84111562000af85762000af762000a06565b5b8360020a91508482111562000b125762000b1162000a06565b5b5062000b82565b5060208310610133831016604e8410600b841016171562000b535782820a90508381111562000b4d5762000b4c62000a06565b5b62000b82565b62000b62848484600162000a42565b9250905081840481111562000b7c5762000b7b62000a06565b5b81810290505b9392505050565b600062000b9682620005f3565b915062000ba383620005b5565b925062000bd27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000a9d565b905092915050565b600062000be782620005f3565b915062000bf483620005f3565b925082820262000c0481620005f3565b9150828204841483151762000c1e5762000c1d62000a06565b5b5092915050565b62000c3081620005f3565b82525050565b600060208201905062000c4d600083018462000c25565b92915050565b6128818062000c636000396000f3fe6080604052600436106101025760003560e01c806370a0823111610095578063a457c2d711610064578063a457c2d714610356578063a9059cbb14610393578063b2bdfa7b146103d0578063dd62ed3e146103fb578063f2fde38b1461043857610109565b806370a08231146102ac5780638da5cb5b146102e9578063914eb66a1461031457806395d89b411461032b57610109565b8063313ce567116100d1578063313ce567146101de578063340ac20f1461020957806339509351146102465780633b97084a1461028357610109565b806306fdde031461010e578063095ea7b31461013957806318160ddd1461017657806323b872dd146101a157610109565b3661010957005b600080fd5b34801561011a57600080fd5b50610123610461565b6040516101309190611d6d565b60405180910390f35b34801561014557600080fd5b50610160600480360381019061015b9190611e28565b6104f3565b60405161016d9190611e83565b60405180910390f35b34801561018257600080fd5b5061018b610511565b6040516101989190611ead565b60405180910390f35b3480156101ad57600080fd5b506101c860048036038101906101c39190611ec8565b61051b565b6040516101d59190611e83565b60405180910390f35b3480156101ea57600080fd5b506101f36105f5565b6040516102009190611f37565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190611f52565b61060c565b60405161023d9190611f8e565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190611e28565b610903565b60405161027a9190611e83565b60405180910390f35b34801561028f57600080fd5b506102aa60048036038101906102a59190611fa9565b6109b6565b005b3480156102b857600080fd5b506102d360048036038101906102ce9190611f52565b610a55565b6040516102e09190611ead565b60405180910390f35b3480156102f557600080fd5b506102fe610a9e565b60405161030b9190611f8e565b60405180910390f35b34801561032057600080fd5b50610329610ac7565b005b34801561033757600080fd5b50610340610c1a565b60405161034d9190611d6d565b60405180910390f35b34801561036257600080fd5b5061037d60048036038101906103789190611e28565b610cac565b60405161038a9190611e83565b60405180910390f35b34801561039f57600080fd5b506103ba60048036038101906103b59190611e28565b610d79565b6040516103c79190611e83565b60405180910390f35b3480156103dc57600080fd5b506103e5610d98565b6040516103f29190611f8e565b60405180910390f35b34801561040757600080fd5b50610422600480360381019061041d9190611fd6565b610dbc565b60405161042f9190611ead565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a9190611f52565b610e43565b005b60606001805461047090612045565b80601f016020809104026020016040519081016040528092919081815260200182805461049c90612045565b80156104e95780601f106104be576101008083540402835291602001916104e9565b820191906000526020600020905b8154815290600101906020018083116104cc57829003601f168201915b5050505050905090565b6000610507610500611004565b848461100c565b6001905092915050565b6000600d54905090565b60006105288484846111d5565b506105ea84610535611004565b6105e5856040518060600160405280602881526020016127ff60289139600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061059b611004565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115cc9092919063ffffffff16565b61100c565b600190509392505050565b6000600360009054906101000a900460ff16905090565b6000610616611004565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146106a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069a906120c2565b60405180910390fd5b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610715573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061073991906120f7565b73ffffffffffffffffffffffffffffffffffffffff1663e6a43905308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c491906120f7565b6040518363ffffffff1660e01b81526004016107e1929190612124565b602060405180830381865afa1580156107fe573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061082291906120f7565b915082905080600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601060156101000a81548160ff021916908315150217905550600160096000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050919050565b60006109ac610910611004565b846109a78560086000610921611004565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461163090919063ffffffff16565b61100c565b6001905092915050565b6109be611004565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a42906120c2565b60405180910390fd5b80600e8190555050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610acf611004565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b53906120c2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b606060028054610c2990612045565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5590612045565b8015610ca25780601f10610c7757610100808354040283529160200191610ca2565b820191906000526020600020905b815481529060010190602001808311610c8557829003601f168201915b5050505050905090565b6000610d6f610cb9611004565b84610d6a856040518060600160405280602581526020016128276025913960086000610ce3611004565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115cc9092919063ffffffff16565b61100c565b6001905092915050565b6000610d8d610d86611004565b84846111d5565b506001905092915050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610e4b611004565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecf906120c2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e906121bf565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361107b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107290612251565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e1906122e3565b60405180910390fd5b80600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111c89190611ead565b60405180910390a3505050565b60008073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123c90612375565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ab90612407565b60405180910390fd5b600082116112f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ee90612499565b60405180910390fd5b601060149054906101000a900460ff161561131e5761131784848461168e565b90506115c5565b600061132930610a55565b90506000600e54821015905080801561134f5750601060149054906101000a900460ff16155b80156113a55750600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156113bd5750601060159054906101000a900460ff165b156113e857601060169054906101000a900460ff16156113dd57600e5491505b6113e78683611861565b5b611471846040518060400160405280601481526020017f496e73756666696369656e742042616c616e6365000000000000000000000000815250600760008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115cc9092919063ffffffff16565b600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060006114c1878787611945565b905061151581600760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461163090919063ffffffff16565b600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115b59190611ead565b60405180910390a3600193505050505b9392505050565b6000838311158290611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b9190611d6d565b60405180910390fd5b506000838561162391906124e8565b9050809150509392505050565b600080828461163f919061251c565b905083811015611684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167b9061259c565b60405180910390fd5b8091505092915050565b6000611719826040518060400160405280601481526020017f496e73756666696369656e742042616c616e6365000000000000000000000000815250600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115cc9092919063ffffffff16565b600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506117ae82600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461163090919063ffffffff16565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161184e9190611ead565b60405180910390a3600190509392505050565b61188e30600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168361100c565b6000479050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71982858560008030426040518863ffffffff1660e01b81526004016118fa96959493929190612601565b60606040518083038185885af1158015611918573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061193d9190612677565b505050505050565b60008060009050600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156119cd576119c660646119b8600b5486611b6c90919063ffffffff16565b611be690919063ffffffff16565b9050611a4b565b600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611a4a57611a476064611a39600c5486611b6c90919063ffffffff16565b611be690919063ffffffff16565b90505b5b6000811115611b4f57611aa681600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461163090919063ffffffff16565b600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611b469190611ead565b60405180910390a35b611b628184611c3090919063ffffffff16565b9150509392505050565b6000808303611b7e5760009050611be0565b60008284611b8c91906126ca565b9050828482611b9b919061273b565b14611bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd2906127de565b60405180910390fd5b809150505b92915050565b6000611c2883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611c7a565b905092915050565b6000611c7283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506115cc565b905092915050565b60008083118290611cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb89190611d6d565b60405180910390fd5b5060008385611cd0919061273b565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611d17578082015181840152602081019050611cfc565b60008484015250505050565b6000601f19601f8301169050919050565b6000611d3f82611cdd565b611d498185611ce8565b9350611d59818560208601611cf9565b611d6281611d23565b840191505092915050565b60006020820190508181036000830152611d878184611d34565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611dbf82611d94565b9050919050565b611dcf81611db4565b8114611dda57600080fd5b50565b600081359050611dec81611dc6565b92915050565b6000819050919050565b611e0581611df2565b8114611e1057600080fd5b50565b600081359050611e2281611dfc565b92915050565b60008060408385031215611e3f57611e3e611d8f565b5b6000611e4d85828601611ddd565b9250506020611e5e85828601611e13565b9150509250929050565b60008115159050919050565b611e7d81611e68565b82525050565b6000602082019050611e986000830184611e74565b92915050565b611ea781611df2565b82525050565b6000602082019050611ec26000830184611e9e565b92915050565b600080600060608486031215611ee157611ee0611d8f565b5b6000611eef86828701611ddd565b9350506020611f0086828701611ddd565b9250506040611f1186828701611e13565b9150509250925092565b600060ff82169050919050565b611f3181611f1b565b82525050565b6000602082019050611f4c6000830184611f28565b92915050565b600060208284031215611f6857611f67611d8f565b5b6000611f7684828501611ddd565b91505092915050565b611f8881611db4565b82525050565b6000602082019050611fa36000830184611f7f565b92915050565b600060208284031215611fbf57611fbe611d8f565b5b6000611fcd84828501611e13565b91505092915050565b60008060408385031215611fed57611fec611d8f565b5b6000611ffb85828601611ddd565b925050602061200c85828601611ddd565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061205d57607f821691505b6020821081036120705761206f612016565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006120ac602083611ce8565b91506120b782612076565b602082019050919050565b600060208201905081810360008301526120db8161209f565b9050919050565b6000815190506120f181611dc6565b92915050565b60006020828403121561210d5761210c611d8f565b5b600061211b848285016120e2565b91505092915050565b60006040820190506121396000830185611f7f565b6121466020830184611f7f565b9392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006121a9602683611ce8565b91506121b48261214d565b604082019050919050565b600060208201905081810360008301526121d88161219c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061223b602483611ce8565b9150612246826121df565b604082019050919050565b6000602082019050818103600083015261226a8161222e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006122cd602283611ce8565b91506122d882612271565b604082019050919050565b600060208201905081810360008301526122fc816122c0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061235f602583611ce8565b915061236a82612303565b604082019050919050565b6000602082019050818103600083015261238e81612352565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006123f1602383611ce8565b91506123fc82612395565b604082019050919050565b60006020820190508181036000830152612420816123e4565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612483602983611ce8565b915061248e82612427565b604082019050919050565b600060208201905081810360008301526124b281612476565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006124f382611df2565b91506124fe83611df2565b9250828203905081811115612516576125156124b9565b5b92915050565b600061252782611df2565b915061253283611df2565b925082820190508082111561254a576125496124b9565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000612586601b83611ce8565b915061259182612550565b602082019050919050565b600060208201905081810360008301526125b581612579565b9050919050565b6000819050919050565b6000819050919050565b60006125eb6125e66125e1846125bc565b6125c6565b611df2565b9050919050565b6125fb816125d0565b82525050565b600060c0820190506126166000830189611f7f565b6126236020830188611e9e565b61263060408301876125f2565b61263d60608301866125f2565b61264a6080830185611f7f565b61265760a0830184611e9e565b979650505050505050565b60008151905061267181611dfc565b92915050565b6000806000606084860312156126905761268f611d8f565b5b600061269e86828701612662565b93505060206126af86828701612662565b92505060406126c086828701612662565b9150509250925092565b60006126d582611df2565b91506126e083611df2565b92508282026126ee81611df2565b91508282048414831517612705576127046124b9565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061274682611df2565b915061275183611df2565b9250826127615761276061270c565b5b828204905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006127c8602183611ce8565b91506127d38261276c565b604082019050919050565b600060208201905081810360008301526127f7816127bb565b905091905056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e02dda2deb9f2c5041ceaf03a337f44a7011b32746bff27258ef5672d9cba2ec64736f6c63430008110033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000005f5e1000000000000000000000000000000000000000000000000000000000000000005534849423200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055348494232000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101025760003560e01c806370a0823111610095578063a457c2d711610064578063a457c2d714610356578063a9059cbb14610393578063b2bdfa7b146103d0578063dd62ed3e146103fb578063f2fde38b1461043857610109565b806370a08231146102ac5780638da5cb5b146102e9578063914eb66a1461031457806395d89b411461032b57610109565b8063313ce567116100d1578063313ce567146101de578063340ac20f1461020957806339509351146102465780633b97084a1461028357610109565b806306fdde031461010e578063095ea7b31461013957806318160ddd1461017657806323b872dd146101a157610109565b3661010957005b600080fd5b34801561011a57600080fd5b50610123610461565b6040516101309190611d6d565b60405180910390f35b34801561014557600080fd5b50610160600480360381019061015b9190611e28565b6104f3565b60405161016d9190611e83565b60405180910390f35b34801561018257600080fd5b5061018b610511565b6040516101989190611ead565b60405180910390f35b3480156101ad57600080fd5b506101c860048036038101906101c39190611ec8565b61051b565b6040516101d59190611e83565b60405180910390f35b3480156101ea57600080fd5b506101f36105f5565b6040516102009190611f37565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190611f52565b61060c565b60405161023d9190611f8e565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190611e28565b610903565b60405161027a9190611e83565b60405180910390f35b34801561028f57600080fd5b506102aa60048036038101906102a59190611fa9565b6109b6565b005b3480156102b857600080fd5b506102d360048036038101906102ce9190611f52565b610a55565b6040516102e09190611ead565b60405180910390f35b3480156102f557600080fd5b506102fe610a9e565b60405161030b9190611f8e565b60405180910390f35b34801561032057600080fd5b50610329610ac7565b005b34801561033757600080fd5b50610340610c1a565b60405161034d9190611d6d565b60405180910390f35b34801561036257600080fd5b5061037d60048036038101906103789190611e28565b610cac565b60405161038a9190611e83565b60405180910390f35b34801561039f57600080fd5b506103ba60048036038101906103b59190611e28565b610d79565b6040516103c79190611e83565b60405180910390f35b3480156103dc57600080fd5b506103e5610d98565b6040516103f29190611f8e565b60405180910390f35b34801561040757600080fd5b50610422600480360381019061041d9190611fd6565b610dbc565b60405161042f9190611ead565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a9190611f52565b610e43565b005b60606001805461047090612045565b80601f016020809104026020016040519081016040528092919081815260200182805461049c90612045565b80156104e95780601f106104be576101008083540402835291602001916104e9565b820191906000526020600020905b8154815290600101906020018083116104cc57829003601f168201915b5050505050905090565b6000610507610500611004565b848461100c565b6001905092915050565b6000600d54905090565b60006105288484846111d5565b506105ea84610535611004565b6105e5856040518060600160405280602881526020016127ff60289139600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061059b611004565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115cc9092919063ffffffff16565b61100c565b600190509392505050565b6000600360009054906101000a900460ff16905090565b6000610616611004565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146106a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069a906120c2565b60405180910390fd5b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610715573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061073991906120f7565b73ffffffffffffffffffffffffffffffffffffffff1663e6a43905308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c491906120f7565b6040518363ffffffff1660e01b81526004016107e1929190612124565b602060405180830381865afa1580156107fe573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061082291906120f7565b915082905080600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601060156101000a81548160ff021916908315150217905550600160096000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050919050565b60006109ac610910611004565b846109a78560086000610921611004565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461163090919063ffffffff16565b61100c565b6001905092915050565b6109be611004565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a42906120c2565b60405180910390fd5b80600e8190555050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610acf611004565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b53906120c2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b606060028054610c2990612045565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5590612045565b8015610ca25780601f10610c7757610100808354040283529160200191610ca2565b820191906000526020600020905b815481529060010190602001808311610c8557829003601f168201915b5050505050905090565b6000610d6f610cb9611004565b84610d6a856040518060600160405280602581526020016128276025913960086000610ce3611004565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115cc9092919063ffffffff16565b61100c565b6001905092915050565b6000610d8d610d86611004565b84846111d5565b506001905092915050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610e4b611004565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecf906120c2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e906121bf565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361107b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107290612251565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e1906122e3565b60405180910390fd5b80600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111c89190611ead565b60405180910390a3505050565b60008073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123c90612375565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ab90612407565b60405180910390fd5b600082116112f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ee90612499565b60405180910390fd5b601060149054906101000a900460ff161561131e5761131784848461168e565b90506115c5565b600061132930610a55565b90506000600e54821015905080801561134f5750601060149054906101000a900460ff16155b80156113a55750600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156113bd5750601060159054906101000a900460ff165b156113e857601060169054906101000a900460ff16156113dd57600e5491505b6113e78683611861565b5b611471846040518060400160405280601481526020017f496e73756666696369656e742042616c616e6365000000000000000000000000815250600760008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115cc9092919063ffffffff16565b600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060006114c1878787611945565b905061151581600760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461163090919063ffffffff16565b600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115b59190611ead565b60405180910390a3600193505050505b9392505050565b6000838311158290611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b9190611d6d565b60405180910390fd5b506000838561162391906124e8565b9050809150509392505050565b600080828461163f919061251c565b905083811015611684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167b9061259c565b60405180910390fd5b8091505092915050565b6000611719826040518060400160405280601481526020017f496e73756666696369656e742042616c616e6365000000000000000000000000815250600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115cc9092919063ffffffff16565b600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506117ae82600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461163090919063ffffffff16565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161184e9190611ead565b60405180910390a3600190509392505050565b61188e30600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168361100c565b6000479050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71982858560008030426040518863ffffffff1660e01b81526004016118fa96959493929190612601565b60606040518083038185885af1158015611918573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061193d9190612677565b505050505050565b60008060009050600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156119cd576119c660646119b8600b5486611b6c90919063ffffffff16565b611be690919063ffffffff16565b9050611a4b565b600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611a4a57611a476064611a39600c5486611b6c90919063ffffffff16565b611be690919063ffffffff16565b90505b5b6000811115611b4f57611aa681600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461163090919063ffffffff16565b600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611b469190611ead565b60405180910390a35b611b628184611c3090919063ffffffff16565b9150509392505050565b6000808303611b7e5760009050611be0565b60008284611b8c91906126ca565b9050828482611b9b919061273b565b14611bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd2906127de565b60405180910390fd5b809150505b92915050565b6000611c2883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611c7a565b905092915050565b6000611c7283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506115cc565b905092915050565b60008083118290611cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb89190611d6d565b60405180910390fd5b5060008385611cd0919061273b565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611d17578082015181840152602081019050611cfc565b60008484015250505050565b6000601f19601f8301169050919050565b6000611d3f82611cdd565b611d498185611ce8565b9350611d59818560208601611cf9565b611d6281611d23565b840191505092915050565b60006020820190508181036000830152611d878184611d34565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611dbf82611d94565b9050919050565b611dcf81611db4565b8114611dda57600080fd5b50565b600081359050611dec81611dc6565b92915050565b6000819050919050565b611e0581611df2565b8114611e1057600080fd5b50565b600081359050611e2281611dfc565b92915050565b60008060408385031215611e3f57611e3e611d8f565b5b6000611e4d85828601611ddd565b9250506020611e5e85828601611e13565b9150509250929050565b60008115159050919050565b611e7d81611e68565b82525050565b6000602082019050611e986000830184611e74565b92915050565b611ea781611df2565b82525050565b6000602082019050611ec26000830184611e9e565b92915050565b600080600060608486031215611ee157611ee0611d8f565b5b6000611eef86828701611ddd565b9350506020611f0086828701611ddd565b9250506040611f1186828701611e13565b9150509250925092565b600060ff82169050919050565b611f3181611f1b565b82525050565b6000602082019050611f4c6000830184611f28565b92915050565b600060208284031215611f6857611f67611d8f565b5b6000611f7684828501611ddd565b91505092915050565b611f8881611db4565b82525050565b6000602082019050611fa36000830184611f7f565b92915050565b600060208284031215611fbf57611fbe611d8f565b5b6000611fcd84828501611e13565b91505092915050565b60008060408385031215611fed57611fec611d8f565b5b6000611ffb85828601611ddd565b925050602061200c85828601611ddd565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061205d57607f821691505b6020821081036120705761206f612016565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006120ac602083611ce8565b91506120b782612076565b602082019050919050565b600060208201905081810360008301526120db8161209f565b9050919050565b6000815190506120f181611dc6565b92915050565b60006020828403121561210d5761210c611d8f565b5b600061211b848285016120e2565b91505092915050565b60006040820190506121396000830185611f7f565b6121466020830184611f7f565b9392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006121a9602683611ce8565b91506121b48261214d565b604082019050919050565b600060208201905081810360008301526121d88161219c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061223b602483611ce8565b9150612246826121df565b604082019050919050565b6000602082019050818103600083015261226a8161222e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006122cd602283611ce8565b91506122d882612271565b604082019050919050565b600060208201905081810360008301526122fc816122c0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061235f602583611ce8565b915061236a82612303565b604082019050919050565b6000602082019050818103600083015261238e81612352565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006123f1602383611ce8565b91506123fc82612395565b604082019050919050565b60006020820190508181036000830152612420816123e4565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612483602983611ce8565b915061248e82612427565b604082019050919050565b600060208201905081810360008301526124b281612476565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006124f382611df2565b91506124fe83611df2565b9250828203905081811115612516576125156124b9565b5b92915050565b600061252782611df2565b915061253283611df2565b925082820190508082111561254a576125496124b9565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000612586601b83611ce8565b915061259182612550565b602082019050919050565b600060208201905081810360008301526125b581612579565b9050919050565b6000819050919050565b6000819050919050565b60006125eb6125e66125e1846125bc565b6125c6565b611df2565b9050919050565b6125fb816125d0565b82525050565b600060c0820190506126166000830189611f7f565b6126236020830188611e9e565b61263060408301876125f2565b61263d60608301866125f2565b61264a6080830185611f7f565b61265760a0830184611e9e565b979650505050505050565b60008151905061267181611dfc565b92915050565b6000806000606084860312156126905761268f611d8f565b5b600061269e86828701612662565b93505060206126af86828701612662565b92505060406126c086828701612662565b9150509250925092565b60006126d582611df2565b91506126e083611df2565b92508282026126ee81611df2565b91508282048414831517612705576127046124b9565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061274682611df2565b915061275183611df2565b9250826127615761276061270c565b5b828204905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006127c8602183611ce8565b91506127d38261276c565b604082019050919050565b600060208201905081810360008301526127f7816127bb565b905091905056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e02dda2deb9f2c5041ceaf03a337f44a7011b32746bff27258ef5672d9cba2ec64736f6c63430008110033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000005f5e1000000000000000000000000000000000000000000000000000000000000000005534849423200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055348494232000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : coinName (string): SHIB2
Arg [1] : coinSymbol (string): SHIB2
Arg [2] : coinDecimals (uint8): 18
Arg [3] : supply (uint256): 100000000

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 0000000000000000000000000000000000000000000000000000000005f5e100
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 5348494232000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 5348494232000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

23561:13051:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26287:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27445:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26564:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29015:313;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26473:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28094:504;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26950:210;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27959:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26672:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14567:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14781:145;;;;;;;;;;;;;:::i;:::-;;26378:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27168:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28840:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14443:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26799:143;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14934:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26287:83;26324:13;26357:5;26350:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26287:83;:::o;27445:161::-;27520:4;27537:39;27546:12;:10;:12::i;:::-;27560:7;27569:6;27537:8;:39::i;:::-;27594:4;27587:11;;27445:161;;;;:::o;26564:100::-;26617:7;26644:12;;26637:19;;26564:100;:::o;29015:313::-;29113:4;29130:36;29140:6;29148:9;29159:6;29130:9;:36::i;:::-;;29177:121;29186:6;29194:12;:10;:12::i;:::-;29208:89;29246:6;29208:89;;;;;;;;;;;;;;;;;:11;:19;29220:6;29208:19;;;;;;;;;;;;;;;:33;29228:12;:10;:12::i;:::-;29208:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;29177:8;:121::i;:::-;29316:4;29309:11;;29015:313;;;;;:::o;26473:83::-;26514:5;26539:9;;;;;;;;;;;26532:16;;26473:83;:::o;28094:504::-;28169:22;14704:12;:10;:12::i;:::-;14694:22;;:6;;;;;;;;;;:22;;;14686:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;28206:35:::1;28263:7;;;;;;;;;;;28206:65;;28319:16;:24;;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28301:53;;;28363:4;28370:16;:21;;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28301:93;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28284:110;;28445:16;28407:55;;28483:16;28473:7;;:26;;;;;;;;;;;;;;;;;;28534:4;28510:21;;:28;;;;;;;;;;;;;;;;;;28586:4;28549:12;:34;28570:11;;;;;;;;;;;28549:34;;;;;;;;;;;;;;;;:41;;;;;;;;;;;;;;;;;;28193:405;28094:504:::0;;;:::o;26950:210::-;27038:4;27055:83;27064:12;:10;:12::i;:::-;27078:7;27087:50;27126:10;27087:11;:25;27099:12;:10;:12::i;:::-;27087:25;;;;;;;;;;;;;;;:34;27113:7;27087:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;27055:8;:83::i;:::-;27148:4;27141:11;;26950:210;;;;:::o;27959:125::-;14704:12;:10;:12::i;:::-;14694:22;;:6;;;;;;;;;;:22;;;14686:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;28068:8:::1;28041:24;:35;;;;27959:125:::0;:::o;26672:119::-;26738:7;26765:9;:18;26775:7;26765:18;;;;;;;;;;;;;;;;26758:25;;26672:119;;;:::o;14567:79::-;14605:7;14632:6;;;;;;;;;;;14625:13;;14567:79;:::o;14781:145::-;14704:12;:10;:12::i;:::-;14694:22;;:6;;;;;;;;;;:22;;;14686:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14885:1:::1;14848:40;;14869:6;::::0;::::1;;;;;;;;14848:40;;;;;;;;;;;;14916:1;14899:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;14781:145::o:0;26378:87::-;26417:13;26450:7;26443:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26378:87;:::o;27168:269::-;27261:4;27278:129;27287:12;:10;:12::i;:::-;27301:7;27310:96;27349:15;27310:96;;;;;;;;;;;;;;;;;:11;:25;27322:12;:10;:12::i;:::-;27310:25;;;;;;;;;;;;;;;:34;27336:7;27310:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;27278:8;:129::i;:::-;27425:4;27418:11;;27168:269;;;;:::o;28840:167::-;28918:4;28935:42;28945:12;:10;:12::i;:::-;28959:9;28970:6;28935:9;:42::i;:::-;;28995:4;28988:11;;28840:167;;;;:::o;14443:21::-;;;;;;;;;;;;:::o;26799:143::-;26880:7;26907:11;:18;26919:5;26907:18;;;;;;;;;;;;;;;:27;26926:7;26907:27;;;;;;;;;;;;;;;;26900:34;;26799:143;;;;:::o;14934:236::-;14704:12;:10;:12::i;:::-;14694:22;;:6;;;;;;;;;;:22;;;14686:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;15043:1:::1;15023:22;;:8;:22;;::::0;15015:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;15133:8;15104:38;;15125:6;::::0;::::1;;;;;;;;15104:38;;;;;;;;;;;;15154:8;15145:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;14934:236:::0;:::o;103:115::-;156:15;199:10;184:26;;103:115;:::o;27614:337::-;27724:1;27707:19;;:5;:19;;;27699:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27805:1;27786:21;;:7;:21;;;27778:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27889:6;27859:11;:18;27871:5;27859:18;;;;;;;;;;;;;;;:27;27878:7;27859:27;;;;;;;;;;;;;;;:36;;;;27927:7;27911:32;;27920:5;27911:32;;;27936:6;27911:32;;;;;;:::i;:::-;;;;;;;;27614:337;;;:::o;29336:1312::-;29423:4;29468:1;29450:20;;:6;:20;;;29442:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;29552:1;29531:23;;:9;:23;;;29523:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;29622:1;29613:6;:10;29605:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;29685:16;;;;;;;;;;;29682:959;;;29734:41;29749:6;29757:9;29768:6;29734:14;:41::i;:::-;29727:48;;;;29682:959;29828:28;29859:24;29877:4;29859:9;:24::i;:::-;29828:55;;29898:28;29953:24;;29929:20;:48;;29898:79;;29998:23;:44;;;;;30026:16;;;;;;;;;;;30025:17;29998:44;:69;;;;;30047:12;:20;30060:6;30047:20;;;;;;;;;;;;;;;;;;;;;;;;;30046:21;29998:69;:94;;;;;30071:21;;;;;;;;;;;29998:94;29994:306;;;30129:25;;;;;;;;;;;30126:98;;;30200:24;;30177:47;;30126:98;30243:41;30256:6;30263:20;30243:12;:41::i;:::-;29994:306;30336:53;30358:6;30336:53;;;;;;;;;;;;;;;;;:9;:17;30346:6;30336:17;;;;;;;;;;;;;;;;:21;;:53;;;;;:::i;:::-;30316:9;:17;30326:6;30316:17;;;;;;;;;;;;;;;:73;;;;30406:19;30428:34;30436:6;30444:9;30455:6;30428:7;:34::i;:::-;30406:56;;30504:37;30529:11;30504:9;:20;30514:9;30504:20;;;;;;;;;;;;;;;;:24;;:37;;;;:::i;:::-;30481:9;:20;30491:9;30481:20;;;;;;;;;;;;;;;:60;;;;30580:9;30563:40;;30572:6;30563:40;;;30591:11;30563:40;;;;;;:::i;:::-;;;;;;;;30625:4;30618:11;;;;;29336:1312;;;;;;:::o;10501:192::-;10587:7;10620:1;10615;:6;;10623:12;10607:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;10647:9;10663:1;10659;:5;;;;:::i;:::-;10647:17;;10684:1;10677:8;;;10501:192;;;;;:::o;10170:179::-;10228:7;10248:9;10264:1;10260;:5;;;;:::i;:::-;10248:17;;10289:1;10284;:6;;10276:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;10340:1;10333:8;;;10170:179;;;;:::o;30656:330::-;30749:4;30786:53;30808:6;30786:53;;;;;;;;;;;;;;;;;:9;:17;30796:6;30786:17;;;;;;;;;;;;;;;;:21;;:53;;;;;:::i;:::-;30766:9;:17;30776:6;30766:17;;;;;;;;;;;;;;;:73;;;;30873:32;30898:6;30873:9;:20;30883:9;30873:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;30850:9;:20;30860:9;30850:20;;;;;;;;;;;;;;;:55;;;;30938:9;30921:35;;30930:6;30921:35;;;30949:6;30921:35;;;;;;:::i;:::-;;;;;;;;30974:4;30967:11;;30656:330;;;;;:::o;31635:543::-;31779:54;31796:4;31811:7;;;;;;;;;;;31821:11;31779:8;:54::i;:::-;31844:17;31865:21;31844:42;;31927:7;;;;;;;;;;;:23;;;31958:9;31983:6;32004:11;32030:1;32073;32124:4;32144:15;31927:243;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;31701:477;31635:543;;:::o;32819:587::-;32905:7;32927:17;32947:1;32927:21;;32962:12;:20;32975:6;32962:20;;;;;;;;;;;;;;;;;;;;;;;;;32959:214;;;33011:38;33045:3;33011:29;33022:17;;33011:6;:10;;:29;;;;:::i;:::-;:33;;:38;;;;:::i;:::-;32999:50;;32959:214;;;33079:12;:23;33092:9;33079:23;;;;;;;;;;;;;;;;;;;;;;;;;33076:97;;;33131:39;33166:3;33131:30;33142:18;;33131:6;:10;;:30;;;;:::i;:::-;:34;;:39;;;;:::i;:::-;33119:51;;33076:97;32959:214;33200:1;33188:9;:13;33185:173;;;33245:39;33274:9;33245;:24;33263:4;33245:24;;;;;;;;;;;;;;;;:28;;:39;;;;:::i;:::-;33218:9;:24;33236:4;33218:24;;;;;;;;;;;;;;;:66;;;;33329:4;33304:42;;33313:6;33304:42;;;33336:9;33304:42;;;;;;:::i;:::-;;;;;;;;33185:173;33377:21;33388:9;33377:6;:10;;:21;;;;:::i;:::-;33370:28;;;32819:587;;;;;:::o;10701:250::-;10759:7;10788:1;10783;:6;10779:47;;10813:1;10806:8;;;;10779:47;10838:9;10854:1;10850;:5;;;;:::i;:::-;10838:17;;10883:1;10878;10874;:5;;;;:::i;:::-;:10;10866:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;10942:1;10935:8;;;10701:250;;;;;:::o;10959:132::-;11017:7;11044:39;11048:1;11051;11044:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;11037:46;;10959:132;;;;:::o;10357:136::-;10415:7;10442:43;10446:1;10449;10442:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;10435:50;;10357:136;;;;:::o;11099:278::-;11185:7;11217:1;11213;:5;11220:12;11205:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;11244:9;11260:1;11256;:5;;;;:::i;:::-;11244:17;;11368:1;11361:8;;;11099:278;;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:329::-;5599:6;5648:2;5636:9;5627:7;5623:23;5619:32;5616:119;;;5654:79;;:::i;:::-;5616:119;5774:1;5799:53;5844:7;5835:6;5824:9;5820:22;5799:53;:::i;:::-;5789:63;;5745:117;5540:329;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:182::-;7007:34;7003:1;6995:6;6991:14;6984:58;6867:182;:::o;7055:366::-;7197:3;7218:67;7282:2;7277:3;7218:67;:::i;:::-;7211:74;;7294:93;7383:3;7294:93;:::i;:::-;7412:2;7407:3;7403:12;7396:19;;7055:366;;;:::o;7427:419::-;7593:4;7631:2;7620:9;7616:18;7608:26;;7680:9;7674:4;7670:20;7666:1;7655:9;7651:17;7644:47;7708:131;7834:4;7708:131;:::i;:::-;7700:139;;7427:419;;;:::o;7852:143::-;7909:5;7940:6;7934:13;7925:22;;7956:33;7983:5;7956:33;:::i;:::-;7852:143;;;;:::o;8001:351::-;8071:6;8120:2;8108:9;8099:7;8095:23;8091:32;8088:119;;;8126:79;;:::i;:::-;8088:119;8246:1;8271:64;8327:7;8318:6;8307:9;8303:22;8271:64;:::i;:::-;8261:74;;8217:128;8001:351;;;;:::o;8358:332::-;8479:4;8517:2;8506:9;8502:18;8494:26;;8530:71;8598:1;8587:9;8583:17;8574:6;8530:71;:::i;:::-;8611:72;8679:2;8668:9;8664:18;8655:6;8611:72;:::i;:::-;8358:332;;;;;:::o;8696:225::-;8836:34;8832:1;8824:6;8820:14;8813:58;8905:8;8900:2;8892:6;8888:15;8881:33;8696:225;:::o;8927:366::-;9069:3;9090:67;9154:2;9149:3;9090:67;:::i;:::-;9083:74;;9166:93;9255:3;9166:93;:::i;:::-;9284:2;9279:3;9275:12;9268:19;;8927:366;;;:::o;9299:419::-;9465:4;9503:2;9492:9;9488:18;9480:26;;9552:9;9546:4;9542:20;9538:1;9527:9;9523:17;9516:47;9580:131;9706:4;9580:131;:::i;:::-;9572:139;;9299:419;;;:::o;9724:223::-;9864:34;9860:1;9852:6;9848:14;9841:58;9933:6;9928:2;9920:6;9916:15;9909:31;9724:223;:::o;9953:366::-;10095:3;10116:67;10180:2;10175:3;10116:67;:::i;:::-;10109:74;;10192:93;10281:3;10192:93;:::i;:::-;10310:2;10305:3;10301:12;10294:19;;9953:366;;;:::o;10325:419::-;10491:4;10529:2;10518:9;10514:18;10506:26;;10578:9;10572:4;10568:20;10564:1;10553:9;10549:17;10542:47;10606:131;10732:4;10606:131;:::i;:::-;10598:139;;10325:419;;;:::o;10750:221::-;10890:34;10886:1;10878:6;10874:14;10867:58;10959:4;10954:2;10946:6;10942:15;10935:29;10750:221;:::o;10977:366::-;11119:3;11140:67;11204:2;11199:3;11140:67;:::i;:::-;11133:74;;11216:93;11305:3;11216:93;:::i;:::-;11334:2;11329:3;11325:12;11318:19;;10977:366;;;:::o;11349:419::-;11515:4;11553:2;11542:9;11538:18;11530:26;;11602:9;11596:4;11592:20;11588:1;11577:9;11573:17;11566:47;11630:131;11756:4;11630:131;:::i;:::-;11622:139;;11349:419;;;:::o;11774:224::-;11914:34;11910:1;11902:6;11898:14;11891:58;11983:7;11978:2;11970:6;11966:15;11959:32;11774:224;:::o;12004:366::-;12146:3;12167:67;12231:2;12226:3;12167:67;:::i;:::-;12160:74;;12243:93;12332:3;12243:93;:::i;:::-;12361:2;12356:3;12352:12;12345:19;;12004:366;;;:::o;12376:419::-;12542:4;12580:2;12569:9;12565:18;12557:26;;12629:9;12623:4;12619:20;12615:1;12604:9;12600:17;12593:47;12657:131;12783:4;12657:131;:::i;:::-;12649:139;;12376:419;;;:::o;12801:222::-;12941:34;12937:1;12929:6;12925:14;12918:58;13010:5;13005:2;12997:6;12993:15;12986:30;12801:222;:::o;13029:366::-;13171:3;13192:67;13256:2;13251:3;13192:67;:::i;:::-;13185:74;;13268:93;13357:3;13268:93;:::i;:::-;13386:2;13381:3;13377:12;13370:19;;13029:366;;;:::o;13401:419::-;13567:4;13605:2;13594:9;13590:18;13582:26;;13654:9;13648:4;13644:20;13640:1;13629:9;13625:17;13618:47;13682:131;13808:4;13682:131;:::i;:::-;13674:139;;13401:419;;;:::o;13826:228::-;13966:34;13962:1;13954:6;13950:14;13943:58;14035:11;14030:2;14022:6;14018:15;14011:36;13826:228;:::o;14060:366::-;14202:3;14223:67;14287:2;14282:3;14223:67;:::i;:::-;14216:74;;14299:93;14388:3;14299:93;:::i;:::-;14417:2;14412:3;14408:12;14401:19;;14060:366;;;:::o;14432:419::-;14598:4;14636:2;14625:9;14621:18;14613:26;;14685:9;14679:4;14675:20;14671:1;14660:9;14656:17;14649:47;14713:131;14839:4;14713:131;:::i;:::-;14705:139;;14432:419;;;:::o;14857:180::-;14905:77;14902:1;14895:88;15002:4;14999:1;14992:15;15026:4;15023:1;15016:15;15043:194;15083:4;15103:20;15121:1;15103:20;:::i;:::-;15098:25;;15137:20;15155:1;15137:20;:::i;:::-;15132:25;;15181:1;15178;15174:9;15166:17;;15205:1;15199:4;15196:11;15193:37;;;15210:18;;:::i;:::-;15193:37;15043:194;;;;:::o;15243:191::-;15283:3;15302:20;15320:1;15302:20;:::i;:::-;15297:25;;15336:20;15354:1;15336:20;:::i;:::-;15331:25;;15379:1;15376;15372:9;15365:16;;15400:3;15397:1;15394:10;15391:36;;;15407:18;;:::i;:::-;15391:36;15243:191;;;;:::o;15440:177::-;15580:29;15576:1;15568:6;15564:14;15557:53;15440:177;:::o;15623:366::-;15765:3;15786:67;15850:2;15845:3;15786:67;:::i;:::-;15779:74;;15862:93;15951:3;15862:93;:::i;:::-;15980:2;15975:3;15971:12;15964:19;;15623:366;;;:::o;15995:419::-;16161:4;16199:2;16188:9;16184:18;16176:26;;16248:9;16242:4;16238:20;16234:1;16223:9;16219:17;16212:47;16276:131;16402:4;16276:131;:::i;:::-;16268:139;;15995:419;;;:::o;16420:85::-;16465:7;16494:5;16483:16;;16420:85;;;:::o;16511:60::-;16539:3;16560:5;16553:12;;16511:60;;;:::o;16577:158::-;16635:9;16668:61;16686:42;16695:32;16721:5;16695:32;:::i;:::-;16686:42;:::i;:::-;16668:61;:::i;:::-;16655:74;;16577:158;;;:::o;16741:147::-;16836:45;16875:5;16836:45;:::i;:::-;16831:3;16824:58;16741:147;;:::o;16894:807::-;17143:4;17181:3;17170:9;17166:19;17158:27;;17195:71;17263:1;17252:9;17248:17;17239:6;17195:71;:::i;:::-;17276:72;17344:2;17333:9;17329:18;17320:6;17276:72;:::i;:::-;17358:80;17434:2;17423:9;17419:18;17410:6;17358:80;:::i;:::-;17448;17524:2;17513:9;17509:18;17500:6;17448:80;:::i;:::-;17538:73;17606:3;17595:9;17591:19;17582:6;17538:73;:::i;:::-;17621;17689:3;17678:9;17674:19;17665:6;17621:73;:::i;:::-;16894:807;;;;;;;;;:::o;17707:143::-;17764:5;17795:6;17789:13;17780:22;;17811:33;17838:5;17811:33;:::i;:::-;17707:143;;;;:::o;17856:663::-;17944:6;17952;17960;18009:2;17997:9;17988:7;17984:23;17980:32;17977:119;;;18015:79;;:::i;:::-;17977:119;18135:1;18160:64;18216:7;18207:6;18196:9;18192:22;18160:64;:::i;:::-;18150:74;;18106:128;18273:2;18299:64;18355:7;18346:6;18335:9;18331:22;18299:64;:::i;:::-;18289:74;;18244:129;18412:2;18438:64;18494:7;18485:6;18474:9;18470:22;18438:64;:::i;:::-;18428:74;;18383:129;17856:663;;;;;:::o;18525:410::-;18565:7;18588:20;18606:1;18588:20;:::i;:::-;18583:25;;18622:20;18640:1;18622:20;:::i;:::-;18617:25;;18677:1;18674;18670:9;18699:30;18717:11;18699:30;:::i;:::-;18688:41;;18878:1;18869:7;18865:15;18862:1;18859:22;18839:1;18832:9;18812:83;18789:139;;18908:18;;:::i;:::-;18789:139;18573:362;18525:410;;;;:::o;18941:180::-;18989:77;18986:1;18979:88;19086:4;19083:1;19076:15;19110:4;19107:1;19100:15;19127:185;19167:1;19184:20;19202:1;19184:20;:::i;:::-;19179:25;;19218:20;19236:1;19218:20;:::i;:::-;19213:25;;19257:1;19247:35;;19262:18;;:::i;:::-;19247:35;19304:1;19301;19297:9;19292:14;;19127:185;;;;:::o;19318:220::-;19458:34;19454:1;19446:6;19442:14;19435:58;19527:3;19522:2;19514:6;19510:15;19503:28;19318:220;:::o;19544:366::-;19686:3;19707:67;19771:2;19766:3;19707:67;:::i;:::-;19700:74;;19783:93;19872:3;19783:93;:::i;:::-;19901:2;19896:3;19892:12;19885:19;;19544:366;;;:::o;19916:419::-;20082:4;20120:2;20109:9;20105:18;20097:26;;20169:9;20163:4;20159:20;20155:1;20144:9;20140:17;20133:47;20197:131;20323:4;20197:131;:::i;:::-;20189:139;;19916:419;;;:::o

Swarm Source

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