Contract Overview
[ Download CSV Export ]
Latest 25 internal transaction
[ Download CSV Export ]
Contract Name:
ChampionsToken
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2021-09-11 */ // File: node_modules\@openzeppelin\contracts\utils\Context.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin\contracts\access\Ownable.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: @openzeppelin\contracts\GSN\Context.sol pragma solidity >=0.6.0 <0.8.0; // File: contracts\libs\IBEP20.sol pragma solidity >=0.6.4; interface IBEP20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the token decimals. */ function decimals() external view returns (uint8); /** * @dev Returns the token symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the token name. */ function name() external view returns (string memory); /** * @dev Returns the bep token owner. */ function getOwner() external view returns (address); /** * @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); } // File: @openzeppelin\contracts\math\SafeMath.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { 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) { 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) { // 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) { 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) { 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) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); 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) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); 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) { require(b > 0, "SafeMath: modulo by zero"); 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) { 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. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); 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) { require(b > 0, errorMessage); return a % b; } } // File: contracts\libs\BEP20.sol pragma solidity >=0.4.0; /** * @dev Implementation of the {IBEP20} 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 {BEP20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-BEP20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of BEP20 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 {IBEP20-approve}. */ contract BEP20 is Context, IBEP20, Ownable { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor(string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the bep token owner. */ function getOwner() external override view returns (address) { return owner(); } /** * @dev Returns the name of the token. */ function name() public override view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public override view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. */ function decimals() public override view returns (uint8) { return _decimals; } /** * @dev See {BEP20-totalSupply}. */ function totalSupply() public override view returns (uint256) { return _totalSupply; } /** * @dev See {BEP20-balanceOf}. */ function balanceOf(address account) public override view returns (uint256) { return _balances[account]; } /** * @dev See {BEP20-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 override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {BEP20-allowance}. */ function allowance(address owner, address spender) public override view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {BEP20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {BEP20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {BEP20}; * * 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 override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, 'BEP20: transfer amount exceeds allowance') ); 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 {BEP20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(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 {BEP20-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 returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, 'BEP20: decreased allowance below zero')); return true; } /** * @dev Creates `amount` tokens and assigns them to `msg.sender`, increasing * the total supply. * * Requirements * * - `msg.sender` must be the token owner */ function mint(uint256 amount) public onlyOwner returns (bool) { _mint(_msgSender(), amount); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is 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), 'BEP20: transfer from the zero address'); require(recipient != address(0), 'BEP20: transfer to the zero address'); _balances[sender] = _balances[sender].sub(amount, 'BEP20: transfer amount exceeds balance'); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(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 * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal { require(account != address(0), 'BEP20: mint to the zero address'); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(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 { require(account != address(0), 'BEP20: burn from the zero address'); _balances[account] = _balances[account].sub(amount, 'BEP20: burn amount exceeds balance'); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is 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 { require(owner != address(0), 'BEP20: approve from the zero address'); require(spender != address(0), 'BEP20: approve to the zero address'); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Destroys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See {_burn} and {_approve}. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, 'BEP20: burn amount exceeds allowance')); } } // File: node_modules\@uniswap\v2-periphery\contracts\interfaces\IUniswapV2Router01.sol pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // File: @uniswap\v2-periphery\contracts\interfaces\IUniswapV2Router02.sol pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } // File: @uniswap\v2-core\contracts\interfaces\IUniswapV2Pair.sol pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } // File: @uniswap\v2-core\contracts\interfaces\IUniswapV2Factory.sol pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // File: contracts\Token.sol pragma solidity 0.6.12; // ChampionsToken contract ChampionsToken is BEP20 { // Transfer tax rate in basis points. (default 5%) uint16 public transferTaxRate = 500; // Burn rate % of transfer tax. (default 20% x 5% = 1% of total amount). uint16 public burnRate = 20; // Max transfer tax rate: 10%. uint16 public constant MAXIMUM_TRANSFER_TAX_RATE = 500; // Burn address address public constant BURN_ADDRESS = 0x000000000000000000000000000000000000dEaD; // Max transfer amount rate in basis points. (default is 0.5% of total supply) uint16 public maxTransferAmountRate = 50; // Automatic swap and liquify enabled bool public swapAndLiquifyEnabled = false; // Min amount to liquify. (default 500 CHAMPIONS) uint256 public minAmountToLiquify = 500 ether; // The swap router, modifiable. Will be changed to ChampionsFinance's router when our own AMM release IUniswapV2Router02 public championsFinanceRouter; mapping(address => bool) public whitelistTaxFee; // The trading pair address public championsFinancePair; // In swap and liquify bool private _inSwapAndLiquify; // The operator can only update the transfer tax rate address private _operator; // Events event OperatorTransferred(address indexed previousOperator, address indexed newOperator); event TransferTaxRateUpdated(address indexed operator, uint256 previousRate, uint256 newRate); event BurnRateUpdated(address indexed operator, uint256 previousRate, uint256 newRate); event MaxTransferAmountRateUpdated(address indexed operator, uint256 previousRate, uint256 newRate); event SwapAndLiquifyEnabledUpdated(address indexed operator, bool enabled); event MinAmountToLiquifyUpdated(address indexed operator, uint256 previousAmount, uint256 newAmount); event ChampionsFinanceRouterUpdated(address indexed operator, address indexed router, address indexed pair); event SwapAndLiquify(uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity); modifier onlyOperator() { require(_operator == msg.sender, "operator: caller is not the operator"); _; } modifier lockTheSwap { _inSwapAndLiquify = true; _; _inSwapAndLiquify = false; } modifier transferTaxFree { uint16 _transferTaxRate = transferTaxRate; transferTaxRate = 0; _; transferTaxRate = _transferTaxRate; } constructor() public BEP20("ChampionsToken", "CHAMPIONS") { _operator = _msgSender(); whitelistTaxFee[BURN_ADDRESS] = true; emit OperatorTransferred(address(0), _operator); } /// @notice Creates `_amount` token to `_to`. Must only be called by the owner (MasterChef). function mint(address _to, uint256 _amount) public onlyOwner { _mint(_to, _amount); _moveDelegates(address(0), _delegates[_to], _amount); } function isExcludeTaxFee(address _add) public view returns(bool) { return whitelistTaxFee[_add]; } function setExcludeTaxFee(address _add, bool value) public onlyOperator { require(whitelistTaxFee[_add] != value, "Same value !"); whitelistTaxFee[_add] = value; } /// @dev overrides transfer function to meet tokenomics of CHAMPIONS function _transfer(address sender, address recipient, uint256 amount) internal virtual override { // swap and liquify if ( swapAndLiquifyEnabled == true && _inSwapAndLiquify == false && address(championsFinanceRouter) != address(0) && championsFinancePair != address(0) && sender != championsFinancePair && sender != owner() ) { swapAndLiquify(); } if (whitelistTaxFee[sender] || whitelistTaxFee[recipient] || transferTaxRate == 0) { super._transfer(sender, recipient, amount); } else { // default tax is 5% of every transfer uint256 taxAmount = amount.mul(transferTaxRate).div(10000); uint256 burnAmount = taxAmount.mul(burnRate).div(100); uint256 liquidityAmount = taxAmount.sub(burnAmount); require(taxAmount == burnAmount + liquidityAmount, "CHAMPIONS::transfer: Burn value invalid"); // default 95% of transfer sent to recipient uint256 sendAmount = amount.sub(taxAmount); require(amount == sendAmount + taxAmount, "CHAMPIONS::transfer: Tax value invalid"); super._transfer(sender, BURN_ADDRESS, burnAmount); super._transfer(sender, address(this), liquidityAmount); super._transfer(sender, recipient, sendAmount); amount = sendAmount; } } /// @dev Swap and liquify function swapAndLiquify() private lockTheSwap transferTaxFree { uint256 contractTokenBalance = balanceOf(address(this)); uint256 maxTransferAmount = maxTransferAmount(); contractTokenBalance = contractTokenBalance > maxTransferAmount ? maxTransferAmount : contractTokenBalance; if (contractTokenBalance >= minAmountToLiquify) { // only min amount to liquify uint256 liquifyAmount = minAmountToLiquify; // split the liquify amount into halves uint256 half = liquifyAmount.div(2); uint256 otherHalf = liquifyAmount.sub(half); // capture the contract's current ETH balance. // this is so that we can capture exactly the amount of ETH that the // swap creates, and not make the liquidity event include any ETH that // has been manually sent to the contract uint256 initialBalance = address(this).balance; // swap tokens for ETH swapTokensForEth(half); // how much ETH did we just swap into? uint256 newBalance = address(this).balance.sub(initialBalance); // add liquidity addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance, otherHalf); } } /// @dev Swap tokens for eth function swapTokensForEth(uint256 tokenAmount) private { // generate the championsFinance pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = championsFinanceRouter.WETH(); _approve(address(this), address(championsFinanceRouter), tokenAmount); // make the swap championsFinanceRouter.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } /// @dev Add liquidity function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(championsFinanceRouter), tokenAmount); // add the liquidity championsFinanceRouter.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable operator(), block.timestamp ); } /** * @dev Returns the max transfer amount. */ function maxTransferAmount() public view returns (uint256) { return totalSupply().mul(maxTransferAmountRate).div(10000); } // To receive BNB from championsFinanceRouter when swapping receive() external payable {} /** * @dev Update the transfer tax rate. * Can only be called by the current operator. */ function updateTransferTaxRate(uint16 _transferTaxRate) public onlyOperator { require(_transferTaxRate <= MAXIMUM_TRANSFER_TAX_RATE, "CHAMPIONS::updateTransferTaxRate: Transfer tax rate must not exceed the maximum rate."); emit TransferTaxRateUpdated(msg.sender, transferTaxRate, _transferTaxRate); transferTaxRate = _transferTaxRate; } /** * @dev Update the burn rate. * Can only be called by the current operator. */ function updateBurnRate(uint16 _burnRate) public onlyOperator { require(_burnRate <= 100, "CHAMPIONS::updateBurnRate: Burn rate must not exceed the maximum rate."); emit BurnRateUpdated(msg.sender, burnRate, _burnRate); burnRate = _burnRate; } /** * @dev Update the max transfer amount rate. * Can only be called by the current operator. */ function updateMaxTransferAmountRate(uint16 _maxTransferAmountRate) public onlyOperator { require(_maxTransferAmountRate <= 10000, "CHAMPIONS::updateMaxTransferAmountRate: Max transfer amount rate must not exceed the maximum rate."); emit MaxTransferAmountRateUpdated(msg.sender, maxTransferAmountRate, _maxTransferAmountRate); maxTransferAmountRate = _maxTransferAmountRate; } /** * @dev Update the min amount to liquify. * Can only be called by the current operator. */ function updateMinAmountToLiquify(uint256 _minAmount) public onlyOperator { emit MinAmountToLiquifyUpdated(msg.sender, minAmountToLiquify, _minAmount); minAmountToLiquify = _minAmount; } /** * @dev Update the swapAndLiquifyEnabled. * Can only be called by the current operator. */ function updateSwapAndLiquifyEnabled(bool _enabled) public onlyOperator { emit SwapAndLiquifyEnabledUpdated(msg.sender, _enabled); swapAndLiquifyEnabled = _enabled; } /** * @dev Update the swap router. * Can only be called by the current operator. */ function updateChampionsFinanceRouter(address _router) public onlyOperator { championsFinanceRouter = IUniswapV2Router02(_router); championsFinancePair = IUniswapV2Factory(championsFinanceRouter.factory()).getPair(address(this), championsFinanceRouter.WETH()); require(championsFinancePair != address(0), "CHAMPIONS::updateChampionsFinanceRouter: Invalid pair address."); emit ChampionsFinanceRouterUpdated(msg.sender, address(championsFinanceRouter), championsFinancePair); } /** * @dev Returns the address of the current operator. */ function operator() public view returns (address) { return _operator; } /** * @dev Transfers operator of the contract to a new account (`newOperator`). * Can only be called by the current operator. */ function transferOperator(address newOperator) public onlyOperator { require(newOperator != address(0), "CHAMPIONS::transferOperator: new operator is the zero address"); emit OperatorTransferred(_operator, newOperator); _operator = newOperator; } // Copied and modified from YAM code: // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernanceStorage.sol // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernance.sol // Which is copied and modified from COMPOUND: // https://github.com/compound-finance/compound-protocol/blob/master/contracts/Governance/Comp.sol /// @dev A record of each accounts delegate mapping (address => address) internal _delegates; /// @notice A checkpoint for marking number of votes from a given block struct Checkpoint { uint32 fromBlock; uint256 votes; } /// @notice A record of votes checkpoints for each account, by index mapping (address => mapping (uint32 => Checkpoint)) public checkpoints; /// @notice The number of checkpoints for each account mapping (address => uint32) public numCheckpoints; /// @notice The EIP-712 typehash for the contract's domain bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)"); /// @notice The EIP-712 typehash for the delegation struct used by the contract bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)"); /// @notice A record of states for signing / validating signatures mapping (address => uint) public nonces; /// @notice An event thats emitted when an account changes its delegate event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate); /// @notice An event thats emitted when a delegate account's vote balance changes event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance); /** * @notice Delegate votes from `msg.sender` to `delegatee` * @param delegator The address to get delegatee for */ function delegates(address delegator) external view returns (address) { return _delegates[delegator]; } /** * @notice Delegate votes from `msg.sender` to `delegatee` * @param delegatee The address to delegate votes to */ function delegate(address delegatee) external { return _delegate(msg.sender, delegatee); } /** * @notice Delegates votes from signatory to `delegatee` * @param delegatee The address to delegate votes to * @param nonce The contract state required to match the signature * @param expiry The time at which to expire the signature * @param v The recovery byte of the signature * @param r Half of the ECDSA signature pair * @param s Half of the ECDSA signature pair */ function delegateBySig( address delegatee, uint nonce, uint expiry, uint8 v, bytes32 r, bytes32 s ) external { bytes32 domainSeparator = keccak256( abi.encode( DOMAIN_TYPEHASH, keccak256(bytes(name())), getChainId(), address(this) ) ); bytes32 structHash = keccak256( abi.encode( DELEGATION_TYPEHASH, delegatee, nonce, expiry ) ); bytes32 digest = keccak256( abi.encodePacked( "\x19\x01", domainSeparator, structHash ) ); address signatory = ecrecover(digest, v, r, s); require(signatory != address(0), "CHAMPIONS::delegateBySig: invalid signature"); require(nonce == nonces[signatory]++, "CHAMPIONS::delegateBySig: invalid nonce"); require(now <= expiry, "CHAMPIONS::delegateBySig: signature expired"); return _delegate(signatory, delegatee); } /** * @notice Gets the current votes balance for `account` * @param account The address to get votes balance * @return The number of current votes for `account` */ function getCurrentVotes(address account) external view returns (uint256) { uint32 nCheckpoints = numCheckpoints[account]; return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0; } /** * @notice Determine the prior number of votes for an account as of a block number * @dev Block number must be a finalized block or else this function will revert to prevent misinformation. * @param account The address of the account to check * @param blockNumber The block number to get the vote balance at * @return The number of votes the account had as of the given block */ function getPriorVotes(address account, uint blockNumber) external view returns (uint256) { require(blockNumber < block.number, "CHAMPIONS::getPriorVotes: not yet determined"); uint32 nCheckpoints = numCheckpoints[account]; if (nCheckpoints == 0) { return 0; } // First check most recent balance if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) { return checkpoints[account][nCheckpoints - 1].votes; } // Next check implicit zero balance if (checkpoints[account][0].fromBlock > blockNumber) { return 0; } uint32 lower = 0; uint32 upper = nCheckpoints - 1; while (upper > lower) { uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow Checkpoint memory cp = checkpoints[account][center]; if (cp.fromBlock == blockNumber) { return cp.votes; } else if (cp.fromBlock < blockNumber) { lower = center; } else { upper = center - 1; } } return checkpoints[account][lower].votes; } function _delegate(address delegator, address delegatee) internal { address currentDelegate = _delegates[delegator]; uint256 delegatorBalance = balanceOf(delegator); // balance of underlying CHAMPIONS (not scaled); _delegates[delegator] = delegatee; emit DelegateChanged(delegator, currentDelegate, delegatee); _moveDelegates(currentDelegate, delegatee, delegatorBalance); } function _moveDelegates(address srcRep, address dstRep, uint256 amount) internal { if (srcRep != dstRep && amount > 0) { if (srcRep != address(0)) { // decrease old representative uint32 srcRepNum = numCheckpoints[srcRep]; uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0; uint256 srcRepNew = srcRepOld.sub(amount); _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew); } if (dstRep != address(0)) { // increase new representative uint32 dstRepNum = numCheckpoints[dstRep]; uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0; uint256 dstRepNew = dstRepOld.add(amount); _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew); } } } function _writeCheckpoint( address delegatee, uint32 nCheckpoints, uint256 oldVotes, uint256 newVotes ) internal { uint32 blockNumber = safe32(block.number, "CHAMPIONS::_writeCheckpoint: block number exceeds 32 bits"); if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) { checkpoints[delegatee][nCheckpoints - 1].votes = newVotes; } else { checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes); numCheckpoints[delegatee] = nCheckpoints + 1; } emit DelegateVotesChanged(delegatee, oldVotes, newVotes); } function safe32(uint n, string memory errorMessage) internal pure returns (uint32) { require(n < 2**32, errorMessage); return uint32(n); } function getChainId() internal pure returns (uint) { uint256 chainId; assembly { chainId := chainid() } return chainId; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousRate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newRate","type":"uint256"}],"name":"BurnRateUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"router","type":"address"},{"indexed":true,"internalType":"address","name":"pair","type":"address"}],"name":"ChampionsFinanceRouterUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousRate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newRate","type":"uint256"}],"name":"MaxTransferAmountRateUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"MinAmountToLiquifyUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOperator","type":"address"},{"indexed":true,"internalType":"address","name":"newOperator","type":"address"}],"name":"OperatorTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousRate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newRate","type":"uint256"}],"name":"TransferTaxRateUpdated","type":"event"},{"inputs":[],"name":"BURN_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAXIMUM_TRANSFER_TAX_RATE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnRate","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"championsFinancePair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"championsFinanceRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","type":"uint256"}],"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":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegator","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_add","type":"address"}],"name":"isExcludeTaxFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransferAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransferAmountRate","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minAmountToLiquify","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_add","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setExcludeTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOperator","type":"address"}],"name":"transferOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferTaxRate","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_burnRate","type":"uint16"}],"name":"updateBurnRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_router","type":"address"}],"name":"updateChampionsFinanceRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxTransferAmountRate","type":"uint16"}],"name":"updateMaxTransferAmountRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minAmount","type":"uint256"}],"name":"updateMinAmountToLiquify","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"updateSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_transferTaxRate","type":"uint16"}],"name":"updateTransferTaxRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistTaxFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526006805462ffff0019166201f4001764ffff000000191663140000001761ffff60281b1916653200000000001760ff60381b19169055681b1ae4d6e2ef5000006007553480156200005457600080fd5b506040518060400160405280600e81526020016d21b430b6b834b7b739aa37b5b2b760911b815250604051806040016040528060098152602001684348414d50494f4e5360b81b8152506000620000b0620001ca60201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35081516200010f906004906020850190620001ce565b50805162000125906005906020840190620001ce565b50506006805460ff19166012179055506200013f620001ca565b600b80546001600160a01b0319166001600160a01b03928316179081905561dead600090815260096020527f960b1051749987b45b5679007fff577a1c2f763ec21c15a6c5eb193075003785805460ff191660011790556040519190921691907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a36200026a565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200021157805160ff191683800117855562000241565b8280016001018555821562000241579182015b828111156200024157825182559160200191906001019062000224565b506200024f92915062000253565b5090565b5b808211156200024f576000815560010162000254565b61329b806200027a6000396000f3fe6080604052600436106102975760003560e01c80638c13740c1161015a578063bed99850116100c1578063e5a5ad7c1161007a578063e5a5ad7c14610a26578063e7a324dc14610a59578063f1127ed814610a6e578063f2fde38b14610acd578063f607f2b414610b00578063fccc281314610b2e5761029e565b8063bed9985014610925578063c3cda5201461093a578063ccf90b8d1461098e578063d5b51b3f146109c1578063d8248358146109d6578063dd62ed3e146109eb5761029e565b8063a457c2d711610113578063a457c2d714610823578063a9059cbb1461085c578063a9e7572314610895578063b1cb977d146108aa578063b4b5ea57146108dd578063b65d08b0146109105761029e565b80638c13740c1461073e5780638da5cb5b1461077957806395d89b411461078e5780639f9a4e7f146107a3578063a0712d68146107cf578063a392e674146107f95761029e565b806340c10f19116101fe5780636fcfff45116101b75780636fcfff451461062957806370a0823114610675578063715018a6146106a8578063782d6fe1146106bd5780637ecebe00146106f6578063893d20e8146107295761029e565b806340c10f19146105325780634a74bb021461056b578063570ca73514610580578063587cde1e146105955780635c19a95c146105c85780636a141e2c146105fb5761029e565b806323b872dd1161025057806323b872dd1461041357806329605e7714610456578063313ce5671461048b578063376c2391146104b657806339509351146104e45780633ff8bf2e1461051d5761029e565b806306fdde03146102a3578063095ea7b31461032d5780630ad9e5661461037a57806318160ddd146103ab5780631ad9339a146103d257806320606b70146103fe5761029e565b3661029e57005b600080fd5b3480156102af57600080fd5b506102b8610b43565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102f25781810151838201526020016102da565b50505050905090810190601f16801561031f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561033957600080fd5b506103666004803603604081101561035057600080fd5b506001600160a01b038135169060200135610bd9565b604080519115158252519081900360200190f35b34801561038657600080fd5b5061038f610bf7565b604080516001600160a01b039092168252519081900360200190f35b3480156103b757600080fd5b506103c0610c06565b60408051918252519081900360200190f35b3480156103de57600080fd5b506103e7610c0c565b6040805161ffff9092168252519081900360200190f35b34801561040a57600080fd5b506103c0610c12565b34801561041f57600080fd5b506103666004803603606081101561043657600080fd5b506001600160a01b03813581169160208101359091169060400135610c36565b34801561046257600080fd5b506104896004803603602081101561047957600080fd5b50356001600160a01b0316610cbd565b005b34801561049757600080fd5b506104a0610da7565b6040805160ff9092168252519081900360200190f35b3480156104c257600080fd5b50610489600480360360208110156104d957600080fd5b503561ffff16610db0565b3480156104f057600080fd5b506103666004803603604081101561050757600080fd5b506001600160a01b038135169060200135610ea5565b34801561052957600080fd5b506103e7610ef3565b34801561053e57600080fd5b506104896004803603604081101561055557600080fd5b506001600160a01b038135169060200135610f04565b34801561057757600080fd5b50610366610f99565b34801561058c57600080fd5b5061038f610fa9565b3480156105a157600080fd5b5061038f600480360360208110156105b857600080fd5b50356001600160a01b0316610fb8565b3480156105d457600080fd5b50610489600480360360208110156105eb57600080fd5b50356001600160a01b0316610fd6565b34801561060757600080fd5b506104896004803603602081101561061e57600080fd5b503561ffff16610fe3565b34801561063557600080fd5b5061065c6004803603602081101561064c57600080fd5b50356001600160a01b03166110e0565b6040805163ffffffff9092168252519081900360200190f35b34801561068157600080fd5b506103c06004803603602081101561069857600080fd5b50356001600160a01b03166110f8565b3480156106b457600080fd5b50610489611113565b3480156106c957600080fd5b506103c0600480360360408110156106e057600080fd5b506001600160a01b0381351690602001356111bf565b34801561070257600080fd5b506103c06004803603602081101561071957600080fd5b50356001600160a01b03166113c7565b34801561073557600080fd5b5061038f6113d9565b34801561074a57600080fd5b506104896004803603604081101561076157600080fd5b506001600160a01b03813516906020013515156113e8565b34801561078557600080fd5b5061038f6114bf565b34801561079a57600080fd5b506102b86114ce565b3480156107af57600080fd5b50610489600480360360208110156107c657600080fd5b5035151561152f565b3480156107db57600080fd5b50610366600480360360208110156107f257600080fd5b50356115d2565b34801561080557600080fd5b506104896004803603602081101561081c57600080fd5b503561164f565b34801561082f57600080fd5b506103666004803603604081101561084657600080fd5b506001600160a01b0381351690602001356116db565b34801561086857600080fd5b506103666004803603604081101561087f57600080fd5b506001600160a01b038135169060200135611743565b3480156108a157600080fd5b506103c0611757565b3480156108b657600080fd5b50610366600480360360208110156108cd57600080fd5b50356001600160a01b0316611788565b3480156108e957600080fd5b506103c06004803603602081101561090057600080fd5b50356001600160a01b031661179d565b34801561091c57600080fd5b506103e7611801565b34801561093157600080fd5b506103e7611810565b34801561094657600080fd5b50610489600480360360c081101561095d57600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a00135611821565b34801561099a57600080fd5b50610489600480360360208110156109b157600080fd5b50356001600160a01b0316611a94565b3480156109cd57600080fd5b5061038f611cf9565b3480156109e257600080fd5b506103c0611d08565b3480156109f757600080fd5b506103c060048036036040811015610a0e57600080fd5b506001600160a01b0381358116916020013516611d0e565b348015610a3257600080fd5b5061036660048036036020811015610a4957600080fd5b50356001600160a01b0316611d39565b348015610a6557600080fd5b506103c0611d57565b348015610a7a57600080fd5b50610aad60048036036040811015610a9157600080fd5b5080356001600160a01b0316906020013563ffffffff16611d7b565b6040805163ffffffff909316835260208301919091528051918290030190f35b348015610ad957600080fd5b5061048960048036036020811015610af057600080fd5b50356001600160a01b0316611da8565b348015610b0c57600080fd5b5061048960048036036020811015610b2357600080fd5b503561ffff16611eaa565b348015610b3a57600080fd5b5061038f611fa4565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bcf5780601f10610ba457610100808354040283529160200191610bcf565b820191906000526020600020905b815481529060010190602001808311610bb257829003601f168201915b5050505050905090565b6000610bed610be6611faa565b8484611fae565b5060015b92915050565b6008546001600160a01b031681565b60035490565b6101f481565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6000610c4384848461209a565b610cb384610c4f611faa565b610cae85604051806060016040528060288152602001612f37602891396001600160a01b038a16600090815260026020526040812090610c8d611faa565b6001600160a01b0316815260208101919091526040016000205491906122b6565b611fae565b5060019392505050565b600b546001600160a01b03163314610d065760405162461bcd60e51b81526004018080602001828103825260248152602001806130e66024913960400191505060405180910390fd5b6001600160a01b038116610d4b5760405162461bcd60e51b815260040180806020018281038252603d8152602001806130a9603d913960400191505060405180910390fd5b600b546040516001600160a01b038084169216907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed90600090a3600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60065460ff1690565b600b546001600160a01b03163314610df95760405162461bcd60e51b81526004018080602001828103825260248152602001806130e66024913960400191505060405180910390fd5b6101f461ffff82161115610e3e5760405162461bcd60e51b8152600401808060200182810382526055815260200180612f866055913960600191505060405180910390fd5b6006546040805161ffff610100909304831681529183166020830152805133927fe9d5c8ee2a65d4fb859c680669d8f902172d53e3f15f9f11108a31bbada4b70b92908290030190a26006805461ffff9092166101000262ffff0019909216919091179055565b6000610bed610eb2611faa565b84610cae8560026000610ec3611faa565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061234d565b600654600160281b900461ffff1681565b610f0c611faa565b6001600160a01b0316610f1d6114bf565b6001600160a01b031614610f66576040805162461bcd60e51b81526020600482018190526024820152600080516020613089833981519152604482015290519081900360640190fd5b610f7082826123a7565b6001600160a01b038083166000908152600c6020526040812054610f9592168361248d565b5050565b600654600160381b900460ff1681565b600b546001600160a01b031690565b6001600160a01b039081166000908152600c60205260409020541690565b610fe033826125ca565b50565b600b546001600160a01b0316331461102c5760405162461bcd60e51b81526004018080602001828103825260248152602001806130e66024913960400191505060405180910390fd5b6127108161ffff1611156110715760405162461bcd60e51b8152600401808060200182810382526062815260200180612fdb6062913960800191505060405180910390fd5b6006546040805161ffff600160281b909304831681529183166020830152805133927fb62a50fc861a770636e85357becb3b82a32e911106609d4985871eaf29011e0892908290030190a26006805461ffff909216600160281b0266ffff000000000019909216919091179055565b600e6020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526001602052604090205490565b61111b611faa565b6001600160a01b031661112c6114bf565b6001600160a01b031614611175576040805162461bcd60e51b81526020600482018190526024820152600080516020613089833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60004382106111ff5760405162461bcd60e51b815260040180806020018281038252602c815260200180612e5e602c913960400191505060405180910390fd5b6001600160a01b0383166000908152600e602052604090205463ffffffff168061122d576000915050610bf1565b6001600160a01b0384166000908152600d6020908152604080832063ffffffff60001986018116855292529091205416831061129c576001600160a01b0384166000908152600d602090815260408083206000199490940163ffffffff16835292905220600101549050610bf1565b6001600160a01b0384166000908152600d6020908152604080832083805290915290205463ffffffff168310156112d7576000915050610bf1565b600060001982015b8163ffffffff168163ffffffff16111561139057600282820363ffffffff16048103611309612e1b565b506001600160a01b0387166000908152600d6020908152604080832063ffffffff80861685529083529281902081518083019092528054909316808252600190930154918101919091529087141561136b57602001519450610bf19350505050565b805163ffffffff1687111561138257819350611389565b6001820392505b50506112df565b506001600160a01b0385166000908152600d6020908152604080832063ffffffff9094168352929052206001015491505092915050565b600f6020526000908152604090205481565b60006113e36114bf565b905090565b600b546001600160a01b031633146114315760405162461bcd60e51b81526004018080602001828103825260248152602001806130e66024913960400191505060405180910390fd5b6001600160a01b03821660009081526009602052604090205460ff1615158115151415611494576040805162461bcd60e51b815260206004820152600c60248201526b53616d652076616c7565202160a01b604482015290519081900360640190fd5b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b6000546001600160a01b031690565b60058054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bcf5780601f10610ba457610100808354040283529160200191610bcf565b600b546001600160a01b031633146115785760405162461bcd60e51b81526004018080602001828103825260248152602001806130e66024913960400191505060405180910390fd5b604080518215158152905133917f3ca65588b29182880283bc8778fea5f01b351e01d874839a39a99e1c281a2113919081900360200190a260068054911515600160381b0267ff0000000000000019909216919091179055565b60006115dc611faa565b6001600160a01b03166115ed6114bf565b6001600160a01b031614611636576040805162461bcd60e51b81526020600482018190526024820152600080516020613089833981519152604482015290519081900360640190fd5b611647611641611faa565b836123a7565b506001919050565b600b546001600160a01b031633146116985760405162461bcd60e51b81526004018080602001828103825260248152602001806130e66024913960400191505060405180910390fd5b6007546040805191825260208201839052805133927f54c7a13ff01698e4ed3550a23216585f8472c7b1515a932eac98c9a6d48990c592908290030190a2600755565b6000610bed6116e8611faa565b84610cae8560405180606001604052806025815260200161318c6025913960026000611712611faa565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906122b6565b6000610bed611750611faa565b848461209a565b6006546000906113e3906127109061178290600160281b900461ffff1661177c610c06565b9061265f565b906126b8565b60096020526000908152604090205460ff1681565b6001600160a01b0381166000908152600e602052604081205463ffffffff16806117c85760006117fa565b6001600160a01b0383166000908152600d6020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b600654610100900461ffff1681565b6006546301000000900461ffff1681565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86661184c610b43565b8051906020012061185b61271f565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c08401526001600160a01b038b1660e084015261010083018a90526101208084018a9052825180850390910181526101408401835280519085012061190160f01b6101608501526101628401829052610182808501829052835180860390910181526101a285018085528151918701919091206000918290526101c2860180865281905260ff8b166101e287015261020286018a90526102228601899052935192965090949293909260019261024280840193601f198301929081900390910190855afa15801561198e573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166119e05760405162461bcd60e51b815260040180806020018281038252602b815260200180612e33602b913960400191505060405180910390fd5b6001600160a01b0381166000908152600f602052604090208054600181019091558914611a3e5760405162461bcd60e51b815260040180806020018281038252602781526020018061323f6027913960400191505060405180910390fd5b87421115611a7d5760405162461bcd60e51b815260040180806020018281038252602b81526020018061305e602b913960400191505060405180910390fd5b611a87818b6125ca565b505050505b505050505050565b600b546001600160a01b03163314611add5760405162461bcd60e51b81526004018080602001828103825260248152602001806130e66024913960400191505060405180910390fd5b600880546001600160a01b0319166001600160a01b0383811691909117918290556040805163c45a015560e01b81529051929091169163c45a015591600480820192602092909190829003018186803b158015611b3957600080fd5b505afa158015611b4d573d6000803e3d6000fd5b505050506040513d6020811015611b6357600080fd5b5051600854604080516315ab88c960e31b815290516001600160a01b039384169363e6a4390593309391169163ad5c464891600480820192602092909190829003018186803b158015611bb557600080fd5b505afa158015611bc9573d6000803e3d6000fd5b505050506040513d6020811015611bdf57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b039384166004820152929091166024830152516044808301926020929190829003018186803b158015611c2f57600080fd5b505afa158015611c43573d6000803e3d6000fd5b505050506040513d6020811015611c5957600080fd5b5051600a80546001600160a01b0319166001600160a01b03928316179081905516611cb55760405162461bcd60e51b815260040180806020018281038252603e815260200180612ef9603e913960400191505060405180910390fd5b600a546008546040516001600160a01b03928316929091169033907f2c068363150f7f87006edef35857a843e771ae45e1162005fb5cb5fa0122934890600090a450565b600a546001600160a01b031681565b60075481565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6001600160a01b031660009081526009602052604090205460ff1690565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b600d6020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b611db0611faa565b6001600160a01b0316611dc16114bf565b6001600160a01b031614611e0a576040805162461bcd60e51b81526020600482018190526024820152600080516020613089833981519152604482015290519081900360640190fd5b6001600160a01b038116611e4f5760405162461bcd60e51b8152600401808060200182810382526026815260200180612ed36026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600b546001600160a01b03163314611ef35760405162461bcd60e51b81526004018080602001828103825260248152602001806130e66024913960400191505060405180910390fd5b60648161ffff161115611f375760405162461bcd60e51b81526004018080602001828103825260468152602001806131f96046913960600191505060405180910390fd5b6006546040805161ffff6301000000909304831681529183166020830152805133927f3eec69630b6f49d4e10eec296fce4baddec5f34c5430fb2cd72f8c4218f63fd092908290030190a26006805461ffff90921663010000000264ffff00000019909216919091179055565b61dead81565b3390565b6001600160a01b038316611ff35760405162461bcd60e51b8152600401808060200182810382526024815260200180612eaf6024913960400191505060405180910390fd5b6001600160a01b0382166120385760405162461bcd60e51b81526004018080602001828103825260228152602001806131d76022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600654600160381b900460ff16151560011480156120c25750600a54600160a01b900460ff16155b80156120d857506008546001600160a01b031615155b80156120ee5750600a546001600160a01b031615155b80156121085750600a546001600160a01b03848116911614155b801561212d57506121176114bf565b6001600160a01b0316836001600160a01b031614155b1561213a5761213a612723565b6001600160a01b03831660009081526009602052604090205460ff168061217957506001600160a01b03821660009081526009602052604090205460ff165b8061218d5750600654610100900461ffff16155b156121a25761219d838383612836565b6122b1565b6006546000906121c49061271090611782908590610100900461ffff1661265f565b6006549091506000906121ea906064906117829085906301000000900461ffff1661265f565b905060006121f88383612988565b9050808201831461223a5760405162461bcd60e51b8152600401808060200182810382526027815260200180612f5f6027913960400191505060405180910390fd5b60006122468585612988565b905083810185146122885760405162461bcd60e51b81526004018080602001828103825260268152602001806131b16026913960400191505060405180910390fd5b6122958761dead85612836565b6122a0873084612836565b6122ab878783612836565b93505050505b505050565b600081848411156123455760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561230a5781810151838201526020016122f2565b50505050905090810190601f1680156123375780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156117fa576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038216612402576040805162461bcd60e51b815260206004820152601f60248201527f42455032303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b60035461240f908261234d565b6003556001600160a01b038216600090815260016020526040902054612435908261234d565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b816001600160a01b0316836001600160a01b0316141580156124af5750600081115b156122b1576001600160a01b03831615612541576001600160a01b0383166000908152600e602052604081205463ffffffff1690816124ef576000612521565b6001600160a01b0385166000908152600d6020908152604080832063ffffffff60001987011684529091529020600101545b9050600061252f8285612988565b905061253d868484846129e5565b5050505b6001600160a01b038216156122b1576001600160a01b0382166000908152600e602052604081205463ffffffff16908161257c5760006125ae565b6001600160a01b0384166000908152600d6020908152604080832063ffffffff60001987011684529091529020600101545b905060006125bc828561234d565b9050611a8c858484846129e5565b6001600160a01b038083166000908152600c6020526040812054909116906125f1846110f8565b6001600160a01b038581166000818152600c602052604080822080546001600160a01b031916898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a461265982848361248d565b50505050565b60008261266e57506000610bf1565b8282028284828161267b57fe5b04146117fa5760405162461bcd60e51b815260040180806020018281038252602181526020018061303d6021913960400191505060405180910390fd5b600080821161270e576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161271757fe5b049392505050565b4690565b600a805460ff60a01b1916600160a01b1790556006805462ffff0019811690915561ffff610100909104166000612759306110f8565b90506000612765611757565b90508082116127745781612776565b805b915060075482106128095760075460006127918260026126b8565b9050600061279f8383612988565b9050476127ab83612b4a565b60006127b74783612988565b90506127c38382612cf0565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150505050505b50506006805461ffff9092166101000262ffff0019909216919091179055600a805460ff60a01b19169055565b6001600160a01b03831661287b5760405162461bcd60e51b8152600401808060200182810382526025815260200180612e8a6025913960400191505060405180910390fd5b6001600160a01b0382166128c05760405162461bcd60e51b81526004018080602001828103825260238152602001806131306023913960400191505060405180910390fd5b6128fd8160405180606001604052806026815260200161310a602691396001600160a01b03861660009081526001602052604090205491906122b6565b6001600160a01b03808516600090815260016020526040808220939093559084168152205461292c908261234d565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000828211156129df576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000612a094360405180606001604052806039815260200161315360399139612dbd565b905060008463ffffffff16118015612a5257506001600160a01b0385166000908152600d6020908152604080832063ffffffff6000198901811685529252909120548282169116145b15612a8f576001600160a01b0385166000908152600d6020908152604080832063ffffffff60001989011684529091529020600101829055612b00565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600d84528681208b8616825284528681209551865490861663ffffffff199182161787559251600196870155908152600e9092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b60408051600280825260608083018452926020830190803683370190505090503081600081518110612b7857fe5b6001600160a01b03928316602091820292909201810191909152600854604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612bcc57600080fd5b505afa158015612be0573d6000803e3d6000fd5b505050506040513d6020811015612bf657600080fd5b5051815182906001908110612c0757fe5b6001600160a01b039283166020918202929092010152600854612c2d9130911684611fae565b60085460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b83811015612cb3578181015183820152602001612c9b565b505050509050019650505050505050600060405180830381600087803b158015612cdc57600080fd5b505af1158015611a8c573d6000803e3d6000fd5b600854612d089030906001600160a01b031684611fae565b6008546001600160a01b031663f305d719823085600080612d27610fa9565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b158015612d9257600080fd5b505af1158015612da6573d6000803e3d6000fd5b50505050506040513d606081101561265957600080fd5b6000816401000000008410612e135760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561230a5781810151838201526020016122f2565b509192915050565b60408051808201909152600080825260208201529056fe4348414d50494f4e533a3a64656c656761746542795369673a20696e76616c6964207369676e61747572654348414d50494f4e533a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e656442455032303a207472616e736665722066726f6d20746865207a65726f206164647265737342455032303a20617070726f76652066726f6d20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734348414d50494f4e533a3a7570646174654368616d70696f6e7346696e616e6365526f757465723a20496e76616c6964207061697220616464726573732e42455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654348414d50494f4e533a3a7472616e736665723a204275726e2076616c756520696e76616c69644348414d50494f4e533a3a7570646174655472616e73666572546178526174653a205472616e73666572207461782072617465206d757374206e6f742065786365656420746865206d6178696d756d20726174652e4348414d50494f4e533a3a7570646174654d61785472616e73666572416d6f756e74526174653a204d6178207472616e7366657220616d6f756e742072617465206d757374206e6f742065786365656420746865206d6178696d756d20726174652e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774348414d50494f4e533a3a64656c656761746542795369673a207369676e617475726520657870697265644f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724348414d50494f4e533a3a7472616e736665724f70657261746f723a206e6577206f70657261746f7220697320746865207a65726f20616464726573736f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657261746f7242455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e636542455032303a207472616e7366657220746f20746865207a65726f20616464726573734348414d50494f4e533a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747342455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4348414d50494f4e533a3a7472616e736665723a205461782076616c756520696e76616c696442455032303a20617070726f766520746f20746865207a65726f20616464726573734348414d50494f4e533a3a7570646174654275726e526174653a204275726e2072617465206d757374206e6f742065786365656420746865206d6178696d756d20726174652e4348414d50494f4e533a3a64656c656761746542795369673a20696e76616c6964206e6f6e6365a2646970667358221220caa8fea1405ce970124ddec223837fa9621ab142d2cb4f9abcffb1a8b658770664736f6c634300060c0033
Deployed ByteCode Sourcemap
32620:19704:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16395:92;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17974:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17974:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;33514:48;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;33514:48:0;;;;;;;;;;;;;;16963:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;32906:54;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44717:122;;;;;;;;;;;;;:::i;18606:364::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18606:364:0;;;;;;;;;;;;;;;;;:::i;43424:278::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43424:278:0;-1:-1:-1;;;;;43424:278:0;;:::i;:::-;;16807:92;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40515:368;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40515:368:0;;;;:::i;19378:210::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19378:210:0;;;;;;;;:::i;33162:40::-;;;;;;;;;;;;;:::i;35427:162::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35427:162:0;;;;;;;;:::i;33252:41::-;;;;;;;;;;;;;:::i;43179:85::-;;;;;;;;;;;;;:::i;45700:149::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45700:149:0;-1:-1:-1;;;;;45700:149:0;;:::i;45993:104::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45993:104:0;-1:-1:-1;;;;;45993:104:0;;:::i;41399:409::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41399:409:0;;;;:::i;44595:49::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44595:49:0;-1:-1:-1;;;;;44595:49:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;17125:119;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17125:119:0;-1:-1:-1;;;;;17125:119:0;;:::i;2796:148::-;;;;;;;;;;;;;:::i;48611:1258::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;48611:1258:0;;;;;;;;:::i;45131:39::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45131:39:0;-1:-1:-1;;;;;45131:39:0;;:::i;16231:94::-;;;;;;;;;;;;;:::i;35717:186::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35717:186:0;;;;;;;;;;:::i;2145:87::-;;;;;;;;;;;;;:::i;16606:96::-;;;;;;;;;;;;;:::i;42274:189::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42274:189:0;;;;:::i;20569:130::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20569:130:0;;:::i;41933:209::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41933:209:0;;:::i;20090:261::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20090:261:0;;;;;;;;:::i;17456:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17456:167:0;;;;;;;;:::i;40149:136::-;;;;;;;;;;;;;:::i;33571:47::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33571:47:0;-1:-1:-1;;;;;33571:47:0;;:::i;47925:255::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47925:255:0;-1:-1:-1;;;;;47925:255:0;;:::i;32716:35::-;;;;;;;;;;;;;:::i;32836:27::-;;;;;;;;;;;;;:::i;46531:1193::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;46531:1193:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;42578:517::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42578:517:0;-1:-1:-1;;;;;42578:517:0;;:::i;33650:35::-;;;;;;;;;;;;;:::i;33355:45::-;;;;;;;;;;;;;:::i;17685:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17685:143:0;;;;;;;;;;:::i;35597:112::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35597:112:0;-1:-1:-1;;;;;35597:112:0;;:::i;44933:117::-;;;;;;;;;;;;;:::i;44456:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44456:70:0;;-1:-1:-1;;;;;44456:70:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;3099:244;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3099:244:0;-1:-1:-1;;;;;3099:244:0;;:::i;40996:275::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40996:275:0;;;;:::i;32988:81::-;;;;;;;;;;;;;:::i;16395:92::-;16474:5;16467:12;;;;;;;;-1:-1:-1;;16467:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16441:13;;16467:12;;16474:5;;16467:12;;16474:5;16467:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16395:92;:::o;17974:161::-;18049:4;18066:39;18075:12;:10;:12::i;:::-;18089:7;18098:6;18066:8;:39::i;:::-;-1:-1:-1;18123:4:0;17974:161;;;;;:::o;33514:48::-;;;-1:-1:-1;;;;;33514:48:0;;:::o;16963:100::-;17043:12;;16963:100;:::o;32906:54::-;32957:3;32906:54;:::o;44717:122::-;44759:80;44717:122;:::o;18606:364::-;18705:4;18722:36;18732:6;18740:9;18751:6;18722:9;:36::i;:::-;18769:171;18792:6;18813:12;:10;:12::i;:::-;18840:89;18878:6;18840:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18840:19:0;;;;;;:11;:19;;;;;;18860:12;:10;:12::i;:::-;-1:-1:-1;;;;;18840:33:0;;;;;;;;;;;;-1:-1:-1;18840:33:0;;;:89;:37;:89::i;:::-;18769:8;:171::i;:::-;-1:-1:-1;18958:4:0;18606:364;;;;;:::o;43424:278::-;34707:9;;-1:-1:-1;;;;;34707:9:0;34720:10;34707:23;34699:72;;;;-1:-1:-1;;;34699:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43510:25:0;::::1;43502:99;;;;-1:-1:-1::0;;;43502:99:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43637:9;::::0;43617:43:::1;::::0;-1:-1:-1;;;;;43617:43:0;;::::1;::::0;43637:9:::1;::::0;43617:43:::1;::::0;43637:9:::1;::::0;43617:43:::1;43671:9;:23:::0;;-1:-1:-1;;;;;;43671:23:0::1;-1:-1:-1::0;;;;;43671:23:0;;;::::1;::::0;;;::::1;::::0;;43424:278::o;16807:92::-;16882:9;;;;16807:92;:::o;40515:368::-;34707:9;;-1:-1:-1;;;;;34707:9:0;34720:10;34707:23;34699:72;;;;-1:-1:-1;;;34699:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32957:3:::1;40610:45;::::0;::::1;;;40602:143;;;;-1:-1:-1::0;;;40602:143:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40796:15;::::0;40761:69:::1;::::0;;40796:15:::1;;::::0;;::::1;::::0;::::1;40761:69:::0;;;;::::1;;::::0;::::1;::::0;;;40784:10:::1;::::0;40761:69:::1;::::0;;;;;;;::::1;40841:15;:34:::0;;::::1;::::0;;::::1;;;-1:-1:-1::0;;40841:34:0;;::::1;::::0;;;::::1;::::0;;40515:368::o;19378:210::-;19458:4;19475:83;19484:12;:10;:12::i;:::-;19498:7;19507:50;19546:10;19507:11;:25;19519:12;:10;:12::i;:::-;-1:-1:-1;;;;;19507:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;19507:25:0;;;:34;;;;;;;;;;;:38;:50::i;33162:40::-;;;-1:-1:-1;;;33162:40:0;;;;;:::o;35427:162::-;2376:12;:10;:12::i;:::-;-1:-1:-1;;;;;2365:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2365:23:0;;2357:68;;;;;-1:-1:-1;;;2357:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2357:68:0;;;;;;;;;;;;;;;35499:19:::1;35505:3;35510:7;35499:5;:19::i;:::-;-1:-1:-1::0;;;;;35556:15:0;;::::1;35552:1;35556:15:::0;;;:10:::1;:15;::::0;;;;;35529:52:::1;::::0;35556:15:::1;35573:7:::0;35529:14:::1;:52::i;:::-;35427:162:::0;;:::o;33252:41::-;;;-1:-1:-1;;;33252:41:0;;;;;:::o;43179:85::-;43247:9;;-1:-1:-1;;;;;43247:9:0;43179:85;:::o;45700:149::-;-1:-1:-1;;;;;45820:21:0;;;45788:7;45820:21;;;:10;:21;;;;;;;;45700:149::o;45993:104::-;46057:32;46067:10;46079:9;46057;:32::i;:::-;45993:104;:::o;41399:409::-;34707:9;;-1:-1:-1;;;;;34707:9:0;34720:10;34707:23;34699:72;;;;-1:-1:-1;;;34699:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41532:5:::1;41506:22;:31;;;;41498:142;;;;-1:-1:-1::0;;;41498:142:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41697:21;::::0;41656:87:::1;::::0;;41697:21:::1;-1:-1:-1::0;;;41697:21:0;;::::1;::::0;::::1;41656:87:::0;;;;::::1;;::::0;::::1;::::0;;;41685:10:::1;::::0;41656:87:::1;::::0;;;;;;;::::1;41754:21;:46:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;41754:46:0::1;-1:-1:-1::0;;41754:46:0;;::::1;::::0;;;::::1;::::0;;41399:409::o;44595:49::-;;;;;;;;;;;;;;;:::o;17125:119::-;-1:-1:-1;;;;;17218:18:0;17191:7;17218:18;;;:9;:18;;;;;;;17125:119::o;2796:148::-;2376:12;:10;:12::i;:::-;-1:-1:-1;;;;;2365:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2365:23:0;;2357:68;;;;;-1:-1:-1;;;2357:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2357:68:0;;;;;;;;;;;;;;;2903:1:::1;2887:6:::0;;2866:40:::1;::::0;-1:-1:-1;;;;;2887:6:0;;::::1;::::0;2866:40:::1;::::0;2903:1;;2866:40:::1;2934:1;2917:19:::0;;-1:-1:-1;;;;;;2917:19:0::1;::::0;;2796:148::o;48611:1258::-;48719:7;48766:12;48752:11;:26;48744:83;;;;-1:-1:-1;;;48744:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48862:23:0;;48840:19;48862:23;;;:14;:23;;;;;;;;48900:17;48896:58;;48941:1;48934:8;;;;;48896:58;-1:-1:-1;;;;;49014:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;49035:16:0;;49014:38;;;;;;;;;:48;;:63;-1:-1:-1;49010:147:0;;-1:-1:-1;;;;;49101:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;49122:16:0;;;;49101:38;;;;;;;;49137:1;49101:44;;;-1:-1:-1;49094:51:0;;49010:147;-1:-1:-1;;;;;49218:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;49214:88:0;;;49289:1;49282:8;;;;;49214:88;49314:12;-1:-1:-1;;49356:16:0;;49383:428;49398:5;49390:13;;:5;:13;;;49383:428;;;49462:1;49445:13;;;49444:19;;;49436:27;;49505:20;;:::i;:::-;-1:-1:-1;;;;;;49528:20:0;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;49505:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49575:27;;49571:229;;;49630:8;;;;-1:-1:-1;49623:15:0;;-1:-1:-1;;;;49623:15:0;49571:229;49664:12;;:26;;;-1:-1:-1;49660:140:0;;;49719:6;49711:14;;49660:140;;;49783:1;49774:6;:10;49766:18;;49660:140;49383:428;;;;;-1:-1:-1;;;;;;49828:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;;;;-1:-1:-1;;48611:1258:0;;;;:::o;45131:39::-;;;;;;;;;;;;;:::o;16231:94::-;16283:7;16310;:5;:7::i;:::-;16303:14;;16231:94;:::o;35717:186::-;34707:9;;-1:-1:-1;;;;;34707:9:0;34720:10;34707:23;34699:72;;;;-1:-1:-1;;;34699:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35808:21:0;::::1;;::::0;;;:15:::1;:21;::::0;;;;;::::1;;:30;;::::0;::::1;;;;35800:55;;;::::0;;-1:-1:-1;;;35800:55:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;35800:55:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;35866:21:0;;;::::1;;::::0;;;:15:::1;:21;::::0;;;;:29;;-1:-1:-1;;35866:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35717:186::o;2145:87::-;2191:7;2218:6;-1:-1:-1;;;;;2218:6:0;2145:87;:::o;16606:96::-;16687:7;16680:14;;;;;;;;-1:-1:-1;;16680:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16654:13;;16680:14;;16687:7;;16680:14;;16687:7;16680:14;;;;;;;;;;;;;;;;;;;;;;;;42274:189;34707:9;;-1:-1:-1;;;;;34707:9:0;34720:10;34707:23;34699:72;;;;-1:-1:-1;;;34699:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42362:50:::1;::::0;;;::::1;;::::0;;;;42391:10:::1;::::0;42362:50:::1;::::0;;;;;::::1;::::0;;::::1;42423:21;:32:::0;;;::::1;;-1:-1:-1::0;;;42423:32:0::1;-1:-1:-1::0;;42423:32:0;;::::1;::::0;;;::::1;::::0;;42274:189::o;20569:130::-;20625:4;2376:12;:10;:12::i;:::-;-1:-1:-1;;;;;2365:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2365:23:0;;2357:68;;;;;-1:-1:-1;;;2357:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2357:68:0;;;;;;;;;;;;;;;20642:27:::1;20648:12;:10;:12::i;:::-;20662:6;20642:5;:27::i;:::-;-1:-1:-1::0;20687:4:0::1;20569:130:::0;;;:::o;41933:209::-;34707:9;;-1:-1:-1;;;;;34707:9:0;34720:10;34707:23;34699:72;;;;-1:-1:-1;;;34699:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42061:18:::1;::::0;42023:69:::1;::::0;;;;;::::1;::::0;::::1;::::0;;;;;42049:10:::1;::::0;42023:69:::1;::::0;;;;;;;::::1;42103:18;:31:::0;41933:209::o;20090:261::-;20175:4;20192:129;20201:12;:10;:12::i;:::-;20215:7;20224:96;20263:15;20224:96;;;;;;;;;;;;;;;;;:11;:25;20236:12;:10;:12::i;:::-;-1:-1:-1;;;;;20224:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;20224:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;17456:167::-;17534:4;17551:42;17561:12;:10;:12::i;:::-;17575:9;17586:6;17551:9;:42::i;40149:136::-;40244:21;;40199:7;;40226:51;;40271:5;;40226:40;;-1:-1:-1;;;40244:21:0;;;;40226:13;:11;:13::i;:::-;:17;;:40::i;:::-;:44;;:51::i;33571:47::-;;;;;;;;;;;;;;;:::o;47925:255::-;-1:-1:-1;;;;;48064:23:0;;48017:7;48064:23;;;:14;:23;;;;;;;;48105:16;:67;;48171:1;48105:67;;;-1:-1:-1;;;;;48124:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;48145:16:0;;48124:38;;;;;;;;48160:1;48124:44;;48105:67;48098:74;47925:255;-1:-1:-1;;;47925:255:0:o;32716:35::-;;;;;;;;;:::o;32836:27::-;;;;;;;;;:::o;46531:1193::-;46724:23;44759:80;46853:6;:4;:6::i;:::-;46837:24;;;;;;46880:12;:10;:12::i;:::-;46774:165;;;;;;;;;;;;;;;;;;;;;;;;;46919:4;46774:165;;;;;;;;;;;;;;;;;;;;;;;46750:200;;;;;;44979:71;47008:140;;;;-1:-1:-1;;;;;47008:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46984:175;;;;;;-1:-1:-1;;;47213:123:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47189:158;;;;;;;;;-1:-1:-1;47380:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46750:200;;-1:-1:-1;46984:175:0;;47189:158;;-1:-1:-1;;47380:26:0;;;;;;;-1:-1:-1;;47380:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;47380:26:0;;-1:-1:-1;;47380:26:0;;;-1:-1:-1;;;;;;;47425:23:0;;47417:79;;;;-1:-1:-1;;;47417:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47524:17:0;;;;;;:6;:17;;;;;:19;;;;;;;;47515:28;;47507:80;;;;-1:-1:-1;;;47507:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47613:6;47606:3;:13;;47598:69;;;;-1:-1:-1;;;47598:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47685:31;47695:9;47706;47685;:31::i;:::-;47678:38;;;;46531:1193;;;;;;;:::o;42578:517::-;34707:9;;-1:-1:-1;;;;;34707:9:0;34720:10;34707:23;34699:72;;;;-1:-1:-1;;;34699:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42664:22:::1;:52:::0;;-1:-1:-1;;;;;;42664:52:0::1;-1:-1:-1::0;;;;;42664:52:0;;::::1;::::0;;;::::1;::::0;;;;42768:32:::1;::::0;;-1:-1:-1;;;42768:32:0;;;;:22;;;::::1;::::0;:30:::1;::::0;:32:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;:22;:32;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;42768:32:0;42825:22:::1;::::0;:29:::1;::::0;;-1:-1:-1;;;42825:29:0;;;;-1:-1:-1;;;;;42750:59:0;;::::1;::::0;::::1;::::0;42818:4:::1;::::0;42825:22;::::1;::::0;:27:::1;::::0;:29:::1;::::0;;::::1;::::0;42768:32:::1;::::0;42825:29;;;;;;;;:22;:29;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;42825:29:0;42750:105:::1;::::0;;-1:-1:-1;;;;;;42750:105:0::1;::::0;;;;;;-1:-1:-1;;;;;42750:105:0;;::::1;;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;42825:29:::1;::::0;42750:105;;;;;;;;;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;42750:105:0;42727:20:::1;:128:::0;;-1:-1:-1;;;;;;42727:128:0::1;-1:-1:-1::0;;;;;42727:128:0;;::::1;;::::0;;;;42874:20:::1;42866:109;;;;-1:-1:-1::0;;;42866:109:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43066:20;::::0;43041:22:::1;::::0;42991:96:::1;::::0;-1:-1:-1;;;;;43066:20:0;;::::1;::::0;43041:22;;::::1;::::0;43021:10:::1;::::0;42991:96:::1;::::0;43066:20:::1;::::0;42991:96:::1;42578:517:::0;:::o;33650:35::-;;;-1:-1:-1;;;;;33650:35:0;;:::o;33355:45::-;;;;:::o;17685:143::-;-1:-1:-1;;;;;17793:18:0;;;17766:7;17793:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17685:143::o;35597:112::-;-1:-1:-1;;;;;35680:21:0;35656:4;35680:21;;;:15;:21;;;;;;;;;35597:112::o;44933:117::-;44979:71;44933:117;:::o;44456:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3099:244::-;2376:12;:10;:12::i;:::-;-1:-1:-1;;;;;2365:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2365:23:0;;2357:68;;;;;-1:-1:-1;;;2357:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2357:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;3188:22:0;::::1;3180:73;;;;-1:-1:-1::0;;;3180:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3290:6;::::0;;3269:38:::1;::::0;-1:-1:-1;;;;;3269:38:0;;::::1;::::0;3290:6;::::1;::::0;3269:38:::1;::::0;::::1;3318:6;:17:::0;;-1:-1:-1;;;;;;3318:17:0::1;-1:-1:-1::0;;;;;3318:17:0;;;::::1;::::0;;;::::1;::::0;;3099:244::o;40996:275::-;34707:9;;-1:-1:-1;;;;;34707:9:0;34720:10;34707:23;34699:72;;;;-1:-1:-1;;;34699:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41090:3:::1;41077:9;:16;;;;41069:99;;;;-1:-1:-1::0;;;41069:99:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41212:8;::::0;41184:48:::1;::::0;;41212:8:::1;::::0;;;::::1;::::0;::::1;41184:48:::0;;;;::::1;;::::0;::::1;::::0;;;41200:10:::1;::::0;41184:48:::1;::::0;;;;;;;::::1;41243:8;:20:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;41243:20:0;;::::1;::::0;;;::::1;::::0;;40996:275::o;32988:81::-;33027:42;32988:81;:::o;680:106::-;768:10;680:106;:::o;23379:339::-;-1:-1:-1;;;;;23474:19:0;;23466:68;;;;-1:-1:-1;;;23466:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23553:21:0;;23545:68;;;;-1:-1:-1;;;23545:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23626:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;23678:32;;;;;;;;;;;;;;;;;23379:339;;;:::o;35985:1483::-;36139:21;;-1:-1:-1;;;36139:21:0;;;;:29;;36164:4;36139:29;:72;;;;-1:-1:-1;36185:17:0;;-1:-1:-1;;;36185:17:0;;;;:26;36139:72;:134;;;;-1:-1:-1;36236:22:0;;-1:-1:-1;;;;;36236:22:0;36228:45;;36139:134;:185;;;;-1:-1:-1;36290:20:0;;-1:-1:-1;;;;;36290:20:0;:34;;36139:185;:232;;;;-1:-1:-1;36351:20:0;;-1:-1:-1;;;;;36341:30:0;;;36351:20;;36341:30;;36139:232;:266;;;;;36398:7;:5;:7::i;:::-;-1:-1:-1;;;;;36388:17:0;:6;-1:-1:-1;;;;;36388:17:0;;;36139:266;36121:339;;;36432:16;:14;:16::i;:::-;-1:-1:-1;;;;;36482:23:0;;;;;;:15;:23;;;;;;;;;:53;;-1:-1:-1;;;;;;36509:26:0;;;;;;:15;:26;;;;;;;;36482:53;:77;;;-1:-1:-1;36539:15:0;;;;;;;:20;36482:77;36478:983;;;36576:42;36592:6;36600:9;36611:6;36576:15;:42::i;:::-;36478:983;;;36734:15;;36703:17;;36723:38;;36755:5;;36723:27;;:6;;36734:15;;;;;36723:10;:27::i;:38::-;36811:8;;36703:58;;-1:-1:-1;36776:18:0;;36797:32;;36825:3;;36797:23;;36703:58;;36811:8;;;;;36797:13;:23::i;:32::-;36776:53;-1:-1:-1;36844:23:0;36870:25;:9;36776:53;36870:13;:25::i;:::-;36844:51;;36944:15;36931:10;:28;36918:9;:41;36910:93;;;;-1:-1:-1;;;36910:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37078:18;37099:21;:6;37110:9;37099:10;:21::i;:::-;37078:42;;37166:9;37153:10;:22;37143:6;:32;37135:83;;;;-1:-1:-1;;;37135:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37235:49;37251:6;33027:42;37273:10;37235:15;:49::i;:::-;37299:55;37315:6;37331:4;37338:15;37299;:55::i;:::-;37369:46;37385:6;37393:9;37404:10;37369:15;:46::i;:::-;37439:10;-1:-1:-1;;;;36478:983:0;35985:1483;;;:::o;12250:166::-;12336:7;12372:12;12364:6;;;;12356:29;;;;-1:-1:-1;;;12356:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;12403:5:0;;;12250:166::o;9423:179::-;9481:7;9513:5;;;9537:6;;;;9529:46;;;;;-1:-1:-1;;;9529:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;21951:308;-1:-1:-1;;;;;22027:21:0;;22019:65;;;;;-1:-1:-1;;;22019:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;22112:12;;:24;;22129:6;22112:16;:24::i;:::-;22097:12;:39;-1:-1:-1;;;;;22168:18:0;;;;;;:9;:18;;;;;;:30;;22191:6;22168:22;:30::i;:::-;-1:-1:-1;;;;;22147:18:0;;;;;;:9;:18;;;;;;;;:51;;;;22214:37;;;;;;;22147:18;;;;22214:37;;;;;;;;;;21951:308;;:::o;50327:947::-;50433:6;-1:-1:-1;;;;;50423:16:0;:6;-1:-1:-1;;;;;50423:16:0;;;:30;;;;;50452:1;50443:6;:10;50423:30;50419:848;;;-1:-1:-1;;;;;50474:20:0;;;50470:385;;-1:-1:-1;;;;;50582:22:0;;50563:16;50582:22;;;:14;:22;;;;;;;;;50643:13;:60;;50702:1;50643:60;;;-1:-1:-1;;;;;50659:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;50679:13:0;;50659:34;;;;;;;;50691:1;50659:40;;50643:60;50623:80;-1:-1:-1;50722:17:0;50742:21;50623:80;50756:6;50742:13;:21::i;:::-;50722:41;;50782:57;50799:6;50807:9;50818;50829;50782:16;:57::i;:::-;50470:385;;;;-1:-1:-1;;;;;50875:20:0;;;50871:385;;-1:-1:-1;;;;;50983:22:0;;50964:16;50983:22;;;:14;:22;;;;;;;;;51044:13;:60;;51103:1;51044:60;;;-1:-1:-1;;;;;51060:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;51080:13:0;;51060:34;;;;;;;;51092:1;51060:40;;51044:60;51024:80;-1:-1:-1;51123:17:0;51143:21;51024:80;51157:6;51143:13;:21::i;:::-;51123:41;;51183:57;51200:6;51208:9;51219;51230;51183:16;:57::i;49877:442::-;-1:-1:-1;;;;;49994:21:0;;;49968:23;49994:21;;;:10;:21;;;;;;;;;;50053:20;50005:9;50053;:20::i;:::-;-1:-1:-1;;;;;50133:21:0;;;;;;;:10;:21;;;;;;:33;;-1:-1:-1;;;;;;50133:33:0;;;;;;;;;;50184:54;;50026:47;;-1:-1:-1;50133:33:0;50184:54;;;;;;50133:21;50184:54;50251:60;50266:15;50283:9;50294:16;50251:14;:60::i;:::-;49877:442;;;;:::o;10302:220::-;10360:7;10384:6;10380:20;;-1:-1:-1;10399:1:0;10392:8;;10380:20;10423:5;;;10427:1;10423;:5;:1;10447:5;;;;;:10;10439:56;;;;-1:-1:-1;;;10439:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000:153;11058:7;11090:1;11086;:5;11078:44;;;;;-1:-1:-1;;;11078:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;11144:1;11140;:5;;;;;;;11000:153;-1:-1:-1;;;11000:153:0:o;52168:::-;52278:9;52168:153;:::o;37507:1343::-;34837:17;:24;;-1:-1:-1;;;;34837:24:0;-1:-1:-1;;;34837:24:0;;;34987:15:::1;::::0;;-1:-1:-1;;35013:19:0;::::1;::::0;;;34987:15:::1;34837:24:::0;34987:15;;::::1;;34837:24:::0;37611::::2;37629:4;37611:9;:24::i;:::-;37580:55;;37646:25;37674:19;:17;:19::i;:::-;37646:47;;37750:17;37727:20;:40;:83;;37790:20;37727:83;;;37770:17;37727:83;37704:106;;37851:18;;37827:20;:42;37823:1020;;37953:18;::::0;37929:21:::2;38056:20;37953:18:::0;38074:1:::2;38056:17;:20::i;:::-;38041:35:::0;-1:-1:-1;38091:17:0::2;38111:23;:13:::0;38041:35;38111:17:::2;:23::i;:::-;38091:43:::0;-1:-1:-1;38457:21:0::2;38531:22;38548:4:::0;38531:16:::2;:22::i;:::-;38622:18;38643:41;:21;38669:14:::0;38643:25:::2;:41::i;:::-;38622:62;;38731:35;38744:9;38755:10;38731:12;:35::i;:::-;38788:43;::::0;;;;;::::2;::::0;::::2;::::0;;;;;;;;;;;::::2;::::0;;;;;;;::::2;37823:1020;;;;;;-1:-1:-1::0;;35055:15:0::1;:34:::0;;::::1;::::0;;::::1;;;-1:-1:-1::0;;35055:34:0;;::::1;::::0;;;::::1;::::0;;34884:17;:25;;-1:-1:-1;;;;34884:25:0;;;37507:1343::o;21189:481::-;-1:-1:-1;;;;;21297:20:0;;21289:70;;;;-1:-1:-1;;;21289:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21378:23:0;;21370:71;;;;-1:-1:-1;;;21370:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21474;21496:6;21474:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21474:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;21454:17:0;;;;;;;:9;:17;;;;;;:91;;;;21579:20;;;;;;;:32;;21604:6;21579:24;:32::i;:::-;-1:-1:-1;;;;;21556:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;21627:35;;;;;;;21556:20;;21627:35;;;;;;;;;;;;;21189:481;;;:::o;9885:158::-;9943:7;9976:1;9971;:6;;9963:49;;;;;-1:-1:-1;;;9963:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10030:5:0;;;9885:158::o;51282:709::-;51461:18;51482:81;51489:12;51482:81;;;;;;;;;;;;;;;;;:6;:81::i;:::-;51461:102;;51595:1;51580:12;:16;;;:85;;;;-1:-1:-1;;;;;;51600:22:0;;;;;;:11;:22;;;;;;;;:65;-1:-1:-1;;51623:16:0;;51600:40;;;;;;;;;:50;:65;;;:50;;:65;51580:85;51576:339;;;-1:-1:-1;;;;;51682:22:0;;;;;;:11;:22;;;;;;;;:40;-1:-1:-1;;51705:16:0;;51682:40;;;;;;;;51720:1;51682:46;:57;;;51576:339;;;51811:33;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51772:22:0;;-1:-1:-1;51772:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;-1:-1:-1;;51772:72:0;;;;;;;;;;;;;51859:25;;;:14;:25;;;;;;:44;;51887:16;;;51859:44;;;;;;;;;;51576:339;51932:51;;;;;;;;;;;;;;-1:-1:-1;;;;;51932:51:0;;;;;;;;;;;51282:709;;;;;:::o;38892:619::-;39051:16;;;39065:1;39051:16;;;39027:21;39051:16;;;;;39027:21;39051:16;;;;;;;;;;-1:-1:-1;39051:16:0;39027:40;;39096:4;39078;39083:1;39078:7;;;;;;;;-1:-1:-1;;;;;39078:23:0;;;:7;;;;;;;;;;:23;;;;39122:22;;:29;;;-1:-1:-1;;;39122:29:0;;;;:22;;;;;:27;;:29;;;;;39078:7;;39122:29;;;;;:22;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39122:29:0;39112:7;;:4;;39117:1;;39112:7;;;;;;-1:-1:-1;;;;;39112:39:0;;;:7;;;;;;;;;:39;39196:22;;39164:69;;39181:4;;39196:22;39221:11;39164:8;:69::i;:::-;39272:22;;:231;;-1:-1:-1;;;39272:231:0;;;;;;;;:22;:231;;;;;;39457:4;39272:231;;;;;;39477:15;39272:231;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39272:22:0;;;;:73;;39360:11;;39430:4;;39457;39477:15;39272:231;;;;;;;;;;;;;;;;:22;:231;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39547:530;39727:22;;39695:69;;39712:4;;-1:-1:-1;;;;;39727:22:0;39752:11;39695:8;:69::i;:::-;39807:22;;-1:-1:-1;;;;;39807:22:0;:38;39853:9;39886:4;39906:11;39807:22;;40018:10;:8;:10::i;:::-;40043:15;39807:262;;;;;;;;;;;;;-1:-1:-1;;;;;39807:262:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39807:262:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51999:161;52074:6;52112:12;52105:5;52101:9;;52093:32;;;;-1:-1:-1;;;52093:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52150:1:0;;51999:161;-1:-1:-1;;51999:161:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
ipfs://caa8fea1405ce970124ddec223837fa9621ab142d2cb4f9abcffb1a8b6587706
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.