ERC-20
Overview
Max Total Supply
420,690,000,000 PUMP
Holders
56
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
2,863,051,648.517217263878118562 PUMPValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DONALDJPUMP
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-05-29 */ // SPDX-License-Identifier: UNLICENSED /***********************************/ /* DONALD J PUMP */ /* PUMP */ /* https://donaldjpump.com/ */ /* https://x.com/DonaldJPumpETH */ /* https://t.me/DonaldJPumpETH */ /***********************************/ // File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event 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; } // File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol pragma solidity >=0.6.2; 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; } // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @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) { return a + b; } /** * @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 a - b; } /** * @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) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting 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 a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting 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) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * 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) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @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() { _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 making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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 { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 Returns the amount of tokens in existence. */ 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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } pragma solidity ^0.8.9; contract DONALDJPUMP is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public marketingWallet; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; uint256 public percentForLPBurn = 0; bool public lpBurnEnabled = false; uint256 public lpBurnFrequency = 1800 seconds; uint256 public lastLpBurnTime; uint256 public manualBurnFrequency = 30 minutes; uint256 public lastManualLpBurnTime; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public transferDelayEnabled = true; uint256 public buyTotalFees; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; /******************/ // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event marketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event devWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event AutoNukeLP(); event ManualNukeLP(); constructor() ERC20("DONALD J PUMP", "PUMP") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyMarketingFee = 0; uint256 _buyLiquidityFee = 0; uint256 _buyDevFee = 0; uint256 _sellMarketingFee = 0; uint256 _sellLiquidityFee = 0; uint256 _sellDevFee = 0; uint256 totalSupply = 420_690_000_000 * 1e18; maxTransactionAmount = 8_413_800_000 * 1e18; maxWallet = 8_413_800_000 * 1e18; swapTokensAtAmount = (totalSupply * 5) / 10000; buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; marketingWallet = address(msg.sender); devWallet = address(msg.sender); excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; lastLpBurnTime = block.timestamp; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // disable Transfer delay - cannot be reenabled function disableTransferDelay() external onlyOwner returns (bool) { transferDelayEnabled = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxWallet lower than 0.5%" ); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; require(buyTotalFees <= 30, "Must keep fees at 30% or less"); } function updateSellFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; require(sellTotalFees <= 30, "Must keep fees at 30% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateMarketingWallet(address newMarketingWallet) external onlyOwner { emit marketingWalletUpdated(newMarketingWallet, marketingWallet); marketingWallet = newMarketingWallet; } function updateDevWallet(address newWallet) external onlyOwner { emit devWalletUpdated(newWallet, devWallet); devWallet = newWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } event BoughtEarly(address indexed sniper); function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx if (transferDelayEnabled) { if ( to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair) ) { require( _holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); _holderLastTransferTimestamp[tx.origin] = block.number; } } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } if ( !swapping && automatedMarketMakerPairs[to] && lpBurnEnabled && block.timestamp >= lastLpBurnTime + lpBurnFrequency && !_isExcludedFromFees[from] ) { autoBurnLiquidityPairTokens(); } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForDev += (fees * sellDevFee) / sellTotalFees; tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForDev += (fees * buyDevFee) / buyTotalFees; tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } 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 ); } 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 deadAddress, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div( totalTokensToSwap ); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; (success, ) = address(devWallet).call{value: ethForDev}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); } function setAutoLPBurnSettings( uint256 _frequencyInSeconds, uint256 _percent, bool _Enabled ) external onlyOwner { require( _frequencyInSeconds >= 600, "cannot set buyback more often than every 10 minutes" ); require( _percent <= 1000 && _percent >= 0, "Must set auto LP burn percent between 0% and 10%" ); lpBurnFrequency = _frequencyInSeconds; percentForLPBurn = _percent; lpBurnEnabled = _Enabled; } function autoBurnLiquidityPairTokens() internal returns (bool) { lastLpBurnTime = block.timestamp; // get balance of liquidity pair uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); // calculate amount to burn uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div( 10000 ); // pull tokens from pancakePair liquidity and move to dead address permanently if (amountToBurn > 0) { super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } //sync price since this is not in a swap transaction! IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit AutoNukeLP(); return true; } function manualBurnLiquidityPairTokens(uint256 percent) external onlyOwner returns (bool) { require( block.timestamp > lastManualLpBurnTime + manualBurnFrequency, "Must wait for cooldown to finish" ); require(percent <= 1000, "May not nuke more than 10% of tokens in LP"); lastManualLpBurnTime = block.timestamp; // get balance of liquidity pair uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); // calculate amount to burn uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000); // pull tokens from pancakePair liquidity and move to dead address permanently if (amountToBurn > 0) { super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } //sync price since this is not in a swap transaction! IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit ManualNukeLP(); return true; } }
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":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526000600b55600c805460ff19908116909155610708600d819055600f556011805462ffffff19166001908117909155601380549092161790553480156200004a57600080fd5b50604080518082018252600d81526c0444f4e414c44204a2050554d5609c1b602080830191825283518085019094526004845263050554d560e41b9084015281519192916200009c9160039162000662565b508051620000b290600490602084019062000662565b505050620000cf620000c9620003f660201b60201c565b620003fa565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000f18160016200044c565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b1580156200013757600080fd5b505afa1580156200014c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000172919062000708565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620001bb57600080fd5b505afa158015620001d0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001f6919062000708565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200023f57600080fd5b505af115801562000254573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200027a919062000708565b6001600160a01b031660a0819052620002959060016200044c565b60a051620002a590600162000480565b6b1b2fbb73f163a79bb10000006008819055600a55600080808080806c054f529ca52576bc6892000000612710620002df82600562000750565b620002eb919062000772565b600955601587905560168690556017859055846200030a878962000795565b62000316919062000795565b6014556019849055601a839055601b8290558162000335848662000795565b62000341919062000795565b60185560068054336001600160a01b03199182168117909255600780549091169091179055620003856200037d6005546001600160a01b031690565b6001620004d4565b62000392306001620004d4565b620003a161dead6001620004d4565b620003c0620003b86005546001600160a01b031690565b60016200044c565b620003cd3060016200044c565b620003dc61dead60016200044c565b620003e833826200053d565b5050505050505050620007ed565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200045662000604565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b620004de62000604565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005995760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060026000828254620005ad919062000795565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620006605760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000590565b565b8280546200067090620007b0565b90600052602060002090601f016020900481019282620006945760008555620006df565b82601f10620006af57805160ff1916838001178555620006df565b82800160010185558215620006df579182015b82811115620006df578251825591602001919060010190620006c2565b50620006ed929150620006f1565b5090565b5b80821115620006ed5760008155600101620006f2565b6000602082840312156200071b57600080fd5b81516001600160a01b03811681146200073357600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156200076d576200076d6200073a565b500290565b6000826200079057634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620007ab57620007ab6200073a565b500190565b600181811c90821680620007c557607f821691505b60208210811415620007e757634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612e276200086e60003960008181610600015281816114d801528181611582015281816115ae01528181611a1f01528181612567015281816126180152612644015260008181610459015281816119e10152818161274e0152818161281601528181612852015281816128cc01526129290152612e276000f3fe6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610aa3578063f637434214610ac3578063f8b45b0514610ad9578063fe72b27a14610aef57600080fd5b8063dd62ed3e14610a42578063e2f4560514610a62578063e884f26014610a78578063f11a24d314610a8d57600080fd5b8063c876d0b9116100dc578063c876d0b9146109dc578063c8c8ebe4146109f6578063d257b34f14610a0c578063d85ba06314610a2c57600080fd5b8063bbc0c7421461095d578063c02466681461097c578063c17b5b8c1461099c578063c18bc195146109bc57600080fd5b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a00146108d7578063a9059cbb146108ed578063aacebbe31461090d578063b62496f51461092d57600080fd5b80639ec22c0e146108755780639fccce321461088b578063a0d82dc5146108a1578063a457c2d7146108b757600080fd5b8063924de9b7116101c1578063924de9b71461080a57806395d89b411461082a5780639a7a23d61461083f5780639c3b4fdc1461085f57600080fd5b80638da5cb5b146107b65780638ea5220f146107d457806392136913146107f457600080fd5b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a8741461074b5780637bce5a041461076b5780638095d564146107815780638a8c523c146107a157600080fd5b8063715018a6146106e1578063730c1888146106f6578063751039fc146107165780637571336a1461072b57600080fd5b80634fbee193116102a65780634fbee1931461063c5780636a486a8e146106755780636ddd17131461068b57806370a08231146106ab57600080fd5b8063313ce567146105b257806339509351146105ce57806349bd5a5e146105ee5780634a62bb651461062257600080fd5b8063199ffc721161034f57806323b872dd1161031e57806323b872dd1461054c57806327c8f8351461056c5780632c3e486c146105825780632e82f1a01461059857600080fd5b8063199ffc72146104ea5780631a8145bb146105005780631f3fed8f14610516578063203e727e1461052c57600080fd5b80631694505e1161038b5780631694505e1461044757806318160ddd146104935780631816467f146104b2578063184c16c5146104d457600080fd5b806306fdde03146103bd578063095ea7b3146103e857806310d5de531461041857600080fd5b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610b0f565b6040516103df91906129b6565b60405180910390f35b3480156103f457600080fd5b50610408610403366004612a20565b610ba1565b60405190151581526020016103df565b34801561042457600080fd5b50610408610433366004612a4c565b602080526000908152604090205460ff1681565b34801561045357600080fd5b5061047b7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103df565b34801561049f57600080fd5b506002545b6040519081526020016103df565b3480156104be57600080fd5b506104d26104cd366004612a4c565b610bb9565b005b3480156104e057600080fd5b506104a4600f5481565b3480156104f657600080fd5b506104a4600b5481565b34801561050c57600080fd5b506104a4601d5481565b34801561052257600080fd5b506104a4601c5481565b34801561053857600080fd5b506104d2610547366004612a69565b610c1e565b34801561055857600080fd5b50610408610567366004612a82565b610cde565b34801561057857600080fd5b5061047b61dead81565b34801561058e57600080fd5b506104a4600d5481565b3480156105a457600080fd5b50600c546104089060ff1681565b3480156105be57600080fd5b50604051601281526020016103df565b3480156105da57600080fd5b506104086105e9366004612a20565b610d02565b3480156105fa57600080fd5b5061047b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561062e57600080fd5b506011546104089060ff1681565b34801561064857600080fd5b50610408610657366004612a4c565b6001600160a01b03166000908152601f602052604090205460ff1690565b34801561068157600080fd5b506104a460185481565b34801561069757600080fd5b506011546104089062010000900460ff1681565b3480156106b757600080fd5b506104a46106c6366004612a4c565b6001600160a01b031660009081526020819052604090205490565b3480156106ed57600080fd5b506104d2610d24565b34801561070257600080fd5b506104d2610711366004612ad3565b610d38565b34801561072257600080fd5b50610408610e3f565b34801561073757600080fd5b506104d2610746366004612b08565b610e59565b34801561075757600080fd5b5060065461047b906001600160a01b031681565b34801561077757600080fd5b506104a460155481565b34801561078d57600080fd5b506104d261079c366004612b3d565b610e8b565b3480156107ad57600080fd5b506104d2610f11565b3480156107c257600080fd5b506005546001600160a01b031661047b565b3480156107e057600080fd5b5060075461047b906001600160a01b031681565b34801561080057600080fd5b506104a460195481565b34801561081657600080fd5b506104d2610825366004612b69565b610f30565b34801561083657600080fd5b506103d2610f54565b34801561084b57600080fd5b506104d261085a366004612b08565b610f63565b34801561086b57600080fd5b506104a460175481565b34801561088157600080fd5b506104a460105481565b34801561089757600080fd5b506104a4601e5481565b3480156108ad57600080fd5b506104a4601b5481565b3480156108c357600080fd5b506104086108d2366004612a20565b610f79565b3480156108e357600080fd5b506104a4600e5481565b3480156108f957600080fd5b50610408610908366004612a20565b610ff4565b34801561091957600080fd5b506104d2610928366004612a4c565b611002565b34801561093957600080fd5b50610408610948366004612a4c565b60216020526000908152604090205460ff1681565b34801561096957600080fd5b5060115461040890610100900460ff1681565b34801561098857600080fd5b506104d2610997366004612b08565b611067565b3480156109a857600080fd5b506104d26109b7366004612b3d565b6110ce565b3480156109c857600080fd5b506104d26109d7366004612a69565b61114f565b3480156109e857600080fd5b506013546104089060ff1681565b348015610a0257600080fd5b506104a460085481565b348015610a1857600080fd5b50610408610a27366004612a69565b6111fe565b348015610a3857600080fd5b506104a460145481565b348015610a4e57600080fd5b506104a4610a5d366004612b84565b611332565b348015610a6e57600080fd5b506104a460095481565b348015610a8457600080fd5b5061040861135d565b348015610a9957600080fd5b506104a460165481565b348015610aaf57600080fd5b506104d2610abe366004612a4c565b611377565b348015610acf57600080fd5b506104a4601a5481565b348015610ae557600080fd5b506104a4600a5481565b348015610afb57600080fd5b50610408610b0a366004612a69565b6113f0565b606060038054610b1e90612bbd565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4a90612bbd565b8015610b975780601f10610b6c57610100808354040283529160200191610b97565b820191906000526020600020905b815481529060010190602001808311610b7a57829003601f168201915b5050505050905090565b600033610baf818585611656565b5060019392505050565b610bc161177a565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b610c2661177a565b670de0b6b3a76400006103e8610c3b60025490565b610c46906001612c0e565b610c509190612c2d565b610c5a9190612c2d565b811015610cc65760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084015b60405180910390fd5b610cd881670de0b6b3a7640000612c0e565b60085550565b600033610cec8582856117d4565b610cf785858561184e565b506001949350505050565b600033610baf818585610d158383611332565b610d1f9190612c4f565b611656565b610d2c61177a565b610d366000612123565b565b610d4061177a565b610258831015610dae5760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610cbd565b6103e88211158015610dbe575060015b610e235760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610cbd565b600d92909255600b55600c805460ff1916911515919091179055565b6000610e4961177a565b506011805460ff19169055600190565b610e6161177a565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b610e9361177a565b60158390556016829055601781905580610ead8385612c4f565b610eb79190612c4f565b6014819055601e1015610f0c5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420333025206f72206c6573730000006044820152606401610cbd565b505050565b610f1961177a565b6011805462ffff0019166201010017905542600e55565b610f3861177a565b60118054911515620100000262ff000019909216919091179055565b606060048054610b1e90612bbd565b610f6b61177a565b610f758282612175565b5050565b60003381610f878286611332565b905083811015610fe75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610cbd565b610cf78286868403611656565b600033610baf81858561184e565b61100a61177a565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b61106f61177a565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6110d661177a565b6019839055601a829055601b819055806110f08385612c4f565b6110fa9190612c4f565b6018819055601e1015610f0c5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420333025206f72206c6573730000006044820152606401610cbd565b61115761177a565b670de0b6b3a76400006103e861116c60025490565b611177906005612c0e565b6111819190612c2d565b61118b9190612c2d565b8110156111e65760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610cbd565b6111f881670de0b6b3a7640000612c0e565b600a5550565b600061120861177a565b620186a061121560025490565b611220906001612c0e565b61122a9190612c2d565b8210156112975760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610cbd565b6103e86112a360025490565b6112ae906005612c0e565b6112b89190612c2d565b8211156113245760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610cbd565b50600981905560015b919050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600061136761177a565b506013805460ff19169055600190565b61137f61177a565b6001600160a01b0381166113e45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cbd565b6113ed81612123565b50565b60006113fa61177a565b600f5460105461140a9190612c4f565b42116114585760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610cbd565b6103e88211156114bd5760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610cbd565b426010556040516370a0823160e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016600482015260009030906370a082319060240160206040518083038186803b15801561152357600080fd5b505afa158015611537573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061155b9190612c67565b9050600061157561271061156f84876121c9565b906121dc565b905080156115aa576115aa7f000000000000000000000000000000000000000000000000000000000000000061dead836121e8565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561160a57600080fd5b505af115801561161e573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b0383166116b85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610cbd565b6001600160a01b0382166117195760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610cbd565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610d365760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cbd565b60006117e08484611332565b90506000198114611848578181101561183b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610cbd565b6118488484848403611656565b50505050565b6001600160a01b0383166118745760405162461bcd60e51b8152600401610cbd90612c80565b6001600160a01b03821661189a5760405162461bcd60e51b8152600401610cbd90612cc5565b806118ab57610f0c838360006121e8565b60115460ff1615611d65576005546001600160a01b038481169116148015906118e257506005546001600160a01b03838116911614155b80156118f657506001600160a01b03821615155b801561190d57506001600160a01b03821661dead14155b80156119235750600554600160a01b900460ff16155b15611d6557601154610100900460ff166119bb576001600160a01b0383166000908152601f602052604090205460ff168061197657506001600160a01b0382166000908152601f602052604090205460ff165b6119bb5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610cbd565b60135460ff1615611b02576005546001600160a01b03838116911614801590611a1657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611a5457507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15611b0257326000908152601260205260409020544311611aef5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610cbd565b3260009081526012602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff168015611b4257506001600160a01b038216600090815260208052604090205460ff16155b15611c2657600854811115611bb75760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610cbd565b600a546001600160a01b038316600090815260208190526040902054611bdd9083612c4f565b1115611c215760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610cbd565b611d65565b6001600160a01b03821660009081526021602052604090205460ff168015611c6657506001600160a01b038316600090815260208052604090205460ff16155b15611cdc57600854811115611c215760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610cbd565b6001600160a01b038216600090815260208052604090205460ff16611d6557600a546001600160a01b038316600090815260208190526040902054611d219083612c4f565b1115611d655760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610cbd565b3060009081526020819052604090205460095481108015908190611d91575060115462010000900460ff165b8015611da75750600554600160a01b900460ff16155b8015611dcc57506001600160a01b03851660009081526021602052604090205460ff16155b8015611df157506001600160a01b0385166000908152601f602052604090205460ff16155b8015611e1657506001600160a01b0384166000908152601f602052604090205460ff16155b15611e44576005805460ff60a01b1916600160a01b179055611e36612312565b6005805460ff60a01b191690555b600554600160a01b900460ff16158015611e7657506001600160a01b03841660009081526021602052604090205460ff165b8015611e845750600c5460ff165b8015611e9f5750600d54600e54611e9b9190612c4f565b4210155b8015611ec457506001600160a01b0385166000908152601f602052604090205460ff16155b15611ed357611ed161254c565b505b6005546001600160a01b0386166000908152601f602052604090205460ff600160a01b909204821615911680611f2157506001600160a01b0385166000908152601f602052604090205460ff165b15611f2a575060005b6000811561210f576001600160a01b03861660009081526021602052604090205460ff168015611f5c57506000601854115b1561201457611f7b606461156f601854886121c990919063ffffffff16565b9050601854601a5482611f8e9190612c0e565b611f989190612c2d565b601d6000828254611fa99190612c4f565b9091555050601854601b54611fbe9083612c0e565b611fc89190612c2d565b601e6000828254611fd99190612c4f565b9091555050601854601954611fee9083612c0e565b611ff89190612c2d565b601c60008282546120099190612c4f565b909155506120f19050565b6001600160a01b03871660009081526021602052604090205460ff16801561203e57506000601454115b156120f15761205d606461156f601454886121c990919063ffffffff16565b9050601454601654826120709190612c0e565b61207a9190612c2d565b601d600082825461208b9190612c4f565b90915550506014546017546120a09083612c0e565b6120aa9190612c2d565b601e60008282546120bb9190612c4f565b90915550506014546015546120d09083612c0e565b6120da9190612c2d565b601c60008282546120eb9190612c4f565b90915550505b8015612102576121028730836121e8565b61210c8186612d08565b94505b61211a8787876121e8565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006121d58284612c0e565b9392505050565b60006121d58284612c2d565b6001600160a01b03831661220e5760405162461bcd60e51b8152600401610cbd90612c80565b6001600160a01b0382166122345760405162461bcd60e51b8152600401610cbd90612cc5565b6001600160a01b038316600090815260208190526040902054818110156122ac5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610cbd565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611848565b3060009081526020819052604081205490506000601e54601c54601d546123399190612c4f565b6123439190612c4f565b90506000821580612352575081155b1561235c57505050565b60095461236a906014612c0e565b8311156123825760095461237f906014612c0e565b92505b6000600283601d54866123959190612c0e565b61239f9190612c2d565b6123a99190612c2d565b905060006123b785836126eb565b9050476123c3826126f7565b60006123cf47836126eb565b905060006123ec8761156f601c54856121c990919063ffffffff16565b905060006124098861156f601e54866121c990919063ffffffff16565b90506000816124188486612d08565b6124229190612d08565b6000601d819055601c819055601e8190556007546040519293506001600160a01b031691849181818185875af1925050503d806000811461247f576040519150601f19603f3d011682016040523d82523d6000602084013e612484565b606091505b509098505086158015906124985750600081115b156124eb576124a787826128c6565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612538576040519150601f19603f3d011682016040523d82523d6000602084013e61253d565b606091505b50505050505050505050505050565b42600e556040516370a0823160e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000166004820152600090819030906370a082319060240160206040518083038186803b1580156125b457600080fd5b505afa1580156125c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125ec9190612c67565b9050600061260b61271061156f600b54856121c990919063ffffffff16565b90508015612640576126407f000000000000000000000000000000000000000000000000000000000000000061dead836121e8565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156126a057600080fd5b505af11580156126b4573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006121d58284612d08565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061272c5761272c612d1f565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156127a557600080fd5b505afa1580156127b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127dd9190612d35565b816001815181106127f0576127f0612d1f565b60200260200101906001600160a01b031690816001600160a01b03168152505061283b307f000000000000000000000000000000000000000000000000000000000000000084611656565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612890908590600090869030904290600401612d52565b600060405180830381600087803b1580156128aa57600080fd5b505af11580156128be573d6000803e3d6000fd5b505050505050565b6128f1307f000000000000000000000000000000000000000000000000000000000000000084611656565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c4016060604051808303818588803b15801561297657600080fd5b505af115801561298a573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906129af9190612dc3565b5050505050565b600060208083528351808285015260005b818110156129e3578581018301518582016040015282016129c7565b818111156129f5576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146113ed57600080fd5b60008060408385031215612a3357600080fd5b8235612a3e81612a0b565b946020939093013593505050565b600060208284031215612a5e57600080fd5b81356121d581612a0b565b600060208284031215612a7b57600080fd5b5035919050565b600080600060608486031215612a9757600080fd5b8335612aa281612a0b565b92506020840135612ab281612a0b565b929592945050506040919091013590565b8035801515811461132d57600080fd5b600080600060608486031215612ae857600080fd5b8335925060208401359150612aff60408501612ac3565b90509250925092565b60008060408385031215612b1b57600080fd5b8235612b2681612a0b565b9150612b3460208401612ac3565b90509250929050565b600080600060608486031215612b5257600080fd5b505081359360208301359350604090920135919050565b600060208284031215612b7b57600080fd5b6121d582612ac3565b60008060408385031215612b9757600080fd5b8235612ba281612a0b565b91506020830135612bb281612a0b565b809150509250929050565b600181811c90821680612bd157607f821691505b60208210811415612bf257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612c2857612c28612bf8565b500290565b600082612c4a57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612c6257612c62612bf8565b500190565b600060208284031215612c7957600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612d1a57612d1a612bf8565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612d4757600080fd5b81516121d581612a0b565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612da25784516001600160a01b031683529383019391830191600101612d7d565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612dd857600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212208685064c2647ad01d288de7482952ae716401da6f0a77aabf505b866abd8a20e64736f6c63430008090033
Deployed Bytecode
0x6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610aa3578063f637434214610ac3578063f8b45b0514610ad9578063fe72b27a14610aef57600080fd5b8063dd62ed3e14610a42578063e2f4560514610a62578063e884f26014610a78578063f11a24d314610a8d57600080fd5b8063c876d0b9116100dc578063c876d0b9146109dc578063c8c8ebe4146109f6578063d257b34f14610a0c578063d85ba06314610a2c57600080fd5b8063bbc0c7421461095d578063c02466681461097c578063c17b5b8c1461099c578063c18bc195146109bc57600080fd5b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a00146108d7578063a9059cbb146108ed578063aacebbe31461090d578063b62496f51461092d57600080fd5b80639ec22c0e146108755780639fccce321461088b578063a0d82dc5146108a1578063a457c2d7146108b757600080fd5b8063924de9b7116101c1578063924de9b71461080a57806395d89b411461082a5780639a7a23d61461083f5780639c3b4fdc1461085f57600080fd5b80638da5cb5b146107b65780638ea5220f146107d457806392136913146107f457600080fd5b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a8741461074b5780637bce5a041461076b5780638095d564146107815780638a8c523c146107a157600080fd5b8063715018a6146106e1578063730c1888146106f6578063751039fc146107165780637571336a1461072b57600080fd5b80634fbee193116102a65780634fbee1931461063c5780636a486a8e146106755780636ddd17131461068b57806370a08231146106ab57600080fd5b8063313ce567146105b257806339509351146105ce57806349bd5a5e146105ee5780634a62bb651461062257600080fd5b8063199ffc721161034f57806323b872dd1161031e57806323b872dd1461054c57806327c8f8351461056c5780632c3e486c146105825780632e82f1a01461059857600080fd5b8063199ffc72146104ea5780631a8145bb146105005780631f3fed8f14610516578063203e727e1461052c57600080fd5b80631694505e1161038b5780631694505e1461044757806318160ddd146104935780631816467f146104b2578063184c16c5146104d457600080fd5b806306fdde03146103bd578063095ea7b3146103e857806310d5de531461041857600080fd5b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610b0f565b6040516103df91906129b6565b60405180910390f35b3480156103f457600080fd5b50610408610403366004612a20565b610ba1565b60405190151581526020016103df565b34801561042457600080fd5b50610408610433366004612a4c565b602080526000908152604090205460ff1681565b34801561045357600080fd5b5061047b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103df565b34801561049f57600080fd5b506002545b6040519081526020016103df565b3480156104be57600080fd5b506104d26104cd366004612a4c565b610bb9565b005b3480156104e057600080fd5b506104a4600f5481565b3480156104f657600080fd5b506104a4600b5481565b34801561050c57600080fd5b506104a4601d5481565b34801561052257600080fd5b506104a4601c5481565b34801561053857600080fd5b506104d2610547366004612a69565b610c1e565b34801561055857600080fd5b50610408610567366004612a82565b610cde565b34801561057857600080fd5b5061047b61dead81565b34801561058e57600080fd5b506104a4600d5481565b3480156105a457600080fd5b50600c546104089060ff1681565b3480156105be57600080fd5b50604051601281526020016103df565b3480156105da57600080fd5b506104086105e9366004612a20565b610d02565b3480156105fa57600080fd5b5061047b7f000000000000000000000000e4c4c7d22cb2a2181f802e93c0b3990b42f646c181565b34801561062e57600080fd5b506011546104089060ff1681565b34801561064857600080fd5b50610408610657366004612a4c565b6001600160a01b03166000908152601f602052604090205460ff1690565b34801561068157600080fd5b506104a460185481565b34801561069757600080fd5b506011546104089062010000900460ff1681565b3480156106b757600080fd5b506104a46106c6366004612a4c565b6001600160a01b031660009081526020819052604090205490565b3480156106ed57600080fd5b506104d2610d24565b34801561070257600080fd5b506104d2610711366004612ad3565b610d38565b34801561072257600080fd5b50610408610e3f565b34801561073757600080fd5b506104d2610746366004612b08565b610e59565b34801561075757600080fd5b5060065461047b906001600160a01b031681565b34801561077757600080fd5b506104a460155481565b34801561078d57600080fd5b506104d261079c366004612b3d565b610e8b565b3480156107ad57600080fd5b506104d2610f11565b3480156107c257600080fd5b506005546001600160a01b031661047b565b3480156107e057600080fd5b5060075461047b906001600160a01b031681565b34801561080057600080fd5b506104a460195481565b34801561081657600080fd5b506104d2610825366004612b69565b610f30565b34801561083657600080fd5b506103d2610f54565b34801561084b57600080fd5b506104d261085a366004612b08565b610f63565b34801561086b57600080fd5b506104a460175481565b34801561088157600080fd5b506104a460105481565b34801561089757600080fd5b506104a4601e5481565b3480156108ad57600080fd5b506104a4601b5481565b3480156108c357600080fd5b506104086108d2366004612a20565b610f79565b3480156108e357600080fd5b506104a4600e5481565b3480156108f957600080fd5b50610408610908366004612a20565b610ff4565b34801561091957600080fd5b506104d2610928366004612a4c565b611002565b34801561093957600080fd5b50610408610948366004612a4c565b60216020526000908152604090205460ff1681565b34801561096957600080fd5b5060115461040890610100900460ff1681565b34801561098857600080fd5b506104d2610997366004612b08565b611067565b3480156109a857600080fd5b506104d26109b7366004612b3d565b6110ce565b3480156109c857600080fd5b506104d26109d7366004612a69565b61114f565b3480156109e857600080fd5b506013546104089060ff1681565b348015610a0257600080fd5b506104a460085481565b348015610a1857600080fd5b50610408610a27366004612a69565b6111fe565b348015610a3857600080fd5b506104a460145481565b348015610a4e57600080fd5b506104a4610a5d366004612b84565b611332565b348015610a6e57600080fd5b506104a460095481565b348015610a8457600080fd5b5061040861135d565b348015610a9957600080fd5b506104a460165481565b348015610aaf57600080fd5b506104d2610abe366004612a4c565b611377565b348015610acf57600080fd5b506104a4601a5481565b348015610ae557600080fd5b506104a4600a5481565b348015610afb57600080fd5b50610408610b0a366004612a69565b6113f0565b606060038054610b1e90612bbd565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4a90612bbd565b8015610b975780601f10610b6c57610100808354040283529160200191610b97565b820191906000526020600020905b815481529060010190602001808311610b7a57829003601f168201915b5050505050905090565b600033610baf818585611656565b5060019392505050565b610bc161177a565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b610c2661177a565b670de0b6b3a76400006103e8610c3b60025490565b610c46906001612c0e565b610c509190612c2d565b610c5a9190612c2d565b811015610cc65760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084015b60405180910390fd5b610cd881670de0b6b3a7640000612c0e565b60085550565b600033610cec8582856117d4565b610cf785858561184e565b506001949350505050565b600033610baf818585610d158383611332565b610d1f9190612c4f565b611656565b610d2c61177a565b610d366000612123565b565b610d4061177a565b610258831015610dae5760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610cbd565b6103e88211158015610dbe575060015b610e235760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610cbd565b600d92909255600b55600c805460ff1916911515919091179055565b6000610e4961177a565b506011805460ff19169055600190565b610e6161177a565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b610e9361177a565b60158390556016829055601781905580610ead8385612c4f565b610eb79190612c4f565b6014819055601e1015610f0c5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420333025206f72206c6573730000006044820152606401610cbd565b505050565b610f1961177a565b6011805462ffff0019166201010017905542600e55565b610f3861177a565b60118054911515620100000262ff000019909216919091179055565b606060048054610b1e90612bbd565b610f6b61177a565b610f758282612175565b5050565b60003381610f878286611332565b905083811015610fe75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610cbd565b610cf78286868403611656565b600033610baf81858561184e565b61100a61177a565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b61106f61177a565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6110d661177a565b6019839055601a829055601b819055806110f08385612c4f565b6110fa9190612c4f565b6018819055601e1015610f0c5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420333025206f72206c6573730000006044820152606401610cbd565b61115761177a565b670de0b6b3a76400006103e861116c60025490565b611177906005612c0e565b6111819190612c2d565b61118b9190612c2d565b8110156111e65760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610cbd565b6111f881670de0b6b3a7640000612c0e565b600a5550565b600061120861177a565b620186a061121560025490565b611220906001612c0e565b61122a9190612c2d565b8210156112975760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610cbd565b6103e86112a360025490565b6112ae906005612c0e565b6112b89190612c2d565b8211156113245760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610cbd565b50600981905560015b919050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600061136761177a565b506013805460ff19169055600190565b61137f61177a565b6001600160a01b0381166113e45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cbd565b6113ed81612123565b50565b60006113fa61177a565b600f5460105461140a9190612c4f565b42116114585760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610cbd565b6103e88211156114bd5760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610cbd565b426010556040516370a0823160e01b81526001600160a01b037f000000000000000000000000e4c4c7d22cb2a2181f802e93c0b3990b42f646c116600482015260009030906370a082319060240160206040518083038186803b15801561152357600080fd5b505afa158015611537573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061155b9190612c67565b9050600061157561271061156f84876121c9565b906121dc565b905080156115aa576115aa7f000000000000000000000000e4c4c7d22cb2a2181f802e93c0b3990b42f646c161dead836121e8565b60007f000000000000000000000000e4c4c7d22cb2a2181f802e93c0b3990b42f646c19050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561160a57600080fd5b505af115801561161e573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b0383166116b85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610cbd565b6001600160a01b0382166117195760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610cbd565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610d365760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cbd565b60006117e08484611332565b90506000198114611848578181101561183b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610cbd565b6118488484848403611656565b50505050565b6001600160a01b0383166118745760405162461bcd60e51b8152600401610cbd90612c80565b6001600160a01b03821661189a5760405162461bcd60e51b8152600401610cbd90612cc5565b806118ab57610f0c838360006121e8565b60115460ff1615611d65576005546001600160a01b038481169116148015906118e257506005546001600160a01b03838116911614155b80156118f657506001600160a01b03821615155b801561190d57506001600160a01b03821661dead14155b80156119235750600554600160a01b900460ff16155b15611d6557601154610100900460ff166119bb576001600160a01b0383166000908152601f602052604090205460ff168061197657506001600160a01b0382166000908152601f602052604090205460ff165b6119bb5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610cbd565b60135460ff1615611b02576005546001600160a01b03838116911614801590611a1657507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611a5457507f000000000000000000000000e4c4c7d22cb2a2181f802e93c0b3990b42f646c16001600160a01b0316826001600160a01b031614155b15611b0257326000908152601260205260409020544311611aef5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610cbd565b3260009081526012602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff168015611b4257506001600160a01b038216600090815260208052604090205460ff16155b15611c2657600854811115611bb75760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610cbd565b600a546001600160a01b038316600090815260208190526040902054611bdd9083612c4f565b1115611c215760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610cbd565b611d65565b6001600160a01b03821660009081526021602052604090205460ff168015611c6657506001600160a01b038316600090815260208052604090205460ff16155b15611cdc57600854811115611c215760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610cbd565b6001600160a01b038216600090815260208052604090205460ff16611d6557600a546001600160a01b038316600090815260208190526040902054611d219083612c4f565b1115611d655760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610cbd565b3060009081526020819052604090205460095481108015908190611d91575060115462010000900460ff165b8015611da75750600554600160a01b900460ff16155b8015611dcc57506001600160a01b03851660009081526021602052604090205460ff16155b8015611df157506001600160a01b0385166000908152601f602052604090205460ff16155b8015611e1657506001600160a01b0384166000908152601f602052604090205460ff16155b15611e44576005805460ff60a01b1916600160a01b179055611e36612312565b6005805460ff60a01b191690555b600554600160a01b900460ff16158015611e7657506001600160a01b03841660009081526021602052604090205460ff165b8015611e845750600c5460ff165b8015611e9f5750600d54600e54611e9b9190612c4f565b4210155b8015611ec457506001600160a01b0385166000908152601f602052604090205460ff16155b15611ed357611ed161254c565b505b6005546001600160a01b0386166000908152601f602052604090205460ff600160a01b909204821615911680611f2157506001600160a01b0385166000908152601f602052604090205460ff165b15611f2a575060005b6000811561210f576001600160a01b03861660009081526021602052604090205460ff168015611f5c57506000601854115b1561201457611f7b606461156f601854886121c990919063ffffffff16565b9050601854601a5482611f8e9190612c0e565b611f989190612c2d565b601d6000828254611fa99190612c4f565b9091555050601854601b54611fbe9083612c0e565b611fc89190612c2d565b601e6000828254611fd99190612c4f565b9091555050601854601954611fee9083612c0e565b611ff89190612c2d565b601c60008282546120099190612c4f565b909155506120f19050565b6001600160a01b03871660009081526021602052604090205460ff16801561203e57506000601454115b156120f15761205d606461156f601454886121c990919063ffffffff16565b9050601454601654826120709190612c0e565b61207a9190612c2d565b601d600082825461208b9190612c4f565b90915550506014546017546120a09083612c0e565b6120aa9190612c2d565b601e60008282546120bb9190612c4f565b90915550506014546015546120d09083612c0e565b6120da9190612c2d565b601c60008282546120eb9190612c4f565b90915550505b8015612102576121028730836121e8565b61210c8186612d08565b94505b61211a8787876121e8565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006121d58284612c0e565b9392505050565b60006121d58284612c2d565b6001600160a01b03831661220e5760405162461bcd60e51b8152600401610cbd90612c80565b6001600160a01b0382166122345760405162461bcd60e51b8152600401610cbd90612cc5565b6001600160a01b038316600090815260208190526040902054818110156122ac5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610cbd565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611848565b3060009081526020819052604081205490506000601e54601c54601d546123399190612c4f565b6123439190612c4f565b90506000821580612352575081155b1561235c57505050565b60095461236a906014612c0e565b8311156123825760095461237f906014612c0e565b92505b6000600283601d54866123959190612c0e565b61239f9190612c2d565b6123a99190612c2d565b905060006123b785836126eb565b9050476123c3826126f7565b60006123cf47836126eb565b905060006123ec8761156f601c54856121c990919063ffffffff16565b905060006124098861156f601e54866121c990919063ffffffff16565b90506000816124188486612d08565b6124229190612d08565b6000601d819055601c819055601e8190556007546040519293506001600160a01b031691849181818185875af1925050503d806000811461247f576040519150601f19603f3d011682016040523d82523d6000602084013e612484565b606091505b509098505086158015906124985750600081115b156124eb576124a787826128c6565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612538576040519150601f19603f3d011682016040523d82523d6000602084013e61253d565b606091505b50505050505050505050505050565b42600e556040516370a0823160e01b81526001600160a01b037f000000000000000000000000e4c4c7d22cb2a2181f802e93c0b3990b42f646c1166004820152600090819030906370a082319060240160206040518083038186803b1580156125b457600080fd5b505afa1580156125c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125ec9190612c67565b9050600061260b61271061156f600b54856121c990919063ffffffff16565b90508015612640576126407f000000000000000000000000e4c4c7d22cb2a2181f802e93c0b3990b42f646c161dead836121e8565b60007f000000000000000000000000e4c4c7d22cb2a2181f802e93c0b3990b42f646c19050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156126a057600080fd5b505af11580156126b4573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006121d58284612d08565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061272c5761272c612d1f565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156127a557600080fd5b505afa1580156127b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127dd9190612d35565b816001815181106127f0576127f0612d1f565b60200260200101906001600160a01b031690816001600160a01b03168152505061283b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611656565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612890908590600090869030904290600401612d52565b600060405180830381600087803b1580156128aa57600080fd5b505af11580156128be573d6000803e3d6000fd5b505050505050565b6128f1307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611656565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c4016060604051808303818588803b15801561297657600080fd5b505af115801561298a573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906129af9190612dc3565b5050505050565b600060208083528351808285015260005b818110156129e3578581018301518582016040015282016129c7565b818111156129f5576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146113ed57600080fd5b60008060408385031215612a3357600080fd5b8235612a3e81612a0b565b946020939093013593505050565b600060208284031215612a5e57600080fd5b81356121d581612a0b565b600060208284031215612a7b57600080fd5b5035919050565b600080600060608486031215612a9757600080fd5b8335612aa281612a0b565b92506020840135612ab281612a0b565b929592945050506040919091013590565b8035801515811461132d57600080fd5b600080600060608486031215612ae857600080fd5b8335925060208401359150612aff60408501612ac3565b90509250925092565b60008060408385031215612b1b57600080fd5b8235612b2681612a0b565b9150612b3460208401612ac3565b90509250929050565b600080600060608486031215612b5257600080fd5b505081359360208301359350604090920135919050565b600060208284031215612b7b57600080fd5b6121d582612ac3565b60008060408385031215612b9757600080fd5b8235612ba281612a0b565b91506020830135612bb281612a0b565b809150509250929050565b600181811c90821680612bd157607f821691505b60208210811415612bf257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612c2857612c28612bf8565b500290565b600082612c4a57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612c6257612c62612bf8565b500190565b600060208284031215612c7957600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612d1a57612d1a612bf8565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612d4757600080fd5b81516121d581612a0b565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612da25784516001600160a01b031683529383019391830191600101612d7d565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612dd857600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212208685064c2647ad01d288de7482952ae716401da6f0a77aabf505b866abd8a20e64736f6c63430008090033
Deployed Bytecode Sourcemap
39246:19062:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28031:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30382:201;;;;;;;;;;-1:-1:-1;30382:201:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;30382:201:0;1072:187:1;40865:63:0;;;;;;;;;;-1:-1:-1;40865:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;39327:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1706:32:1;;;1688:51;;1676:2;1661:18;39327:51:0;1516:229:1;29151:108:0;;;;;;;;;;-1:-1:-1;29239:12:0;;29151:108;;;1896:25:1;;;1884:2;1869:18;29151:108:0;1750:177:1;47596:157:0;;;;;;;;;;-1:-1:-1;47596:157:0;;;;;:::i;:::-;;:::i;:::-;;39879:47;;;;;;;;;;;;;;;;39707:35;;;;;;;;;;;;;;;;40649:33;;;;;;;;;;;;;;;;40609;;;;;;;;;;;;;;;;45051:275;;;;;;;;;;-1:-1:-1;45051:275:0;;;;;:::i;:::-;;:::i;31163:295::-;;;;;;;;;;-1:-1:-1;31163:295:0;;;;;:::i;:::-;;:::i;39430:53::-;;;;;;;;;;;;39476:6;39430:53;;39789:45;;;;;;;;;;;;;;;;39749:33;;;;;;;;;;-1:-1:-1;39749:33:0;;;;;;;;28993:93;;;;;;;;;;-1:-1:-1;28993:93:0;;29076:2;2928:36:1;;2916:2;2901:18;28993:93:0;2786:184:1;31867:238:0;;;;;;;;;;-1:-1:-1;31867:238:0;;;;;:::i;:::-;;:::i;39385:38::-;;;;;;;;;;;;;;;39977:33;;;;;;;;;;-1:-1:-1;39977:33:0;;;;;;;;47761:126;;;;;;;;;;-1:-1:-1;47761:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;47851:28:0;47827:4;47851:28;;;:19;:28;;;;;;;;;47761:126;40464:28;;;;;;;;;;;;;;;;40057:31;;;;;;;;;;-1:-1:-1;40057:31:0;;;;;;;;;;;29322:127;;;;;;;;;;-1:-1:-1;29322:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;29423:18:0;29396:7;29423:18;;;;;;;;;;;;29322:127;21456:103;;;;;;;;;;;;;:::i;55890:555::-;;;;;;;;;;-1:-1:-1;55890:555:0;;;;;:::i;:::-;;:::i;44159:121::-;;;;;;;;;;;;;:::i;45598:167::-;;;;;;;;;;-1:-1:-1;45598:167:0;;;;;:::i;:::-;;:::i;39522:30::-;;;;;;;;;;-1:-1:-1;39522:30:0;;;;-1:-1:-1;;;;;39522:30:0;;;40357;;;;;;;;;;;;;;;;45969:403;;;;;;;;;;-1:-1:-1;45969:403:0;;;;;:::i;:::-;;:::i;43952:155::-;;;;;;;;;;;;;:::i;20808:87::-;;;;;;;;;;-1:-1:-1;20881:6:0;;-1:-1:-1;;;;;20881:6:0;20808:87;;39559:24;;;;;;;;;;-1:-1:-1;39559:24:0;;;;-1:-1:-1;;;;;39559:24:0;;;40499:31;;;;;;;;;;;;;;;;45861:100;;;;;;;;;;-1:-1:-1;45861:100:0;;;;;:::i;:::-;;:::i;28250:104::-;;;;;;;;;;;;;:::i;46990:163::-;;;;;;;;;;-1:-1:-1;46990:163:0;;;;;:::i;:::-;;:::i;40431:24::-;;;;;;;;;;;;;;;;39933:35;;;;;;;;;;;;;;;;40689:27;;;;;;;;;;;;;;;;40575:25;;;;;;;;;;;;;;;;32608:436;;;;;;;;;;-1:-1:-1;32608:436:0;;;;;:::i;:::-;;:::i;39841:29::-;;;;;;;;;;;;;;;;29655:193;;;;;;;;;;-1:-1:-1;29655:193:0;;;;;:::i;:::-;;:::i;47357:231::-;;;;;;;;;;-1:-1:-1;47357:231:0;;;;;:::i;:::-;;:::i;41086:57::-;;;;;;;;;;-1:-1:-1;41086:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;40017:33;;;;;;;;;;-1:-1:-1;40017:33:0;;;;;;;;;;;46800:182;;;;;;;;;;-1:-1:-1;46800:182:0;;;;;:::i;:::-;;:::i;46380:412::-;;;;;;;;;;-1:-1:-1;46380:412:0;;;;;:::i;:::-;;:::i;45334:256::-;;;;;;;;;;-1:-1:-1;45334:256:0;;;;;:::i;:::-;;:::i;40275:39::-;;;;;;;;;;-1:-1:-1;40275:39:0;;;;;;;;39592:35;;;;;;;;;;;;;;;;44546:497;;;;;;;;;;-1:-1:-1;44546:497:0;;;;;:::i;:::-;;:::i;40323:27::-;;;;;;;;;;;;;;;;29911:151;;;;;;;;;;-1:-1:-1;29911:151:0;;;;;:::i;:::-;;:::i;39634:33::-;;;;;;;;;;;;;;;;44341:135;;;;;;;;;;;;;:::i;40394:30::-;;;;;;;;;;;;;;;;21714:201;;;;;;;;;;-1:-1:-1;21714:201:0;;;;;:::i;:::-;;:::i;40537:31::-;;;;;;;;;;;;;;;;39674:24;;;;;;;;;;;;;;;;57249:1056;;;;;;;;;;-1:-1:-1;57249:1056:0;;;;;:::i;:::-;;:::i;28031:100::-;28085:13;28118:5;28111:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28031:100;:::o;30382:201::-;30465:4;19439:10;30521:32;19439:10;30537:7;30546:6;30521:8;:32::i;:::-;-1:-1:-1;30571:4:0;;30382:201;-1:-1:-1;;;30382:201:0:o;47596:157::-;20694:13;:11;:13::i;:::-;47703:9:::1;::::0;47675:38:::1;::::0;-1:-1:-1;;;;;47703:9:0;;::::1;::::0;47675:38;::::1;::::0;::::1;::::0;47703:9:::1;::::0;47675:38:::1;47724:9;:21:::0;;-1:-1:-1;;;;;;47724:21:0::1;-1:-1:-1::0;;;;;47724:21:0;;;::::1;::::0;;;::::1;::::0;;47596:157::o;45051:275::-;20694:13;:11;:13::i;:::-;45188:4:::1;45180;45159:13;29239:12:::0;;;29151:108;45159:13:::1;:17;::::0;45175:1:::1;45159:17;:::i;:::-;45158:26;;;;:::i;:::-;45157:35;;;;:::i;:::-;45147:6;:45;;45125:142;;;::::0;-1:-1:-1;;;45125:142:0;;5794:2:1;45125:142:0::1;::::0;::::1;5776:21:1::0;5833:2;5813:18;;;5806:30;5872:34;5852:18;;;5845:62;-1:-1:-1;;;5923:18:1;;;5916:45;5978:19;;45125:142:0::1;;;;;;;;;45301:17;:6:::0;45311::::1;45301:17;:::i;:::-;45278:20;:40:::0;-1:-1:-1;45051:275:0:o;31163:295::-;31294:4;19439:10;31352:38;31368:4;19439:10;31383:6;31352:15;:38::i;:::-;31401:27;31411:4;31417:2;31421:6;31401:9;:27::i;:::-;-1:-1:-1;31446:4:0;;31163:295;-1:-1:-1;;;;31163:295:0:o;31867:238::-;31955:4;19439:10;32011:64;19439:10;32027:7;32064:10;32036:25;19439:10;32027:7;32036:9;:25::i;:::-;:38;;;;:::i;:::-;32011:8;:64::i;21456:103::-;20694:13;:11;:13::i;:::-;21521:30:::1;21548:1;21521:18;:30::i;:::-;21456:103::o:0;55890:555::-;20694:13;:11;:13::i;:::-;56092:3:::1;56069:19;:26;;56047:127;;;::::0;-1:-1:-1;;;56047:127:0;;6343:2:1;56047:127:0::1;::::0;::::1;6325:21:1::0;6382:2;6362:18;;;6355:30;6421:34;6401:18;;;6394:62;-1:-1:-1;;;6472:18:1;;;6465:49;6531:19;;56047:127:0::1;6141:415:1::0;56047:127:0::1;56219:4;56207:8;:16;;:33;;;;-1:-1:-1::0;56227:13:0;56207:33:::1;56185:131;;;::::0;-1:-1:-1;;;56185:131:0;;6763:2:1;56185:131:0::1;::::0;::::1;6745:21:1::0;6802:2;6782:18;;;6775:30;6841:34;6821:18;;;6814:62;-1:-1:-1;;;6892:18:1;;;6885:46;6948:19;;56185:131:0::1;6561:412:1::0;56185:131:0::1;56327:15;:37:::0;;;;56375:16:::1;:27:::0;56413:13:::1;:24:::0;;-1:-1:-1;;56413:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;55890:555::o;44159:121::-;44211:4;20694:13;:11;:13::i;:::-;-1:-1:-1;44228:14:0::1;:22:::0;;-1:-1:-1;;44228:22:0::1;::::0;;;44159:121;:::o;45598:167::-;20694:13;:11;:13::i;:::-;-1:-1:-1;;;;;45711:39:0;;;::::1;;::::0;;;:31:::1;:39:::0;;;;;:46;;-1:-1:-1;;45711:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;45598:167::o;45969:403::-;20694:13;:11;:13::i;:::-;46119:15:::1;:31:::0;;;46161:15:::1;:31:::0;;;46203:9:::1;:19:::0;;;46215:7;46248:33:::1;46179:13:::0;46137;46248:33:::1;:::i;:::-;:45;;;;:::i;:::-;46233:12;:60:::0;;;46328:2:::1;-1:-1:-1::0;46312:18:0::1;46304:60;;;::::0;-1:-1:-1;;;46304:60:0;;7180:2:1;46304:60:0::1;::::0;::::1;7162:21:1::0;7219:2;7199:18;;;7192:30;7258:31;7238:18;;;7231:59;7307:18;;46304:60:0::1;6978:353:1::0;46304:60:0::1;45969:403:::0;;;:::o;43952:155::-;20694:13;:11;:13::i;:::-;44007::::1;:20:::0;;-1:-1:-1;;44038:18:0;;;;;44084:15:::1;44067:14;:32:::0;43952:155::o;45861:100::-;20694:13;:11;:13::i;:::-;45932:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;45932:21:0;;::::1;::::0;;;::::1;::::0;;45861:100::o;28250:104::-;28306:13;28339:7;28332:14;;;;;:::i;46990:163::-;20694:13;:11;:13::i;:::-;47104:41:::1;47133:4;47139:5;47104:28;:41::i;:::-;46990:163:::0;;:::o;32608:436::-;32701:4;19439:10;32701:4;32784:25;19439:10;32801:7;32784:9;:25::i;:::-;32757:52;;32848:15;32828:16;:35;;32820:85;;;;-1:-1:-1;;;32820:85:0;;7538:2:1;32820:85:0;;;7520:21:1;7577:2;7557:18;;;7550:30;7616:34;7596:18;;;7589:62;-1:-1:-1;;;7667:18:1;;;7660:35;7712:19;;32820:85:0;7336:401:1;32820:85:0;32941:60;32950:5;32957:7;32985:15;32966:16;:34;32941:8;:60::i;29655:193::-;29734:4;19439:10;29790:28;19439:10;29807:2;29811:6;29790:9;:28::i;47357:231::-;20694:13;:11;:13::i;:::-;47517:15:::1;::::0;47474:59:::1;::::0;-1:-1:-1;;;;;47517:15:0;;::::1;::::0;47474:59;::::1;::::0;::::1;::::0;47517:15:::1;::::0;47474:59:::1;47544:15;:36:::0;;-1:-1:-1;;;;;;47544:36:0::1;-1:-1:-1::0;;;;;47544:36:0;;;::::1;::::0;;;::::1;::::0;;47357:231::o;46800:182::-;20694:13;:11;:13::i;:::-;-1:-1:-1;;;;;46885:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;46885:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;46940:34;;1212:41:1;;;46940:34:0::1;::::0;1185:18:1;46940:34:0::1;;;;;;;46800:182:::0;;:::o;46380:412::-;20694:13;:11;:13::i;:::-;46531:16:::1;:32:::0;;;46574:16:::1;:32:::0;;;46617:10:::1;:20:::0;;;46630:7;46664:35:::1;46593:13:::0;46550;46664:35:::1;:::i;:::-;:48;;;;:::i;:::-;46648:13;:64:::0;;;46748:2:::1;-1:-1:-1::0;46731:19:0::1;46723:61;;;::::0;-1:-1:-1;;;46723:61:0;;7180:2:1;46723:61:0::1;::::0;::::1;7162:21:1::0;7219:2;7199:18;;;7192:30;7258:31;7238:18;;;7231:59;7307:18;;46723:61:0::1;6978:353:1::0;45334:256:0;20694:13;:11;:13::i;:::-;45474:4:::1;45466;45445:13;29239:12:::0;;;29151:108;45445:13:::1;:17;::::0;45461:1:::1;45445:17;:::i;:::-;45444:26;;;;:::i;:::-;45443:35;;;;:::i;:::-;45433:6;:45;;45411:131;;;::::0;-1:-1:-1;;;45411:131:0;;7944:2:1;45411:131:0::1;::::0;::::1;7926:21:1::0;7983:2;7963:18;;;7956:30;8022:34;8002:18;;;7995:62;-1:-1:-1;;;8073:18:1;;;8066:34;8117:19;;45411:131:0::1;7742:400:1::0;45411:131:0::1;45565:17;:6:::0;45575::::1;45565:17;:::i;:::-;45553:9;:29:::0;-1:-1:-1;45334:256:0:o;44546:497::-;44654:4;20694:13;:11;:13::i;:::-;44733:6:::1;44712:13;29239:12:::0;;;29151:108;44712:13:::1;:17;::::0;44728:1:::1;44712:17;:::i;:::-;44711:28;;;;:::i;:::-;44698:9;:41;;44676:144;;;::::0;-1:-1:-1;;;44676:144:0;;8349:2:1;44676:144:0::1;::::0;::::1;8331:21:1::0;8388:2;8368:18;;;8361:30;8427:34;8407:18;;;8400:62;-1:-1:-1;;;8478:18:1;;;8471:51;8539:19;;44676:144:0::1;8147:417:1::0;44676:144:0::1;44888:4;44867:13;29239:12:::0;;;29151:108;44867:13:::1;:17;::::0;44883:1:::1;44867:17;:::i;:::-;44866:26;;;;:::i;:::-;44853:9;:39;;44831:141;;;::::0;-1:-1:-1;;;44831:141:0;;8771:2:1;44831:141:0::1;::::0;::::1;8753:21:1::0;8810:2;8790:18;;;8783:30;8849:34;8829:18;;;8822:62;-1:-1:-1;;;8900:18:1;;;8893:50;8960:19;;44831:141:0::1;8569:416:1::0;44831:141:0::1;-1:-1:-1::0;44983:18:0::1;:30:::0;;;45031:4:::1;20718:1;44546:497:::0;;;:::o;29911:151::-;-1:-1:-1;;;;;30027:18:0;;;30000:7;30027:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29911:151::o;44341:135::-;44401:4;20694:13;:11;:13::i;:::-;-1:-1:-1;44418:20:0::1;:28:::0;;-1:-1:-1;;44418:28:0::1;::::0;;;44341:135;:::o;21714:201::-;20694:13;:11;:13::i;:::-;-1:-1:-1;;;;;21803:22:0;::::1;21795:73;;;::::0;-1:-1:-1;;;21795:73:0;;9192:2:1;21795:73:0::1;::::0;::::1;9174:21:1::0;9231:2;9211:18;;;9204:30;9270:34;9250:18;;;9243:62;-1:-1:-1;;;9321:18:1;;;9314:36;9367:19;;21795:73:0::1;8990:402:1::0;21795:73:0::1;21879:28;21898:8;21879:18;:28::i;:::-;21714:201:::0;:::o;57249:1056::-;57360:4;20694:13;:11;:13::i;:::-;57445:19:::1;;57422:20;;:42;;;;:::i;:::-;57404:15;:60;57382:142;;;::::0;-1:-1:-1;;;57382:142:0;;9599:2:1;57382:142:0::1;::::0;::::1;9581:21:1::0;;;9618:18;;;9611:30;9677:34;9657:18;;;9650:62;9729:18;;57382:142:0::1;9397:356:1::0;57382:142:0::1;57554:4;57543:7;:15;;57535:70;;;::::0;-1:-1:-1;;;57535:70:0;;9960:2:1;57535:70:0::1;::::0;::::1;9942:21:1::0;9999:2;9979:18;;;9972:30;10038:34;10018:18;;;10011:62;-1:-1:-1;;;10089:18:1;;;10082:40;10139:19;;57535:70:0::1;9758:406:1::0;57535:70:0::1;57639:15;57616:20;:38:::0;57740:29:::1;::::0;-1:-1:-1;;;57740:29:0;;-1:-1:-1;;;;;57755:13:0::1;1706:32:1::0;57740:29:0::1;::::0;::::1;1688:51:1::0;57709:28:0::1;::::0;57740:4:::1;::::0;:14:::1;::::0;1661:18:1;;57740:29:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57709:60:::0;-1:-1:-1;57819:20:0::1;57842:44;57880:5;57842:33;57709:60:::0;57867:7;57842:24:::1;:33::i;:::-;:37:::0;::::1;:44::i;:::-;57819:67:::0;-1:-1:-1;57991:16:0;;57987:110:::1;;58024:61;58040:13;58063:6;58072:12;58024:15;:61::i;:::-;58172:19;58209:13;58172:51;;58234:4;-1:-1:-1::0;;;;;58234:9:0::1;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;58261:14:0::1;::::0;::::1;::::0;-1:-1:-1;58261:14:0;;-1:-1:-1;58261:14:0::1;-1:-1:-1::0;58293:4:0::1;::::0;57249:1056;-1:-1:-1;;;;57249:1056:0:o;36635:380::-;-1:-1:-1;;;;;36771:19:0;;36763:68;;;;-1:-1:-1;;;36763:68:0;;10560:2:1;36763:68:0;;;10542:21:1;10599:2;10579:18;;;10572:30;10638:34;10618:18;;;10611:62;-1:-1:-1;;;10689:18:1;;;10682:34;10733:19;;36763:68:0;10358:400:1;36763:68:0;-1:-1:-1;;;;;36850:21:0;;36842:68;;;;-1:-1:-1;;;36842:68:0;;10965:2:1;36842:68:0;;;10947:21:1;11004:2;10984:18;;;10977:30;11043:34;11023:18;;;11016:62;-1:-1:-1;;;11094:18:1;;;11087:32;11136:19;;36842:68:0;10763:398:1;36842:68:0;-1:-1:-1;;;;;36923:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;36975:32;;1896:25:1;;;36975:32:0;;1869:18:1;36975:32:0;;;;;;;36635:380;;;:::o;20973:132::-;20881:6;;-1:-1:-1;;;;;20881:6:0;19439:10;21037:23;21029:68;;;;-1:-1:-1;;;21029:68:0;;11368:2:1;21029:68:0;;;11350:21:1;;;11387:18;;;11380:30;11446:34;11426:18;;;11419:62;11498:18;;21029:68:0;11166:356:1;37306:453:0;37441:24;37468:25;37478:5;37485:7;37468:9;:25::i;:::-;37441:52;;-1:-1:-1;;37508:16:0;:37;37504:248;;37590:6;37570:16;:26;;37562:68;;;;-1:-1:-1;;;37562:68:0;;11729:2:1;37562:68:0;;;11711:21:1;11768:2;11748:18;;;11741:30;11807:31;11787:18;;;11780:59;11856:18;;37562:68:0;11527:353:1;37562:68:0;37674:51;37683:5;37690:7;37718:6;37699:16;:25;37674:8;:51::i;:::-;37430:329;37306:453;;;:::o;47945:5051::-;-1:-1:-1;;;;;48077:18:0;;48069:68;;;;-1:-1:-1;;;48069:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48156:16:0;;48148:64;;;;-1:-1:-1;;;48148:64:0;;;;;;;:::i;:::-;48229:11;48225:93;;48257:28;48273:4;48279:2;48283:1;48257:15;:28::i;48225:93::-;48334:14;;;;48330:2527;;;20881:6;;-1:-1:-1;;;;;48387:15:0;;;20881:6;;48387:15;;;;:49;;-1:-1:-1;20881:6:0;;-1:-1:-1;;;;;48423:13:0;;;20881:6;;48423:13;;48387:49;:86;;;;-1:-1:-1;;;;;;48457:16:0;;;;48387:86;:128;;;;-1:-1:-1;;;;;;48494:21:0;;48508:6;48494:21;;48387:128;:158;;;;-1:-1:-1;48537:8:0;;-1:-1:-1;;;48537:8:0;;;;48536:9;48387:158;48365:2481;;;48585:13;;;;;;;48580:223;;-1:-1:-1;;;;;48657:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;48686:23:0;;;;;;:19;:23;;;;;;;;48657:52;48623:160;;;;-1:-1:-1;;;48623:160:0;;12897:2:1;48623:160:0;;;12879:21:1;12936:2;12916:18;;;12909:30;-1:-1:-1;;;12955:18:1;;;12948:52;13017:18;;48623:160:0;12695:346:1;48623:160:0;48999:20;;;;48995:641;;;20881:6;;-1:-1:-1;;;;;49074:13:0;;;20881:6;;49074:13;;;;:72;;;49130:15;-1:-1:-1;;;;;49116:30:0;:2;-1:-1:-1;;;;;49116:30:0;;;49074:72;:129;;;;;49189:13;-1:-1:-1;;;;;49175:28:0;:2;-1:-1:-1;;;;;49175:28:0;;;49074:129;49044:573;;;49321:9;49292:39;;;;:28;:39;;;;;;49367:12;-1:-1:-1;49254:258:0;;;;-1:-1:-1;;;49254:258:0;;13248:2:1;49254:258:0;;;13230:21:1;13287:2;13267:18;;;13260:30;13326:34;13306:18;;;13299:62;13397:34;13377:18;;;13370:62;-1:-1:-1;;;13448:19:1;;;13441:40;13498:19;;49254:258:0;13046:477:1;49254:258:0;49568:9;49539:39;;;;:28;:39;;;;;49581:12;49539:54;;49044:573;-1:-1:-1;;;;;49710:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;49767:35:0;;;;;;:31;:35;;;;;;;;49766:36;49710:92;49684:1147;;;49889:20;;49879:6;:30;;49845:169;;;;-1:-1:-1;;;49845:169:0;;13730:2:1;49845:169:0;;;13712:21:1;13769:2;13749:18;;;13742:30;13808:34;13788:18;;;13781:62;-1:-1:-1;;;13859:18:1;;;13852:51;13920:19;;49845:169:0;13528:417:1;49845:169:0;50097:9;;-1:-1:-1;;;;;29423:18:0;;29396:7;29423:18;;;;;;;;;;;50071:22;;:6;:22;:::i;:::-;:35;;50037:140;;;;-1:-1:-1;;;50037:140:0;;14152:2:1;50037:140:0;;;14134:21:1;14191:2;14171:18;;;14164:30;-1:-1:-1;;;14210:18:1;;;14203:49;14269:18;;50037:140:0;13950:343:1;50037:140:0;49684:1147;;;-1:-1:-1;;;;;50275:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;50330:37:0;;;;;;:31;:37;;;;;;;;50329:38;50275:92;50249:582;;;50454:20;;50444:6;:30;;50410:170;;;;-1:-1:-1;;;50410:170:0;;14500:2:1;50410:170:0;;;14482:21:1;14539:2;14519:18;;;14512:30;14578:34;14558:18;;;14551:62;-1:-1:-1;;;14629:18:1;;;14622:52;14691:19;;50410:170:0;14298:418:1;50249:582:0;-1:-1:-1;;;;;50611:35:0;;;;;;:31;:35;;;;;;;;50606:225;;50731:9;;-1:-1:-1;;;;;29423:18:0;;29396:7;29423:18;;;;;;;;;;;50705:22;;:6;:22;:::i;:::-;:35;;50671:140;;;;-1:-1:-1;;;50671:140:0;;14152:2:1;50671:140:0;;;14134:21:1;14191:2;14171:18;;;14164:30;-1:-1:-1;;;14210:18:1;;;14203:49;14269:18;;50671:140:0;13950:343:1;50671:140:0;50918:4;50869:28;29423:18;;;;;;;;;;;50976;;50952:42;;;;;;;51025:35;;-1:-1:-1;51049:11:0;;;;;;;51025:35;:61;;;;-1:-1:-1;51078:8:0;;-1:-1:-1;;;51078:8:0;;;;51077:9;51025:61;:110;;;;-1:-1:-1;;;;;;51104:31:0;;;;;;:25;:31;;;;;;;;51103:32;51025:110;:153;;;;-1:-1:-1;;;;;;51153:25:0;;;;;;:19;:25;;;;;;;;51152:26;51025:153;:194;;;;-1:-1:-1;;;;;;51196:23:0;;;;;;:19;:23;;;;;;;;51195:24;51025:194;51007:326;;;51246:8;:15;;-1:-1:-1;;;;51246:15:0;-1:-1:-1;;;51246:15:0;;;51278:10;:8;:10::i;:::-;51305:8;:16;;-1:-1:-1;;;;51305:16:0;;;51007:326;51364:8;;-1:-1:-1;;;51364:8:0;;;;51363:9;:55;;;;-1:-1:-1;;;;;;51389:29:0;;;;;;:25;:29;;;;;;;;51363:55;:85;;;;-1:-1:-1;51435:13:0;;;;51363:85;:153;;;;;51501:15;;51484:14;;:32;;;;:::i;:::-;51465:15;:51;;51363:153;:196;;;;-1:-1:-1;;;;;;51534:25:0;;;;;;:19;:25;;;;;;;;51533:26;51363:196;51345:282;;;51586:29;:27;:29::i;:::-;;51345:282;51655:8;;-1:-1:-1;;;;;51765:25:0;;51639:12;51765:25;;;:19;:25;;;;;;51655:8;-1:-1:-1;;;51655:8:0;;;;;51654:9;;51765:25;;:52;;-1:-1:-1;;;;;;51794:23:0;;;;;;:19;:23;;;;;;;;51765:52;51761:100;;;-1:-1:-1;51844:5:0;51761:100;51873:12;51978:7;51974:969;;;-1:-1:-1;;;;;52030:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;52079:1;52063:13;;:17;52030:50;52026:768;;;52108:34;52138:3;52108:25;52119:13;;52108:6;:10;;:25;;;;:::i;:34::-;52101:41;;52211:13;;52191:16;;52184:4;:23;;;;:::i;:::-;52183:41;;;;:::i;:::-;52161:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;52281:13:0;;52267:10;;52260:17;;:4;:17;:::i;:::-;52259:35;;;;:::i;:::-;52243:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;52363:13:0;;52343:16;;52336:23;;:4;:23;:::i;:::-;52335:41;;;;:::i;:::-;52313:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;52026:768:0;;-1:-1:-1;52026:768:0;;-1:-1:-1;;;;;52438:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;52488:1;52473:12;;:16;52438:51;52434:360;;;52517:33;52546:3;52517:24;52528:12;;52517:6;:10;;:24;;;;:::i;:33::-;52510:40;;52618:12;;52599:15;;52592:4;:22;;;;:::i;:::-;52591:39;;;;:::i;:::-;52569:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;52686:12:0;;52673:9;;52666:16;;:4;:16;:::i;:::-;52665:33;;;;:::i;:::-;52649:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;52766:12:0;;52747:15;;52740:22;;:4;:22;:::i;:::-;52739:39;;;;:::i;:::-;52717:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;52434:360:0;52814:8;;52810:91;;52843:42;52859:4;52873;52880;52843:15;:42::i;:::-;52917:14;52927:4;52917:14;;:::i;:::-;;;51974:969;52955:33;52971:4;52977:2;52981:6;52955:15;:33::i;:::-;48058:4938;;;;47945:5051;;;:::o;22075:191::-;22168:6;;;-1:-1:-1;;;;;22185:17:0;;;-1:-1:-1;;;;;;22185:17:0;;;;;;;22218:40;;22168:6;;;22185:17;22168:6;;22218:40;;22149:16;;22218:40;22138:128;22075:191;:::o;47161:188::-;-1:-1:-1;;;;;47244:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;47244:39:0;;;;;;;;;;47301:40;;47244:39;;:31;47301:40;;;47161:188;;:::o;12307:98::-;12365:7;12392:5;12396:1;12392;:5;:::i;:::-;12385:12;12307:98;-1:-1:-1;;;12307:98:0:o;12706:::-;12764:7;12791:5;12795:1;12791;:5;:::i;33514:840::-;-1:-1:-1;;;;;33645:18:0;;33637:68;;;;-1:-1:-1;;;33637:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33724:16:0;;33716:64;;;;-1:-1:-1;;;33716:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33866:15:0;;33844:19;33866:15;;;;;;;;;;;33900:21;;;;33892:72;;;;-1:-1:-1;;;33892:72:0;;15053:2:1;33892:72:0;;;15035:21:1;15092:2;15072:18;;;15065:30;15131:34;15111:18;;;15104:62;-1:-1:-1;;;15182:18:1;;;15175:36;15228:19;;33892:72:0;14851:402:1;33892:72:0;-1:-1:-1;;;;;34000:15:0;;;:9;:15;;;;;;;;;;;34018:20;;;34000:38;;34218:13;;;;;;;;;;:23;;;;;;34270:26;;1896:25:1;;;34218:13:0;;34270:26;;1869:18:1;34270:26:0;;;;;;;34309:37;45969:403;54126:1756;54209:4;54165:23;29423:18;;;;;;;;;;;54165:50;;54226:25;54322:12;;54288:18;;54254;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;54226:108;-1:-1:-1;54345:12:0;54374:20;;;:46;;-1:-1:-1;54398:22:0;;54374:46;54370:85;;;54437:7;;;54126:1756::o;54370:85::-;54489:18;;:23;;54510:2;54489:23;:::i;:::-;54471:15;:41;54467:115;;;54547:18;;:23;;54568:2;54547:23;:::i;:::-;54529:41;;54467:115;54643:23;54756:1;54723:17;54688:18;;54670:15;:36;;;;:::i;:::-;54669:71;;;;:::i;:::-;:88;;;;:::i;:::-;54643:114;-1:-1:-1;54768:26:0;54797:36;:15;54643:114;54797:19;:36::i;:::-;54768:65;-1:-1:-1;54874:21:0;54908:36;54768:65;54908:16;:36::i;:::-;54957:18;54978:44;:21;55004:17;54978:25;:44::i;:::-;54957:65;;55035:23;55061:81;55114:17;55061:34;55076:18;;55061:10;:14;;:34;;;;:::i;:81::-;55035:107;;55153:17;55173:51;55206:17;55173:28;55188:12;;55173:10;:14;;:28;;;;:::i;:51::-;55153:71;-1:-1:-1;55237:23:0;55153:71;55263:28;55276:15;55263:10;:28;:::i;:::-;:40;;;;:::i;:::-;55337:1;55316:18;:22;;;55349:18;:22;;;55382:12;:16;;;55433:9;;55425:45;;55237:66;;-1:-1:-1;;;;;;55433:9:0;;55456;;55425:45;55337:1;55425:45;55456:9;55433;55425:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55411:59:0;;-1:-1:-1;;55487:19:0;;;;;:42;;;55528:1;55510:15;:19;55487:42;55483:278;;;55546:46;55559:15;55576;55546:12;:46::i;:::-;55716:18;;55612:137;;;15670:25:1;;;15726:2;15711:18;;15704:34;;;15754:18;;;15747:34;;;;55612:137:0;;;;;;15658:2:1;55612:137:0;;;55483:278;55795:15;;55787:87;;-1:-1:-1;;;;;55795:15:0;;;;55838:21;;55787:87;;;;55838:21;55795:15;55787:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;54126:1756:0:o;56453:788::-;56544:15;56527:14;:32;56645:29;;-1:-1:-1;;;56645:29:0;;-1:-1:-1;;;;;56660:13:0;1706:32:1;56645:29:0;;;1688:51:1;56510:4:0;;;;56645;;:14;;1661:18:1;;56645:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56614:60;;56724:20;56747:77;56808:5;56747:42;56772:16;;56747:20;:24;;:42;;;;:::i;:77::-;56724:100;-1:-1:-1;56929:16:0;;56925:110;;56962:61;56978:13;57001:6;57010:12;56962:15;:61::i;:::-;57110:19;57147:13;57110:51;;57172:4;-1:-1:-1;;;;;57172:9:0;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;57199:12:0;;;;-1:-1:-1;57199:12:0;;-1:-1:-1;57199:12:0;57229:4;57222:11;;;;;56453:788;:::o;11950:98::-;12008:7;12035:5;12039:1;12035;:5;:::i;53004:589::-;53154:16;;;53168:1;53154:16;;;;;;;;53130:21;;53154:16;;;;;;;;;;-1:-1:-1;53154:16:0;53130:40;;53199:4;53181;53186:1;53181:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;53181:23:0;;;-1:-1:-1;;;;;53181:23:0;;;;;53225:15;-1:-1:-1;;;;;53225:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53215:4;53220:1;53215:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;53215:32:0;;;-1:-1:-1;;;;;53215:32:0;;;;;53260:62;53277:4;53292:15;53310:11;53260:8;:62::i;:::-;53361:224;;-1:-1:-1;;;53361:224:0;;-1:-1:-1;;;;;53361:15:0;:66;;;;:224;;53442:11;;53468:1;;53512:4;;53539;;53559:15;;53361:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53059:534;53004:589;:::o;53601:517::-;53749:62;53766:4;53781:15;53799:11;53749:8;:62::i;:::-;53854:256;;-1:-1:-1;;;53854:256:0;;53926:4;53854:256;;;17638:34:1;17688:18;;;17681:34;;;53972:1:0;17731:18:1;;;17724:34;;;17774:18;;;17767:34;39476:6:0;17817:19:1;;;17810:44;54084:15:0;17870:19:1;;;17863:35;53854:15:0;-1:-1:-1;;;;;53854:31:0;;;;53893:9;;17572:19:1;;53854:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;53601:517;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:247::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;1431:9;1418:23;1450:31;1475:5;1450:31;:::i;1932:180::-;1991:6;2044:2;2032:9;2023:7;2019:23;2015:32;2012:52;;;2060:1;2057;2050:12;2012:52;-1:-1:-1;2083:23:1;;1932:180;-1:-1:-1;1932:180:1:o;2117:456::-;2194:6;2202;2210;2263:2;2251:9;2242:7;2238:23;2234:32;2231:52;;;2279:1;2276;2269:12;2231:52;2318:9;2305:23;2337:31;2362:5;2337:31;:::i;:::-;2387:5;-1:-1:-1;2444:2:1;2429:18;;2416:32;2457:33;2416:32;2457:33;:::i;:::-;2117:456;;2509:7;;-1:-1:-1;;;2563:2:1;2548:18;;;;2535:32;;2117:456::o;2975:160::-;3040:20;;3096:13;;3089:21;3079:32;;3069:60;;3125:1;3122;3115:12;3140:316;3214:6;3222;3230;3283:2;3271:9;3262:7;3258:23;3254:32;3251:52;;;3299:1;3296;3289:12;3251:52;3335:9;3322:23;3312:33;;3392:2;3381:9;3377:18;3364:32;3354:42;;3415:35;3446:2;3435:9;3431:18;3415:35;:::i;:::-;3405:45;;3140:316;;;;;:::o;3461:315::-;3526:6;3534;3587:2;3575:9;3566:7;3562:23;3558:32;3555:52;;;3603:1;3600;3593:12;3555:52;3642:9;3629:23;3661:31;3686:5;3661:31;:::i;:::-;3711:5;-1:-1:-1;3735:35:1;3766:2;3751:18;;3735:35;:::i;:::-;3725:45;;3461:315;;;;;:::o;3781:316::-;3858:6;3866;3874;3927:2;3915:9;3906:7;3902:23;3898:32;3895:52;;;3943:1;3940;3933:12;3895:52;-1:-1:-1;;3966:23:1;;;4036:2;4021:18;;4008:32;;-1:-1:-1;4087:2:1;4072:18;;;4059:32;;3781:316;-1:-1:-1;3781:316:1:o;4102:180::-;4158:6;4211:2;4199:9;4190:7;4186:23;4182:32;4179:52;;;4227:1;4224;4217:12;4179:52;4250:26;4266:9;4250:26;:::i;4287:388::-;4355:6;4363;4416:2;4404:9;4395:7;4391:23;4387:32;4384:52;;;4432:1;4429;4422:12;4384:52;4471:9;4458:23;4490:31;4515:5;4490:31;:::i;:::-;4540:5;-1:-1:-1;4597:2:1;4582:18;;4569:32;4610:33;4569:32;4610:33;:::i;:::-;4662:7;4652:17;;;4287:388;;;;;:::o;4680:380::-;4759:1;4755:12;;;;4802;;;4823:61;;4877:4;4869:6;4865:17;4855:27;;4823:61;4930:2;4922:6;4919:14;4899:18;4896:38;4893:161;;;4976:10;4971:3;4967:20;4964:1;4957:31;5011:4;5008:1;5001:15;5039:4;5036:1;5029:15;4893:161;;4680:380;;;:::o;5065:127::-;5126:10;5121:3;5117:20;5114:1;5107:31;5157:4;5154:1;5147:15;5181:4;5178:1;5171:15;5197:168;5237:7;5303:1;5299;5295:6;5291:14;5288:1;5285:21;5280:1;5273:9;5266:17;5262:45;5259:71;;;5310:18;;:::i;:::-;-1:-1:-1;5350:9:1;;5197:168::o;5370:217::-;5410:1;5436;5426:132;;5480:10;5475:3;5471:20;5468:1;5461:31;5515:4;5512:1;5505:15;5543:4;5540:1;5533:15;5426:132;-1:-1:-1;5572:9:1;;5370:217::o;6008:128::-;6048:3;6079:1;6075:6;6072:1;6069:13;6066:39;;;6085:18;;:::i;:::-;-1:-1:-1;6121:9:1;;6008:128::o;10169:184::-;10239:6;10292:2;10280:9;10271:7;10267:23;10263:32;10260:52;;;10308:1;10305;10298:12;10260:52;-1:-1:-1;10331:16:1;;10169:184;-1:-1:-1;10169:184:1:o;11885:401::-;12087:2;12069:21;;;12126:2;12106:18;;;12099:30;12165:34;12160:2;12145:18;;12138:62;-1:-1:-1;;;12231:2:1;12216:18;;12209:35;12276:3;12261:19;;11885:401::o;12291:399::-;12493:2;12475:21;;;12532:2;12512:18;;;12505:30;12571:34;12566:2;12551:18;;12544:62;-1:-1:-1;;;12637:2:1;12622:18;;12615:33;12680:3;12665:19;;12291:399::o;14721:125::-;14761:4;14789:1;14786;14783:8;14780:34;;;14794:18;;:::i;:::-;-1:-1:-1;14831:9:1;;14721:125::o;15924:127::-;15985:10;15980:3;15976:20;15973:1;15966:31;16016:4;16013:1;16006:15;16040:4;16037:1;16030:15;16056:251;16126:6;16179:2;16167:9;16158:7;16154:23;16150:32;16147:52;;;16195:1;16192;16185:12;16147:52;16227:9;16221:16;16246:31;16271:5;16246:31;:::i;16312:980::-;16574:4;16622:3;16611:9;16607:19;16653:6;16642:9;16635:25;16679:2;16717:6;16712:2;16701:9;16697:18;16690:34;16760:3;16755:2;16744:9;16740:18;16733:31;16784:6;16819;16813:13;16850:6;16842;16835:22;16888:3;16877:9;16873:19;16866:26;;16927:2;16919:6;16915:15;16901:29;;16948:1;16958:195;16972:6;16969:1;16966:13;16958:195;;;17037:13;;-1:-1:-1;;;;;17033:39:1;17021:52;;17128:15;;;;17093:12;;;;17069:1;16987:9;16958:195;;;-1:-1:-1;;;;;;;17209:32:1;;;;17204:2;17189:18;;17182:60;-1:-1:-1;;;17273:3:1;17258:19;17251:35;17170:3;16312:980;-1:-1:-1;;;16312:980:1:o;17909:306::-;17997:6;18005;18013;18066:2;18054:9;18045:7;18041:23;18037:32;18034:52;;;18082:1;18079;18072:12;18034:52;18111:9;18105:16;18095:26;;18161:2;18150:9;18146:18;18140:25;18130:35;;18205:2;18194:9;18190:18;18184:25;18174:35;;17909:306;;;;;:::o
Swarm Source
ipfs://8685064c2647ad01d288de7482952ae716401da6f0a77aabf505b866abd8a20e
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.