ERC-20
Overview
Max Total Supply
20,000,000 VIDEO
Holders
30
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
60,000 VIDEOValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Video
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-09-25 */ pragma solidity ^0.6.12; // SPDX-License-Identifier: Unlicensed /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor () public { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } 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 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"); // 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; address private _previousOwner; uint256 private _lockTime; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { 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; } } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } 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 Video is IERC20, Context, Ownable, ReentrancyGuard { using Address for address; using SafeMath for uint256; string constant _name = "Video"; string constant _symbol = "VIDEO"; uint8 constant _decimals = 9; uint256 _totalSupply; uint256 _liquidityFee = 5; // 5% of every tx for auto liquidity uint256 _marketingFee = 5; // 5% of every tx for platform paid in $ETH uint256 public constant rate = 200000; // 200,000 tokens per ether (1%) uint256 public availableTokensPresale = 8000000 * 10**9; // 40% of total supply uint256 internal _maxWalletPresaleSize = 1000000 * 10**9; // 5% max buy presale uint256 public constant hardCap = 40 ether; bool public presaleOpen = true; uint256 internal _weiRaised = 0; uint256 _maxSellOnLaunch = 20000 * 10**9; // 0.1% of total; uint256 _maxBuyOnLaunch = 1000000 * 10**9; // 5% max buy uint256 public launchTime; bool private launchLimitEnabled = false; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; bool canSetLaunchTime = true; // this is to enable first minutes sell limit (can only be called once) address payable platformAddress = 0x6e08A47FAF3FD78dBEd27C5720FB18cA30F001cf; address public burnAddress = 0x000000000000000000000000000000000000dEaD; event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event Platform(uint256 tokensSwappedForEth); event SwapAndLiquify(uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity); bool inSwapAndLiquify; bool public swapAndLiquifyEnabled = false; uint256 private constant numTokensSellToAddToLiquidity = 20000 * 10**9; // 0.1% of total modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; constructor () public { _totalSupply = 20000000 * 10 ** 9; _balances[_msgSender()] = _totalSupply; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // Create a uniswap pair for this new token uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); // set the rest of the contract variables uniswapV2Router = _uniswapV2Router; emit Transfer(address(0), _msgSender(), _totalSupply); } 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 9; } function totalSupply() public view override returns (uint256) { return _totalSupply; } function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } function transfer(address recipient, uint256 amount) public 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()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); require(amount > 0); //if selling if(recipient == uniswapV2Pair && sender != owner()) { // if earlier than 30 minutes after launch enable max sell limit if((block.timestamp <= launchTime + 30 minutes) && launchLimitEnabled) require(amount <= _maxSellOnLaunch, "Max sell limit"); } //if buying if(sender == uniswapV2Pair) { // if earlier than 30 minutes after launch enable max sell limit if((block.timestamp <= launchTime + 30 minutes) && launchLimitEnabled) require(amount <= _maxBuyOnLaunch, "Max buy limit"); } uint256 contractTokenBalance = balanceOf(address(this)); bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity; if (overMinTokenBalance && !inSwapAndLiquify && sender != uniswapV2Pair && swapAndLiquifyEnabled) { contractTokenBalance = numTokensSellToAddToLiquidity; //add liquidity swapAndLiquify(contractTokenBalance); } transferWithFees(sender, recipient, amount); } function _takeLiquidity(uint256 _liquidity) private { _balances[address(this)] = _balances[address(this)].add(_liquidity); } function _takeMark(uint256 _mark) private { _balances[address(this)] = _balances[address(this)].add(_mark); } function transferWithFees(address sender, address recipient, uint256 amount) internal { uint256 liqFee = calculateLiquidityFee(amount); uint256 markFee = calculateMarketingFee(amount); // if sender or recipient is owner, dont take fees if(sender == owner() || recipient == owner() || sender == address(this)) { liqFee = 0; markFee = 0; } // transfer with liquidity, marketing and burn fee applied _balances[sender] = _balances[sender].sub(amount); _balances[recipient] = _balances[recipient].add(amount).sub(liqFee).sub(markFee); if(liqFee > 0) _takeLiquidity(liqFee); if(markFee > 0) _takeMark(markFee); emit Transfer(sender, recipient, amount.sub(liqFee).sub(markFee)); } function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { // split the contract balance into halves uint256 half = contractTokenBalance.div(4); uint256 otherHalf = contractTokenBalance.div(4); uint256 portionForFees = contractTokenBalance.sub(half).sub(otherHalf); // capture the contract's current ETH balance. // this is so that we can capture exactly the amount of ETH that the // swap creates, and not make the liquidity event include any ETH that // has been manually sent to the contract uint256 initialBalance = address(this).balance; // swap tokens for ETH swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered // how much ETH did we just swap into? uint256 newBalance = address(this).balance.sub(initialBalance); // add liquidity to uniswap addLiquidity(otherHalf, newBalance); // send eth to platform sendEth(portionForFees); emit SwapAndLiquify(half, newBalance, otherHalf); emit Platform(portionForFees); } function sendEth(uint256 amount) private { swapTokensForEth(amount); platformAddress.transfer(address(this).balance); } function setPlatformAddress(address payable _address) external onlyOwner { platformAddress = _address; } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = 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 ); } // to recieve when swapping on uni receive() external payable { if(presaleOpen) { buyTokens(_msgSender()); } } function buyTokens(address beneficiary) public nonReentrant payable { uint256 weiAmount = msg.value; // this might mess with ZEROES, might have to use msg.value directly preValidatePurchase(beneficiary, weiAmount); uint256 tokens = weiAmount.mul(rate).div(10**9); _weiRaised = _weiRaised.add(weiAmount); availableTokensPresale = availableTokensPresale.sub(tokens); uint256 walletCurrentBalance = balanceOf(beneficiary); require(walletCurrentBalance + tokens <= _maxWalletPresaleSize, "Exceeds maximum wallet token amount"); require(IERC20(address(this)).transfer(beneficiary, tokens), "Presale: transfer error"); } function weiRaised() external view returns(uint256) { return _weiRaised; } function preValidatePurchase(address beneficiary, uint256 weiAmount) internal view { require(beneficiary != address(0), "Crowdsale: beneficiary is the zero address"); require(weiAmount > 0, "Crowdsale: weiAmount is 0"); require((_weiRaised+weiAmount) <= hardCap, 'Hard Cap reached'); this; } function getTokenAmount(uint256 weiAmount) internal pure returns (uint256) { return weiAmount.mul(rate).div(10**9); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } function _approve(address owner, address spender, uint256 amount) internal { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); require(amount <= _balances[owner], "amount to approve must be less than or equal to account balance"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function calculateLiquidityFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_liquidityFee).div(10**2); } function calculateMarketingFee(uint256 _amount) private view returns(uint256) { return _amount.mul(_marketingFee).div(10**2); } function setLiquidityFee(uint256 _amount) external onlyOwner { _liquidityFee = _amount; } function setMarketingFee(uint256 _amount) external onlyOwner { _marketingFee = _amount; } function setSwapAndLiquifyEnabled(bool _enabled) external onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } // can only be called once to set tha launch sell limit function setLaunchTime() external onlyOwner { require(canSetLaunchTime == true, "Launch time is already set"); launchTime = block.timestamp; launchLimitEnabled = true; canSetLaunchTime = false; } function endPresaleAndWithdrawEth() external onlyOwner { presaleOpen = false; if(address(this).balance > 0) payable(owner()).transfer(address(this).balance); // burn any unsold tokens if(IERC20(address(this)).balanceOf(address(this)) > 0) IERC20(address(this)).transfer(burnAddress, IERC20(address(this)).balanceOf(address(this))); } }
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":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","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":"tokensSwappedForEth","type":"uint256"}],"name":"Platform","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"availableTokensPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"beneficiary","type":"address"}],"name":"buyTokens","outputs":[],"stateMutability":"payable","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":[],"name":"endPresaleAndWithdrawEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"hardCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launchTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"presaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setLaunchTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setLiquidityFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMarketingFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_address","type":"address"}],"name":"setPlatformAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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"},{"inputs":[],"name":"weiRaised","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526005808055600655661c6bf52634000060075566038d7ea4c68000600881905560098054600160ff1991821681179092556000600a556512309ce54000600b55600c92909255600e8054831690556011805490921617610100600160a81b031916746e08a47faf3fd78dbed27c5720fb18ca30f001cf001790556012805461dead6001600160a01b03199091161760ff60a81b19169055348015620000a857600080fd5b506000620000b562000339565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600160035566470de4df8200006004819055600f60006200011f62000339565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200019657600080fd5b505afa158015620001ab573d6000803e3d6000fd5b505050506040513d6020811015620001c257600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200021357600080fd5b505afa15801562000228573d6000803e3d6000fd5b505050506040513d60208110156200023f57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200029257600080fd5b505af1158015620002a7573d6000803e3d6000fd5b505050506040513d6020811015620002be57600080fd5b50516001600160601b0319606091821b811660a0529082901b16608052620002e562000339565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6004546040518082815260200191505060405180910390a3506200033d565b3390565b60805160601c60a05160601c61210a6200038f60003980610a6b52806115da528061169e52806117725250806108fd5280611b8d5280611c455280611c6c5280611d5a5280611d81525061210a6000f3fe6080604052600436106101dc5760003560e01c806370d5ae0511610102578063bee6348a11610095578063ec8ac4d811610064578063ec8ac4d814610668578063f2fde38b1461068e578063fb86a404146106c1578063ff704099146106d6576101fe565b8063bee6348a146105b9578063c49b9a80146105ce578063cc03c342146105fa578063dd62ed3e1461062d576101fe565b806395d89b41116100d157806395d89b411461051d5780639f142baa14610532578063a457c2d714610547578063a9059cbb14610580576101fe565b806370d5ae05146104c9578063715018a6146104de578063790ca413146104f35780638da5cb5b14610508576101fe565b8063357bf15c1161017a5780634a74bb02116101495780634a74bb021461044257806352df7ecd14610457578063625e764c1461046c57806370a0823114610496576101fe565b8063357bf15c146103b557806339509351146103df5780634042b66f1461041857806349bd5a5e1461042d576101fe565b806318160ddd116101b657806318160ddd1461030b57806323b872dd146103325780632c4e722e14610375578063313ce5671461038a576101fe565b806306fdde0314610203578063095ea7b31461028d5780631694505e146102da576101fe565b366101fe5760095460ff16156101fc576101fc6101f76106eb565b6106ef565b005b600080fd5b34801561020f57600080fd5b506102186108be565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561025257818101518382015260200161023a565b50505050905090810190601f16801561027f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561029957600080fd5b506102c6600480360360408110156102b057600080fd5b506001600160a01b0381351690602001356108dd565b604080519115158252519081900360200190f35b3480156102e657600080fd5b506102ef6108fb565b604080516001600160a01b039092168252519081900360200190f35b34801561031757600080fd5b5061032061091f565b60408051918252519081900360200190f35b34801561033e57600080fd5b506102c66004803603606081101561035557600080fd5b506001600160a01b03813581169160208101359091169060400135610925565b34801561038157600080fd5b506103206109ac565b34801561039657600080fd5b5061039f6109b3565b6040805160ff9092168252519081900360200190f35b3480156103c157600080fd5b506101fc600480360360208110156103d857600080fd5b50356109b8565b3480156103eb57600080fd5b506102c66004803603604081101561040257600080fd5b506001600160a01b038135169060200135610a15565b34801561042457600080fd5b50610320610a63565b34801561043957600080fd5b506102ef610a69565b34801561044e57600080fd5b506102c6610a8d565b34801561046357600080fd5b50610320610a9d565b34801561047857600080fd5b506101fc6004803603602081101561048f57600080fd5b5035610aa3565b3480156104a257600080fd5b50610320600480360360208110156104b957600080fd5b50356001600160a01b0316610b00565b3480156104d557600080fd5b506102ef610b1b565b3480156104ea57600080fd5b506101fc610b2a565b3480156104ff57600080fd5b50610320610bcc565b34801561051457600080fd5b506102ef610bd2565b34801561052957600080fd5b50610218610be1565b34801561053e57600080fd5b506101fc610c00565b34801561055357600080fd5b506102c66004803603604081101561056a57600080fd5b506001600160a01b038135169060200135610cd3565b34801561058c57600080fd5b506102c6600480360360408110156105a357600080fd5b506001600160a01b038135169060200135610d3b565b3480156105c557600080fd5b506102c6610d4f565b3480156105da57600080fd5b506101fc600480360360208110156105f157600080fd5b50351515610d58565b34801561060657600080fd5b506101fc6004803603602081101561061d57600080fd5b50356001600160a01b0316610e03565b34801561063957600080fd5b506103206004803603604081101561065057600080fd5b506001600160a01b0381358116916020013516610e83565b6101fc6004803603602081101561067e57600080fd5b50356001600160a01b03166106ef565b34801561069a57600080fd5b506101fc600480360360208110156106b157600080fd5b50356001600160a01b0316610eae565b3480156106cd57600080fd5b50610320610fa6565b3480156106e257600080fd5b506101fc610fb3565b3390565b60026003541415610747576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b60026003553461075782826111d1565b6000610774633b9aca0061076e8462030d406112c0565b90611320565b600a549091506107849083611362565b600a5560075461079490826113bc565b60075560006107a284610b00565b905060085482820111156107e75760405162461bcd60e51b8152600401808060200182810382526023815260200180611f726023913960400191505060405180910390fd5b6040805163a9059cbb60e01b81526001600160a01b0386166004820152602481018490529051309163a9059cbb9160448083019260209291908290030181600087803b15801561083657600080fd5b505af115801561084a573d6000803e3d6000fd5b505050506040513d602081101561086057600080fd5b50516108b3576040805162461bcd60e51b815260206004820152601760248201527f50726573616c653a207472616e73666572206572726f72000000000000000000604482015290519081900360640190fd5b505060016003555050565b604080518082019091526005815264566964656f60d81b602082015290565b60006108f16108ea6106eb565b84846113fe565b5060015b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60045490565b6000610932848484611541565b6109a28461093e6106eb565b61099d85604051806060016040528060288152602001611fb6602891396001600160a01b038a1660009081526010602052604081209061097c6106eb565b6001600160a01b0316815260208101919091526040016000205491906117e5565b6113fe565b5060019392505050565b62030d4081565b600990565b6109c06106eb565b6000546001600160a01b03908116911614610a10576040805162461bcd60e51b81526020600482018190526024820152600080516020611fde833981519152604482015290519081900360640190fd5b600555565b60006108f1610a226106eb565b8461099d8560106000610a336106eb565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611362565b600a5490565b7f000000000000000000000000000000000000000000000000000000000000000081565b601254600160a81b900460ff1681565b60075481565b610aab6106eb565b6000546001600160a01b03908116911614610afb576040805162461bcd60e51b81526020600482018190526024820152600080516020611fde833981519152604482015290519081900360640190fd5b600655565b6001600160a01b03166000908152600f602052604090205490565b6012546001600160a01b031681565b610b326106eb565b6000546001600160a01b03908116911614610b82576040805162461bcd60e51b81526020600482018190526024820152600080516020611fde833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600d5481565b6000546001600160a01b031690565b604080518082019091526005815264564944454f60d81b602082015290565b610c086106eb565b6000546001600160a01b03908116911614610c58576040805162461bcd60e51b81526020600482018190526024820152600080516020611fde833981519152604482015290519081900360640190fd5b60115460ff161515600114610cb4576040805162461bcd60e51b815260206004820152601a60248201527f4c61756e63682074696d6520697320616c726561647920736574000000000000604482015290519081900360640190fd5b42600d55600e805460ff19908116600117909155601180549091169055565b60006108f1610ce06106eb565b8461099d856040518060600160405280602581526020016120b06025913960106000610d0a6106eb565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906117e5565b60006108f1610d486106eb565b8484611541565b60095460ff1681565b610d606106eb565b6000546001600160a01b03908116911614610db0576040805162461bcd60e51b81526020600482018190526024820152600080516020611fde833981519152604482015290519081900360640190fd5b60128054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b610e0b6106eb565b6000546001600160a01b03908116911614610e5b576040805162461bcd60e51b81526020600482018190526024820152600080516020611fde833981519152604482015290519081900360640190fd5b601180546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b03918216600090815260106020908152604080832093909416825291909152205490565b610eb66106eb565b6000546001600160a01b03908116911614610f06576040805162461bcd60e51b81526020600482018190526024820152600080516020611fde833981519152604482015290519081900360640190fd5b6001600160a01b038116610f4b5760405162461bcd60e51b8152600401808060200182810382526026815260200180611f2a6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b68022b1c8c1227a0000081565b610fbb6106eb565b6000546001600160a01b0390811691161461100b576040805162461bcd60e51b81526020600482018190526024820152600080516020611fde833981519152604482015290519081900360640190fd5b6009805460ff19169055471561105d57611023610bd2565b6001600160a01b03166108fc479081150290604051600060405180830381858888f1935050505015801561105b573d6000803e3d6000fd5b505b604080516370a0823160e01b815230600482018190529151600092916370a08231916024808301926020929190829003018186803b15801561109e57600080fd5b505afa1580156110b2573d6000803e3d6000fd5b505050506040513d60208110156110c857600080fd5b505111156111cf57601254604080516370a0823160e01b815230600482018190529151919263a9059cbb926001600160a01b039091169184916370a0823191602480820192602092909190829003018186803b15801561112757600080fd5b505afa15801561113b573d6000803e3d6000fd5b505050506040513d602081101561115157600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b03909316600484015260248301919091525160448083019260209291908290030181600087803b1580156111a257600080fd5b505af11580156111b6573d6000803e3d6000fd5b505050506040513d60208110156111cc57600080fd5b50505b565b6001600160a01b0382166112165760405162461bcd60e51b815260040180806020018281038252602a815260200180611ffe602a913960400191505060405180910390fd5b6000811161126b576040805162461bcd60e51b815260206004820152601960248201527f43726f776473616c653a20776569416d6f756e74206973203000000000000000604482015290519081900360640190fd5b68022b1c8c1227a0000081600a540111156111cc576040805162461bcd60e51b815260206004820152601060248201526f12185c990810d85c081c995858da195960821b604482015290519081900360640190fd5b6000826112cf575060006108f5565b828202828482816112dc57fe5b04146113195760405162461bcd60e51b8152600401808060200182810382526021815260200180611f956021913960400191505060405180910390fd5b9392505050565b600061131983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061187c565b600082820183811015611319576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600061131983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506117e5565b6001600160a01b0383166114435760405162461bcd60e51b815260040180806020018281038252602481526020018061208c6024913960400191505060405180910390fd5b6001600160a01b0382166114885760405162461bcd60e51b8152600401808060200182810382526022815260200180611f506022913960400191505060405180910390fd5b6001600160a01b0383166000908152600f60205260409020548111156114df5760405162461bcd60e51b815260040180806020018281038252603f81526020018061204d603f913960400191505060405180910390fd5b6001600160a01b03808416600081815260106020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166115865760405162461bcd60e51b81526004018080602001828103825260258152602001806120286025913960400191505060405180910390fd5b6001600160a01b0382166115cb5760405162461bcd60e51b8152600401808060200182810382526023815260200180611f076023913960400191505060405180910390fd5b600081116115d857600080fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316148015611632575061161c610bd2565b6001600160a01b0316836001600160a01b031614155b1561169c57600d5461070801421115801561164f5750600e5460ff165b1561169c57600b5481111561169c576040805162461bcd60e51b815260206004820152600e60248201526d13585e081cd95b1b081b1a5b5a5d60921b604482015290519081900360640190fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316141561173a57600d546107080142111580156116ee5750600e5460ff165b1561173a57600c5481111561173a576040805162461bcd60e51b815260206004820152600d60248201526c13585e08189d5e481b1a5b5a5d609a1b604482015290519081900360640190fd5b600061174530610b00565b90506512309ce54000811080159081906117695750601254600160a01b900460ff16155b80156117a757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b80156117bc5750601254600160a81b900460ff165b156117d3576512309ce5400091506117d3826118e1565b6117de8585856119dd565b5050505050565b600081848411156118745760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611839578181015183820152602001611821565b50505050905090810190601f1680156118665780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600081836118cb5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611839578181015183820152602001611821565b5060008385816118d757fe5b0495945050505050565b6012805460ff60a01b1916600160a01b1790556000611901826004611320565b90506000611910836004611320565b905060006119288261192286866113bc565b906113bc565b90504761193484611b3d565b600061194047836113bc565b905061194c8482611d54565b61195583611e58565b604080518681526020810183905280820186905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a16040805184815290517fd60a2fa9097fcd45f48dce94ae71d7f69804b48f7e91b543b6c1bdea4f5c77879181900360200190a150506012805460ff60a01b1916905550505050565b60006119e882611ea1565b905060006119f583611ebd565b90506119ff610bd2565b6001600160a01b0316856001600160a01b03161480611a365750611a21610bd2565b6001600160a01b0316846001600160a01b0316145b80611a4957506001600160a01b03851630145b15611a55575060009050805b6001600160a01b0385166000908152600f6020526040902054611a7890846113bc565b6001600160a01b038087166000908152600f60205260408082209390935590861681522054611ab1908290611922908590829088611362565b6001600160a01b0385166000908152600f60205260409020558115611ad957611ad982611ed9565b8015611ae857611ae881611ed9565b6001600160a01b038085169086167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef611b258461192288886113bc565b60408051918252519081900360200190a35050505050565b60408051600280825260608083018452926020830190803683370190505090503081600081518110611b6b57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611be457600080fd5b505afa158015611bf8573d6000803e3d6000fd5b505050506040513d6020811015611c0e57600080fd5b5051815182906001908110611c1f57fe5b60200260200101906001600160a01b031690816001600160a01b031681525050611c6a307f0000000000000000000000000000000000000000000000000000000000000000846113fe565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015611d0f578181015183820152602001611cf7565b505050509050019650505050505050600060405180830381600087803b158015611d3857600080fd5b505af1158015611d4c573d6000803e3d6000fd5b505050505050565b611d7f307f0000000000000000000000000000000000000000000000000000000000000000846113fe565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d719823085600080611dbc610bd2565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b158015611e2757600080fd5b505af1158015611e3b573d6000803e3d6000fd5b50505050506040513d6060811015611e5257600080fd5b50505050565b611e6181611b3d565b6011546040516001600160a01b0361010090920491909116904780156108fc02916000818181858888f193505050501580156111cc573d6000803e3d6000fd5b60006108f5606461076e600554856112c090919063ffffffff16565b60006108f5606461076e600654856112c090919063ffffffff16565b306000908152600f6020526040902054611ef39082611362565b306000908152600f60205260409020555056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f756e74536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657243726f776473616c653a2062656e656669636961727920697320746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373616d6f756e7420746f20617070726f7665206d757374206265206c657373207468616e206f7220657175616c20746f206163636f756e742062616c616e636545524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206c2c54aba40ed4db130225ccb7c0aefae00a65720c12448915af84591510eda864736f6c634300060c0033
Deployed Bytecode
0x6080604052600436106101dc5760003560e01c806370d5ae0511610102578063bee6348a11610095578063ec8ac4d811610064578063ec8ac4d814610668578063f2fde38b1461068e578063fb86a404146106c1578063ff704099146106d6576101fe565b8063bee6348a146105b9578063c49b9a80146105ce578063cc03c342146105fa578063dd62ed3e1461062d576101fe565b806395d89b41116100d157806395d89b411461051d5780639f142baa14610532578063a457c2d714610547578063a9059cbb14610580576101fe565b806370d5ae05146104c9578063715018a6146104de578063790ca413146104f35780638da5cb5b14610508576101fe565b8063357bf15c1161017a5780634a74bb02116101495780634a74bb021461044257806352df7ecd14610457578063625e764c1461046c57806370a0823114610496576101fe565b8063357bf15c146103b557806339509351146103df5780634042b66f1461041857806349bd5a5e1461042d576101fe565b806318160ddd116101b657806318160ddd1461030b57806323b872dd146103325780632c4e722e14610375578063313ce5671461038a576101fe565b806306fdde0314610203578063095ea7b31461028d5780631694505e146102da576101fe565b366101fe5760095460ff16156101fc576101fc6101f76106eb565b6106ef565b005b600080fd5b34801561020f57600080fd5b506102186108be565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561025257818101518382015260200161023a565b50505050905090810190601f16801561027f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561029957600080fd5b506102c6600480360360408110156102b057600080fd5b506001600160a01b0381351690602001356108dd565b604080519115158252519081900360200190f35b3480156102e657600080fd5b506102ef6108fb565b604080516001600160a01b039092168252519081900360200190f35b34801561031757600080fd5b5061032061091f565b60408051918252519081900360200190f35b34801561033e57600080fd5b506102c66004803603606081101561035557600080fd5b506001600160a01b03813581169160208101359091169060400135610925565b34801561038157600080fd5b506103206109ac565b34801561039657600080fd5b5061039f6109b3565b6040805160ff9092168252519081900360200190f35b3480156103c157600080fd5b506101fc600480360360208110156103d857600080fd5b50356109b8565b3480156103eb57600080fd5b506102c66004803603604081101561040257600080fd5b506001600160a01b038135169060200135610a15565b34801561042457600080fd5b50610320610a63565b34801561043957600080fd5b506102ef610a69565b34801561044e57600080fd5b506102c6610a8d565b34801561046357600080fd5b50610320610a9d565b34801561047857600080fd5b506101fc6004803603602081101561048f57600080fd5b5035610aa3565b3480156104a257600080fd5b50610320600480360360208110156104b957600080fd5b50356001600160a01b0316610b00565b3480156104d557600080fd5b506102ef610b1b565b3480156104ea57600080fd5b506101fc610b2a565b3480156104ff57600080fd5b50610320610bcc565b34801561051457600080fd5b506102ef610bd2565b34801561052957600080fd5b50610218610be1565b34801561053e57600080fd5b506101fc610c00565b34801561055357600080fd5b506102c66004803603604081101561056a57600080fd5b506001600160a01b038135169060200135610cd3565b34801561058c57600080fd5b506102c6600480360360408110156105a357600080fd5b506001600160a01b038135169060200135610d3b565b3480156105c557600080fd5b506102c6610d4f565b3480156105da57600080fd5b506101fc600480360360208110156105f157600080fd5b50351515610d58565b34801561060657600080fd5b506101fc6004803603602081101561061d57600080fd5b50356001600160a01b0316610e03565b34801561063957600080fd5b506103206004803603604081101561065057600080fd5b506001600160a01b0381358116916020013516610e83565b6101fc6004803603602081101561067e57600080fd5b50356001600160a01b03166106ef565b34801561069a57600080fd5b506101fc600480360360208110156106b157600080fd5b50356001600160a01b0316610eae565b3480156106cd57600080fd5b50610320610fa6565b3480156106e257600080fd5b506101fc610fb3565b3390565b60026003541415610747576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b60026003553461075782826111d1565b6000610774633b9aca0061076e8462030d406112c0565b90611320565b600a549091506107849083611362565b600a5560075461079490826113bc565b60075560006107a284610b00565b905060085482820111156107e75760405162461bcd60e51b8152600401808060200182810382526023815260200180611f726023913960400191505060405180910390fd5b6040805163a9059cbb60e01b81526001600160a01b0386166004820152602481018490529051309163a9059cbb9160448083019260209291908290030181600087803b15801561083657600080fd5b505af115801561084a573d6000803e3d6000fd5b505050506040513d602081101561086057600080fd5b50516108b3576040805162461bcd60e51b815260206004820152601760248201527f50726573616c653a207472616e73666572206572726f72000000000000000000604482015290519081900360640190fd5b505060016003555050565b604080518082019091526005815264566964656f60d81b602082015290565b60006108f16108ea6106eb565b84846113fe565b5060015b92915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60045490565b6000610932848484611541565b6109a28461093e6106eb565b61099d85604051806060016040528060288152602001611fb6602891396001600160a01b038a1660009081526010602052604081209061097c6106eb565b6001600160a01b0316815260208101919091526040016000205491906117e5565b6113fe565b5060019392505050565b62030d4081565b600990565b6109c06106eb565b6000546001600160a01b03908116911614610a10576040805162461bcd60e51b81526020600482018190526024820152600080516020611fde833981519152604482015290519081900360640190fd5b600555565b60006108f1610a226106eb565b8461099d8560106000610a336106eb565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611362565b600a5490565b7f000000000000000000000000ac8c1e4261b7bc8a861095ebafc3749acc369d9881565b601254600160a81b900460ff1681565b60075481565b610aab6106eb565b6000546001600160a01b03908116911614610afb576040805162461bcd60e51b81526020600482018190526024820152600080516020611fde833981519152604482015290519081900360640190fd5b600655565b6001600160a01b03166000908152600f602052604090205490565b6012546001600160a01b031681565b610b326106eb565b6000546001600160a01b03908116911614610b82576040805162461bcd60e51b81526020600482018190526024820152600080516020611fde833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600d5481565b6000546001600160a01b031690565b604080518082019091526005815264564944454f60d81b602082015290565b610c086106eb565b6000546001600160a01b03908116911614610c58576040805162461bcd60e51b81526020600482018190526024820152600080516020611fde833981519152604482015290519081900360640190fd5b60115460ff161515600114610cb4576040805162461bcd60e51b815260206004820152601a60248201527f4c61756e63682074696d6520697320616c726561647920736574000000000000604482015290519081900360640190fd5b42600d55600e805460ff19908116600117909155601180549091169055565b60006108f1610ce06106eb565b8461099d856040518060600160405280602581526020016120b06025913960106000610d0a6106eb565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906117e5565b60006108f1610d486106eb565b8484611541565b60095460ff1681565b610d606106eb565b6000546001600160a01b03908116911614610db0576040805162461bcd60e51b81526020600482018190526024820152600080516020611fde833981519152604482015290519081900360640190fd5b60128054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b610e0b6106eb565b6000546001600160a01b03908116911614610e5b576040805162461bcd60e51b81526020600482018190526024820152600080516020611fde833981519152604482015290519081900360640190fd5b601180546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b03918216600090815260106020908152604080832093909416825291909152205490565b610eb66106eb565b6000546001600160a01b03908116911614610f06576040805162461bcd60e51b81526020600482018190526024820152600080516020611fde833981519152604482015290519081900360640190fd5b6001600160a01b038116610f4b5760405162461bcd60e51b8152600401808060200182810382526026815260200180611f2a6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b68022b1c8c1227a0000081565b610fbb6106eb565b6000546001600160a01b0390811691161461100b576040805162461bcd60e51b81526020600482018190526024820152600080516020611fde833981519152604482015290519081900360640190fd5b6009805460ff19169055471561105d57611023610bd2565b6001600160a01b03166108fc479081150290604051600060405180830381858888f1935050505015801561105b573d6000803e3d6000fd5b505b604080516370a0823160e01b815230600482018190529151600092916370a08231916024808301926020929190829003018186803b15801561109e57600080fd5b505afa1580156110b2573d6000803e3d6000fd5b505050506040513d60208110156110c857600080fd5b505111156111cf57601254604080516370a0823160e01b815230600482018190529151919263a9059cbb926001600160a01b039091169184916370a0823191602480820192602092909190829003018186803b15801561112757600080fd5b505afa15801561113b573d6000803e3d6000fd5b505050506040513d602081101561115157600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b03909316600484015260248301919091525160448083019260209291908290030181600087803b1580156111a257600080fd5b505af11580156111b6573d6000803e3d6000fd5b505050506040513d60208110156111cc57600080fd5b50505b565b6001600160a01b0382166112165760405162461bcd60e51b815260040180806020018281038252602a815260200180611ffe602a913960400191505060405180910390fd5b6000811161126b576040805162461bcd60e51b815260206004820152601960248201527f43726f776473616c653a20776569416d6f756e74206973203000000000000000604482015290519081900360640190fd5b68022b1c8c1227a0000081600a540111156111cc576040805162461bcd60e51b815260206004820152601060248201526f12185c990810d85c081c995858da195960821b604482015290519081900360640190fd5b6000826112cf575060006108f5565b828202828482816112dc57fe5b04146113195760405162461bcd60e51b8152600401808060200182810382526021815260200180611f956021913960400191505060405180910390fd5b9392505050565b600061131983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061187c565b600082820183811015611319576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600061131983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506117e5565b6001600160a01b0383166114435760405162461bcd60e51b815260040180806020018281038252602481526020018061208c6024913960400191505060405180910390fd5b6001600160a01b0382166114885760405162461bcd60e51b8152600401808060200182810382526022815260200180611f506022913960400191505060405180910390fd5b6001600160a01b0383166000908152600f60205260409020548111156114df5760405162461bcd60e51b815260040180806020018281038252603f81526020018061204d603f913960400191505060405180910390fd5b6001600160a01b03808416600081815260106020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166115865760405162461bcd60e51b81526004018080602001828103825260258152602001806120286025913960400191505060405180910390fd5b6001600160a01b0382166115cb5760405162461bcd60e51b8152600401808060200182810382526023815260200180611f076023913960400191505060405180910390fd5b600081116115d857600080fd5b7f000000000000000000000000ac8c1e4261b7bc8a861095ebafc3749acc369d986001600160a01b0316826001600160a01b0316148015611632575061161c610bd2565b6001600160a01b0316836001600160a01b031614155b1561169c57600d5461070801421115801561164f5750600e5460ff165b1561169c57600b5481111561169c576040805162461bcd60e51b815260206004820152600e60248201526d13585e081cd95b1b081b1a5b5a5d60921b604482015290519081900360640190fd5b7f000000000000000000000000ac8c1e4261b7bc8a861095ebafc3749acc369d986001600160a01b0316836001600160a01b0316141561173a57600d546107080142111580156116ee5750600e5460ff165b1561173a57600c5481111561173a576040805162461bcd60e51b815260206004820152600d60248201526c13585e08189d5e481b1a5b5a5d609a1b604482015290519081900360640190fd5b600061174530610b00565b90506512309ce54000811080159081906117695750601254600160a01b900460ff16155b80156117a757507f000000000000000000000000ac8c1e4261b7bc8a861095ebafc3749acc369d986001600160a01b0316856001600160a01b031614155b80156117bc5750601254600160a81b900460ff165b156117d3576512309ce5400091506117d3826118e1565b6117de8585856119dd565b5050505050565b600081848411156118745760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611839578181015183820152602001611821565b50505050905090810190601f1680156118665780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600081836118cb5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611839578181015183820152602001611821565b5060008385816118d757fe5b0495945050505050565b6012805460ff60a01b1916600160a01b1790556000611901826004611320565b90506000611910836004611320565b905060006119288261192286866113bc565b906113bc565b90504761193484611b3d565b600061194047836113bc565b905061194c8482611d54565b61195583611e58565b604080518681526020810183905280820186905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a16040805184815290517fd60a2fa9097fcd45f48dce94ae71d7f69804b48f7e91b543b6c1bdea4f5c77879181900360200190a150506012805460ff60a01b1916905550505050565b60006119e882611ea1565b905060006119f583611ebd565b90506119ff610bd2565b6001600160a01b0316856001600160a01b03161480611a365750611a21610bd2565b6001600160a01b0316846001600160a01b0316145b80611a4957506001600160a01b03851630145b15611a55575060009050805b6001600160a01b0385166000908152600f6020526040902054611a7890846113bc565b6001600160a01b038087166000908152600f60205260408082209390935590861681522054611ab1908290611922908590829088611362565b6001600160a01b0385166000908152600f60205260409020558115611ad957611ad982611ed9565b8015611ae857611ae881611ed9565b6001600160a01b038085169086167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef611b258461192288886113bc565b60408051918252519081900360200190a35050505050565b60408051600280825260608083018452926020830190803683370190505090503081600081518110611b6b57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611be457600080fd5b505afa158015611bf8573d6000803e3d6000fd5b505050506040513d6020811015611c0e57600080fd5b5051815182906001908110611c1f57fe5b60200260200101906001600160a01b031690816001600160a01b031681525050611c6a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846113fe565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015611d0f578181015183820152602001611cf7565b505050509050019650505050505050600060405180830381600087803b158015611d3857600080fd5b505af1158015611d4c573d6000803e3d6000fd5b505050505050565b611d7f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846113fe565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d719823085600080611dbc610bd2565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b158015611e2757600080fd5b505af1158015611e3b573d6000803e3d6000fd5b50505050506040513d6060811015611e5257600080fd5b50505050565b611e6181611b3d565b6011546040516001600160a01b0361010090920491909116904780156108fc02916000818181858888f193505050501580156111cc573d6000803e3d6000fd5b60006108f5606461076e600554856112c090919063ffffffff16565b60006108f5606461076e600654856112c090919063ffffffff16565b306000908152600f6020526040902054611ef39082611362565b306000908152600f60205260409020555056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f756e74536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657243726f776473616c653a2062656e656669636961727920697320746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373616d6f756e7420746f20617070726f7665206d757374206265206c657373207468616e206f7220657175616c20746f206163636f756e742062616c616e636545524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206c2c54aba40ed4db130225ccb7c0aefae00a65720c12448915af84591510eda864736f6c634300060c0033
Deployed Bytecode Sourcemap
27331:13120:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36655:11;;;;36652:66;;;36683:23;36693:12;:10;:12::i;:::-;36683:9;:23::i;:::-;27331:13120;;;;;30053:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30915:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30915:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;29339:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;29339:51:0;;;;;;;;;;;;;;30334:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;31088:313;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31088:313:0;;;;;;;;;;;;;;;;;:::i;27764:37::-;;;;;;;;;;;;;:::i;30247:75::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39330:103;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39330:103:0;;:::i;31413:210::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31413:210:0;;;;;;;;:::i;37446:88::-;;;;;;;;;;;;;:::i;29397:38::-;;;;;;;;;;;;;:::i;29067:41::-;;;;;;;;;;;;;:::i;27841:55::-;;;;;;;;;;;;;:::i;39441:103::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39441:103:0;;:::i;30446:119::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30446:119:0;-1:-1:-1;;;;;30446:119:0;;:::i;28677:71::-;;;;;;;;;;;;;:::i;18814:148::-;;;;;;;;;;;;;:::i;28264:25::-;;;;;;;;;;;;;:::i;18171:79::-;;;;;;;;;;;;;:::i;30148:87::-;;;;;;;;;;;;;:::i;39794:236::-;;;;;;;;;;;;;:::i;31635:261::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31635:261:0;;;;;;;;:::i;30577:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30577:171:0;;;;;;;;:::i;28060:30::-;;;;;;;;;;;;;:::i;39552:173::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39552:173:0;;;;:::i;35847:118::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35847:118:0;-1:-1:-1;;;;;35847:118:0;;:::i;30760:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30760:143:0;;;;;;;;;;:::i;36733:705::-;;;;;;;;;;;;;;;;-1:-1:-1;36733:705:0;-1:-1:-1;;;;;36733:705:0;;:::i;19117:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19117:244:0;-1:-1:-1;;;;;19117:244:0;;:::i;28011:42::-;;;;;;;;;;;;;:::i;40038:404::-;;;;;;;;;;;;;:::i;10579:106::-;10667:10;10579:106;:::o;36733:705::-;1719:1;2323:7;;:19;;2315:63;;;;;-1:-1:-1;;;2315:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;1719:1;2456:7;:18;36832:9:::1;36921:43;36941:11:::0;36832:9;36921:19:::1;:43::i;:::-;36977:14;36994:30;37018:5;36994:19;:9:::0;27795:6:::1;36994:13;:19::i;:::-;:23:::0;::::1;:30::i;:::-;37048:10;::::0;36977:47;;-1:-1:-1;37048:25:0::1;::::0;37063:9;37048:14:::1;:25::i;:::-;37035:10;:38:::0;37109:22:::1;::::0;:34:::1;::::0;37136:6;37109:26:::1;:34::i;:::-;37084:22;:59:::0;37156:28:::1;37187:22;37197:11:::0;37187:9:::1;:22::i;:::-;37156:53;;37261:21;;37251:6;37228:20;:29;:54;;37220:102;;;;-1:-1:-1::0;;;37220:102:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37351:51;::::0;;-1:-1:-1;;;37351:51:0;;-1:-1:-1;;;;;37351:51:0;::::1;;::::0;::::1;::::0;;;;;;;;;37366:4:::1;::::0;37351:30:::1;::::0;:51;;;;;::::1;::::0;;;;;;;;-1:-1:-1;37366:4:0;37351:51;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;37351:51:0;37343:87:::1;;;::::0;;-1:-1:-1;;;37343:87:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;1675:1:0;2635:7;:22;-1:-1:-1;;36733:705:0:o;30053:83::-;30123:5;;;;;;;;;;;;-1:-1:-1;;;30123:5:0;;;;30053:83;:::o;30915:161::-;30990:4;31007:39;31016:12;:10;:12::i;:::-;31030:7;31039:6;31007:8;:39::i;:::-;-1:-1:-1;31064:4:0;30915:161;;;;;:::o;29339:51::-;;;:::o;30334:100::-;30414:12;;30334:100;:::o;31088:313::-;31186:4;31203:36;31213:6;31221:9;31232:6;31203:9;:36::i;:::-;31250:121;31259:6;31267:12;:10;:12::i;:::-;31281:89;31319:6;31281:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31281:19:0;;;;;;:11;:19;;;;;;31301:12;:10;:12::i;:::-;-1:-1:-1;;;;;31281:33:0;;;;;;;;;;;;-1:-1:-1;31281:33:0;;;:89;:37;:89::i;:::-;31250:8;:121::i;:::-;-1:-1:-1;31389:4:0;31088:313;;;;;:::o;27764:37::-;27795:6;27764:37;:::o;30247:75::-;30313:1;30247:75;:::o;39330:103::-;18393:12;:10;:12::i;:::-;18383:6;;-1:-1:-1;;;;;18383:6:0;;;:22;;;18375:67;;;;;-1:-1:-1;;;18375:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18375:67:0;;;;;;;;;;;;;;;39402:13:::1;:23:::0;39330:103::o;31413:210::-;31493:4;31510:83;31519:12;:10;:12::i;:::-;31533:7;31542:50;31581:10;31542:11;:25;31554:12;:10;:12::i;:::-;-1:-1:-1;;;;;31542:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;31542:25:0;;;:34;;;;;;;;;;;:38;:50::i;37446:88::-;37516:10;;37446:88;:::o;29397:38::-;;;:::o;29067:41::-;;;-1:-1:-1;;;29067:41:0;;;;;:::o;27841:55::-;;;;:::o;39441:103::-;18393:12;:10;:12::i;:::-;18383:6;;-1:-1:-1;;;;;18383:6:0;;;:22;;;18375:67;;;;;-1:-1:-1;;;18375:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18375:67:0;;;;;;;;;;;;;;;39513:13:::1;:23:::0;39441:103::o;30446:119::-;-1:-1:-1;;;;;30539:18:0;30512:7;30539:18;;;:9;:18;;;;;;;30446:119::o;28677:71::-;;;-1:-1:-1;;;;;28677:71:0;;:::o;18814:148::-;18393:12;:10;:12::i;:::-;18383:6;;-1:-1:-1;;;;;18383:6:0;;;:22;;;18375:67;;;;;-1:-1:-1;;;18375:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18375:67:0;;;;;;;;;;;;;;;18921:1:::1;18905:6:::0;;18884:40:::1;::::0;-1:-1:-1;;;;;18905:6:0;;::::1;::::0;18884:40:::1;::::0;18921:1;;18884:40:::1;18952:1;18935:19:::0;;-1:-1:-1;;;;;;18935:19:0::1;::::0;;18814:148::o;28264:25::-;;;;:::o;18171:79::-;18209:7;18236:6;-1:-1:-1;;;;;18236:6:0;18171:79;:::o;30148:87::-;30220:7;;;;;;;;;;;;-1:-1:-1;;;30220:7:0;;;;30148:87;:::o;39794:236::-;18393:12;:10;:12::i;:::-;18383:6;;-1:-1:-1;;;;;18383:6:0;;;:22;;;18375:67;;;;;-1:-1:-1;;;18375:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18375:67:0;;;;;;;;;;;;;;;39857:16:::1;::::0;::::1;;:24;;:16:::0;:24:::1;39849:63;;;::::0;;-1:-1:-1;;;39849:63:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;39936:15;39923:10;:28:::0;39962:18:::1;:25:::0;;-1:-1:-1;;39962:25:0;;::::1;39983:4;39962:25;::::0;;;39998:16:::1;:24:::0;;;;::::1;::::0;;39794:236::o;31635:261::-;31720:4;31737:129;31746:12;:10;:12::i;:::-;31760:7;31769:96;31808:15;31769:96;;;;;;;;;;;;;;;;;:11;:25;31781:12;:10;:12::i;:::-;-1:-1:-1;;;;;31769:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;31769:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;30577:171::-;30655:4;30672:42;30682:12;:10;:12::i;:::-;30696:9;30707:6;30672:9;:42::i;28060:30::-;;;;;;:::o;39552:173::-;18393:12;:10;:12::i;:::-;18383:6;;-1:-1:-1;;;;;18383:6:0;;;:22;;;18375:67;;;;;-1:-1:-1;;;18375:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18375:67:0;;;;;;;;;;;;;;;39631:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;39631:32:0;::::1;-1:-1:-1::0;;;;39631:32:0;;::::1;::::0;;;::::1;::::0;;;39679:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;39552:173:::0;:::o;35847:118::-;18393:12;:10;:12::i;:::-;18383:6;;-1:-1:-1;;;;;18383:6:0;;;:22;;;18375:67;;;;;-1:-1:-1;;;18375:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18375:67:0;;;;;;;;;;;;;;;35931:15:::1;:26:::0;;-1:-1:-1;;;;;35931:26:0;;::::1;;;-1:-1:-1::0;;;;;;35931:26:0;;::::1;::::0;;;::::1;::::0;;35847:118::o;30760:143::-;-1:-1:-1;;;;;30868:18:0;;;30841:7;30868:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;30760:143::o;19117:244::-;18393:12;:10;:12::i;:::-;18383:6;;-1:-1:-1;;;;;18383:6:0;;;:22;;;18375:67;;;;;-1:-1:-1;;;18375:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18375:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;19206:22:0;::::1;19198:73;;;;-1:-1:-1::0;;;19198:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19308:6;::::0;;19287:38:::1;::::0;-1:-1:-1;;;;;19287:38:0;;::::1;::::0;19308:6;::::1;::::0;19287:38:::1;::::0;::::1;19336:6;:17:::0;;-1:-1:-1;;;;;;19336:17:0::1;-1:-1:-1::0;;;;;19336:17:0;;;::::1;::::0;;;::::1;::::0;;19117:244::o;28011:42::-;28045:8;28011:42;:::o;40038:404::-;18393:12;:10;:12::i;:::-;18383:6;;-1:-1:-1;;;;;18383:6:0;;;:22;;;18375:67;;;;;-1:-1:-1;;;18375:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18375:67:0;;;;;;;;;;;;;;;40104:11:::1;:19:::0;;-1:-1:-1;;40104:19:0::1;::::0;;40137:21:::1;:25:::0;40134:91:::1;;40185:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;40177:25:0::1;:48;40203:21;40177:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;40134:91;40275:46;::::0;;-1:-1:-1;;;40275:46:0;;40290:4:::1;40275:46;::::0;::::1;::::0;;;;;40324:1:::1;::::0;40290:4;40275:31:::1;::::0;:46;;;;;::::1;::::0;;;;;;;;40290:4;40275:46;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;40275:46:0;:50:::1;40272:159;;;40371:11;::::0;40384:46:::1;::::0;;-1:-1:-1;;;40384:46:0;;40355:4:::1;40384:46;::::0;::::1;::::0;;;;;40355:4;;40340:30:::1;::::0;-1:-1:-1;;;;;40371:11:0;;::::1;::::0;40355:4;;40384:31:::1;::::0;:46;;;;;::::1;::::0;;;;;;;;;40355:4;40384:46;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;40384:46:0;40340:91:::1;::::0;;-1:-1:-1;;;;;;40340:91:0::1;::::0;;;;;;-1:-1:-1;;;;;40340:91:0;;::::1;;::::0;::::1;::::0;;;;;;;;;;;;;;40384:46:::1;::::0;40340:91;;;;;;;-1:-1:-1;40340:91:0;;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;;40272:159:0::1;40038:404::o:0;37542:332::-;-1:-1:-1;;;;;37644:25:0;;37636:80;;;;-1:-1:-1;;;37636:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37747:1;37735:9;:13;37727:51;;;;;-1:-1:-1;;;37727:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;28045:8;37809:9;37798:10;;:20;37797:33;;37789:62;;;;;-1:-1:-1;;;37789:62:0;;;;;;;;;;;;-1:-1:-1;;;37789:62:0;;;;;;;;;;;;;;7440:471;7498:7;7743:6;7739:47;;-1:-1:-1;7773:1:0;7766:8;;7739:47;7810:5;;;7814:1;7810;:5;:1;7834:5;;;;;:10;7826:56;;;;-1:-1:-1;;;7826:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7902:1;7440:471;-1:-1:-1;;;7440:471:0:o;8387:132::-;8445:7;8472:39;8476:1;8479;8472:39;;;;;;;;;;;;;;;;;:3;:39::i;6086:181::-;6144:7;6176:5;;;6200:6;;;;6192:46;;;;;-1:-1:-1;;;6192:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;6550:136;6608:7;6635:43;6639:1;6642;6635:43;;;;;;;;;;;;;;;;;:3;:43::i;38550:469::-;-1:-1:-1;;;;;38644:19:0;;38636:68;;;;-1:-1:-1;;;38636:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38723:21:0;;38715:68;;;;-1:-1:-1;;;38715:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38812:16:0;;;;;;:9;:16;;;;;;38802:26;;;38794:102;;;;-1:-1:-1;;;38794:102:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38927:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;38979:32;;;;;;;;;;;;;;;;;38550:469;;;:::o;31908:1425::-;-1:-1:-1;;;;;32006:20:0;;31998:70;;;;-1:-1:-1;;;31998:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32087:23:0;;32079:71;;;;-1:-1:-1;;;32079:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32178:1;32169:6;:10;32161:19;;;;;;32231:13;-1:-1:-1;;;;;32218:26:0;:9;-1:-1:-1;;;;;32218:26:0;;:47;;;;;32258:7;:5;:7::i;:::-;-1:-1:-1;;;;;32248:17:0;:6;-1:-1:-1;;;;;32248:17:0;;;32218:47;32215:298;;;32383:10;;32396;32383:23;32364:15;:42;;32363:66;;;;-1:-1:-1;32411:18:0;;;;32363:66;32360:141;;;32466:16;;32456:6;:26;;32448:53;;;;;-1:-1:-1;;;32448:53:0;;;;;;;;;;;;-1:-1:-1;;;32448:53:0;;;;;;;;;;;;;;;32567:13;-1:-1:-1;;;;;32557:23:0;:6;-1:-1:-1;;;;;32557:23:0;;32554:272;;;32698:10;;32711;32698:23;32679:15;:42;;32678:66;;;;-1:-1:-1;32726:18:0;;;;32678:66;32675:139;;;32781:15;;32771:6;:25;;32763:51;;;;;-1:-1:-1;;;32763:51:0;;;;;;;;;;;;-1:-1:-1;;;32763:51:0;;;;;;;;;;;;;;;32846:28;32877:24;32895:4;32877:9;:24::i;:::-;32846:55;-1:-1:-1;29174:13:0;32941:53;;;;;;;33009:40;;-1:-1:-1;33033:16:0;;-1:-1:-1;;;33033:16:0;;;;33032:17;33009:40;:67;;;;;33063:13;-1:-1:-1;;;;;33053:23:0;:6;-1:-1:-1;;;;;33053:23:0;;;33009:67;:92;;;;-1:-1:-1;33080:21:0;;-1:-1:-1;;;33080:21:0;;;;33009:92;33005:257;;;29174:13;33118:52;;33214:36;33229:20;33214:14;:36::i;:::-;33282:43;33299:6;33307:9;33318:6;33282:16;:43::i;:::-;31908:1425;;;;;:::o;6989:192::-;7075:7;7111:12;7103:6;;;;7095:29;;;;-1:-1:-1;;;7095:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;7147:5:0;;;6989:192::o;9015:278::-;9101:7;9136:12;9129:5;9121:28;;;;-1:-1:-1;;;9121:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9160:9;9176:1;9172;:5;;;;;;;9015:278;-1:-1:-1;;;;;9015:278:0:o;34508:1170::-;29249:16;:23;;-1:-1:-1;;;;29249:23:0;-1:-1:-1;;;29249:23:0;;;;34659:27:::1;:20:::0;34684:1:::1;34659:24;:27::i;:::-;34644:42:::0;-1:-1:-1;34697:17:0::1;34717:27;:20:::0;34742:1:::1;34717:24;:27::i;:::-;34697:47:::0;-1:-1:-1;34755:22:0::1;34780:45;34697:47:::0;34780:30:::1;:20:::0;34805:4;34780:24:::1;:30::i;:::-;:34:::0;::::1;:45::i;:::-;34755:70:::0;-1:-1:-1;35128:21:0::1;35194:22;35211:4:::0;35194:16:::1;:22::i;:::-;35347:18;35368:41;:21;35394:14:::0;35368:25:::1;:41::i;:::-;35347:62;;35459:35;35472:9;35483:10;35459:12;:35::i;:::-;35538:23;35546:14;35538:7;:23::i;:::-;35587:43;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;35646:24;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;-1:-1:-1::0;;29295:16:0;:24;;-1:-1:-1;;;;29295:24:0;;;-1:-1:-1;;;;34508:1170:0:o;33632:864::-;33729:14;33746:29;33768:6;33746:21;:29::i;:::-;33729:46;;33786:15;33804:29;33826:6;33804:21;:29::i;:::-;33786:47;;33919:7;:5;:7::i;:::-;-1:-1:-1;;;;;33909:17:0;:6;-1:-1:-1;;;;;33909:17:0;;:41;;;;33943:7;:5;:7::i;:::-;-1:-1:-1;;;;;33930:20:0;:9;-1:-1:-1;;;;;33930:20:0;;33909:41;:68;;;-1:-1:-1;;;;;;33954:23:0;;33972:4;33954:23;33909:68;33906:136;;;-1:-1:-1;34003:1:0;;-1:-1:-1;34003:1:0;33906:136;-1:-1:-1;;;;;34150:17:0;;;;;;:9;:17;;;;;;:29;;34172:6;34150:21;:29::i;:::-;-1:-1:-1;;;;;34130:17:0;;;;;;;:9;:17;;;;;;:49;;;;34213:20;;;;;;;:57;;34262:7;;34213:44;;34250:6;;34213:44;;34238:6;34213:24;:32::i;:57::-;-1:-1:-1;;;;;34190:20:0;;;;;;:9;:20;;;;;:80;34286:10;;34283:50;;34311:22;34326:6;34311:14;:22::i;:::-;34347:11;;34344:47;;34373:18;34383:7;34373:9;:18::i;:::-;-1:-1:-1;;;;;34418:60:0;;;;;;;34446:31;34469:7;34446:18;:6;34457;34446:10;:18::i;:31::-;34418:60;;;;;;;;;;;;;;;33632:864;;;;;:::o;35977:589::-;36127:16;;;36141:1;36127:16;;;36103:21;36127:16;;;;;36103:21;36127:16;;;;;;;;;;-1:-1:-1;36127:16:0;36103:40;;36172:4;36154;36159:1;36154:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;36154:23:0;;;-1:-1:-1;;;;;36154:23:0;;;;;36198:15;-1:-1:-1;;;;;36198:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36198:22:0;36188:7;;:4;;36193:1;;36188:7;;;;;;;;;;;:32;-1:-1:-1;;;;;36188:32:0;;;-1:-1:-1;;;;;36188:32:0;;;;;36233:62;36250:4;36265:15;36283:11;36233:8;:62::i;:::-;36334:15;-1:-1:-1;;;;;36334:66:0;;36415:11;36441:1;36485:4;36512;36532:15;36334:224;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36334:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35977:589;;:::o;38025:513::-;38173:62;38190:4;38205:15;38223:11;38173:8;:62::i;:::-;38278:15;-1:-1:-1;;;;;38278:31:0;;38317:9;38350:4;38370:11;38396:1;38439;38482:7;:5;:7::i;:::-;38504:15;38278:252;;;;;;;;;;;;;-1:-1:-1;;;;;38278:252:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38278:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;38025:513:0:o;35690:145::-;35743:24;35760:6;35743:16;:24::i;:::-;35779:15;;:47;;-1:-1:-1;;;;;35779:15:0;;;;;;;;;35804:21;35779:47;;;;;;;;;35804:21;35779:15;:47;;;;;;;;;;;;;;;;;;;39027:142;39097:7;39124:37;39155:5;39124:26;39136:13;;39124:7;:11;;:26;;;;:::i;39181:141::-;39250:7;39277:37;39308:5;39277:26;39289:13;;39277:7;:11;;:26;;;;:::i;33345:138::-;33453:4;33435:24;;;;:9;:24;;;;;;:40;;33464:10;33435:28;:40::i;:::-;33426:4;33408:24;;;;:9;:24;;;;;:67;-1:-1:-1;33345:138:0:o
Swarm Source
ipfs://6c2c54aba40ed4db130225ccb7c0aefae00a65720c12448915af84591510eda8
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.