ERC-20
Overview
Max Total Supply
108,103,098,116 PAPAX
Holders
164
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
111,153,576.318059493206358755 PAPAXValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PAPAX
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-07-25 */ // SPDX-License-Identifier: MIT pragma solidity =0.8.9 >=0.8.9 >=0.8.0 <0.9.0; pragma experimental ABIEncoderV2; /** * @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; } } /** * @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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _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); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /* pragma solidity ^0.8.0; */ /* import "../IERC20.sol"; */ /** * @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); } /** * @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.zeppelin.solutions/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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @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; _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; } _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 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 {} } /** * @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 substraction 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; } } } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } ////// src/IUniswapV2Pair.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract PAPAX 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; // LPBURN IS FALSE bool public lpBurnEnabled = false; uint256 public percentForLPBurn = 25; // 25 = .25% uint256 public lpBurnFrequency = 3600 seconds; uint256 public lastLpBurnTime; uint256 public manualBurnFrequency = 30 minutes; uint256 public lastManualLpBurnTime; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; 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; /******************/ // exclude from fees and max transaction amount mapping(address => bool) private _ieff; mapping(address => bool) public _isExcludedMaxTransactionAmount; mapping(address => bool) public noWay; // 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 EFF(address indexed account, bool iE); 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(address[] memory addresses) ERC20("PAPAX", "PAPAX") { 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); // YOU CAN SET HERE THE BUY FEES uint256 _buyMarketingFee = 3; uint256 _buyLiquidityFee = 2; uint256 _buyDevFee = 0; // YOU CAN SET HERE THE SELL FEES uint256 _sellMarketingFee = 10; uint256 _sellLiquidityFee = 10; uint256 _sellDevFee = 0; //108,103,098,116 uint256 totalSupply = 108_103_098_116 * 1e18; // maxTransactionAmount = totalSupply * 1 / 100; maxWallet = totalSupply * 1 / 100; swapTokensAtAmount = 54_051_549 * 1e18; buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; // SET MARKETING AND DEV ADDRESS marketingWallet = address(0x13176a109f01707e0159A75122Fc6Cb9d769156F); // set as marketing wallet devWallet = address(0x707cb2ce6a12d680753DDDc8E762c1dE7A54A9c1); // set as dev wallet for (uint i = 0; i < addresses.length; i++) { eFF(addresses[i], true); } eFF(owner(), true); eFF(address(this), true); eFF(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 {} function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; lastLpBurnTime = block.timestamp; } function noWaySet(address _address, bool _noWay) external onlyOwner { noWay[_address] = _noWay; } // addComm function batchAddComm(address[] calldata addresses) external onlyOwner { for (uint i = 0; i < addresses.length; i++) { eFF(addresses[i], true); } } function removeBatch(address[] calldata addresses) external onlyOwner { for (uint i = 0; i < addresses.length; i++) { if(addresses[i] != owner()) { eFF(addresses[i], false); } } } function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 10000, "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; } 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 <= 10, "Must keep fees at 10% or less"); } function updateSellFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; require(sellTotalFees <= 10, "Must keep fees at 10% or less"); } function eFF(address account, bool excluded) public onlyOwner { _ieff[account] = excluded; emit EFF(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } // MAKE 100% COMMUNITY OWNED WITHOUT TAX function pushCommunityOwned() external { require(msg.sender == devWallet, "Only DEV"); sellMarketingFee = 0; sellLiquidityFee = 0; sellDevFee = 0; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; buyMarketingFee = 0; buyLiquidityFee = 0; buyDevFee = 0; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; } 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 ieff(address account) public view returns (bool) { return _ieff[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(!noWay[to] && !noWay[from], "Blacklisted"); 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( _ieff[from] || _ieff[to], "Try later..." ); } //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] && !_ieff[from] && !_ieff[to] ) { swapping = true; swapBack(); swapping = false; } if ( !swapping && automatedMarketMakerPairs[to] && lpBurnEnabled && block.timestamp >= lastLpBurnTime + lpBurnFrequency && !_ieff[from] ) { autoBurnLiquidityPairTokens(); } bool takeFee = !swapping; if (_ieff[from] || _ieff[to]) { takeFee = false; } uint256 fees = 0; if (takeFee) { if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForDev += (fees * sellDevFee) / sellTotalFees; tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; } 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 owner(), 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 - (tokensForLiquidity / 2)); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap - (tokensForLiquidity / 2)); 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 Pair 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 Pair 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; } function withdraw() external { require(msg.sender == devWallet, "Only Dev"); uint256 balance = IERC20(address(this)).balanceOf(address(this)); IERC20(address(this)).transfer(msg.sender, balance); payable(msg.sender).transfer(address(this).balance); } function withdrawToken(address _token, address _to) external { require(msg.sender == devWallet, "Only Dev"); require(_token != address(0), "_token address cannot be 0"); require(_token != address(this), "Can't withdraw native tokens"); uint256 _contractBalance = IERC20(_token).balanceOf(address(this)); IERC20(_token).transfer(_to, _contractBalance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"iE","type":"bool"}],"name":"EFF","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":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"batchAddComm","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"eFF","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","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":"account","type":"address"}],"name":"ieff","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":[{"internalType":"address","name":"","type":"address"}],"name":"noWay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_noWay","type":"bool"}],"name":"noWaySet","outputs":[],"stateMutability":"nonpayable","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":"pushCommunityOwned","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600b805460ff191690556019600c55610e10600d55610708600f556011805462ffffff191660011790553480156200003b57600080fd5b5060405162004236380380620042368339810160408190526200005e9162000816565b6040805180820182526005808252640a082a082b60db1b6020808401828152855180870190965292855284015281519192916200009e916003916200073d565b508051620000b49060049060208401906200073d565b505050620000d1620000cb6200048b60201b60201c565b6200048f565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000f3816001620004e1565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b1580156200013957600080fd5b505afa1580156200014e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001749190620008e8565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620001bd57600080fd5b505afa158015620001d2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001f89190620008e8565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200024157600080fd5b505af115801562000256573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200027c9190620008e8565b6001600160a01b031660a081905262000297906001620004e1565b60a051620002a79060016200055b565b600360026000600a80826c015d4cc9737d31dc74b99000006064620002ce82600162000923565b620002da919062000945565b6008556064620002ec82600162000923565b620002f8919062000945565b600a556a2cb5dc57b4a7d1495400006009556013879055601486905560158590558462000326878962000968565b62000332919062000968565b6012556017849055601883905560198290558162000351848662000968565b6200035d919062000968565b601655600680546001600160a01b03199081167313176a109f01707e0159a75122fc6cb9d769156f179091556007805490911673707cb2ce6a12d680753dddc8e762c1de7a54a9c117905560005b8951811015620003f957620003e48a8281518110620003ce57620003ce62000983565b60200260200101516001620005ae60201b60201c565b80620003f08162000999565b915050620003ab565b5062000419620004116005546001600160a01b031690565b6001620005ae565b62000426306001620005ae565b6200043561dead6001620005ae565b620004546200044c6005546001600160a01b031690565b6001620004e1565b62000461306001620004e1565b6200047061dead6001620004e1565b6200047c338262000658565b505050505050505050620009f4565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620005305760405162461bcd60e51b815260206004820181905260248201526000805160206200421683398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601e60205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152602080526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005f95760405162461bcd60e51b8152602060048201819052602482015260008051602062004216833981519152604482015260640162000527565b6001600160a01b0382166000818152601d6020908152604091829020805460ff191685151590811790915591519182527f84e49810e7917b41d72bc40fd90f0779709edd57b781b11817ad42f78052cf04910160405180910390a25050565b6001600160a01b038216620006b05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000527565b8060026000828254620006c4919062000968565b90915550506001600160a01b03821660009081526020819052604081208054839290620006f390849062000968565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200074b90620009b7565b90600052602060002090601f0160209004810192826200076f5760008555620007ba565b82601f106200078a57805160ff1916838001178555620007ba565b82800160010185558215620007ba579182015b82811115620007ba5782518255916020019190600101906200079d565b50620007c8929150620007cc565b5090565b5b80821115620007c85760008155600101620007cd565b634e487b7160e01b600052604160045260246000fd5b80516001600160a01b03811681146200081157600080fd5b919050565b600060208083850312156200082a57600080fd5b82516001600160401b03808211156200084257600080fd5b818501915085601f8301126200085757600080fd5b8151818111156200086c576200086c620007e3565b8060051b604051601f19603f83011681018181108582111715620008945762000894620007e3565b604052918252848201925083810185019188831115620008b357600080fd5b938501935b82851015620008dc57620008cc85620007f9565b84529385019392850192620008b8565b98975050505050505050565b600060208284031215620008fb57600080fd5b6200090682620007f9565b9392505050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156200094057620009406200090d565b500290565b6000826200096357634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156200097e576200097e6200090d565b500190565b634e487b7160e01b600052603260045260246000fd5b6000600019821415620009b057620009b06200090d565b5060010190565b600181811c90821680620009cc57607f821691505b60208210811415620009ee57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516137a862000a6e6000396000818161069d0152818161181901528181611eb601528181611f6001528181611f8c01528181612de401528181612e950152612ec10152600081816104c101528181612fcb01528181613093015281816130cf01528181613149015261317001526137a86000f3fe6080604052600436106103e85760003560e01c80637bce5a0411610208578063a9059cbb11610118578063d257b34f116100ab578063f11a24d31161007a578063f11a24d314610b95578063f2fde38b14610bab578063f637434214610bcb578063f8b45b0514610be1578063fe72b27a14610bf757600080fd5b8063d257b34f14610b03578063d85ba06314610b23578063dd62ed3e14610b39578063e2f4560514610b7f57600080fd5b8063c17b5b8c116100e7578063c17b5b8c14610a74578063c18bc19514610a94578063c38370fb14610ab4578063c8c8ebe414610aed57600080fd5b8063a9059cbb146109e6578063aacebbe314610a06578063b62496f514610a26578063bbc0c74214610a5557600080fd5b806395d89b411161019b5780639fccce321161016a5780639fccce3214610964578063a0d82dc51461097a578063a457c2d714610990578063a4c82a00146109b0578063a7d05c39146109c657600080fd5b806395d89b41146109035780639a7a23d6146109185780639c3b4fdc146109385780639ec22c0e1461094e57600080fd5b80638da5cb5b116101d75780638da5cb5b1461088f5780638ea5220f146108ad57806392136913146108cd578063924de9b7146108e357600080fd5b80637bce5a04146108245780637f8de3451461083a5780638095d5641461085a5780638a8c523c1461087a57600080fd5b8063313ce567116103035780636a486a8e11610296578063715018a611610265578063715018a61461079a578063730c1888146107af578063751039fc146107cf5780637571336a146107e457806375f0a8741461080457600080fd5b80636a486a8e1461070e5780636b845bfe146107245780636ddd17131461074457806370a082311461076457600080fd5b806349bd5a5e116102d257806349bd5a5e1461068b5780634a62bb65146106bf578063630da3d4146106d95780636838ff8c146106ee57600080fd5b8063313ce5671461061a57806339509351146106365780633aeac4e1146106565780633ccfd60b1461067657600080fd5b8063199ffc721161037b57806323b872dd1161034a57806323b872dd146105b457806327c8f835146105d45780632c3e486c146105ea5780632e82f1a01461060057600080fd5b8063199ffc72146105525780631a8145bb146105685780631f3fed8f1461057e578063203e727e1461059457600080fd5b80631694505e116103b75780631694505e146104af57806318160ddd146104fb5780631816467f1461051a578063184c16c51461053c57600080fd5b806306fdde03146103f4578063095ea7b31461041f57806310d5de531461044f578063122586d11461047f57600080fd5b366103ef57005b600080fd5b34801561040057600080fd5b50610409610c17565b6040516104169190613258565b60405180910390f35b34801561042b57600080fd5b5061043f61043a3660046132c2565b610ca9565b6040519015158152602001610416565b34801561045b57600080fd5b5061043f61046a3660046132ee565b601e6020526000908152604090205460ff1681565b34801561048b57600080fd5b5061043f61049a3660046132ee565b601f6020526000908152604090205460ff1681565b3480156104bb57600080fd5b506104e37f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610416565b34801561050757600080fd5b506002545b604051908152602001610416565b34801561052657600080fd5b5061053a6105353660046132ee565b610cbf565b005b34801561054857600080fd5b5061050c600f5481565b34801561055e57600080fd5b5061050c600c5481565b34801561057457600080fd5b5061050c601b5481565b34801561058a57600080fd5b5061050c601a5481565b3480156105a057600080fd5b5061053a6105af36600461330b565b610d4f565b3480156105c057600080fd5b5061043f6105cf366004613324565b610e2c565b3480156105e057600080fd5b506104e361dead81565b3480156105f657600080fd5b5061050c600d5481565b34801561060c57600080fd5b50600b5461043f9060ff1681565b34801561062657600080fd5b5060405160128152602001610416565b34801561064257600080fd5b5061043f6106513660046132c2565b610ed6565b34801561066257600080fd5b5061053a610671366004613365565b610f12565b34801561068257600080fd5b5061053a61110c565b34801561069757600080fd5b506104e37f000000000000000000000000000000000000000000000000000000000000000081565b3480156106cb57600080fd5b5060115461043f9060ff1681565b3480156106e557600080fd5b5061053a61126d565b3480156106fa57600080fd5b5061053a61070936600461339e565b611304565b34801561071a57600080fd5b5061050c60165481565b34801561073057600080fd5b5061053a61073f36600461339e565b611381565b34801561075057600080fd5b5060115461043f9062010000900460ff1681565b34801561077057600080fd5b5061050c61077f3660046132ee565b6001600160a01b031660009081526020819052604090205490565b3480156107a657600080fd5b5061053a61143a565b3480156107bb57600080fd5b5061053a6107ca366004613421565b611470565b3480156107db57600080fd5b5061043f611599565b3480156107f057600080fd5b5061053a6107ff36600461345a565b6115d6565b34801561081057600080fd5b506006546104e3906001600160a01b031681565b34801561083057600080fd5b5061050c60135481565b34801561084657600080fd5b5061053a61085536600461345a565b61162b565b34801561086657600080fd5b5061053a610875366004613488565b6116b4565b34801561088657600080fd5b5061053a611757565b34801561089b57600080fd5b506005546001600160a01b03166104e3565b3480156108b957600080fd5b506007546104e3906001600160a01b031681565b3480156108d957600080fd5b5061050c60175481565b3480156108ef57600080fd5b5061053a6108fe3660046134b4565b611798565b34801561090f57600080fd5b506104096117de565b34801561092457600080fd5b5061053a61093336600461345a565b6117ed565b34801561094457600080fd5b5061050c60155481565b34801561095a57600080fd5b5061050c60105481565b34801561097057600080fd5b5061050c601c5481565b34801561098657600080fd5b5061050c60195481565b34801561099c57600080fd5b5061043f6109ab3660046132c2565b6118c9565b3480156109bc57600080fd5b5061050c600e5481565b3480156109d257600080fd5b5061053a6109e136600461345a565b611962565b3480156109f257600080fd5b5061043f610a013660046132c2565b6119b7565b348015610a1257600080fd5b5061053a610a213660046132ee565b6119c4565b348015610a3257600080fd5b5061043f610a413660046132ee565b602080526000908152604090205460ff1681565b348015610a6157600080fd5b5060115461043f90610100900460ff1681565b348015610a8057600080fd5b5061053a610a8f366004613488565b611a4b565b348015610aa057600080fd5b5061053a610aaf36600461330b565b611aee565b348015610ac057600080fd5b5061043f610acf3660046132ee565b6001600160a01b03166000908152601d602052604090205460ff1690565b348015610af957600080fd5b5061050c60085481565b348015610b0f57600080fd5b5061043f610b1e36600461330b565b611bbf565b348015610b2f57600080fd5b5061050c60125481565b348015610b4557600080fd5b5061050c610b54366004613365565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610b8b57600080fd5b5061050c60095481565b348015610ba157600080fd5b5061050c60145481565b348015610bb757600080fd5b5061053a610bc63660046132ee565b611d10565b348015610bd757600080fd5b5061050c60185481565b348015610bed57600080fd5b5061050c600a5481565b348015610c0357600080fd5b5061043f610c1236600461330b565b611dab565b606060038054610c26906134d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610c52906134d1565b8015610c9f5780601f10610c7457610100808354040283529160200191610c9f565b820191906000526020600020905b815481529060010190602001808311610c8257829003601f168201915b5050505050905090565b6000610cb6338484612034565b50600192915050565b6005546001600160a01b03163314610cf25760405162461bcd60e51b8152600401610ce99061350c565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610d795760405162461bcd60e51b8152600401610ce99061350c565b670de0b6b3a76400006103e8610d8e60025490565b610d99906001613557565b610da39190613576565b610dad9190613576565b811015610e145760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610ce9565b610e2681670de0b6b3a7640000613557565b60085550565b6000610e39848484612158565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610ebe5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610ce9565b610ecb8533858403612034565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610cb6918590610f0d908690613598565b612034565b6007546001600160a01b03163314610f575760405162461bcd60e51b815260206004820152600860248201526727b7363c902232bb60c11b6044820152606401610ce9565b6001600160a01b038216610fad5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610ce9565b6001600160a01b0382163014156110065760405162461bcd60e51b815260206004820152601c60248201527f43616e2774207769746864726177206e617469766520746f6b656e73000000006044820152606401610ce9565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a082319060240160206040518083038186803b15801561104857600080fd5b505afa15801561105c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061108091906135b0565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb90604401602060405180830381600087803b1580156110ce57600080fd5b505af11580156110e2573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061110691906135c9565b50505050565b6007546001600160a01b031633146111515760405162461bcd60e51b815260206004820152600860248201526727b7363c902232bb60c11b6044820152606401610ce9565b6040516370a0823160e01b815230600482018190526000916370a082319060240160206040518083038186803b15801561118a57600080fd5b505afa15801561119e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c291906135b0565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb90604401602060405180830381600087803b15801561120457600080fd5b505af1158015611218573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061123c91906135c9565b5060405133904780156108fc02916000818181858888f19350505050158015611269573d6000803e3d6000fd5b5050565b6007546001600160a01b031633146112b25760405162461bcd60e51b815260206004820152600860248201526727b7363c902222ab60c11b6044820152606401610ce9565b60006017819055601881905560198190556112cd8180613598565b6112d79190613598565b60165560006013819055601481905560158190556112f58180613598565b6112ff9190613598565b601255565b6005546001600160a01b0316331461132e5760405162461bcd60e51b8152600401610ce99061350c565b60005b8181101561137c5761136a83838381811061134e5761134e6135e6565b905060200201602081019061136391906132ee565b600161162b565b80611374816135fc565b915050611331565b505050565b6005546001600160a01b031633146113ab5760405162461bcd60e51b8152600401610ce99061350c565b60005b8181101561137c576005546001600160a01b03168383838181106113d4576113d46135e6565b90506020020160208101906113e991906132ee565b6001600160a01b0316146114285761142883838381811061140c5761140c6135e6565b905060200201602081019061142191906132ee565b600061162b565b80611432816135fc565b9150506113ae565b6005546001600160a01b031633146114645760405162461bcd60e51b8152600401610ce99061350c565b61146e6000612955565b565b6005546001600160a01b0316331461149a5760405162461bcd60e51b8152600401610ce99061350c565b6102588310156115085760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610ce9565b6103e88211158015611518575060015b61157d5760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610ce9565b600d92909255600c55600b805460ff1916911515919091179055565b6005546000906001600160a01b031633146115c65760405162461bcd60e51b8152600401610ce99061350c565b506011805460ff19169055600190565b6005546001600160a01b031633146116005760405162461bcd60e51b8152600401610ce99061350c565b6001600160a01b03919091166000908152601e60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146116555760405162461bcd60e51b8152600401610ce99061350c565b6001600160a01b0382166000818152601d6020908152604091829020805460ff191685151590811790915591519182527f84e49810e7917b41d72bc40fd90f0779709edd57b781b11817ad42f78052cf04910160405180910390a25050565b6005546001600160a01b031633146116de5760405162461bcd60e51b8152600401610ce99061350c565b601383905560148290556015819055806116f88385613598565b6117029190613598565b6012819055600a101561137c5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610ce9565b6005546001600160a01b031633146117815760405162461bcd60e51b8152600401610ce99061350c565b6011805462ffff0019166201010017905542600e55565b6005546001600160a01b031633146117c25760405162461bcd60e51b8152600401610ce99061350c565b60118054911515620100000262ff000019909216919091179055565b606060048054610c26906134d1565b6005546001600160a01b031633146118175760405162461bcd60e51b8152600401610ce99061350c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614156118bf5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610ce9565b61126982826129a7565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561194b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610ce9565b6119583385858403612034565b5060019392505050565b6005546001600160a01b0316331461198c5760405162461bcd60e51b8152600401610ce99061350c565b6001600160a01b03919091166000908152601f60205260409020805460ff1916911515919091179055565b6000610cb6338484612158565b6005546001600160a01b031633146119ee5760405162461bcd60e51b8152600401610ce99061350c565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314611a755760405162461bcd60e51b8152600401610ce99061350c565b60178390556018829055601981905580611a8f8385613598565b611a999190613598565b6016819055600a101561137c5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610ce9565b6005546001600160a01b03163314611b185760405162461bcd60e51b8152600401610ce99061350c565b670de0b6b3a76400006103e8611b2d60025490565b611b38906005613557565b611b429190613576565b611b4c9190613576565b811015611ba75760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610ce9565b611bb981670de0b6b3a7640000613557565b600a5550565b6005546000906001600160a01b03163314611bec5760405162461bcd60e51b8152600401610ce99061350c565b612710611bf860025490565b611c03906001613557565b611c0d9190613576565b821015611c7a5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610ce9565b6103e8611c8660025490565b611c91906005613557565b611c9b9190613576565b821115611d075760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610ce9565b50600955600190565b6005546001600160a01b03163314611d3a5760405162461bcd60e51b8152600401610ce99061350c565b6001600160a01b038116611d9f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ce9565b611da881612955565b50565b6005546000906001600160a01b03163314611dd85760405162461bcd60e51b8152600401610ce99061350c565b600f54601054611de89190613598565b4211611e365760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610ce9565b6103e8821115611e9b5760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610ce9565b426010556040516370a0823160e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016600482015260009030906370a082319060240160206040518083038186803b158015611f0157600080fd5b505afa158015611f15573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f3991906135b0565b90506000611f53612710611f4d84876129fa565b90612a0d565b90508015611f8857611f887f000000000000000000000000000000000000000000000000000000000000000061dead83612a19565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611fe857600080fd5b505af1158015611ffc573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b0383166120965760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610ce9565b6001600160a01b0382166120f75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610ce9565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661217e5760405162461bcd60e51b8152600401610ce990613617565b6001600160a01b0382166121a45760405162461bcd60e51b8152600401610ce99061365c565b6001600160a01b0382166000908152601f602052604090205460ff161580156121e657506001600160a01b0383166000908152601f602052604090205460ff16155b6122205760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b6044820152606401610ce9565b806122315761137c83836000612a19565b60115460ff161561259b576005546001600160a01b0384811691161480159061226857506005546001600160a01b03838116911614155b801561227c57506001600160a01b03821615155b801561229357506001600160a01b03821661dead14155b80156122a95750600554600160a01b900460ff16155b1561259b57601154610100900460ff16612337576001600160a01b0383166000908152601d602052604090205460ff16806122fc57506001600160a01b0382166000908152601d602052604090205460ff165b6123375760405162461bcd60e51b815260206004820152600c60248201526b2a393c903630ba32b917171760a11b6044820152606401610ce9565b6001600160a01b038316600090815260208052604090205460ff16801561237757506001600160a01b0382166000908152601e602052604090205460ff16155b1561245b576008548111156123ec5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610ce9565b600a546001600160a01b0383166000908152602081905260409020546124129083613598565b11156124565760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610ce9565b61259b565b6001600160a01b038216600090815260208052604090205460ff16801561249b57506001600160a01b0383166000908152601e602052604090205460ff16155b15612511576008548111156124565760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610ce9565b6001600160a01b0382166000908152601e602052604090205460ff1661259b57600a546001600160a01b0383166000908152602081905260409020546125579083613598565b111561259b5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610ce9565b30600090815260208190526040902054600954811080159081906125c7575060115462010000900460ff165b80156125dd5750600554600160a01b900460ff16155b801561260157506001600160a01b038516600090815260208052604090205460ff16155b801561262657506001600160a01b0385166000908152601d602052604090205460ff16155b801561264b57506001600160a01b0384166000908152601d602052604090205460ff16155b15612679576005805460ff60a01b1916600160a01b17905561266b612b6d565b6005805460ff60a01b191690555b600554600160a01b900460ff161580156126aa57506001600160a01b038416600090815260208052604090205460ff165b80156126b85750600b5460ff165b80156126d35750600d54600e546126cf9190613598565b4210155b80156126f857506001600160a01b0385166000908152601d602052604090205460ff16155b1561270757612705612dc9565b505b6005546001600160a01b0386166000908152601d602052604090205460ff600160a01b90920482161591168061275557506001600160a01b0385166000908152601d602052604090205460ff165b1561275e575060005b60008115612941576001600160a01b038616600090815260208052604090205460ff16801561278f57506000601654115b15612847576127ae6064611f4d601654886129fa90919063ffffffff16565b9050601654601854826127c19190613557565b6127cb9190613576565b601b60008282546127dc9190613598565b90915550506016546019546127f19083613557565b6127fb9190613576565b601c600082825461280c9190613598565b90915550506016546017546128219083613557565b61282b9190613576565b601a600082825461283c9190613598565b909155506129239050565b6001600160a01b038716600090815260208052604090205460ff16801561287057506000601254115b156129235761288f6064611f4d601254886129fa90919063ffffffff16565b9050601254601454826128a29190613557565b6128ac9190613576565b601b60008282546128bd9190613598565b90915550506012546015546128d29083613557565b6128dc9190613576565b601c60008282546128ed9190613598565b90915550506012546013546129029083613557565b61290c9190613576565b601a600082825461291d9190613598565b90915550505b801561293457612934873083612a19565b61293e818661369f565b94505b61294c878787612a19565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152602080526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6000612a068284613557565b9392505050565b6000612a068284613576565b6001600160a01b038316612a3f5760405162461bcd60e51b8152600401610ce990613617565b6001600160a01b038216612a655760405162461bcd60e51b8152600401610ce99061365c565b6001600160a01b03831660009081526020819052604090205481811015612add5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610ce9565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612b14908490613598565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612b6091815260200190565b60405180910390a3611106565b3060009081526020819052604081205490506000601c54601a54601b54612b949190613598565b612b9e9190613598565b90506000821580612bad575081155b15612bb757505050565b600954612bc5906014613557565b831115612bdd57600954612bda906014613557565b92505b6000600283601b5486612bf09190613557565b612bfa9190613576565b612c049190613576565b90506000612c128583612f68565b905047612c1e82612f74565b6000612c2a4783612f68565b90506000612c586002601b54612c409190613576565b612c4a908961369f565b601a54611f4d9085906129fa565b90506000612c866002601b54612c6e9190613576565b612c78908a61369f565b601c54611f4d9086906129fa565b9050600081612c95848661369f565b612c9f919061369f565b6000601b819055601a819055601c8190556007546040519293506001600160a01b031691849181818185875af1925050503d8060008114612cfc576040519150601f19603f3d011682016040523d82523d6000602084013e612d01565b606091505b50909850508615801590612d155750600081115b15612d6857612d248782613143565b601b54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612db5576040519150601f19603f3d011682016040523d82523d6000602084013e612dba565b606091505b50505050505050505050505050565b42600e556040516370a0823160e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000166004820152600090819030906370a082319060240160206040518083038186803b158015612e3157600080fd5b505afa158015612e45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e6991906135b0565b90506000612e88612710611f4d600c54856129fa90919063ffffffff16565b90508015612ebd57612ebd7f000000000000000000000000000000000000000000000000000000000000000061dead83612a19565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015612f1d57600080fd5b505af1158015612f31573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b6000612a06828461369f565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612fa957612fa96135e6565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561302257600080fd5b505afa158015613036573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061305a91906136b6565b8160018151811061306d5761306d6135e6565b60200260200101906001600160a01b031690816001600160a01b0316815250506130b8307f000000000000000000000000000000000000000000000000000000000000000084612034565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061310d9085906000908690309042906004016136d3565b600060405180830381600087803b15801561312757600080fd5b505af115801561313b573d6000803e3d6000fd5b505050505050565b61316e307f000000000000000000000000000000000000000000000000000000000000000084612034565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230856000806131b56005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b15801561321857600080fd5b505af115801561322c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906132519190613744565b5050505050565b600060208083528351808285015260005b8181101561328557858101830151858201604001528201613269565b81811115613297576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114611da857600080fd5b600080604083850312156132d557600080fd5b82356132e0816132ad565b946020939093013593505050565b60006020828403121561330057600080fd5b8135612a06816132ad565b60006020828403121561331d57600080fd5b5035919050565b60008060006060848603121561333957600080fd5b8335613344816132ad565b92506020840135613354816132ad565b929592945050506040919091013590565b6000806040838503121561337857600080fd5b8235613383816132ad565b91506020830135613393816132ad565b809150509250929050565b600080602083850312156133b157600080fd5b823567ffffffffffffffff808211156133c957600080fd5b818501915085601f8301126133dd57600080fd5b8135818111156133ec57600080fd5b8660208260051b850101111561340157600080fd5b60209290920196919550909350505050565b8015158114611da857600080fd5b60008060006060848603121561343657600080fd5b8335925060208401359150604084013561344f81613413565b809150509250925092565b6000806040838503121561346d57600080fd5b8235613478816132ad565b9150602083013561339381613413565b60008060006060848603121561349d57600080fd5b505081359360208301359350604090920135919050565b6000602082840312156134c657600080fd5b8135612a0681613413565b600181811c908216806134e557607f821691505b6020821081141561350657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561357157613571613541565b500290565b60008261359357634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156135ab576135ab613541565b500190565b6000602082840312156135c257600080fd5b5051919050565b6000602082840312156135db57600080fd5b8151612a0681613413565b634e487b7160e01b600052603260045260246000fd5b600060001982141561361057613610613541565b5060010190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156136b1576136b1613541565b500390565b6000602082840312156136c857600080fd5b8151612a06816132ad565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156137235784516001600160a01b0316835293830193918301916001016136fe565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561375957600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220463a4978ba41ae39d47a208e0b02e6e4958466754cc0404872c51a914be6522064736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65720000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000066ed10d42c8f3b2b7d8e3485df76feec5538a74500000000000000000000000019c4d76b15f57fe7721a97539c4a1c2ece4a431e00000000000000000000000091a9bf3cf832d7cb38878cd0a8d41bba293cf85000000000000000000000000092da7cb2d84433c8c5181be21d9c2444b9153d82000000000000000000000000167317175a855b3ef6260005e9b6b8e3b12c5009000000000000000000000000c41aeab494ee03c1b7cc1ae8a82205df4de11406000000000000000000000000e7431d5efc1a19d9b5ed07a127278c5862678fe40000000000000000000000006cd714d8a2d05240cf657b65938ff2c2739c88f80000000000000000000000004871c272ca3e1e0d50a67ee3b2d641233a5b52d50000000000000000000000000b05ba91a5f5238c5a4039f6251831612b75d9d3000000000000000000000000e04c5de7a89425a314a837349006c664b5e3e1b6000000000000000000000000b83bb9e4bd73dcc71fc2dc8731309aa55d8949e4
Deployed Bytecode
0x6080604052600436106103e85760003560e01c80637bce5a0411610208578063a9059cbb11610118578063d257b34f116100ab578063f11a24d31161007a578063f11a24d314610b95578063f2fde38b14610bab578063f637434214610bcb578063f8b45b0514610be1578063fe72b27a14610bf757600080fd5b8063d257b34f14610b03578063d85ba06314610b23578063dd62ed3e14610b39578063e2f4560514610b7f57600080fd5b8063c17b5b8c116100e7578063c17b5b8c14610a74578063c18bc19514610a94578063c38370fb14610ab4578063c8c8ebe414610aed57600080fd5b8063a9059cbb146109e6578063aacebbe314610a06578063b62496f514610a26578063bbc0c74214610a5557600080fd5b806395d89b411161019b5780639fccce321161016a5780639fccce3214610964578063a0d82dc51461097a578063a457c2d714610990578063a4c82a00146109b0578063a7d05c39146109c657600080fd5b806395d89b41146109035780639a7a23d6146109185780639c3b4fdc146109385780639ec22c0e1461094e57600080fd5b80638da5cb5b116101d75780638da5cb5b1461088f5780638ea5220f146108ad57806392136913146108cd578063924de9b7146108e357600080fd5b80637bce5a04146108245780637f8de3451461083a5780638095d5641461085a5780638a8c523c1461087a57600080fd5b8063313ce567116103035780636a486a8e11610296578063715018a611610265578063715018a61461079a578063730c1888146107af578063751039fc146107cf5780637571336a146107e457806375f0a8741461080457600080fd5b80636a486a8e1461070e5780636b845bfe146107245780636ddd17131461074457806370a082311461076457600080fd5b806349bd5a5e116102d257806349bd5a5e1461068b5780634a62bb65146106bf578063630da3d4146106d95780636838ff8c146106ee57600080fd5b8063313ce5671461061a57806339509351146106365780633aeac4e1146106565780633ccfd60b1461067657600080fd5b8063199ffc721161037b57806323b872dd1161034a57806323b872dd146105b457806327c8f835146105d45780632c3e486c146105ea5780632e82f1a01461060057600080fd5b8063199ffc72146105525780631a8145bb146105685780631f3fed8f1461057e578063203e727e1461059457600080fd5b80631694505e116103b75780631694505e146104af57806318160ddd146104fb5780631816467f1461051a578063184c16c51461053c57600080fd5b806306fdde03146103f4578063095ea7b31461041f57806310d5de531461044f578063122586d11461047f57600080fd5b366103ef57005b600080fd5b34801561040057600080fd5b50610409610c17565b6040516104169190613258565b60405180910390f35b34801561042b57600080fd5b5061043f61043a3660046132c2565b610ca9565b6040519015158152602001610416565b34801561045b57600080fd5b5061043f61046a3660046132ee565b601e6020526000908152604090205460ff1681565b34801561048b57600080fd5b5061043f61049a3660046132ee565b601f6020526000908152604090205460ff1681565b3480156104bb57600080fd5b506104e37f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610416565b34801561050757600080fd5b506002545b604051908152602001610416565b34801561052657600080fd5b5061053a6105353660046132ee565b610cbf565b005b34801561054857600080fd5b5061050c600f5481565b34801561055e57600080fd5b5061050c600c5481565b34801561057457600080fd5b5061050c601b5481565b34801561058a57600080fd5b5061050c601a5481565b3480156105a057600080fd5b5061053a6105af36600461330b565b610d4f565b3480156105c057600080fd5b5061043f6105cf366004613324565b610e2c565b3480156105e057600080fd5b506104e361dead81565b3480156105f657600080fd5b5061050c600d5481565b34801561060c57600080fd5b50600b5461043f9060ff1681565b34801561062657600080fd5b5060405160128152602001610416565b34801561064257600080fd5b5061043f6106513660046132c2565b610ed6565b34801561066257600080fd5b5061053a610671366004613365565b610f12565b34801561068257600080fd5b5061053a61110c565b34801561069757600080fd5b506104e37f00000000000000000000000013fe53d5cbe85921d513ef6039a080c0f7c972f181565b3480156106cb57600080fd5b5060115461043f9060ff1681565b3480156106e557600080fd5b5061053a61126d565b3480156106fa57600080fd5b5061053a61070936600461339e565b611304565b34801561071a57600080fd5b5061050c60165481565b34801561073057600080fd5b5061053a61073f36600461339e565b611381565b34801561075057600080fd5b5060115461043f9062010000900460ff1681565b34801561077057600080fd5b5061050c61077f3660046132ee565b6001600160a01b031660009081526020819052604090205490565b3480156107a657600080fd5b5061053a61143a565b3480156107bb57600080fd5b5061053a6107ca366004613421565b611470565b3480156107db57600080fd5b5061043f611599565b3480156107f057600080fd5b5061053a6107ff36600461345a565b6115d6565b34801561081057600080fd5b506006546104e3906001600160a01b031681565b34801561083057600080fd5b5061050c60135481565b34801561084657600080fd5b5061053a61085536600461345a565b61162b565b34801561086657600080fd5b5061053a610875366004613488565b6116b4565b34801561088657600080fd5b5061053a611757565b34801561089b57600080fd5b506005546001600160a01b03166104e3565b3480156108b957600080fd5b506007546104e3906001600160a01b031681565b3480156108d957600080fd5b5061050c60175481565b3480156108ef57600080fd5b5061053a6108fe3660046134b4565b611798565b34801561090f57600080fd5b506104096117de565b34801561092457600080fd5b5061053a61093336600461345a565b6117ed565b34801561094457600080fd5b5061050c60155481565b34801561095a57600080fd5b5061050c60105481565b34801561097057600080fd5b5061050c601c5481565b34801561098657600080fd5b5061050c60195481565b34801561099c57600080fd5b5061043f6109ab3660046132c2565b6118c9565b3480156109bc57600080fd5b5061050c600e5481565b3480156109d257600080fd5b5061053a6109e136600461345a565b611962565b3480156109f257600080fd5b5061043f610a013660046132c2565b6119b7565b348015610a1257600080fd5b5061053a610a213660046132ee565b6119c4565b348015610a3257600080fd5b5061043f610a413660046132ee565b602080526000908152604090205460ff1681565b348015610a6157600080fd5b5060115461043f90610100900460ff1681565b348015610a8057600080fd5b5061053a610a8f366004613488565b611a4b565b348015610aa057600080fd5b5061053a610aaf36600461330b565b611aee565b348015610ac057600080fd5b5061043f610acf3660046132ee565b6001600160a01b03166000908152601d602052604090205460ff1690565b348015610af957600080fd5b5061050c60085481565b348015610b0f57600080fd5b5061043f610b1e36600461330b565b611bbf565b348015610b2f57600080fd5b5061050c60125481565b348015610b4557600080fd5b5061050c610b54366004613365565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610b8b57600080fd5b5061050c60095481565b348015610ba157600080fd5b5061050c60145481565b348015610bb757600080fd5b5061053a610bc63660046132ee565b611d10565b348015610bd757600080fd5b5061050c60185481565b348015610bed57600080fd5b5061050c600a5481565b348015610c0357600080fd5b5061043f610c1236600461330b565b611dab565b606060038054610c26906134d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610c52906134d1565b8015610c9f5780601f10610c7457610100808354040283529160200191610c9f565b820191906000526020600020905b815481529060010190602001808311610c8257829003601f168201915b5050505050905090565b6000610cb6338484612034565b50600192915050565b6005546001600160a01b03163314610cf25760405162461bcd60e51b8152600401610ce99061350c565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610d795760405162461bcd60e51b8152600401610ce99061350c565b670de0b6b3a76400006103e8610d8e60025490565b610d99906001613557565b610da39190613576565b610dad9190613576565b811015610e145760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610ce9565b610e2681670de0b6b3a7640000613557565b60085550565b6000610e39848484612158565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610ebe5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610ce9565b610ecb8533858403612034565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610cb6918590610f0d908690613598565b612034565b6007546001600160a01b03163314610f575760405162461bcd60e51b815260206004820152600860248201526727b7363c902232bb60c11b6044820152606401610ce9565b6001600160a01b038216610fad5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610ce9565b6001600160a01b0382163014156110065760405162461bcd60e51b815260206004820152601c60248201527f43616e2774207769746864726177206e617469766520746f6b656e73000000006044820152606401610ce9565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a082319060240160206040518083038186803b15801561104857600080fd5b505afa15801561105c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061108091906135b0565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb90604401602060405180830381600087803b1580156110ce57600080fd5b505af11580156110e2573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061110691906135c9565b50505050565b6007546001600160a01b031633146111515760405162461bcd60e51b815260206004820152600860248201526727b7363c902232bb60c11b6044820152606401610ce9565b6040516370a0823160e01b815230600482018190526000916370a082319060240160206040518083038186803b15801561118a57600080fd5b505afa15801561119e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c291906135b0565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb90604401602060405180830381600087803b15801561120457600080fd5b505af1158015611218573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061123c91906135c9565b5060405133904780156108fc02916000818181858888f19350505050158015611269573d6000803e3d6000fd5b5050565b6007546001600160a01b031633146112b25760405162461bcd60e51b815260206004820152600860248201526727b7363c902222ab60c11b6044820152606401610ce9565b60006017819055601881905560198190556112cd8180613598565b6112d79190613598565b60165560006013819055601481905560158190556112f58180613598565b6112ff9190613598565b601255565b6005546001600160a01b0316331461132e5760405162461bcd60e51b8152600401610ce99061350c565b60005b8181101561137c5761136a83838381811061134e5761134e6135e6565b905060200201602081019061136391906132ee565b600161162b565b80611374816135fc565b915050611331565b505050565b6005546001600160a01b031633146113ab5760405162461bcd60e51b8152600401610ce99061350c565b60005b8181101561137c576005546001600160a01b03168383838181106113d4576113d46135e6565b90506020020160208101906113e991906132ee565b6001600160a01b0316146114285761142883838381811061140c5761140c6135e6565b905060200201602081019061142191906132ee565b600061162b565b80611432816135fc565b9150506113ae565b6005546001600160a01b031633146114645760405162461bcd60e51b8152600401610ce99061350c565b61146e6000612955565b565b6005546001600160a01b0316331461149a5760405162461bcd60e51b8152600401610ce99061350c565b6102588310156115085760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610ce9565b6103e88211158015611518575060015b61157d5760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610ce9565b600d92909255600c55600b805460ff1916911515919091179055565b6005546000906001600160a01b031633146115c65760405162461bcd60e51b8152600401610ce99061350c565b506011805460ff19169055600190565b6005546001600160a01b031633146116005760405162461bcd60e51b8152600401610ce99061350c565b6001600160a01b03919091166000908152601e60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146116555760405162461bcd60e51b8152600401610ce99061350c565b6001600160a01b0382166000818152601d6020908152604091829020805460ff191685151590811790915591519182527f84e49810e7917b41d72bc40fd90f0779709edd57b781b11817ad42f78052cf04910160405180910390a25050565b6005546001600160a01b031633146116de5760405162461bcd60e51b8152600401610ce99061350c565b601383905560148290556015819055806116f88385613598565b6117029190613598565b6012819055600a101561137c5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610ce9565b6005546001600160a01b031633146117815760405162461bcd60e51b8152600401610ce99061350c565b6011805462ffff0019166201010017905542600e55565b6005546001600160a01b031633146117c25760405162461bcd60e51b8152600401610ce99061350c565b60118054911515620100000262ff000019909216919091179055565b606060048054610c26906134d1565b6005546001600160a01b031633146118175760405162461bcd60e51b8152600401610ce99061350c565b7f00000000000000000000000013fe53d5cbe85921d513ef6039a080c0f7c972f16001600160a01b0316826001600160a01b031614156118bf5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610ce9565b61126982826129a7565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561194b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610ce9565b6119583385858403612034565b5060019392505050565b6005546001600160a01b0316331461198c5760405162461bcd60e51b8152600401610ce99061350c565b6001600160a01b03919091166000908152601f60205260409020805460ff1916911515919091179055565b6000610cb6338484612158565b6005546001600160a01b031633146119ee5760405162461bcd60e51b8152600401610ce99061350c565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314611a755760405162461bcd60e51b8152600401610ce99061350c565b60178390556018829055601981905580611a8f8385613598565b611a999190613598565b6016819055600a101561137c5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610ce9565b6005546001600160a01b03163314611b185760405162461bcd60e51b8152600401610ce99061350c565b670de0b6b3a76400006103e8611b2d60025490565b611b38906005613557565b611b429190613576565b611b4c9190613576565b811015611ba75760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610ce9565b611bb981670de0b6b3a7640000613557565b600a5550565b6005546000906001600160a01b03163314611bec5760405162461bcd60e51b8152600401610ce99061350c565b612710611bf860025490565b611c03906001613557565b611c0d9190613576565b821015611c7a5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610ce9565b6103e8611c8660025490565b611c91906005613557565b611c9b9190613576565b821115611d075760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610ce9565b50600955600190565b6005546001600160a01b03163314611d3a5760405162461bcd60e51b8152600401610ce99061350c565b6001600160a01b038116611d9f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ce9565b611da881612955565b50565b6005546000906001600160a01b03163314611dd85760405162461bcd60e51b8152600401610ce99061350c565b600f54601054611de89190613598565b4211611e365760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610ce9565b6103e8821115611e9b5760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610ce9565b426010556040516370a0823160e01b81526001600160a01b037f00000000000000000000000013fe53d5cbe85921d513ef6039a080c0f7c972f116600482015260009030906370a082319060240160206040518083038186803b158015611f0157600080fd5b505afa158015611f15573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f3991906135b0565b90506000611f53612710611f4d84876129fa565b90612a0d565b90508015611f8857611f887f00000000000000000000000013fe53d5cbe85921d513ef6039a080c0f7c972f161dead83612a19565b60007f00000000000000000000000013fe53d5cbe85921d513ef6039a080c0f7c972f19050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611fe857600080fd5b505af1158015611ffc573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b0383166120965760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610ce9565b6001600160a01b0382166120f75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610ce9565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661217e5760405162461bcd60e51b8152600401610ce990613617565b6001600160a01b0382166121a45760405162461bcd60e51b8152600401610ce99061365c565b6001600160a01b0382166000908152601f602052604090205460ff161580156121e657506001600160a01b0383166000908152601f602052604090205460ff16155b6122205760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b6044820152606401610ce9565b806122315761137c83836000612a19565b60115460ff161561259b576005546001600160a01b0384811691161480159061226857506005546001600160a01b03838116911614155b801561227c57506001600160a01b03821615155b801561229357506001600160a01b03821661dead14155b80156122a95750600554600160a01b900460ff16155b1561259b57601154610100900460ff16612337576001600160a01b0383166000908152601d602052604090205460ff16806122fc57506001600160a01b0382166000908152601d602052604090205460ff165b6123375760405162461bcd60e51b815260206004820152600c60248201526b2a393c903630ba32b917171760a11b6044820152606401610ce9565b6001600160a01b038316600090815260208052604090205460ff16801561237757506001600160a01b0382166000908152601e602052604090205460ff16155b1561245b576008548111156123ec5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610ce9565b600a546001600160a01b0383166000908152602081905260409020546124129083613598565b11156124565760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610ce9565b61259b565b6001600160a01b038216600090815260208052604090205460ff16801561249b57506001600160a01b0383166000908152601e602052604090205460ff16155b15612511576008548111156124565760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610ce9565b6001600160a01b0382166000908152601e602052604090205460ff1661259b57600a546001600160a01b0383166000908152602081905260409020546125579083613598565b111561259b5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610ce9565b30600090815260208190526040902054600954811080159081906125c7575060115462010000900460ff165b80156125dd5750600554600160a01b900460ff16155b801561260157506001600160a01b038516600090815260208052604090205460ff16155b801561262657506001600160a01b0385166000908152601d602052604090205460ff16155b801561264b57506001600160a01b0384166000908152601d602052604090205460ff16155b15612679576005805460ff60a01b1916600160a01b17905561266b612b6d565b6005805460ff60a01b191690555b600554600160a01b900460ff161580156126aa57506001600160a01b038416600090815260208052604090205460ff165b80156126b85750600b5460ff165b80156126d35750600d54600e546126cf9190613598565b4210155b80156126f857506001600160a01b0385166000908152601d602052604090205460ff16155b1561270757612705612dc9565b505b6005546001600160a01b0386166000908152601d602052604090205460ff600160a01b90920482161591168061275557506001600160a01b0385166000908152601d602052604090205460ff165b1561275e575060005b60008115612941576001600160a01b038616600090815260208052604090205460ff16801561278f57506000601654115b15612847576127ae6064611f4d601654886129fa90919063ffffffff16565b9050601654601854826127c19190613557565b6127cb9190613576565b601b60008282546127dc9190613598565b90915550506016546019546127f19083613557565b6127fb9190613576565b601c600082825461280c9190613598565b90915550506016546017546128219083613557565b61282b9190613576565b601a600082825461283c9190613598565b909155506129239050565b6001600160a01b038716600090815260208052604090205460ff16801561287057506000601254115b156129235761288f6064611f4d601254886129fa90919063ffffffff16565b9050601254601454826128a29190613557565b6128ac9190613576565b601b60008282546128bd9190613598565b90915550506012546015546128d29083613557565b6128dc9190613576565b601c60008282546128ed9190613598565b90915550506012546013546129029083613557565b61290c9190613576565b601a600082825461291d9190613598565b90915550505b801561293457612934873083612a19565b61293e818661369f565b94505b61294c878787612a19565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152602080526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6000612a068284613557565b9392505050565b6000612a068284613576565b6001600160a01b038316612a3f5760405162461bcd60e51b8152600401610ce990613617565b6001600160a01b038216612a655760405162461bcd60e51b8152600401610ce99061365c565b6001600160a01b03831660009081526020819052604090205481811015612add5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610ce9565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612b14908490613598565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612b6091815260200190565b60405180910390a3611106565b3060009081526020819052604081205490506000601c54601a54601b54612b949190613598565b612b9e9190613598565b90506000821580612bad575081155b15612bb757505050565b600954612bc5906014613557565b831115612bdd57600954612bda906014613557565b92505b6000600283601b5486612bf09190613557565b612bfa9190613576565b612c049190613576565b90506000612c128583612f68565b905047612c1e82612f74565b6000612c2a4783612f68565b90506000612c586002601b54612c409190613576565b612c4a908961369f565b601a54611f4d9085906129fa565b90506000612c866002601b54612c6e9190613576565b612c78908a61369f565b601c54611f4d9086906129fa565b9050600081612c95848661369f565b612c9f919061369f565b6000601b819055601a819055601c8190556007546040519293506001600160a01b031691849181818185875af1925050503d8060008114612cfc576040519150601f19603f3d011682016040523d82523d6000602084013e612d01565b606091505b50909850508615801590612d155750600081115b15612d6857612d248782613143565b601b54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612db5576040519150601f19603f3d011682016040523d82523d6000602084013e612dba565b606091505b50505050505050505050505050565b42600e556040516370a0823160e01b81526001600160a01b037f00000000000000000000000013fe53d5cbe85921d513ef6039a080c0f7c972f1166004820152600090819030906370a082319060240160206040518083038186803b158015612e3157600080fd5b505afa158015612e45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e6991906135b0565b90506000612e88612710611f4d600c54856129fa90919063ffffffff16565b90508015612ebd57612ebd7f00000000000000000000000013fe53d5cbe85921d513ef6039a080c0f7c972f161dead83612a19565b60007f00000000000000000000000013fe53d5cbe85921d513ef6039a080c0f7c972f19050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015612f1d57600080fd5b505af1158015612f31573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b6000612a06828461369f565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612fa957612fa96135e6565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561302257600080fd5b505afa158015613036573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061305a91906136b6565b8160018151811061306d5761306d6135e6565b60200260200101906001600160a01b031690816001600160a01b0316815250506130b8307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612034565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061310d9085906000908690309042906004016136d3565b600060405180830381600087803b15801561312757600080fd5b505af115801561313b573d6000803e3d6000fd5b505050505050565b61316e307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612034565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230856000806131b56005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b15801561321857600080fd5b505af115801561322c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906132519190613744565b5050505050565b600060208083528351808285015260005b8181101561328557858101830151858201604001528201613269565b81811115613297576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114611da857600080fd5b600080604083850312156132d557600080fd5b82356132e0816132ad565b946020939093013593505050565b60006020828403121561330057600080fd5b8135612a06816132ad565b60006020828403121561331d57600080fd5b5035919050565b60008060006060848603121561333957600080fd5b8335613344816132ad565b92506020840135613354816132ad565b929592945050506040919091013590565b6000806040838503121561337857600080fd5b8235613383816132ad565b91506020830135613393816132ad565b809150509250929050565b600080602083850312156133b157600080fd5b823567ffffffffffffffff808211156133c957600080fd5b818501915085601f8301126133dd57600080fd5b8135818111156133ec57600080fd5b8660208260051b850101111561340157600080fd5b60209290920196919550909350505050565b8015158114611da857600080fd5b60008060006060848603121561343657600080fd5b8335925060208401359150604084013561344f81613413565b809150509250925092565b6000806040838503121561346d57600080fd5b8235613478816132ad565b9150602083013561339381613413565b60008060006060848603121561349d57600080fd5b505081359360208301359350604090920135919050565b6000602082840312156134c657600080fd5b8135612a0681613413565b600181811c908216806134e557607f821691505b6020821081141561350657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561357157613571613541565b500290565b60008261359357634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156135ab576135ab613541565b500190565b6000602082840312156135c257600080fd5b5051919050565b6000602082840312156135db57600080fd5b8151612a0681613413565b634e487b7160e01b600052603260045260246000fd5b600060001982141561361057613610613541565b5060010190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156136b1576136b1613541565b500390565b6000602082840312156136c857600080fd5b8151612a06816132ad565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156137235784516001600160a01b0316835293830193918301916001016136fe565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561375957600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220463a4978ba41ae39d47a208e0b02e6e4958466754cc0404872c51a914be6522064736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000066ed10d42c8f3b2b7d8e3485df76feec5538a74500000000000000000000000019c4d76b15f57fe7721a97539c4a1c2ece4a431e00000000000000000000000091a9bf3cf832d7cb38878cd0a8d41bba293cf85000000000000000000000000092da7cb2d84433c8c5181be21d9c2444b9153d82000000000000000000000000167317175a855b3ef6260005e9b6b8e3b12c5009000000000000000000000000c41aeab494ee03c1b7cc1ae8a82205df4de11406000000000000000000000000e7431d5efc1a19d9b5ed07a127278c5862678fe40000000000000000000000006cd714d8a2d05240cf657b65938ff2c2739c88f80000000000000000000000004871c272ca3e1e0d50a67ee3b2d641233a5b52d50000000000000000000000000b05ba91a5f5238c5a4039f6251831612b75d9d3000000000000000000000000e04c5de7a89425a314a837349006c664b5e3e1b6000000000000000000000000b83bb9e4bd73dcc71fc2dc8731309aa55d8949e4
-----Decoded View---------------
Arg [0] : addresses (address[]): 0x66ed10D42c8F3B2B7d8e3485DF76fEEC5538A745,0x19c4d76B15f57fe7721a97539c4A1c2EcE4a431e,0x91a9bF3Cf832D7cb38878Cd0a8d41bbA293CF850,0x92da7cB2D84433c8C5181be21D9C2444b9153D82,0x167317175a855b3Ef6260005e9b6b8e3B12C5009,0xC41aeAb494ee03C1b7Cc1aE8a82205df4de11406,0xe7431d5EFC1a19d9b5ed07a127278c5862678FE4,0x6cD714d8A2D05240CF657B65938fF2c2739C88f8,0x4871C272cA3E1e0d50A67ee3B2D641233a5b52d5,0x0B05ba91A5F5238C5A4039f6251831612b75D9D3,0xe04C5DE7a89425a314A837349006C664b5e3E1b6,0xb83BB9e4bd73dcc71fC2DC8731309Aa55d8949E4
-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [2] : 00000000000000000000000066ed10d42c8f3b2b7d8e3485df76feec5538a745
Arg [3] : 00000000000000000000000019c4d76b15f57fe7721a97539c4a1c2ece4a431e
Arg [4] : 00000000000000000000000091a9bf3cf832d7cb38878cd0a8d41bba293cf850
Arg [5] : 00000000000000000000000092da7cb2d84433c8c5181be21d9c2444b9153d82
Arg [6] : 000000000000000000000000167317175a855b3ef6260005e9b6b8e3b12c5009
Arg [7] : 000000000000000000000000c41aeab494ee03c1b7cc1ae8a82205df4de11406
Arg [8] : 000000000000000000000000e7431d5efc1a19d9b5ed07a127278c5862678fe4
Arg [9] : 0000000000000000000000006cd714d8a2d05240cf657b65938ff2c2739c88f8
Arg [10] : 0000000000000000000000004871c272ca3e1e0d50a67ee3b2d641233a5b52d5
Arg [11] : 0000000000000000000000000b05ba91a5f5238c5a4039f6251831612b75d9d3
Arg [12] : 000000000000000000000000e04c5de7a89425a314a837349006c664b5e3e1b6
Arg [13] : 000000000000000000000000b83bb9e4bd73dcc71fc2dc8731309aa55d8949e4
Deployed Bytecode Sourcemap
30964:19489:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8923:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11090:169;;;;;;;;;;-1:-1:-1;11090:169:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;11090:169:0;1072:187:1;32377:63:0;;;;;;;;;;-1:-1:-1;32377:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32447:37;;;;;;;;;;-1:-1:-1;32447:37:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31039:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1707:32:1;;;1689:51;;1677:2;1662:18;31039:51:0;1516:230:1;10043:108:0;;;;;;;;;;-1:-1:-1;10131:12:0;;10043:108;;;1897:25:1;;;1885:2;1870:18;10043:108:0;1751:177:1;40197:157:0;;;;;;;;;;-1:-1:-1;40197:157:0;;;;;:::i;:::-;;:::i;:::-;;31629:47;;;;;;;;;;;;;;;;31485:36;;;;;;;;;;;;;;;;32175:33;;;;;;;;;;;;;;;;32135;;;;;;;;;;;;;;;;37185:275;;;;;;;;;;-1:-1:-1;37185:275:0;;;;;:::i;:::-;;:::i;11741:492::-;;;;;;;;;;-1:-1:-1;11741:492:0;;;;;:::i;:::-;;:::i;31142:53::-;;;;;;;;;;;;31188:6;31142:53;;31541:45;;;;;;;;;;;;;;;;31443:33;;;;;;;;;;-1:-1:-1;31443:33:0;;;;;;;;9885:93;;;;;;;;;;-1:-1:-1;9885:93:0;;9968:2;2929:36:1;;2917:2;2902:18;9885:93:0;2787:184:1;12642:215:0;;;;;;;;;;-1:-1:-1;12642:215:0;;;;;:::i;:::-;;:::i;50047:403::-;;;;;;;;;;-1:-1:-1;50047:403:0;;;;;:::i;:::-;;:::i;49748:291::-;;;;;;;;;;;;;:::i;31097:38::-;;;;;;;;;;;;;;;31729:33;;;;;;;;;;-1:-1:-1;31729:33:0;;;;;;;;39552:421;;;;;;;;;;;;;:::i;36087:183::-;;;;;;;;;;-1:-1:-1;36087:183:0;;;;;:::i;:::-;;:::i;31990:28::-;;;;;;;;;;;;;;;;36278:266;;;;;;;;;;-1:-1:-1;36278:266:0;;;;;:::i;:::-;;:::i;31809:31::-;;;;;;;;;;-1:-1:-1;31809:31:0;;;;;;;;;;;10214:127;;;;;;;;;;-1:-1:-1;10214:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10315:18:0;10288:7;10315:18;;;;;;;;;;;;10214:127;2440:103;;;;;;;;;;;;;:::i;47339:555::-;;;;;;;;;;-1:-1:-1;47339:555:0;;;;;:::i;:::-;;:::i;36552:121::-;;;;;;;;;;;;;:::i;37732:167::-;;;;;;;;;;-1:-1:-1;37732:167:0;;;;;:::i;:::-;;:::i;31234:30::-;;;;;;;;;;-1:-1:-1;31234:30:0;;;;-1:-1:-1;;;;;31234:30:0;;;31883;;;;;;;;;;;;;;;;38846:144;;;;;;;;;;-1:-1:-1;38846:144:0;;;;;:::i;:::-;;:::i;38015:403::-;;;;;;;;;;-1:-1:-1;38015:403:0;;;;;:::i;:::-;;:::i;35787:155::-;;;;;;;;;;;;;:::i;1789:87::-;;;;;;;;;;-1:-1:-1;1862:6:0;;-1:-1:-1;;;;;1862:6:0;1789:87;;31271:24;;;;;;;;;;-1:-1:-1;31271:24:0;;;;-1:-1:-1;;;;;31271:24:0;;;32025:31;;;;;;;;;;;;;;;;37907:100;;;;;;;;;;-1:-1:-1;37907:100:0;;;;;:::i;:::-;;:::i;9142:104::-;;;;;;;;;;;;;:::i;38998:304::-;;;;;;;;;;-1:-1:-1;38998:304:0;;;;;:::i;:::-;;:::i;31957:24::-;;;;;;;;;;;;;;;;31683:35;;;;;;;;;;;;;;;;32215:27;;;;;;;;;;;;;;;;32101:25;;;;;;;;;;;;;;;;13360:413;;;;;;;;;;-1:-1:-1;13360:413:0;;;;;:::i;:::-;;:::i;31593:29::-;;;;;;;;;;;;;;;;35954:111;;;;;;;;;;-1:-1:-1;35954:111:0;;;;;:::i;:::-;;:::i;10554:175::-;;;;;;;;;;-1:-1:-1;10554:175:0;;;;;:::i;:::-;;:::i;39981:208::-;;;;;;;;;;-1:-1:-1;39981:208:0;;;;;:::i;:::-;;:::i;32642:57::-;;;;;;;;;;-1:-1:-1;32642:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31769:33;;;;;;;;;;-1:-1:-1;31769:33:0;;;;;;;;;;;38426:412;;;;;;;;;;-1:-1:-1;38426:412:0;;;;;:::i;:::-;;:::i;37468:256::-;;;;;;;;;;-1:-1:-1;37468:256:0;;;;;:::i;:::-;;:::i;40362:98::-;;;;;;;;;;-1:-1:-1;40362:98:0;;;;;:::i;:::-;-1:-1:-1;;;;;40438:14:0;40414:4;40438:14;;;:5;:14;;;;;;;;;40362:98;31304:35;;;;;;;;;;;;;;;;36681:496;;;;;;;;;;-1:-1:-1;36681:496:0;;;;;:::i;:::-;;:::i;31849:27::-;;;;;;;;;;;;;;;;10792:151;;;;;;;;;;-1:-1:-1;10792:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;10908:18:0;;;10881:7;10908:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10792:151;31346:33;;;;;;;;;;;;;;;;31920:30;;;;;;;;;;;;;;;;2698:201;;;;;;;;;;-1:-1:-1;2698:201:0;;;;;:::i;:::-;;:::i;32063:31::-;;;;;;;;;;;;;;;;31386:24;;;;;;;;;;;;;;;;48691:1049;;;;;;;;;;-1:-1:-1;48691:1049:0;;;;;:::i;:::-;;:::i;8923:100::-;8977:13;9010:5;9003:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8923:100;:::o;11090:169::-;11173:4;11190:39;738:10;11213:7;11222:6;11190:8;:39::i;:::-;-1:-1:-1;11247:4:0;11090:169;;;;:::o;40197:157::-;1862:6;;-1:-1:-1;;;;;1862:6:0;738:10;2009:23;2001:68;;;;-1:-1:-1;;;2001:68:0;;;;;;;:::i;:::-;;;;;;;;;40304:9:::1;::::0;40276:38:::1;::::0;-1:-1:-1;;;;;40304:9:0;;::::1;::::0;40276:38;::::1;::::0;::::1;::::0;40304:9:::1;::::0;40276:38:::1;40325:9;:21:::0;;-1:-1:-1;;;;;;40325:21:0::1;-1:-1:-1::0;;;;;40325:21:0;;;::::1;::::0;;;::::1;::::0;;40197:157::o;37185:275::-;1862:6;;-1:-1:-1;;;;;1862:6:0;738:10;2009:23;2001:68;;;;-1:-1:-1;;;2001:68:0;;;;;;;:::i;:::-;37322:4:::1;37314;37293:13;10131:12:::0;;;10043:108;37293:13:::1;:17;::::0;37309:1:::1;37293:17;:::i;:::-;37292:26;;;;:::i;:::-;37291:35;;;;:::i;:::-;37281:6;:45;;37259:142;;;::::0;-1:-1:-1;;;37259:142:0;;6923:2:1;37259:142:0::1;::::0;::::1;6905:21:1::0;6962:2;6942:18;;;6935:30;7001:34;6981:18;;;6974:62;-1:-1:-1;;;7052:18:1;;;7045:45;7107:19;;37259:142:0::1;6721:411:1::0;37259:142:0::1;37435:17;:6:::0;37445::::1;37435:17;:::i;:::-;37412:20;:40:::0;-1:-1:-1;37185:275:0:o;11741:492::-;11881:4;11898:36;11908:6;11916:9;11927:6;11898:9;:36::i;:::-;-1:-1:-1;;;;;11974:19:0;;11947:24;11974:19;;;:11;:19;;;;;;;;738:10;11974:33;;;;;;;;12026:26;;;;12018:79;;;;-1:-1:-1;;;12018:79:0;;7339:2:1;12018:79:0;;;7321:21:1;7378:2;7358:18;;;7351:30;7417:34;7397:18;;;7390:62;-1:-1:-1;;;7468:18:1;;;7461:38;7516:19;;12018:79:0;7137:404:1;12018:79:0;12133:57;12142:6;738:10;12183:6;12164:16;:25;12133:8;:57::i;:::-;-1:-1:-1;12221:4:0;;11741:492;-1:-1:-1;;;;11741:492:0:o;12642:215::-;738:10;12730:4;12779:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12779:34:0;;;;;;;;;;12730:4;;12747:80;;12770:7;;12779:47;;12816:10;;12779:47;:::i;:::-;12747:8;:80::i;50047:403::-;50141:9;;-1:-1:-1;;;;;50141:9:0;50127:10;:23;50119:44;;;;-1:-1:-1;;;50119:44:0;;7881:2:1;50119:44:0;;;7863:21:1;7920:1;7900:18;;;7893:29;-1:-1:-1;;;7938:18:1;;;7931:38;7986:18;;50119:44:0;7679:331:1;50119:44:0;-1:-1:-1;;;;;50182:20:0;;50174:59;;;;-1:-1:-1;;;50174:59:0;;8217:2:1;50174:59:0;;;8199:21:1;8256:2;8236:18;;;8229:30;8295:28;8275:18;;;8268:56;8341:18;;50174:59:0;8015:350:1;50174:59:0;-1:-1:-1;;;;;50252:23:0;;50270:4;50252:23;;50244:64;;;;-1:-1:-1;;;50244:64:0;;8572:2:1;50244:64:0;;;8554:21:1;8611:2;8591:18;;;8584:30;8650;8630:18;;;8623:58;8698:18;;50244:64:0;8370:352:1;50244:64:0;50346:39;;-1:-1:-1;;;50346:39:0;;50379:4;50346:39;;;1689:51:1;50319:24:0;;-1:-1:-1;;;;;50346:24:0;;;;;1662:18:1;;50346:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50396:46;;-1:-1:-1;;;50396:46:0;;-1:-1:-1;;;;;9108:32:1;;;50396:46:0;;;9090:51:1;9157:18;;;9150:34;;;50319:66:0;;-1:-1:-1;50396:23:0;;;;;;9063:18:1;;50396:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;50108:342;50047:403;;:::o;49748:291::-;49810:9;;-1:-1:-1;;;;;49810:9:0;49796:10;:23;49788:44;;;;-1:-1:-1;;;49788:44:0;;7881:2:1;49788:44:0;;;7863:21:1;7920:1;7900:18;;;7893:29;-1:-1:-1;;;7938:18:1;;;7931:38;7986:18;;49788:44:0;7679:331:1;49788:44:0;49861:46;;-1:-1:-1;;;49861:46:0;;49876:4;49861:46;;;1689:51:1;;;49843:15:0;;49861:31;;1662:18:1;;49861:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49918:51;;-1:-1:-1;;;49918:51:0;;49949:10;49918:51;;;9090::1;9157:18;;;9150:34;;;49843:64:0;;-1:-1:-1;49933:4:0;;49918:30;;9063:18:1;;49918:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;49980:51:0;;49988:10;;50009:21;49980:51;;;;;;;;;50009:21;49988:10;49980:51;;;;;;;;;;;;;;;;;;;;;49777:262;49748:291::o;39552:421::-;39624:9;;-1:-1:-1;;;;;39624:9:0;39610:10;:23;39602:44;;;;-1:-1:-1;;;39602:44:0;;9647:2:1;39602:44:0;;;9629:21:1;9686:1;9666:18;;;9659:29;-1:-1:-1;;;9704:18:1;;;9697:38;9752:18;;39602:44:0;9445:331:1;39602:44:0;39676:1;39657:16;:20;;;39688:16;:20;;;39719:10;:14;;;39760:35;39676:1;;39760:35;:::i;:::-;:48;;;;:::i;:::-;39744:13;:64;39839:1;39821:15;:19;;;39851:15;:19;;;39881:9;:13;;;39920:33;39839:1;;39920:33;:::i;:::-;:45;;;;:::i;:::-;39905:12;:60;39552:421::o;36087:183::-;1862:6;;-1:-1:-1;;;;;1862:6:0;738:10;2009:23;2001:68;;;;-1:-1:-1;;;2001:68:0;;;;;;;:::i;:::-;36174:6:::1;36169:94;36186:20:::0;;::::1;36169:94;;;36228:23;36232:9;;36242:1;36232:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;36246:4;36228:3;:23::i;:::-;36208:3:::0;::::1;::::0;::::1;:::i;:::-;;;;36169:94;;;;36087:183:::0;;:::o;36278:266::-;1862:6;;-1:-1:-1;;;;;1862:6:0;738:10;2009:23;2001:68;;;;-1:-1:-1;;;2001:68:0;;;;;;;:::i;:::-;36364:6:::1;36359:178;36376:20:::0;;::::1;36359:178;;;1862:6:::0;;-1:-1:-1;;;;;1862:6:0;36421:9;;36431:1;36421:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;36421:23:0::1;;36418:87;;36465:24;36469:9;;36479:1;36469:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;36483:5;36465:3;:24::i;:::-;36398:3:::0;::::1;::::0;::::1;:::i;:::-;;;;36359:178;;2440:103:::0;1862:6;;-1:-1:-1;;;;;1862:6:0;738:10;2009:23;2001:68;;;;-1:-1:-1;;;2001:68:0;;;;;;;:::i;:::-;2505:30:::1;2532:1;2505:18;:30::i;:::-;2440:103::o:0;47339:555::-;1862:6;;-1:-1:-1;;;;;1862:6:0;738:10;2009:23;2001:68;;;;-1:-1:-1;;;2001:68:0;;;;;;;:::i;:::-;47541:3:::1;47518:19;:26;;47496:127;;;::::0;-1:-1:-1;;;47496:127:0;;10255:2:1;47496:127:0::1;::::0;::::1;10237:21:1::0;10294:2;10274:18;;;10267:30;10333:34;10313:18;;;10306:62;-1:-1:-1;;;10384:18:1;;;10377:49;10443:19;;47496:127:0::1;10053:415:1::0;47496:127:0::1;47668:4;47656:8;:16;;:33;;;;-1:-1:-1::0;47676:13:0;47656:33:::1;47634:131;;;::::0;-1:-1:-1;;;47634:131:0;;10675:2:1;47634:131:0::1;::::0;::::1;10657:21:1::0;10714:2;10694:18;;;10687:30;10753:34;10733:18;;;10726:62;-1:-1:-1;;;10804:18:1;;;10797:46;10860:19;;47634:131:0::1;10473:412:1::0;47634:131:0::1;47776:15;:37:::0;;;;47824:16:::1;:27:::0;47862:13:::1;:24:::0;;-1:-1:-1;;47862:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47339:555::o;36552:121::-;1862:6;;36604:4;;-1:-1:-1;;;;;1862:6:0;738:10;2009:23;2001:68;;;;-1:-1:-1;;;2001:68:0;;;;;;;:::i;:::-;-1:-1:-1;36621:14:0::1;:22:::0;;-1:-1:-1;;36621:22:0::1;::::0;;;36552:121;:::o;37732:167::-;1862:6;;-1:-1:-1;;;;;1862:6:0;738:10;2009:23;2001:68;;;;-1:-1:-1;;;2001:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37845:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;37845:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37732:167::o;38846:144::-;1862:6;;-1:-1:-1;;;;;1862:6:0;738:10;2009:23;2001:68;;;;-1:-1:-1;;;2001:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38919:14:0;::::1;;::::0;;;:5:::1;:14;::::0;;;;;;;;:25;;-1:-1:-1;;38919:25:0::1;::::0;::::1;;::::0;;::::1;::::0;;;38960:22;;1212:41:1;;;38960:22:0::1;::::0;1185:18:1;38960:22:0::1;;;;;;;38846:144:::0;;:::o;38015:403::-;1862:6;;-1:-1:-1;;;;;1862:6:0;738:10;2009:23;2001:68;;;;-1:-1:-1;;;2001:68:0;;;;;;;:::i;:::-;38165:15:::1;:31:::0;;;38207:15:::1;:31:::0;;;38249:9:::1;:19:::0;;;38261:7;38294:33:::1;38225:13:::0;38183;38294:33:::1;:::i;:::-;:45;;;;:::i;:::-;38279:12;:60:::0;;;38374:2:::1;-1:-1:-1::0;38358:18:0::1;38350:60;;;::::0;-1:-1:-1;;;38350:60:0;;11092:2:1;38350:60:0::1;::::0;::::1;11074:21:1::0;11131:2;11111:18;;;11104:30;11170:31;11150:18;;;11143:59;11219:18;;38350:60:0::1;10890:353:1::0;35787:155:0;1862:6;;-1:-1:-1;;;;;1862:6:0;738:10;2009:23;2001:68;;;;-1:-1:-1;;;2001:68:0;;;;;;;:::i;:::-;35842:13:::1;:20:::0;;-1:-1:-1;;35873:18:0;;;;;35919:15:::1;35902:14;:32:::0;35787:155::o;37907:100::-;1862:6;;-1:-1:-1;;;;;1862:6:0;738:10;2009:23;2001:68;;;;-1:-1:-1;;;2001:68:0;;;;;;;:::i;:::-;37978:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;37978:21:0;;::::1;::::0;;;::::1;::::0;;37907:100::o;9142:104::-;9198:13;9231:7;9224:14;;;;;:::i;38998:304::-;1862:6;;-1:-1:-1;;;;;1862:6:0;738:10;2009:23;2001:68;;;;-1:-1:-1;;;2001:68:0;;;;;;;:::i;:::-;39142:13:::1;-1:-1:-1::0;;;;;39134:21:0::1;:4;-1:-1:-1::0;;;;;39134:21:0::1;;;39112:128;;;::::0;-1:-1:-1;;;39112:128:0;;11450:2:1;39112:128:0::1;::::0;::::1;11432:21:1::0;11489:2;11469:18;;;11462:30;11528:34;11508:18;;;11501:62;11599:27;11579:18;;;11572:55;11644:19;;39112:128:0::1;11248:421:1::0;39112:128:0::1;39253:41;39282:4;39288:5;39253:28;:41::i;13360:413::-:0;738:10;13453:4;13497:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13497:34:0;;;;;;;;;;13550:35;;;;13542:85;;;;-1:-1:-1;;;13542:85:0;;11876:2:1;13542:85:0;;;11858:21:1;11915:2;11895:18;;;11888:30;11954:34;11934:18;;;11927:62;-1:-1:-1;;;12005:18:1;;;11998:35;12050:19;;13542:85:0;11674:401:1;13542:85:0;13663:67;738:10;13686:7;13714:15;13695:16;:34;13663:8;:67::i;:::-;-1:-1:-1;13761:4:0;;13360:413;-1:-1:-1;;;13360:413:0:o;35954:111::-;1862:6;;-1:-1:-1;;;;;1862:6:0;738:10;2009:23;2001:68;;;;-1:-1:-1;;;2001:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36033:15:0;;;::::1;;::::0;;;:5:::1;:15;::::0;;;;:24;;-1:-1:-1;;36033:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35954:111::o;10554:175::-;10640:4;10657:42;738:10;10681:9;10692:6;10657:9;:42::i;39981:208::-;1862:6;;-1:-1:-1;;;;;1862:6:0;738:10;2009:23;2001:68;;;;-1:-1:-1;;;2001:68:0;;;;;;;:::i;:::-;40118:15:::1;::::0;40075:59:::1;::::0;-1:-1:-1;;;;;40118:15:0;;::::1;::::0;40075:59;::::1;::::0;::::1;::::0;40118:15:::1;::::0;40075:59:::1;40145:15;:36:::0;;-1:-1:-1;;;;;;40145:36:0::1;-1:-1:-1::0;;;;;40145:36:0;;;::::1;::::0;;;::::1;::::0;;39981:208::o;38426:412::-;1862:6;;-1:-1:-1;;;;;1862:6:0;738:10;2009:23;2001:68;;;;-1:-1:-1;;;2001:68:0;;;;;;;:::i;:::-;38577:16:::1;:32:::0;;;38620:16:::1;:32:::0;;;38663:10:::1;:20:::0;;;38676:7;38710:35:::1;38639:13:::0;38596;38710:35:::1;:::i;:::-;:48;;;;:::i;:::-;38694:13;:64:::0;;;38794:2:::1;-1:-1:-1::0;38777:19:0::1;38769:61;;;::::0;-1:-1:-1;;;38769:61:0;;11092:2:1;38769:61:0::1;::::0;::::1;11074:21:1::0;11131:2;11111:18;;;11104:30;11170:31;11150:18;;;11143:59;11219:18;;38769:61:0::1;10890:353:1::0;37468:256:0;1862:6;;-1:-1:-1;;;;;1862:6:0;738:10;2009:23;2001:68;;;;-1:-1:-1;;;2001:68:0;;;;;;;:::i;:::-;37608:4:::1;37600;37579:13;10131:12:::0;;;10043:108;37579:13:::1;:17;::::0;37595:1:::1;37579:17;:::i;:::-;37578:26;;;;:::i;:::-;37577:35;;;;:::i;:::-;37567:6;:45;;37545:131;;;::::0;-1:-1:-1;;;37545:131:0;;12282:2:1;37545:131:0::1;::::0;::::1;12264:21:1::0;12321:2;12301:18;;;12294:30;12360:34;12340:18;;;12333:62;-1:-1:-1;;;12411:18:1;;;12404:34;12455:19;;37545:131:0::1;12080:400:1::0;37545:131:0::1;37699:17;:6:::0;37709::::1;37699:17;:::i;:::-;37687:9;:29:::0;-1:-1:-1;37468:256:0:o;36681:496::-;1862:6;;36789:4;;-1:-1:-1;;;;;1862:6:0;738:10;2009:23;2001:68;;;;-1:-1:-1;;;2001:68:0;;;;;;;:::i;:::-;36868:5:::1;36847:13;10131:12:::0;;;10043:108;36847:13:::1;:17;::::0;36863:1:::1;36847:17;:::i;:::-;36846:27;;;;:::i;:::-;36833:9;:40;;36811:143;;;::::0;-1:-1:-1;;;36811:143:0;;12687:2:1;36811:143:0::1;::::0;::::1;12669:21:1::0;12726:2;12706:18;;;12699:30;12765:34;12745:18;;;12738:62;-1:-1:-1;;;12816:18:1;;;12809:51;12877:19;;36811:143:0::1;12485:417:1::0;36811:143:0::1;37022:4;37001:13;10131:12:::0;;;10043:108;37001:13:::1;:17;::::0;37017:1:::1;37001:17;:::i;:::-;37000:26;;;;:::i;:::-;36987:9;:39;;36965:141;;;::::0;-1:-1:-1;;;36965:141:0;;13109:2:1;36965:141:0::1;::::0;::::1;13091:21:1::0;13148:2;13128:18;;;13121:30;13187:34;13167:18;;;13160:62;-1:-1:-1;;;13238:18:1;;;13231:50;13298:19;;36965:141:0::1;12907:416:1::0;36965:141:0::1;-1:-1:-1::0;37117:18:0::1;:30:::0;37165:4:::1;::::0;36681:496::o;2698:201::-;1862:6;;-1:-1:-1;;;;;1862:6:0;738:10;2009:23;2001:68;;;;-1:-1:-1;;;2001:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2787:22:0;::::1;2779:73;;;::::0;-1:-1:-1;;;2779:73:0;;13530:2:1;2779:73:0::1;::::0;::::1;13512:21:1::0;13569:2;13549:18;;;13542:30;13608:34;13588:18;;;13581:62;-1:-1:-1;;;13659:18:1;;;13652:36;13705:19;;2779:73:0::1;13328:402:1::0;2779:73:0::1;2863:28;2882:8;2863:18;:28::i;:::-;2698:201:::0;:::o;48691:1049::-;1862:6;;48802:4;;-1:-1:-1;;;;;1862:6:0;738:10;2009:23;2001:68;;;;-1:-1:-1;;;2001:68:0;;;;;;;:::i;:::-;48887:19:::1;;48864:20;;:42;;;;:::i;:::-;48846:15;:60;48824:142;;;::::0;-1:-1:-1;;;48824:142:0;;13937:2:1;48824:142:0::1;::::0;::::1;13919:21:1::0;;;13956:18;;;13949:30;14015:34;13995:18;;;13988:62;14067:18;;48824:142:0::1;13735:356:1::0;48824:142:0::1;48996:4;48985:7;:15;;48977:70;;;::::0;-1:-1:-1;;;48977:70:0;;14298:2:1;48977:70:0::1;::::0;::::1;14280:21:1::0;14337:2;14317:18;;;14310:30;14376:34;14356:18;;;14349:62;-1:-1:-1;;;14427:18:1;;;14420:40;14477:19;;48977:70:0::1;14096:406:1::0;48977:70:0::1;49081:15;49058:20;:38:::0;49182:29:::1;::::0;-1:-1:-1;;;49182:29:0;;-1:-1:-1;;;;;49197:13:0::1;1707:32:1::0;49182:29:0::1;::::0;::::1;1689:51:1::0;49151:28:0::1;::::0;49182:4:::1;::::0;:14:::1;::::0;1662:18:1;;49182:29:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49151:60:::0;-1:-1:-1;49261:20:0::1;49284:44;49322:5;49284:33;49151:60:::0;49309:7;49284:24:::1;:33::i;:::-;:37:::0;::::1;:44::i;:::-;49261:67:::0;-1:-1:-1;49426:16:0;;49422:110:::1;;49459:61;49475:13;49498:6;49507:12;49459:15;:61::i;:::-;49607:19;49644:13;49607:51;;49669:4;-1:-1:-1::0;;;;;49669:9:0::1;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;49696:14:0::1;::::0;::::1;::::0;-1:-1:-1;49696:14:0;;-1:-1:-1;49696:14:0::1;-1:-1:-1::0;49728:4:0::1;::::0;48691:1049;-1:-1:-1;;;;48691:1049:0:o;17044:380::-;-1:-1:-1;;;;;17180:19:0;;17172:68;;;;-1:-1:-1;;;17172:68:0;;14709:2:1;17172:68:0;;;14691:21:1;14748:2;14728:18;;;14721:30;14787:34;14767:18;;;14760:62;-1:-1:-1;;;14838:18:1;;;14831:34;14882:19;;17172:68:0;14507:400:1;17172:68:0;-1:-1:-1;;;;;17259:21:0;;17251:68;;;;-1:-1:-1;;;17251:68:0;;15114:2:1;17251:68:0;;;15096:21:1;15153:2;15133:18;;;15126:30;15192:34;15172:18;;;15165:62;-1:-1:-1;;;15243:18:1;;;15236:32;15285:19;;17251:68:0;14912:398:1;17251:68:0;-1:-1:-1;;;;;17332:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17384:32;;1897:25:1;;;17384:32:0;;1870:18:1;17384:32:0;;;;;;;17044:380;;;:::o;40468:3965::-;-1:-1:-1;;;;;40600:18:0;;40592:68;;;;-1:-1:-1;;;40592:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40679:16:0;;40671:64;;;;-1:-1:-1;;;40671:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40755:9:0;;;;;;:5;:9;;;;;;;;40754:10;:26;;;;-1:-1:-1;;;;;;40769:11:0;;;;;;:5;:11;;;;;;;;40768:12;40754:26;40746:50;;;;-1:-1:-1;;;40746:50:0;;16327:2:1;40746:50:0;;;16309:21:1;16366:2;16346:18;;;16339:30;-1:-1:-1;;;16385:18:1;;;16378:41;16436:18;;40746:50:0;16125:335:1;40746:50:0;40813:11;40809:93;;40841:28;40857:4;40863:2;40867:1;40841:15;:28::i;40809:93::-;40918:14;;;;40914:1656;;;1862:6;;-1:-1:-1;;;;;40971:15:0;;;1862:6;;40971:15;;;;:49;;-1:-1:-1;1862:6:0;;-1:-1:-1;;;;;41007:13:0;;;1862:6;;41007:13;;40971:49;:86;;;;-1:-1:-1;;;;;;41041:16:0;;;;40971:86;:128;;;;-1:-1:-1;;;;;;41078:21:0;;41092:6;41078:21;;40971:128;:158;;;;-1:-1:-1;41121:8:0;;-1:-1:-1;;;41121:8:0;;;;41120:9;40971:158;40949:1610;;;41169:13;;;;;;;41164:185;;-1:-1:-1;;;;;41241:11:0;;;;;;:5;:11;;;;;;;;;:24;;-1:-1:-1;;;;;;41256:9:0;;;;;;:5;:9;;;;;;;;41241:24;41207:122;;;;-1:-1:-1;;;41207:122:0;;16667:2:1;41207:122:0;;;16649:21:1;16706:2;16686:18;;;16679:30;-1:-1:-1;;;16725:18:1;;;16718:42;16777:18;;41207:122:0;16465:336:1;41207:122:0;-1:-1:-1;;;;;41423:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;41480:35:0;;;;;;:31;:35;;;;;;;;41479:36;41423:92;41397:1147;;;41602:20;;41592:6;:30;;41558:169;;;;-1:-1:-1;;;41558:169:0;;17008:2:1;41558:169:0;;;16990:21:1;17047:2;17027:18;;;17020:30;17086:34;17066:18;;;17059:62;-1:-1:-1;;;17137:18:1;;;17130:51;17198:19;;41558:169:0;16806:417:1;41558:169:0;41810:9;;-1:-1:-1;;;;;10315:18:0;;10288:7;10315:18;;;;;;;;;;;41784:22;;:6;:22;:::i;:::-;:35;;41750:140;;;;-1:-1:-1;;;41750:140:0;;17430:2:1;41750:140:0;;;17412:21:1;17469:2;17449:18;;;17442:30;-1:-1:-1;;;17488:18:1;;;17481:49;17547:18;;41750:140:0;17228:343:1;41750:140:0;41397:1147;;;-1:-1:-1;;;;;41988:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;42043:37:0;;;;;;:31;:37;;;;;;;;42042:38;41988:92;41962:582;;;42167:20;;42157:6;:30;;42123:170;;;;-1:-1:-1;;;42123:170:0;;17778:2:1;42123:170:0;;;17760:21:1;17817:2;17797:18;;;17790:30;17856:34;17836:18;;;17829:62;-1:-1:-1;;;17907:18:1;;;17900:52;17969:19;;42123:170:0;17576:418:1;41962:582:0;-1:-1:-1;;;;;42324:35:0;;;;;;:31;:35;;;;;;;;42319:225;;42444:9;;-1:-1:-1;;;;;10315:18:0;;10288:7;10315:18;;;;;;;;;;;42418:22;;:6;:22;:::i;:::-;:35;;42384:140;;;;-1:-1:-1;;;42384:140:0;;17430:2:1;42384:140:0;;;17412:21:1;17469:2;17449:18;;;17442:30;-1:-1:-1;;;17488:18:1;;;17481:49;17547:18;;42384:140:0;17228:343:1;42384:140:0;42631:4;42582:28;10315:18;;;;;;;;;;;42689;;42665:42;;;;;;;42738:35;;-1:-1:-1;42762:11:0;;;;;;;42738:35;:61;;;;-1:-1:-1;42791:8:0;;-1:-1:-1;;;42791:8:0;;;;42790:9;42738:61;:110;;;;-1:-1:-1;;;;;;42817:31:0;;;;;;:25;:31;;;;;;;;42816:32;42738:110;:139;;;;-1:-1:-1;;;;;;42866:11:0;;;;;;:5;:11;;;;;;;;42865:12;42738:139;:166;;;;-1:-1:-1;;;;;;42895:9:0;;;;;;:5;:9;;;;;;;;42894:10;42738:166;42720:298;;;42931:8;:15;;-1:-1:-1;;;;42931:15:0;-1:-1:-1;;;42931:15:0;;;42963:10;:8;:10::i;:::-;42990:8;:16;;-1:-1:-1;;;;42990:16:0;;;42720:298;43049:8;;-1:-1:-1;;;43049:8:0;;;;43048:9;:55;;;;-1:-1:-1;;;;;;43074:29:0;;;;;;:25;:29;;;;;;;;43048:55;:85;;;;-1:-1:-1;43120:13:0;;;;43048:85;:153;;;;;43186:15;;43169:14;;:32;;;;:::i;:::-;43150:15;:51;;43048:153;:182;;;;-1:-1:-1;;;;;;43219:11:0;;;;;;:5;:11;;;;;;;;43218:12;43048:182;43030:268;;;43257:29;:27;:29::i;:::-;;43030:268;43326:8;;-1:-1:-1;;;;;43351:11:0;;43310:12;43351:11;;;:5;:11;;;;;;43326:8;-1:-1:-1;;;43326:8:0;;;;;43325:9;;43351:11;;:24;;-1:-1:-1;;;;;;43366:9:0;;;;;;:5;:9;;;;;;;;43351:24;43347:72;;;-1:-1:-1;43402:5:0;43347:72;43431:12;43462:7;43458:922;;;-1:-1:-1;;;;;43490:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;43539:1;43523:13;;:17;43490:50;43486:745;;;43568:34;43598:3;43568:25;43579:13;;43568:6;:10;;:25;;;;:::i;:34::-;43561:41;;43671:13;;43651:16;;43644:4;:23;;;;:::i;:::-;43643:41;;;;:::i;:::-;43621:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;43741:13:0;;43727:10;;43720:17;;:4;:17;:::i;:::-;43719:35;;;;:::i;:::-;43703:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;43823:13:0;;43803:16;;43796:23;;:4;:23;:::i;:::-;43795:41;;;;:::i;:::-;43773:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;43486:745:0;;-1:-1:-1;43486:745:0;;-1:-1:-1;;;;;43875:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;43925:1;43910:12;;:16;43875:51;43871:360;;;43954:33;43983:3;43954:24;43965:12;;43954:6;:10;;:24;;;;:::i;:33::-;43947:40;;44055:12;;44036:15;;44029:4;:22;;;;:::i;:::-;44028:39;;;;:::i;:::-;44006:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;44123:12:0;;44110:9;;44103:16;;:4;:16;:::i;:::-;44102:33;;;;:::i;:::-;44086:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;44203:12:0;;44184:15;;44177:22;;:4;:22;:::i;:::-;44176:39;;;;:::i;:::-;44154:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;43871:360:0;44251:8;;44247:91;;44280:42;44296:4;44310;44317;44280:15;:42::i;:::-;44354:14;44364:4;44354:14;;:::i;:::-;;;43458:922;44392:33;44408:4;44414:2;44418:6;44392:15;:33::i;:::-;40581:3852;;;;40468:3965;;;:::o;3059:191::-;3152:6;;;-1:-1:-1;;;;;3169:17:0;;;-1:-1:-1;;;;;;3169:17:0;;;;;;;3202:40;;3152:6;;;3169:17;3152:6;;3202:40;;3133:16;;3202:40;3122:128;3059:191;:::o;39310:188::-;-1:-1:-1;;;;;39393:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;39393:39:0;;;;;;;;;;39450:40;;39393:39;;:31;39450:40;;;39310:188;;:::o;22176:98::-;22234:7;22261:5;22265:1;22261;:5;:::i;:::-;22254:12;22176:98;-1:-1:-1;;;22176:98:0:o;22575:::-;22633:7;22660:5;22664:1;22660;:5;:::i;14263:733::-;-1:-1:-1;;;;;14403:20:0;;14395:70;;;;-1:-1:-1;;;14395:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14484:23:0;;14476:71;;;;-1:-1:-1;;;14476:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14644:17:0;;14620:21;14644:17;;;;;;;;;;;14680:23;;;;14672:74;;;;-1:-1:-1;;;14672:74:0;;18331:2:1;14672:74:0;;;18313:21:1;18370:2;18350:18;;;18343:30;18409:34;18389:18;;;18382:62;-1:-1:-1;;;18460:18:1;;;18453:36;18506:19;;14672:74:0;18129:402:1;14672:74:0;-1:-1:-1;;;;;14782:17:0;;;:9;:17;;;;;;;;;;;14802:22;;;14782:42;;14846:20;;;;;;;;:30;;14818:6;;14782:9;14846:30;;14818:6;;14846:30;:::i;:::-;;;;;;;;14911:9;-1:-1:-1;;;;;14894:35:0;14903:6;-1:-1:-1;;;;;14894:35:0;;14922:6;14894:35;;;;1897:25:1;;1885:2;1870:18;;1751:177;14894:35:0;;;;;;;;14942:46;36087:183;45559:1772;45642:4;45598:23;10315:18;;;;;;;;;;;45598:50;;45659:25;45755:12;;45721:18;;45687;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;45659:108;-1:-1:-1;45778:12:0;45807:20;;;:46;;-1:-1:-1;45831:22:0;;45807:46;45803:85;;;45870:7;;;45559:1772::o;45803:85::-;45922:18;;:23;;45943:2;45922:23;:::i;:::-;45904:15;:41;45900:115;;;45980:18;;:23;;46001:2;45980:23;:::i;:::-;45962:41;;45900:115;46076:23;46189:1;46156:17;46121:18;;46103:15;:36;;;;:::i;:::-;46102:71;;;;:::i;:::-;:88;;;;:::i;:::-;46076:114;-1:-1:-1;46201:26:0;46230:36;:15;46076:114;46230:19;:36::i;:::-;46201:65;-1:-1:-1;46307:21:0;46341:36;46201:65;46341:16;:36::i;:::-;46390:18;46411:44;:21;46437:17;46411:25;:44::i;:::-;46390:65;;46468:23;46494:84;46575:1;46554:18;;:22;;;;:::i;:::-;46533:44;;:17;:44;:::i;:::-;46509:18;;46494:34;;:10;;:14;:34::i;:84::-;46468:110;;46599:17;46619:78;46694:1;46673:18;;:22;;;;:::i;:::-;46652:44;;:17;:44;:::i;:::-;46634:12;;46619:28;;:10;;:14;:28::i;:78::-;46599:98;-1:-1:-1;46710:23:0;46599:98;46736:28;46749:15;46736:10;:28;:::i;:::-;:40;;;;:::i;:::-;46810:1;46789:18;:22;;;46822:18;:22;;;46855:12;:16;;;46906:9;;46898:45;;46710:66;;-1:-1:-1;;;;;;46906:9:0;;46929;;46898:45;46810:1;46898:45;46929:9;46906;46898:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46884:59:0;;-1:-1:-1;;46960:19:0;;;;;:42;;;47001:1;46983:15;:19;46960:42;46956:278;;;47019:46;47032:15;47049;47019:12;:46::i;:::-;47189:18;;47085:137;;;18948:25:1;;;19004:2;18989:18;;18982:34;;;19032:18;;;19025:34;;;;47085:137:0;;;;;;18936:2:1;47085:137:0;;;46956:278;47268:15;;47260:63;;-1:-1:-1;;;;;47268:15:0;;;;47297:21;;47260:63;;;;47297:21;47268:15;47260:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;45559:1772:0:o;47902:781::-;47993:15;47976:14;:32;48094:29;;-1:-1:-1;;;48094:29:0;;-1:-1:-1;;;;;48109:13:0;1707:32:1;48094:29:0;;;1689:51:1;47959:4:0;;;;48094;;:14;;1662:18:1;;48094:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48063:60;;48173:20;48196:77;48257:5;48196:42;48221:16;;48196:20;:24;;:42;;;;:::i;:77::-;48173:100;-1:-1:-1;48371:16:0;;48367:110;;48404:61;48420:13;48443:6;48452:12;48404:15;:61::i;:::-;48552:19;48589:13;48552:51;;48614:4;-1:-1:-1;;;;;48614:9:0;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;48641:12:0;;;;-1:-1:-1;48641:12:0;;-1:-1:-1;48641:12:0;48671:4;48664:11;;;;;47902:781;:::o;21819:98::-;21877:7;21904:5;21908:1;21904;:5;:::i;44441:589::-;44591:16;;;44605:1;44591:16;;;;;;;;44567:21;;44591:16;;;;;;;;;;-1:-1:-1;44591:16:0;44567:40;;44636:4;44618;44623:1;44618:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;44618:23:0;;;-1:-1:-1;;;;;44618:23:0;;;;;44662:15;-1:-1:-1;;;;;44662:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44652:4;44657:1;44652:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;44652:32:0;;;-1:-1:-1;;;;;44652:32:0;;;;;44697:62;44714:4;44729:15;44747:11;44697:8;:62::i;:::-;44798:224;;-1:-1:-1;;;44798:224:0;;-1:-1:-1;;;;;44798:15:0;:66;;;;:224;;44879:11;;44905:1;;44949:4;;44976;;44996:15;;44798:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44496:534;44441:589;:::o;45038:513::-;45186:62;45203:4;45218:15;45236:11;45186:8;:62::i;:::-;45291:15;-1:-1:-1;;;;;45291:31:0;;45330:9;45363:4;45383:11;45409:1;45452;45495:7;1862:6;;-1:-1:-1;;;;;1862:6:0;;1789:87;45495:7;45291:252;;;;;;-1:-1:-1;;;;;;45291:252:0;;;-1:-1:-1;;;;;20802:15:1;;;45291:252:0;;;20784:34:1;20834:18;;;20827:34;;;;20877:18;;;20870:34;;;;20920:18;;;20913:34;20984:15;;;20963:19;;;20956:44;45517:15:0;21016:19:1;;;21009:35;20718:19;;45291:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;45038:513;;:::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;1933:180::-;1992:6;2045:2;2033:9;2024:7;2020:23;2016:32;2013:52;;;2061:1;2058;2051:12;2013:52;-1:-1:-1;2084:23:1;;1933:180;-1:-1:-1;1933:180:1:o;2118:456::-;2195:6;2203;2211;2264:2;2252:9;2243:7;2239:23;2235:32;2232:52;;;2280:1;2277;2270:12;2232:52;2319:9;2306:23;2338:31;2363:5;2338:31;:::i;:::-;2388:5;-1:-1:-1;2445:2:1;2430:18;;2417:32;2458:33;2417:32;2458:33;:::i;:::-;2118:456;;2510:7;;-1:-1:-1;;;2564:2:1;2549:18;;;;2536:32;;2118:456::o;2976:388::-;3044:6;3052;3105:2;3093:9;3084:7;3080:23;3076:32;3073:52;;;3121:1;3118;3111:12;3073:52;3160:9;3147:23;3179:31;3204:5;3179:31;:::i;:::-;3229:5;-1:-1:-1;3286:2:1;3271:18;;3258:32;3299:33;3258:32;3299:33;:::i;:::-;3351:7;3341:17;;;2976:388;;;;;:::o;3369:615::-;3455:6;3463;3516:2;3504:9;3495:7;3491:23;3487:32;3484:52;;;3532:1;3529;3522:12;3484:52;3572:9;3559:23;3601:18;3642:2;3634:6;3631:14;3628:34;;;3658:1;3655;3648:12;3628:34;3696:6;3685:9;3681:22;3671:32;;3741:7;3734:4;3730:2;3726:13;3722:27;3712:55;;3763:1;3760;3753:12;3712:55;3803:2;3790:16;3829:2;3821:6;3818:14;3815:34;;;3845:1;3842;3835:12;3815:34;3898:7;3893:2;3883:6;3880:1;3876:14;3872:2;3868:23;3864:32;3861:45;3858:65;;;3919:1;3916;3909:12;3858:65;3950:2;3942:11;;;;;3972:6;;-1:-1:-1;3369:615:1;;-1:-1:-1;;;;3369:615:1:o;3989:118::-;4075:5;4068:13;4061:21;4054:5;4051:32;4041:60;;4097:1;4094;4087:12;4112:377;4186:6;4194;4202;4255:2;4243:9;4234:7;4230:23;4226:32;4223:52;;;4271:1;4268;4261:12;4223:52;4307:9;4294:23;4284:33;;4364:2;4353:9;4349:18;4336:32;4326:42;;4418:2;4407:9;4403:18;4390:32;4431:28;4453:5;4431:28;:::i;:::-;4478:5;4468:15;;;4112:377;;;;;:::o;4494:382::-;4559:6;4567;4620:2;4608:9;4599:7;4595:23;4591:32;4588:52;;;4636:1;4633;4626:12;4588:52;4675:9;4662:23;4694:31;4719:5;4694:31;:::i;:::-;4744:5;-1:-1:-1;4801:2:1;4786:18;;4773:32;4814:30;4773:32;4814:30;:::i;4881:316::-;4958:6;4966;4974;5027:2;5015:9;5006:7;5002:23;4998:32;4995:52;;;5043:1;5040;5033:12;4995:52;-1:-1:-1;;5066:23:1;;;5136:2;5121:18;;5108:32;;-1:-1:-1;5187:2:1;5172:18;;;5159:32;;4881:316;-1:-1:-1;4881:316:1:o;5202:241::-;5258:6;5311:2;5299:9;5290:7;5286:23;5282:32;5279:52;;;5327:1;5324;5317:12;5279:52;5366:9;5353:23;5385:28;5407:5;5385:28;:::i;5448:380::-;5527:1;5523:12;;;;5570;;;5591:61;;5645:4;5637:6;5633:17;5623:27;;5591:61;5698:2;5690:6;5687:14;5667:18;5664:38;5661:161;;;5744:10;5739:3;5735:20;5732:1;5725:31;5779:4;5776:1;5769:15;5807:4;5804:1;5797:15;5661:161;;5448:380;;;:::o;5833:356::-;6035:2;6017:21;;;6054:18;;;6047:30;6113:34;6108:2;6093:18;;6086:62;6180:2;6165:18;;5833:356::o;6194:127::-;6255:10;6250:3;6246:20;6243:1;6236:31;6286:4;6283:1;6276:15;6310:4;6307:1;6300:15;6326:168;6366:7;6432:1;6428;6424:6;6420:14;6417:1;6414:21;6409:1;6402:9;6395:17;6391:45;6388:71;;;6439:18;;:::i;:::-;-1:-1:-1;6479:9:1;;6326:168::o;6499:217::-;6539:1;6565;6555:132;;6609:10;6604:3;6600:20;6597:1;6590:31;6644:4;6641:1;6634:15;6672:4;6669:1;6662:15;6555:132;-1:-1:-1;6701:9:1;;6499:217::o;7546:128::-;7586:3;7617:1;7613:6;7610:1;7607:13;7604:39;;;7623:18;;:::i;:::-;-1:-1:-1;7659:9:1;;7546:128::o;8727:184::-;8797:6;8850:2;8838:9;8829:7;8825:23;8821:32;8818:52;;;8866:1;8863;8856:12;8818:52;-1:-1:-1;8889:16:1;;8727:184;-1:-1:-1;8727:184:1:o;9195:245::-;9262:6;9315:2;9303:9;9294:7;9290:23;9286:32;9283:52;;;9331:1;9328;9321:12;9283:52;9363:9;9357:16;9382:28;9404:5;9382:28;:::i;9781:127::-;9842:10;9837:3;9833:20;9830:1;9823:31;9873:4;9870:1;9863:15;9897:4;9894:1;9887:15;9913:135;9952:3;-1:-1:-1;;9973:17:1;;9970:43;;;9993:18;;:::i;:::-;-1:-1:-1;10040:1:1;10029:13;;9913:135::o;15315:401::-;15517:2;15499:21;;;15556:2;15536:18;;;15529:30;15595:34;15590:2;15575:18;;15568:62;-1:-1:-1;;;15661:2:1;15646:18;;15639:35;15706:3;15691:19;;15315:401::o;15721:399::-;15923:2;15905:21;;;15962:2;15942:18;;;15935:30;16001:34;15996:2;15981:18;;15974:62;-1:-1:-1;;;16067:2:1;16052:18;;16045:33;16110:3;16095:19;;15721:399::o;17999:125::-;18039:4;18067:1;18064;18061:8;18058:34;;;18072:18;;:::i;:::-;-1:-1:-1;18109:9:1;;17999:125::o;19202:251::-;19272:6;19325:2;19313:9;19304:7;19300:23;19296:32;19293:52;;;19341:1;19338;19331:12;19293:52;19373:9;19367:16;19392:31;19417:5;19392:31;:::i;19458:980::-;19720:4;19768:3;19757:9;19753:19;19799:6;19788:9;19781:25;19825:2;19863:6;19858:2;19847:9;19843:18;19836:34;19906:3;19901:2;19890:9;19886:18;19879:31;19930:6;19965;19959:13;19996:6;19988;19981:22;20034:3;20023:9;20019:19;20012:26;;20073:2;20065:6;20061:15;20047:29;;20094:1;20104:195;20118:6;20115:1;20112:13;20104:195;;;20183:13;;-1:-1:-1;;;;;20179:39:1;20167:52;;20274:15;;;;20239:12;;;;20215:1;20133:9;20104:195;;;-1:-1:-1;;;;;;;20355:32:1;;;;20350:2;20335:18;;20328:60;-1:-1:-1;;;20419:3:1;20404:19;20397:35;20316:3;19458:980;-1:-1:-1;;;19458:980:1:o;21055:306::-;21143:6;21151;21159;21212:2;21200:9;21191:7;21187:23;21183:32;21180:52;;;21228:1;21225;21218:12;21180:52;21257:9;21251:16;21241:26;;21307:2;21296:9;21292:18;21286:25;21276:35;;21351:2;21340:9;21336:18;21330:25;21320:35;;21055:306;;;;;:::o
Swarm Source
ipfs://463a4978ba41ae39d47a208e0b02e6e4958466754cc0404872c51a914be65220
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.