ERC-20
Overview
Max Total Supply
978,217.638769 FERNO
Holders
22
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 6 Decimals)
Balance
9,892.4434 FERNOValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Ferno
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-13 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.9; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } 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 Ferno0() external view returns (address); function Ferno1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Factory { event PairCreated(address indexed Ferno0, address indexed Ferno1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address FernoA, address FernoB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address FernoA, address FernoB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IERC20 { /** * @dev Returns the amount of Fernos in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of Fernos owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` Fernos 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 Fernos 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 Fernos. * * 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` Fernos 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` Fernos 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); } interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the Ferno. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the Ferno. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the Ferno. */ function decimals() external view returns (uint8); } contract ERC20 is Context, IERC20, IERC20Metadata { 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; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the Ferno. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the Ferno, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` Fernos should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Fernos usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 6; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s Fernos of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: 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 {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].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 {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves Fernos `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic Ferno fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeFernoTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` Fernos and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeFernoTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` Fernos 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` Fernos. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeFernoTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: 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 Fernos. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of Fernos. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s Fernos * will be to transferred to `to`. * - when `from` is zero, `amount` Fernos will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s Fernos will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeFernoTransfer( address from, address to, uint256 amount ) internal virtual {} } library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } library SafeMathInt { int256 private constant MIN_INT256 = int256(1) << 255; int256 private constant MAX_INT256 = ~(int256(1) << 255); /** * @dev Multiplies two int256 variables and fails on overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { int256 c = a * b; // Detect overflow when multiplying MIN_INT256 with -1 require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256)); require((b == 0) || (c / b == a)); return c; } /** * @dev Division of two int256 variables and fails on overflow. */ function div(int256 a, int256 b) internal pure returns (int256) { // Prevent overflow when dividing MIN_INT256 by -1 require(b != -1 || a != MIN_INT256); // Solidity already throws when dividing by 0. return a / b; } /** * @dev Subtracts two int256 variables and fails on overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a)); return c; } /** * @dev Adds two int256 variables and fails on overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a)); return c; } /** * @dev Converts to absolute value, and fails on overflow. */ function abs(int256 a) internal pure returns (int256) { require(a != MIN_INT256); return a < 0 ? -a : a; } function toUint256Safe(int256 a) internal pure returns (uint256) { require(a >= 0); return uint256(a); } } library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns (int256) { int256 b = int256(a); require(b >= 0); return b; } } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address FernoA, address FernoB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address Ferno, uint amountFernoDesired, uint amountFernoMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountFerno, uint amountETH, uint liquidity); function removeLiquidity( address FernoA, address FernoB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address Ferno, uint liquidity, uint amountFernoMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountFerno, uint amountETH); function removeLiquidityWithPermit( address FernoA, address FernoB, 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 Ferno, uint liquidity, uint amountFernoMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountFerno, uint amountETH); function swapExactFernosForFernos( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapFernosForExactFernos( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForFernos(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapFernosForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactFernosForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactFernos(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferFernos( address Ferno, uint liquidity, uint amountFernoMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferFernos( address Ferno, uint liquidity, uint amountFernoMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactFernosForFernosSupportingFeeOnTransferFernos( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForFernosSupportingFeeOnTransferFernos( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactFernosForETHSupportingFeeOnTransferFernos( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } pragma solidity 0.8.9; contract Ferno is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; uint256 public maxTransactionAmount; uint256 public swapFernosAtAmount; uint256 public maxWallet; uint256 public supply; address public FernoWallet; bool public limitsInEffect = true; bool public tradingActive = true; bool public swapEnabled = true; mapping(address => uint256) private _holderLastTransferTimestamp; bool public transferDelayEnabled = true; uint256 public buyBurnFee; uint256 public buyDevFee; uint256 public buyTotalFees; uint256 public sellBurnFee; uint256 public sellDevFee; uint256 public sellTotalFees; uint256 public FernosForBurn; uint256 public FernosForDev; uint256 public walletDigit; uint256 public transDigit; uint256 public delayDigit; /******************/ // exlcude from fees and max transaction amount mapping (address => bool) private _isExcludedFromFees; mapping (address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping (address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); constructor() ERC20("Inferno", "FERNO") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyBurnFee = 99; uint256 _buyDevFee = 1; uint256 _sellBurnFee = 99; uint256 _sellDevFee = 1; uint256 totalSupply = 1 * 1e6 * 1e6; supply += totalSupply; walletDigit = 1; transDigit = 10; delayDigit = 0; maxTransactionAmount = supply * transDigit / 1000; swapFernosAtAmount = supply * 5 / 10000; // 0.05% swap wallet; maxWallet = supply * walletDigit / 100; buyBurnFee = _buyBurnFee; buyDevFee = _buyDevFee; buyTotalFees = buyBurnFee + buyDevFee; sellBurnFee = _sellBurnFee; sellDevFee = _sellDevFee; sellTotalFees = sellBurnFee + sellDevFee; FernoWallet = 0xBd0C4DB6399A152AA1D7131BAC3fa497e95BB863; excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); _approve(owner(), address(uniswapV2Router), totalSupply); _mint(msg.sender, totalSupply); } receive() external payable { } function StartInferno() external onlyOwner { buyBurnFee = 2; buyDevFee = 0; buyTotalFees = buyBurnFee + buyDevFee; sellBurnFee = 2; sellDevFee = 1; sellTotalFees = sellBurnFee + sellDevFee; delayDigit = 5; } function updateTransDigit(uint256 newNum) external onlyOwner { require(newNum >= 1); transDigit = newNum; updateLimits(); } function updateWalletDigit(uint256 newNum) external onlyOwner { require(newNum >= 1); walletDigit = newNum; updateLimits(); } function updateDelayDigit(uint256 newNum) external onlyOwner{ delayDigit = newNum; } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function updateBuyFees(uint256 _burnFee, uint256 _devFee) external onlyOwner { buyBurnFee = _burnFee; buyDevFee = _devFee; buyTotalFees = buyBurnFee + buyDevFee; require(buyTotalFees <= 20, "Must keep fees at 20% or less"); } function updateSellFees(uint256 _burnFee, uint256 _devFee) external onlyOwner { sellBurnFee = _burnFee; sellDevFee = _devFee; sellTotalFees = sellBurnFee + sellDevFee; require(sellTotalFees <= 20, "Must keep fees at 25% or less"); } function updateFernoWallet(address newWallet) external onlyOwner { FernoWallet = newWallet; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function updateLimits() private { maxTransactionAmount = supply * transDigit / 1000; swapFernosAtAmount = supply * 5 / 10000; // 0.05% swap wallet; maxWallet = supply * walletDigit / 100; } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs"); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function isExcludedFromFees(address account) public view returns(bool) { return _isExcludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if(amount == 0) { super._transfer(from, to, 0); return; } if(limitsInEffect){ if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ){ if(!tradingActive){ require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active."); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled){ if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){ require(_holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed."); _holderLastTransferTimestamp[tx.origin] = block.number + delayDigit; } } //when buy if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) { require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount."); require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } //when sell else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) { require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount."); } else if(!_isExcludedMaxTransactionAmount[to]){ require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } } } uint256 contractFernoBalance = balanceOf(address(this)); bool canSwap = contractFernoBalance >= swapFernosAtAmount; if( canSwap && !swapping && swapEnabled && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; if(takeFee){ // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0){ fees = amount.mul(sellTotalFees).div(100); FernosForBurn += fees * sellBurnFee / sellTotalFees; FernosForDev += fees * sellDevFee / sellTotalFees; } // on buy else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); FernosForBurn += fees * buyBurnFee / buyTotalFees; FernosForDev += fees * buyDevFee / buyTotalFees; } if(fees > 0){ super._transfer(from, address(this), fees); if (FernosForBurn > 0) { _burn(address(this), FernosForBurn); supply = totalSupply(); updateLimits(); FernosForBurn = 0; } } amount -= fees; } super._transfer(from, to, amount); } function swapFernosForEth(uint256 FernoAmount) private { // generate the uniswap pair path of Ferno -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), FernoAmount); // make the swap uniswapV2Router.swapExactFernosForETHSupportingFeeOnTransferFernos( FernoAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); bool success; if(contractBalance == 0) {return;} if(contractBalance > swapFernosAtAmount * 20){ contractBalance = swapFernosAtAmount * 20; } swapFernosForEth(contractBalance); FernosForDev = 0; (success,) = address(FernoWallet).call{value: address(this).balance}(""); } }
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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[],"name":"FernoWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FernosForBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FernosForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"StartInferno","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"delayDigit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapFernosAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transDigit","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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateDelayDigit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateFernoWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateTransDigit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateWalletDigit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletDigit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600a805462ffffff60a01b19166201010160a01b179055600c805460ff191660011790553480156200003557600080fd5b506040805180820182526007815266496e6665726e6f60c81b6020808301918252835180850190945260058452644645524e4f60d81b908401528151919291620000829160039162000886565b5080516200009890600490602084019062000886565b5050506000620000ad6200047c60201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d6200011d81600162000480565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b1580156200016357600080fd5b505afa15801562000178573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200019e91906200092c565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620001e757600080fd5b505afa158015620001fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022291906200092c565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200026b57600080fd5b505af115801562000280573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a691906200092c565b6001600160a01b031660a0819052620002c190600162000480565b60a051620002d1906001620004fa565b600980546063916001918391839164e8d4a51000918291600090620002f89084906200096d565b90915550506001601555600a601681905560006017556009546103e891620003209162000988565b6200032c9190620009aa565b600655600954612710906200034390600562000988565b6200034f9190620009aa565b600755601554600954606491620003669162000988565b620003729190620009aa565b600855600d859055600e8490556200038b84866200096d565b600f5560108390556011829055620003a482846200096d565b601255600a80546001600160a01b03191673bd0c4db6399a152aa1d7131bac3fa497e95bb863179055620003ec620003e46005546001600160a01b031690565b60016200054e565b620003f93060016200054e565b6200040861dead60016200054e565b620004276200041f6005546001600160a01b031690565b600162000480565b6200043430600162000480565b6200044361dead600162000480565b620004646200045a6005546001600160a01b031690565b60805183620005f8565b62000470338262000720565b50505050505062000a0a565b3390565b6005546001600160a01b03163314620004cf5760405162461bcd60e51b8152602060048201819052602482015260008051602062002fd483398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005995760405162461bcd60e51b8152602060048201819052602482015260008051602062002fd48339815191526044820152606401620004c6565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0383166200065c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401620004c6565b6001600160a01b038216620006bf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401620004c6565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038216620007785760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004c6565b62000794816002546200081c60201b6200108c1790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620007c79183906200108c6200081c821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6000806200082b83856200096d565b9050838110156200087f5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620004c6565b9392505050565b8280546200089490620009cd565b90600052602060002090601f016020900481019282620008b8576000855562000903565b82601f10620008d357805160ff191683800117855562000903565b8280016001018555821562000903579182015b8281111562000903578251825591602001919060010190620008e6565b506200091192915062000915565b5090565b5b8082111562000911576000815560010162000916565b6000602082840312156200093f57600080fd5b81516001600160a01b03811681146200087f57600080fd5b634e487b7160e01b600052601160045260246000fd5b6000821982111562000983576200098362000957565b500190565b6000816000190483118215151615620009a557620009a562000957565b500290565b600082620009c857634e487b7160e01b600052601260045260246000fd5b500490565b600181811c90821680620009e257607f821691505b6020821081141562000a0457634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05161257a62000a5a6000396000818161050001528181610ddd01526114560152600081816103d80152818161141801528181611f0a01528181611fd2015261200e015261257a6000f3fe6080604052600436106102cd5760003560e01c80637571336a11610175578063a9059cbb116100dc578063c8c8ebe411610095578063e71dc3f51161006f578063e71dc3f5146108be578063f203acb6146108d4578063f2fde38b146108ea578063f8b45b051461090a57600080fd5b8063c8c8ebe41461084c578063d85ba06314610862578063dd62ed3e1461087857600080fd5b8063a9059cbb1461078b578063adb873bd146107ab578063b62496f5146107c1578063bbc0c742146107f1578063c024666814610812578063c876d0b91461083257600080fd5b80639a7a23d61161012e5780639a7a23d6146106e95780639c3b4fdc146107095780639e01c1f61461071f5780639fdc482414610735578063a0d82dc514610755578063a457c2d71461076b57600080fd5b80637571336a1461064a5780637ab439831461066a57806382eaacd4146106805780638da5cb5b146106a057806395d89b41146106be578063975d71e2146106d357600080fd5b8063313ce5671161023457806365bdd43b116101ed5780636a486a8e116101c75780636a486a8e146105c85780636ddd1713146105de57806370a08231146105ff578063715018a61461063557600080fd5b806365bdd43b1461057c57806366ca9b83146105925780636876715f146105b257600080fd5b8063313ce5671461049d57806339509351146104b95780633f295529146104d957806349bd5a5e146104ee5780634a62bb65146105225780634fbee1931461054357600080fd5b80631694505e116102865780631694505e146103c657806318160ddd146104125780631db272b3146104275780631fa07da51461044757806323b872dd1461046757806327c8f8351461048757600080fd5b806302dbd8f8146102d9578063047fc9aa146102fb57806306fdde0314610324578063095ea7b31461034657806310d5de5314610376578063150de0bb146103a657600080fd5b366102d457005b600080fd5b3480156102e557600080fd5b506102f96102f43660046120f2565b610920565b005b34801561030757600080fd5b5061031160095481565b6040519081526020015b60405180910390f35b34801561033057600080fd5b506103396109c0565b60405161031b9190612114565b34801561035257600080fd5b5061036661036136600461217e565b610a52565b604051901515815260200161031b565b34801561038257600080fd5b506103666103913660046121aa565b60196020526000908152604090205460ff1681565b3480156103b257600080fd5b506102f96103c13660046121c7565b610a69565b3480156103d257600080fd5b506103fa7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161031b565b34801561041e57600080fd5b50600254610311565b34801561043357600080fd5b506102f96104423660046121aa565b610ab1565b34801561045357600080fd5b506102f96104623660046121c7565b610afd565b34801561047357600080fd5b506103666104823660046121e0565b610b42565b34801561049357600080fd5b506103fa61dead81565b3480156104a957600080fd5b506040516006815260200161031b565b3480156104c557600080fd5b506103666104d436600461217e565b610bab565b3480156104e557600080fd5b506102f9610be1565b3480156104fa57600080fd5b506103fa7f000000000000000000000000000000000000000000000000000000000000000081565b34801561052e57600080fd5b50600a5461036690600160a01b900460ff1681565b34801561054f57600080fd5b5061036661055e3660046121aa565b6001600160a01b031660009081526018602052604090205460ff1690565b34801561058857600080fd5b5061031160075481565b34801561059e57600080fd5b506102f96105ad3660046120f2565b610c46565b3480156105be57600080fd5b5061031160135481565b3480156105d457600080fd5b5061031160125481565b3480156105ea57600080fd5b50600a5461036690600160b01b900460ff1681565b34801561060b57600080fd5b5061031161061a3660046121aa565b6001600160a01b031660009081526020819052604090205490565b34801561064157600080fd5b506102f9610cd9565b34801561065657600080fd5b506102f9610665366004612221565b610d4d565b34801561067657600080fd5b5061031160155481565b34801561068c57600080fd5b50600a546103fa906001600160a01b031681565b3480156106ac57600080fd5b506005546001600160a01b03166103fa565b3480156106ca57600080fd5b50610339610da2565b3480156106df57600080fd5b5061031160165481565b3480156106f557600080fd5b506102f9610704366004612221565b610db1565b34801561071557600080fd5b50610311600e5481565b34801561072b57600080fd5b5061031160145481565b34801561074157600080fd5b506102f96107503660046121c7565b610e8d565b34801561076157600080fd5b5061031160115481565b34801561077757600080fd5b5061036661078636600461217e565b610ebc565b34801561079757600080fd5b506103666107a636600461217e565b610f0b565b3480156107b757600080fd5b5061031160105481565b3480156107cd57600080fd5b506103666107dc3660046121aa565b601a6020526000908152604090205460ff1681565b3480156107fd57600080fd5b50600a5461036690600160a81b900460ff1681565b34801561081e57600080fd5b506102f961082d366004612221565b610f18565b34801561083e57600080fd5b50600c546103669060ff1681565b34801561085857600080fd5b5061031160065481565b34801561086e57600080fd5b50610311600f5481565b34801561088457600080fd5b5061031161089336600461225f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156108ca57600080fd5b50610311600d5481565b3480156108e057600080fd5b5061031160175481565b3480156108f657600080fd5b506102f96109053660046121aa565b610fa1565b34801561091657600080fd5b5061031160085481565b6005546001600160a01b031633146109535760405162461bcd60e51b815260040161094a9061228d565b60405180910390fd5b6010829055601181905561096781836122d8565b6012819055601410156109bc5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c657373000000604482015260640161094a565b5050565b6060600380546109cf906122f0565b80601f01602080910402602001604051908101604052809291908181526020018280546109fb906122f0565b8015610a485780601f10610a1d57610100808354040283529160200191610a48565b820191906000526020600020905b815481529060010190602001808311610a2b57829003601f168201915b5050505050905090565b6000610a5f3384846110f2565b5060015b92915050565b6005546001600160a01b03163314610a935760405162461bcd60e51b815260040161094a9061228d565b6001811015610aa157600080fd5b6015819055610aae611217565b50565b6005546001600160a01b03163314610adb5760405162461bcd60e51b815260040161094a9061228d565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610b275760405162461bcd60e51b815260040161094a9061228d565b6001811015610b3557600080fd5b6016819055610aae611217565b6000610b4f848484611277565b610ba18433610b9c856040518060600160405280602881526020016124f8602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611aa8565b6110f2565b5060019392505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610a5f918590610b9c908661108c565b6005546001600160a01b03163314610c0b5760405162461bcd60e51b815260040161094a9061228d565b6002600d8190556000600e819055610c22916122d8565b600f556002601081905560016011819055610c3c916122d8565b6012556005601755565b6005546001600160a01b03163314610c705760405162461bcd60e51b815260040161094a9061228d565b600d829055600e819055610c8481836122d8565b600f819055601410156109bc5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c657373000000604482015260640161094a565b6005546001600160a01b03163314610d035760405162461bcd60e51b815260040161094a9061228d565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610d775760405162461bcd60e51b815260040161094a9061228d565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6060600480546109cf906122f0565b6005546001600160a01b03163314610ddb5760405162461bcd60e51b815260040161094a9061228d565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415610e835760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161094a565b6109bc8282611ae2565b6005546001600160a01b03163314610eb75760405162461bcd60e51b815260040161094a9061228d565b601755565b6000610a5f3384610b9c85604051806060016040528060258152602001612520602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611aa8565b6000610a5f338484611277565b6005546001600160a01b03163314610f425760405162461bcd60e51b815260040161094a9061228d565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610fcb5760405162461bcd60e51b815260040161094a9061228d565b6001600160a01b0381166110305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161094a565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b60008061109983856122d8565b9050838110156110eb5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161094a565b9392505050565b6001600160a01b0383166111545760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161094a565b6001600160a01b0382166111b55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161094a565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6103e860165460095461122a919061232b565b611234919061234a565b6006556009546127109061124990600561232b565b611253919061234a565b6007556015546009546064916112689161232b565b611272919061234a565b600855565b6001600160a01b03831661129d5760405162461bcd60e51b815260040161094a9061236c565b6001600160a01b0382166112c35760405162461bcd60e51b815260040161094a906123b1565b806112d9576112d483836000611b36565b505050565b600a54600160a01b900460ff16156117aa576005546001600160a01b0384811691161480159061131757506005546001600160a01b03838116911614155b801561132b57506001600160a01b03821615155b801561134257506001600160a01b03821661dead14155b80156113585750600554600160a01b900460ff16155b156117aa57600a54600160a81b900460ff166113f2576001600160a01b03831660009081526018602052604090205460ff16806113ad57506001600160a01b03821660009081526018602052604090205460ff165b6113f25760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161094a565b600c5460ff1615611544576005546001600160a01b0383811691161480159061144d57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b801561148b57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b1561154457326000908152600b602052604090205443116115265760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a40161094a565b60175461153390436122d8565b326000908152600b60205260409020555b6001600160a01b0383166000908152601a602052604090205460ff16801561158557506001600160a01b03821660009081526019602052604090205460ff16155b15611669576006548111156115fa5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161094a565b6008546001600160a01b03831660009081526020819052604090205461162090836122d8565b11156116645760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161094a565b6117aa565b6001600160a01b0382166000908152601a602052604090205460ff1680156116aa57506001600160a01b03831660009081526019602052604090205460ff16155b15611720576006548111156116645760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606482015260840161094a565b6001600160a01b03821660009081526019602052604090205460ff166117aa576008546001600160a01b03831660009081526020819052604090205461176690836122d8565b11156117aa5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161094a565b30600090815260208190526040902054600754811080159081906117d85750600554600160a01b900460ff16155b80156117ed5750600a54600160b01b900460ff165b801561181257506001600160a01b0385166000908152601a602052604090205460ff16155b801561183757506001600160a01b03851660009081526018602052604090205460ff16155b801561185c57506001600160a01b03841660009081526018602052604090205460ff16155b1561188a576005805460ff60a01b1916600160a01b17905561187c611c3f565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526018602052604090205460ff600160a01b9092048216159116806118d857506001600160a01b03851660009081526018602052604090205460ff165b156118e1575060005b60008115611a94576001600160a01b0386166000908152601a602052604090205460ff16801561191357506000601254115b156119a157611938606461193260125488611ce790919063ffffffff16565b90611d66565b90506012546010548261194b919061232b565b611955919061234a565b6013600082825461196691906122d8565b909155505060125460115461197b908361232b565b611985919061234a565b6014600082825461199691906122d8565b90915550611a4e9050565b6001600160a01b0387166000908152601a602052604090205460ff1680156119cb57506000600f54115b15611a4e576119ea6064611932600f5488611ce790919063ffffffff16565b9050600f54600d54826119fd919061232b565b611a07919061234a565b60136000828254611a1891906122d8565b9091555050600f54600e54611a2d908361232b565b611a37919061234a565b60146000828254611a4891906122d8565b90915550505b8015611a8757611a5f873083611b36565b60135415611a8757611a7330601354611da8565b600254600955611a81611217565b60006013555b611a9181866123f4565b94505b611a9f878787611b36565b50505050505050565b60008184841115611acc5760405162461bcd60e51b815260040161094a9190612114565b506000611ad984866123f4565b95945050505050565b6001600160a01b0382166000818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611b5c5760405162461bcd60e51b815260040161094a9061236c565b6001600160a01b038216611b825760405162461bcd60e51b815260040161094a906123b1565b611bbf816040518060600160405280602681526020016124d2602691396001600160a01b0386166000908152602081905260409020549190611aa8565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611bee908261108c565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161120a565b306000908152602081905260408120549081611c59575050565b600754611c6790601461232b565b821115611c7f57600754611c7c90601461232b565b91505b611c8882611eb3565b60006014819055600a546040516001600160a01b039091169147919081818185875af1925050503d8060008114611cdb576040519150601f19603f3d011682016040523d82523d6000602084013e611ce0565b606091505b5050505050565b600082611cf657506000610a63565b6000611d02838561232b565b905082611d0f858361234a565b146110eb5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161094a565b60006110eb83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612082565b6001600160a01b038216611e085760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161094a565b611e45816040518060600160405280602281526020016124b0602291396001600160a01b0385166000908152602081905260409020549190611aa8565b6001600160a01b038316600090815260208190526040902055600254611e6b90826120b0565b6002556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ee857611ee861240b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611f6157600080fd5b505afa158015611f75573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f999190612421565b81600181518110611fac57611fac61240b565b60200260200101906001600160a01b031690816001600160a01b031681525050611ff7307f0000000000000000000000000000000000000000000000000000000000000000846110f2565b604051632e9ac14d60e11b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690635d35829a9061204c90859060009086903090429060040161243e565b600060405180830381600087803b15801561206657600080fd5b505af115801561207a573d6000803e3d6000fd5b505050505050565b600081836120a35760405162461bcd60e51b815260040161094a9190612114565b506000611ad9848661234a565b60006110eb83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611aa8565b6000806040838503121561210557600080fd5b50508035926020909101359150565b600060208083528351808285015260005b8181101561214157858101830151858201604001528201612125565b81811115612153576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610aae57600080fd5b6000806040838503121561219157600080fd5b823561219c81612169565b946020939093013593505050565b6000602082840312156121bc57600080fd5b81356110eb81612169565b6000602082840312156121d957600080fd5b5035919050565b6000806000606084860312156121f557600080fd5b833561220081612169565b9250602084013561221081612169565b929592945050506040919091013590565b6000806040838503121561223457600080fd5b823561223f81612169565b91506020830135801515811461225457600080fd5b809150509250929050565b6000806040838503121561227257600080fd5b823561227d81612169565b9150602083013561225481612169565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156122eb576122eb6122c2565b500190565b600181811c9082168061230457607f821691505b6020821081141561232557634e487b7160e01b600052602260045260246000fd5b50919050565b6000816000190483118215151615612345576123456122c2565b500290565b60008261236757634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612406576124066122c2565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561243357600080fd5b81516110eb81612169565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561248e5784516001600160a01b031683529383019391830191600101612469565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204f56a24443b1a49288ca8781bc02ccf6fd01d1706d3e4fd05e322062e33febe364736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106102cd5760003560e01c80637571336a11610175578063a9059cbb116100dc578063c8c8ebe411610095578063e71dc3f51161006f578063e71dc3f5146108be578063f203acb6146108d4578063f2fde38b146108ea578063f8b45b051461090a57600080fd5b8063c8c8ebe41461084c578063d85ba06314610862578063dd62ed3e1461087857600080fd5b8063a9059cbb1461078b578063adb873bd146107ab578063b62496f5146107c1578063bbc0c742146107f1578063c024666814610812578063c876d0b91461083257600080fd5b80639a7a23d61161012e5780639a7a23d6146106e95780639c3b4fdc146107095780639e01c1f61461071f5780639fdc482414610735578063a0d82dc514610755578063a457c2d71461076b57600080fd5b80637571336a1461064a5780637ab439831461066a57806382eaacd4146106805780638da5cb5b146106a057806395d89b41146106be578063975d71e2146106d357600080fd5b8063313ce5671161023457806365bdd43b116101ed5780636a486a8e116101c75780636a486a8e146105c85780636ddd1713146105de57806370a08231146105ff578063715018a61461063557600080fd5b806365bdd43b1461057c57806366ca9b83146105925780636876715f146105b257600080fd5b8063313ce5671461049d57806339509351146104b95780633f295529146104d957806349bd5a5e146104ee5780634a62bb65146105225780634fbee1931461054357600080fd5b80631694505e116102865780631694505e146103c657806318160ddd146104125780631db272b3146104275780631fa07da51461044757806323b872dd1461046757806327c8f8351461048757600080fd5b806302dbd8f8146102d9578063047fc9aa146102fb57806306fdde0314610324578063095ea7b31461034657806310d5de5314610376578063150de0bb146103a657600080fd5b366102d457005b600080fd5b3480156102e557600080fd5b506102f96102f43660046120f2565b610920565b005b34801561030757600080fd5b5061031160095481565b6040519081526020015b60405180910390f35b34801561033057600080fd5b506103396109c0565b60405161031b9190612114565b34801561035257600080fd5b5061036661036136600461217e565b610a52565b604051901515815260200161031b565b34801561038257600080fd5b506103666103913660046121aa565b60196020526000908152604090205460ff1681565b3480156103b257600080fd5b506102f96103c13660046121c7565b610a69565b3480156103d257600080fd5b506103fa7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161031b565b34801561041e57600080fd5b50600254610311565b34801561043357600080fd5b506102f96104423660046121aa565b610ab1565b34801561045357600080fd5b506102f96104623660046121c7565b610afd565b34801561047357600080fd5b506103666104823660046121e0565b610b42565b34801561049357600080fd5b506103fa61dead81565b3480156104a957600080fd5b506040516006815260200161031b565b3480156104c557600080fd5b506103666104d436600461217e565b610bab565b3480156104e557600080fd5b506102f9610be1565b3480156104fa57600080fd5b506103fa7f000000000000000000000000a25b85d0062e50c51ade15b4d8af4d0b87ef8afe81565b34801561052e57600080fd5b50600a5461036690600160a01b900460ff1681565b34801561054f57600080fd5b5061036661055e3660046121aa565b6001600160a01b031660009081526018602052604090205460ff1690565b34801561058857600080fd5b5061031160075481565b34801561059e57600080fd5b506102f96105ad3660046120f2565b610c46565b3480156105be57600080fd5b5061031160135481565b3480156105d457600080fd5b5061031160125481565b3480156105ea57600080fd5b50600a5461036690600160b01b900460ff1681565b34801561060b57600080fd5b5061031161061a3660046121aa565b6001600160a01b031660009081526020819052604090205490565b34801561064157600080fd5b506102f9610cd9565b34801561065657600080fd5b506102f9610665366004612221565b610d4d565b34801561067657600080fd5b5061031160155481565b34801561068c57600080fd5b50600a546103fa906001600160a01b031681565b3480156106ac57600080fd5b506005546001600160a01b03166103fa565b3480156106ca57600080fd5b50610339610da2565b3480156106df57600080fd5b5061031160165481565b3480156106f557600080fd5b506102f9610704366004612221565b610db1565b34801561071557600080fd5b50610311600e5481565b34801561072b57600080fd5b5061031160145481565b34801561074157600080fd5b506102f96107503660046121c7565b610e8d565b34801561076157600080fd5b5061031160115481565b34801561077757600080fd5b5061036661078636600461217e565b610ebc565b34801561079757600080fd5b506103666107a636600461217e565b610f0b565b3480156107b757600080fd5b5061031160105481565b3480156107cd57600080fd5b506103666107dc3660046121aa565b601a6020526000908152604090205460ff1681565b3480156107fd57600080fd5b50600a5461036690600160a81b900460ff1681565b34801561081e57600080fd5b506102f961082d366004612221565b610f18565b34801561083e57600080fd5b50600c546103669060ff1681565b34801561085857600080fd5b5061031160065481565b34801561086e57600080fd5b50610311600f5481565b34801561088457600080fd5b5061031161089336600461225f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156108ca57600080fd5b50610311600d5481565b3480156108e057600080fd5b5061031160175481565b3480156108f657600080fd5b506102f96109053660046121aa565b610fa1565b34801561091657600080fd5b5061031160085481565b6005546001600160a01b031633146109535760405162461bcd60e51b815260040161094a9061228d565b60405180910390fd5b6010829055601181905561096781836122d8565b6012819055601410156109bc5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c657373000000604482015260640161094a565b5050565b6060600380546109cf906122f0565b80601f01602080910402602001604051908101604052809291908181526020018280546109fb906122f0565b8015610a485780601f10610a1d57610100808354040283529160200191610a48565b820191906000526020600020905b815481529060010190602001808311610a2b57829003601f168201915b5050505050905090565b6000610a5f3384846110f2565b5060015b92915050565b6005546001600160a01b03163314610a935760405162461bcd60e51b815260040161094a9061228d565b6001811015610aa157600080fd5b6015819055610aae611217565b50565b6005546001600160a01b03163314610adb5760405162461bcd60e51b815260040161094a9061228d565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610b275760405162461bcd60e51b815260040161094a9061228d565b6001811015610b3557600080fd5b6016819055610aae611217565b6000610b4f848484611277565b610ba18433610b9c856040518060600160405280602881526020016124f8602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611aa8565b6110f2565b5060019392505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610a5f918590610b9c908661108c565b6005546001600160a01b03163314610c0b5760405162461bcd60e51b815260040161094a9061228d565b6002600d8190556000600e819055610c22916122d8565b600f556002601081905560016011819055610c3c916122d8565b6012556005601755565b6005546001600160a01b03163314610c705760405162461bcd60e51b815260040161094a9061228d565b600d829055600e819055610c8481836122d8565b600f819055601410156109bc5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c657373000000604482015260640161094a565b6005546001600160a01b03163314610d035760405162461bcd60e51b815260040161094a9061228d565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610d775760405162461bcd60e51b815260040161094a9061228d565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6060600480546109cf906122f0565b6005546001600160a01b03163314610ddb5760405162461bcd60e51b815260040161094a9061228d565b7f000000000000000000000000a25b85d0062e50c51ade15b4d8af4d0b87ef8afe6001600160a01b0316826001600160a01b03161415610e835760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161094a565b6109bc8282611ae2565b6005546001600160a01b03163314610eb75760405162461bcd60e51b815260040161094a9061228d565b601755565b6000610a5f3384610b9c85604051806060016040528060258152602001612520602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611aa8565b6000610a5f338484611277565b6005546001600160a01b03163314610f425760405162461bcd60e51b815260040161094a9061228d565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610fcb5760405162461bcd60e51b815260040161094a9061228d565b6001600160a01b0381166110305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161094a565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b60008061109983856122d8565b9050838110156110eb5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161094a565b9392505050565b6001600160a01b0383166111545760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161094a565b6001600160a01b0382166111b55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161094a565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6103e860165460095461122a919061232b565b611234919061234a565b6006556009546127109061124990600561232b565b611253919061234a565b6007556015546009546064916112689161232b565b611272919061234a565b600855565b6001600160a01b03831661129d5760405162461bcd60e51b815260040161094a9061236c565b6001600160a01b0382166112c35760405162461bcd60e51b815260040161094a906123b1565b806112d9576112d483836000611b36565b505050565b600a54600160a01b900460ff16156117aa576005546001600160a01b0384811691161480159061131757506005546001600160a01b03838116911614155b801561132b57506001600160a01b03821615155b801561134257506001600160a01b03821661dead14155b80156113585750600554600160a01b900460ff16155b156117aa57600a54600160a81b900460ff166113f2576001600160a01b03831660009081526018602052604090205460ff16806113ad57506001600160a01b03821660009081526018602052604090205460ff165b6113f25760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161094a565b600c5460ff1615611544576005546001600160a01b0383811691161480159061144d57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b801561148b57507f000000000000000000000000a25b85d0062e50c51ade15b4d8af4d0b87ef8afe6001600160a01b0316826001600160a01b031614155b1561154457326000908152600b602052604090205443116115265760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a40161094a565b60175461153390436122d8565b326000908152600b60205260409020555b6001600160a01b0383166000908152601a602052604090205460ff16801561158557506001600160a01b03821660009081526019602052604090205460ff16155b15611669576006548111156115fa5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161094a565b6008546001600160a01b03831660009081526020819052604090205461162090836122d8565b11156116645760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161094a565b6117aa565b6001600160a01b0382166000908152601a602052604090205460ff1680156116aa57506001600160a01b03831660009081526019602052604090205460ff16155b15611720576006548111156116645760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606482015260840161094a565b6001600160a01b03821660009081526019602052604090205460ff166117aa576008546001600160a01b03831660009081526020819052604090205461176690836122d8565b11156117aa5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161094a565b30600090815260208190526040902054600754811080159081906117d85750600554600160a01b900460ff16155b80156117ed5750600a54600160b01b900460ff165b801561181257506001600160a01b0385166000908152601a602052604090205460ff16155b801561183757506001600160a01b03851660009081526018602052604090205460ff16155b801561185c57506001600160a01b03841660009081526018602052604090205460ff16155b1561188a576005805460ff60a01b1916600160a01b17905561187c611c3f565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526018602052604090205460ff600160a01b9092048216159116806118d857506001600160a01b03851660009081526018602052604090205460ff165b156118e1575060005b60008115611a94576001600160a01b0386166000908152601a602052604090205460ff16801561191357506000601254115b156119a157611938606461193260125488611ce790919063ffffffff16565b90611d66565b90506012546010548261194b919061232b565b611955919061234a565b6013600082825461196691906122d8565b909155505060125460115461197b908361232b565b611985919061234a565b6014600082825461199691906122d8565b90915550611a4e9050565b6001600160a01b0387166000908152601a602052604090205460ff1680156119cb57506000600f54115b15611a4e576119ea6064611932600f5488611ce790919063ffffffff16565b9050600f54600d54826119fd919061232b565b611a07919061234a565b60136000828254611a1891906122d8565b9091555050600f54600e54611a2d908361232b565b611a37919061234a565b60146000828254611a4891906122d8565b90915550505b8015611a8757611a5f873083611b36565b60135415611a8757611a7330601354611da8565b600254600955611a81611217565b60006013555b611a9181866123f4565b94505b611a9f878787611b36565b50505050505050565b60008184841115611acc5760405162461bcd60e51b815260040161094a9190612114565b506000611ad984866123f4565b95945050505050565b6001600160a01b0382166000818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611b5c5760405162461bcd60e51b815260040161094a9061236c565b6001600160a01b038216611b825760405162461bcd60e51b815260040161094a906123b1565b611bbf816040518060600160405280602681526020016124d2602691396001600160a01b0386166000908152602081905260409020549190611aa8565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611bee908261108c565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161120a565b306000908152602081905260408120549081611c59575050565b600754611c6790601461232b565b821115611c7f57600754611c7c90601461232b565b91505b611c8882611eb3565b60006014819055600a546040516001600160a01b039091169147919081818185875af1925050503d8060008114611cdb576040519150601f19603f3d011682016040523d82523d6000602084013e611ce0565b606091505b5050505050565b600082611cf657506000610a63565b6000611d02838561232b565b905082611d0f858361234a565b146110eb5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161094a565b60006110eb83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612082565b6001600160a01b038216611e085760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161094a565b611e45816040518060600160405280602281526020016124b0602291396001600160a01b0385166000908152602081905260409020549190611aa8565b6001600160a01b038316600090815260208190526040902055600254611e6b90826120b0565b6002556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ee857611ee861240b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611f6157600080fd5b505afa158015611f75573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f999190612421565b81600181518110611fac57611fac61240b565b60200260200101906001600160a01b031690816001600160a01b031681525050611ff7307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846110f2565b604051632e9ac14d60e11b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d1690635d35829a9061204c90859060009086903090429060040161243e565b600060405180830381600087803b15801561206657600080fd5b505af115801561207a573d6000803e3d6000fd5b505050505050565b600081836120a35760405162461bcd60e51b815260040161094a9190612114565b506000611ad9848661234a565b60006110eb83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611aa8565b6000806040838503121561210557600080fd5b50508035926020909101359150565b600060208083528351808285015260005b8181101561214157858101830151858201604001528201612125565b81811115612153576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610aae57600080fd5b6000806040838503121561219157600080fd5b823561219c81612169565b946020939093013593505050565b6000602082840312156121bc57600080fd5b81356110eb81612169565b6000602082840312156121d957600080fd5b5035919050565b6000806000606084860312156121f557600080fd5b833561220081612169565b9250602084013561221081612169565b929592945050506040919091013590565b6000806040838503121561223457600080fd5b823561223f81612169565b91506020830135801515811461225457600080fd5b809150509250929050565b6000806040838503121561227257600080fd5b823561227d81612169565b9150602083013561225481612169565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156122eb576122eb6122c2565b500190565b600181811c9082168061230457607f821691505b6020821081141561232557634e487b7160e01b600052602260045260246000fd5b50919050565b6000816000190483118215151615612345576123456122c2565b500290565b60008261236757634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612406576124066122c2565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561243357600080fd5b81516110eb81612169565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561248e5784516001600160a01b031683529383019391830191600101612469565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204f56a24443b1a49288ca8781bc02ccf6fd01d1706d3e4fd05e322062e33febe364736f6c63430008090033
Deployed Bytecode Sourcemap
29406:11338:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34211:273;;;;;;;;;;-1:-1:-1;34211:273:0;;;;;:::i;:::-;;:::i;:::-;;29803:21;;;;;;;;;;;;;;;;;;;413:25:1;;;401:2;386:18;29803:21:0;;;;;;;;7537:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;9703:169::-;;;;;;;;;;-1:-1:-1;9703:169:0;;;;;:::i;:::-;;:::i;:::-;;;1672:14:1;;1665:22;1647:41;;1635:2;1620:18;9703:169:0;1507:187:1;30634:64:0;;;;;;;;;;-1:-1:-1;30634:64:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33502:157;;;;;;;;;;-1:-1:-1;33502:157:0;;;;;:::i;:::-;;:::i;29481:51::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2327:32:1;;;2309:51;;2297:2;2282:18;29481:51:0;2136:230:1;8656:108:0;;;;;;;;;;-1:-1:-1;8744:12:0;;8656:108;;34492:107;;;;;;;;;;-1:-1:-1;34492:107:0;;;;;:::i;:::-;;:::i;33339:155::-;;;;;;;;;;-1:-1:-1;33339:155:0;;;;;:::i;:::-;;:::i;10354:355::-;;;;;;;;;;-1:-1:-1;10354:355:0;;;;;:::i;:::-;;:::i;29584:53::-;;;;;;;;;;;;29630:6;29584:53;;8499:92;;;;;;;;;;-1:-1:-1;8499:92:0;;8582:1;3182:36:1;;3170:2;3155:18;8499:92:0;3040:184:1;11118:218:0;;;;;;;;;;-1:-1:-1;11118:218:0;;;;;:::i;:::-;;:::i;33048:279::-;;;;;;;;;;;;;:::i;29539:38::-;;;;;;;;;;;;;;;29872:33;;;;;;;;;;-1:-1:-1;29872:33:0;;;;-1:-1:-1;;;29872:33:0;;;;;;35474:125;;;;;;;;;;-1:-1:-1;35474:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;35563:28:0;35539:4;35563:28;;;:19;:28;;;;;;;;;35474:125;29726:33;;;;;;;;;;;;;;;;33933:266;;;;;;;;;;-1:-1:-1;33933:266:0;;;;;:::i;:::-;;:::i;30319:28::-;;;;;;;;;;;;;;;;30275;;;;;;;;;;;;;;;;29951:30;;;;;;;;;;-1:-1:-1;29951:30:0;;;;-1:-1:-1;;;29951:30:0;;;;;;8827:127;;;;;;;;;;-1:-1:-1;8827:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;8928:18:0;8901:7;8928:18;;;;;;;;;;;;8827:127;22001:148;;;;;;;;;;;;;:::i;33777:144::-;;;;;;;;;;-1:-1:-1;33777:144:0;;;;;:::i;:::-;;:::i;30390:26::-;;;;;;;;;;;;;;;;29833;;;;;;;;;;-1:-1:-1;29833:26:0;;;;-1:-1:-1;;;;;29833:26:0;;;21359:79;;;;;;;;;;-1:-1:-1;21424:6:0;;-1:-1:-1;;;;;21424:6:0;21359:79;;7756:104;;;;;;;;;;;;;:::i;30423:25::-;;;;;;;;;;;;;;;;35026:244;;;;;;;;;;-1:-1:-1;35026:244:0;;;;;:::i;:::-;;:::i;30143:24::-;;;;;;;;;;;;;;;;30354:27;;;;;;;;;;;;;;;;33667:98;;;;;;;;;;-1:-1:-1;33667:98:0;;;;;:::i;:::-;;:::i;30243:25::-;;;;;;;;;;;;;;;;11839:269;;;;;;;;;;-1:-1:-1;11839:269:0;;;;;:::i;:::-;;:::i;9167:175::-;;;;;;;;;;-1:-1:-1;9167:175:0;;;;;:::i;:::-;;:::i;30210:26::-;;;;;;;;;;;;;;;;30856:58;;;;;;;;;;-1:-1:-1;30856:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29912:32;;;;;;;;;;-1:-1:-1;29912:32:0;;;;-1:-1:-1;;;29912:32:0;;;;;;34607:182;;;;;;;;;;-1:-1:-1;34607:182:0;;;;;:::i;:::-;;:::i;30063:39::-;;;;;;;;;;-1:-1:-1;30063:39:0;;;;;;;;29684:35;;;;;;;;;;;;;;;;30174:27;;;;;;;;;;;;;;;;9405:151;;;;;;;;;;-1:-1:-1;9405:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;9521:18:0;;;9494:7;9521:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9405:151;30111:25;;;;;;;;;;;;;;;;30455;;;;;;;;;;;;;;;;22304:244;;;;;;;;;;-1:-1:-1;22304:244:0;;;;;:::i;:::-;;:::i;29766:24::-;;;;;;;;;;;;;;;;34211:273;21571:6;;-1:-1:-1;;;;;21571:6:0;253:10;21571:22;21563:67;;;;-1:-1:-1;;;21563:67:0;;;;;;;:::i;:::-;;;;;;;;;34300:11:::1;:22:::0;;;34333:10:::1;:20:::0;;;34380:24:::1;34346:7:::0;34314:8;34380:24:::1;:::i;:::-;34364:13;:40:::0;;;34440:2:::1;-1:-1:-1::0;34423:19:0::1;34415:61;;;::::0;-1:-1:-1;;;34415:61:0;;4871:2:1;34415:61:0::1;::::0;::::1;4853:21:1::0;4910:2;4890:18;;;4883:30;4949:31;4929:18;;;4922:59;4998:18;;34415:61:0::1;4669:353:1::0;34415:61:0::1;34211:273:::0;;:::o;7537:100::-;7591:13;7624:5;7617:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7537:100;:::o;9703:169::-;9786:4;9803:39;253:10;9826:7;9835:6;9803:8;:39::i;:::-;-1:-1:-1;9860:4:0;9703:169;;;;;:::o;33502:157::-;21571:6;;-1:-1:-1;;;;;21571:6:0;253:10;21571:22;21563:67;;;;-1:-1:-1;;;21563:67:0;;;;;;;:::i;:::-;33593:1:::1;33583:6;:11;;33575:20;;;::::0;::::1;;33606:11;:20:::0;;;33637:14:::1;:12;:14::i;:::-;33502:157:::0;:::o;34492:107::-;21571:6;;-1:-1:-1;;;;;21571:6:0;253:10;21571:22;21563:67;;;;-1:-1:-1;;;21563:67:0;;;;;;;:::i;:::-;34568:11:::1;:23:::0;;-1:-1:-1;;;;;;34568:23:0::1;-1:-1:-1::0;;;;;34568:23:0;;;::::1;::::0;;;::::1;::::0;;34492:107::o;33339:155::-;21571:6;;-1:-1:-1;;;;;21571:6:0;253:10;21571:22;21563:67;;;;-1:-1:-1;;;21563:67:0;;;;;;;:::i;:::-;33429:1:::1;33419:6;:11;;33411:20;;;::::0;::::1;;33442:10;:19:::0;;;33472:14:::1;:12;:14::i;10354:355::-:0;10494:4;10511:36;10521:6;10529:9;10540:6;10511:9;:36::i;:::-;10558:121;10567:6;253:10;10589:89;10627:6;10589:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10589:19:0;;;;;;:11;:19;;;;;;;;253:10;10589:33;;;;;;;;;;:37;:89::i;:::-;10558:8;:121::i;:::-;-1:-1:-1;10697:4:0;10354:355;;;;;:::o;11118:218::-;253:10;11206:4;11255:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11255:34:0;;;;;;;;;;11206:4;;11223:83;;11246:7;;11255:50;;11294:10;11255:38;:50::i;33048:279::-;21571:6;;-1:-1:-1;;;;;21571:6:0;253:10;21571:22;21563:67;;;;-1:-1:-1;;;21563:67:0;;;;;;;:::i;:::-;33115:1:::1;33102:10;:14:::0;;;33139:1:::1;33127:9;:13:::0;;;33166:22:::1;::::0;::::1;:::i;:::-;33151:12;:37:::0;33215:1:::1;33201:11;:15:::0;;;33240:1:::1;33227:10;:14:::0;;;33268:24:::1;::::0;::::1;:::i;:::-;33252:13;:40:::0;33318:1:::1;33305:10;:14:::0;33048:279::o;33933:266::-;21571:6;;-1:-1:-1;;;;;21571:6:0;253:10;21571:22;21563:67;;;;-1:-1:-1;;;21563:67:0;;;;;;;:::i;:::-;34021:10:::1;:21:::0;;;34053:9:::1;:19:::0;;;34098:22:::1;34065:7:::0;34034:8;34098:22:::1;:::i;:::-;34083:12;:37:::0;;;34155:2:::1;-1:-1:-1::0;34139:18:0::1;34131:60;;;::::0;-1:-1:-1;;;34131:60:0;;5614:2:1;34131:60:0::1;::::0;::::1;5596:21:1::0;5653:2;5633:18;;;5626:30;5692:31;5672:18;;;5665:59;5741:18;;34131:60:0::1;5412:353:1::0;22001:148:0;21571:6;;-1:-1:-1;;;;;21571:6:0;253:10;21571:22;21563:67;;;;-1:-1:-1;;;21563:67:0;;;;;;;:::i;:::-;22092:6:::1;::::0;22071:40:::1;::::0;22108:1:::1;::::0;-1:-1:-1;;;;;22092:6:0::1;::::0;22071:40:::1;::::0;22108:1;;22071:40:::1;22122:6;:19:::0;;-1:-1:-1;;;;;;22122:19:0::1;::::0;;22001:148::o;33777:144::-;21571:6;;-1:-1:-1;;;;;21571:6:0;253:10;21571:22;21563:67;;;;-1:-1:-1;;;21563:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33867:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;33867:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;33777:144::o;7756:104::-;7812:13;7845:7;7838:14;;;;;:::i;35026:244::-;21571:6;;-1:-1:-1;;;;;21571:6:0;253:10;21571:22;21563:67;;;;-1:-1:-1;;;21563:67:0;;;;;;;:::i;:::-;35133:13:::1;-1:-1:-1::0;;;;;35125:21:0::1;:4;-1:-1:-1::0;;;;;35125:21:0::1;;;35117:91;;;::::0;-1:-1:-1;;;35117:91:0;;5972:2:1;35117:91:0::1;::::0;::::1;5954:21:1::0;6011:2;5991:18;;;5984:30;6050:34;6030:18;;;6023:62;6121:27;6101:18;;;6094:55;6166:19;;35117:91:0::1;5770:421:1::0;35117:91:0::1;35221:41;35250:4;35256:5;35221:28;:41::i;33667:98::-:0;21571:6;;-1:-1:-1;;;;;21571:6:0;253:10;21571:22;21563:67;;;;-1:-1:-1;;;21563:67:0;;;;;;;:::i;:::-;33738:10:::1;:19:::0;33667:98::o;11839:269::-;11932:4;11949:129;253:10;11972:7;11981:96;12020:15;11981:96;;;;;;;;;;;;;;;;;253:10;11981:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11981:34:0;;;;;;;;;;;;:38;:96::i;9167:175::-;9253:4;9270:42;253:10;9294:9;9305:6;9270:9;:42::i;34607:182::-;21571:6;;-1:-1:-1;;;;;21571:6:0;253:10;21571:22;21563:67;;;;-1:-1:-1;;;21563:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34692:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;34692:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;34747:34;;1647:41:1;;;34747:34:0::1;::::0;1620:18:1;34747:34:0::1;;;;;;;34607:182:::0;;:::o;22304:244::-;21571:6;;-1:-1:-1;;;;;21571:6:0;253:10;21571:22;21563:67;;;;-1:-1:-1;;;21563:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22393:22:0;::::1;22385:73;;;::::0;-1:-1:-1;;;22385:73:0;;6398:2:1;22385:73:0::1;::::0;::::1;6380:21:1::0;6437:2;6417:18;;;6410:30;6476:34;6456:18;;;6449:62;-1:-1:-1;;;6527:18:1;;;6520:36;6573:19;;22385:73:0::1;6196:402:1::0;22385:73:0::1;22495:6;::::0;22474:38:::1;::::0;-1:-1:-1;;;;;22474:38:0;;::::1;::::0;22495:6:::1;::::0;22474:38:::1;::::0;22495:6:::1;::::0;22474:38:::1;22523:6;:17:::0;;-1:-1:-1;;;;;;22523:17:0::1;-1:-1:-1::0;;;;;22523:17:0;;;::::1;::::0;;;::::1;::::0;;22304:244::o;16403:181::-;16461:7;;16493:5;16497:1;16493;:5;:::i;:::-;16481:17;;16522:1;16517;:6;;16509:46;;;;-1:-1:-1;;;16509:46:0;;6805:2:1;16509:46:0;;;6787:21:1;6844:2;6824:18;;;6817:30;6883:29;6863:18;;;6856:57;6930:18;;16509:46:0;6603:351:1;16509:46:0;16575:1;16403:181;-1:-1:-1;;;16403:181:0:o;15025:380::-;-1:-1:-1;;;;;15161:19:0;;15153:68;;;;-1:-1:-1;;;15153:68:0;;7161:2:1;15153:68:0;;;7143:21:1;7200:2;7180:18;;;7173:30;7239:34;7219:18;;;7212:62;-1:-1:-1;;;7290:18:1;;;7283:34;7334:19;;15153:68:0;6959:400:1;15153:68:0;-1:-1:-1;;;;;15240:21:0;;15232:68;;;;-1:-1:-1;;;15232:68:0;;7566:2:1;15232:68:0;;;7548:21:1;7605:2;7585:18;;;7578:30;7644:34;7624:18;;;7617:62;-1:-1:-1;;;7695:18:1;;;7688:32;7737:19;;15232:68:0;7364:398:1;15232:68:0;-1:-1:-1;;;;;15313:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15365:32;;413:25:1;;;15365:32:0;;386:18:1;15365:32:0;;;;;;;;15025:380;;;:::o;34797:221::-;34885:4;34872:10;;34863:6;;:19;;;;:::i;:::-;:26;;;;:::i;:::-;34840:20;:49;34921:6;;34934:5;;34921:10;;34930:1;34921:10;:::i;:::-;:18;;;;:::i;:::-;34900;:39;34993:11;;34984:6;;35007:3;;34984:20;;;:::i;:::-;:26;;;;:::i;:::-;34972:9;:38;34797:221::o;35611:4041::-;-1:-1:-1;;;;;35743:18:0;;35735:68;;;;-1:-1:-1;;;35735:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35822:16:0;;35814:64;;;;-1:-1:-1;;;35814:64:0;;;;;;;:::i;:::-;35903:11;35900:92;;35931:28;35947:4;35953:2;35957:1;35931:15;:28::i;:::-;35611:4041;;;:::o;35900:92::-;36015:14;;-1:-1:-1;;;36015:14:0;;;;36012:1854;;;21424:6;;-1:-1:-1;;;;;36067:15:0;;;21424:6;;36067:15;;;;:49;;-1:-1:-1;21424:6:0;;-1:-1:-1;;;;;36103:13:0;;;21424:6;;36103:13;;36067:49;:86;;;;-1:-1:-1;;;;;;36137:16:0;;;;36067:86;:128;;;;-1:-1:-1;;;;;;36174:21:0;;36188:6;36174:21;;36067:128;:158;;;;-1:-1:-1;36217:8:0;;-1:-1:-1;;;36217:8:0;;;;36216:9;36067:158;36045:1810;;;36263:13;;-1:-1:-1;;;36263:13:0;;;;36259:148;;-1:-1:-1;;;;;36308:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;36337:23:0;;;;;;:19;:23;;;;;;;;36308:52;36300:87;;;;-1:-1:-1;;;36300:87:0;;9174:2:1;36300:87:0;;;9156:21:1;9213:2;9193:18;;;9186:30;-1:-1:-1;;;9232:18:1;;;9225:52;9294:18;;36300:87:0;8972:346:1;36300:87:0;36565:20;;;;36561:436;;;21424:6;;-1:-1:-1;;;;;36613:13:0;;;21424:6;;36613:13;;;;:47;;;36644:15;-1:-1:-1;;;;;36630:30:0;:2;-1:-1:-1;;;;;36630:30:0;;;36613:47;:79;;;;;36678:13;-1:-1:-1;;;;;36664:28:0;:2;-1:-1:-1;;;;;36664:28:0;;;36613:79;36609:369;;;36757:9;36728:39;;;;:28;:39;;;;;;36770:12;-1:-1:-1;36720:140:0;;;;-1:-1:-1;;;36720:140:0;;9525:2:1;36720:140:0;;;9507:21:1;9564:2;9544:18;;;9537:30;9603:34;9583:18;;;9576:62;9674:34;9654:18;;;9647:62;-1:-1:-1;;;9725:19:1;;;9718:40;9775:19;;36720:140:0;9323:477:1;36720:140:0;36944:10;;36929:25;;:12;:25;:::i;:::-;36916:9;36887:39;;;;:28;:39;;;;;:67;36609:369;-1:-1:-1;;;;;37066:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;37102:35:0;;;;;;:31;:35;;;;;;;;37101:36;37066:71;37062:778;;;37184:20;;37174:6;:30;;37166:96;;;;-1:-1:-1;;;37166:96:0;;10007:2:1;37166:96:0;;;9989:21:1;10046:2;10026:18;;;10019:30;10085:34;10065:18;;;10058:62;-1:-1:-1;;;10136:18:1;;;10129:51;10197:19;;37166:96:0;9805:417:1;37166:96:0;37323:9;;-1:-1:-1;;;;;8928:18:0;;8901:7;8928:18;;;;;;;;;;;37297:22;;:6;:22;:::i;:::-;:35;;37289:67;;;;-1:-1:-1;;;37289:67:0;;10429:2:1;37289:67:0;;;10411:21:1;10468:2;10448:18;;;10441:30;-1:-1:-1;;;10487:18:1;;;10480:49;10546:18;;37289:67:0;10227:343:1;37289:67:0;37062:778;;;-1:-1:-1;;;;;37450:29:0;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;;;;;;37484:37:0;;;;;;:31;:37;;;;;;;;37483:38;37450:71;37446:394;;;37568:20;;37558:6;:30;;37550:97;;;;-1:-1:-1;;;37550:97:0;;10777:2:1;37550:97:0;;;10759:21:1;10816:2;10796:18;;;10789:30;10855:34;10835:18;;;10828:62;-1:-1:-1;;;10906:18:1;;;10899:52;10968:19;;37550:97:0;10575:418:1;37446:394:0;-1:-1:-1;;;;;37694:35:0;;;;;;:31;:35;;;;;;;;37690:150;;37787:9;;-1:-1:-1;;;;;8928:18:0;;8901:7;8928:18;;;;;;;;;;;37761:22;;:6;:22;:::i;:::-;:35;;37753:67;;;;-1:-1:-1;;;37753:67:0;;10429:2:1;37753:67:0;;;10411:21:1;10468:2;10448:18;;;10441:30;-1:-1:-1;;;10487:18:1;;;10480:49;10546:18;;37753:67:0;10227:343:1;37753:67:0;37925:4;37876:28;8928:18;;;;;;;;;;;37991;;37967:42;;;;;;;38040:33;;-1:-1:-1;38065:8:0;;-1:-1:-1;;;38065:8:0;;;;38064:9;38040:33;:61;;;;-1:-1:-1;38090:11:0;;-1:-1:-1;;;38090:11:0;;;;38040:61;:110;;;;-1:-1:-1;;;;;;38119:31:0;;;;;;:25;:31;;;;;;;;38118:32;38040:110;:153;;;;-1:-1:-1;;;;;;38168:25:0;;;;;;:19;:25;;;;;;;;38167:26;38040:153;:194;;;;-1:-1:-1;;;;;;38211:23:0;;;;;;:19;:23;;;;;;;;38210:24;38040:194;38022:338;;;38261:8;:15;;-1:-1:-1;;;;38261:15:0;-1:-1:-1;;;38261:15:0;;;38305:10;:8;:10::i;:::-;38332:8;:16;;-1:-1:-1;;;;38332:16:0;;;38022:338;38396:8;;-1:-1:-1;;;;;38420:25:0;;38380:12;38420:25;;;:19;:25;;;;;;38396:8;-1:-1:-1;;;38396:8:0;;;;;38395:9;;38420:25;;:52;;-1:-1:-1;;;;;;38449:23:0;;;;;;:19;:23;;;;;;;;38420:52;38417:99;;;-1:-1:-1;38499:5:0;38417:99;38536:12;38568:7;38565:1034;;;-1:-1:-1;;;;;38619:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;38668:1;38652:13;;:17;38619:50;38615:574;;;38696:34;38726:3;38696:25;38707:13;;38696:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;38689:41;;38787:13;;38773:11;;38766:4;:18;;;;:::i;:::-;:34;;;;:::i;:::-;38749:13;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;38855:13:0;;38842:10;;38835:17;;:4;:17;:::i;:::-;:33;;;;:::i;:::-;38819:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;38615:574:0;;-1:-1:-1;38615:574:0;;-1:-1:-1;;;;;38931:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;38981:1;38966:12;;:16;38931:51;38928:261;;;39009:33;39038:3;39009:24;39020:12;;39009:6;:10;;:24;;;;:::i;:33::-;39002:40;;39095:12;;39082:10;;39075:4;:17;;;;:::i;:::-;:32;;;;:::i;:::-;39058:13;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;39161:12:0;;39149:9;;39142:16;;:4;:16;:::i;:::-;:31;;;;:::i;:::-;39126:12;;:47;;;;;;;:::i;:::-;;;;-1:-1:-1;;38928:261:0;39220:8;;39217:334;;39252:42;39268:4;39282;39289;39252:15;:42::i;:::-;39317:13;;:17;39313:223;;39359:35;39373:4;39380:13;;39359:5;:35::i;:::-;8744:12;;39417:6;:22;39462:14;:12;:14::i;:::-;39515:1;39499:13;:17;39313:223;39573:14;39583:4;39573:14;;:::i;:::-;;;38565:1034;39611:33;39627:4;39633:2;39637:6;39611:15;:33::i;:::-;35724:3928;;;;35611:4041;;;:::o;17306:192::-;17392:7;17428:12;17420:6;;;;17412:29;;;;-1:-1:-1;;;17412:29:0;;;;;;;;:::i;:::-;-1:-1:-1;17452:9:0;17464:5;17468:1;17464;:5;:::i;:::-;17452:17;17306:192;-1:-1:-1;;;;;17306:192:0:o;35278:188::-;-1:-1:-1;;;;;35361:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;35361:39:0;;;;;;;;;;35418:40;;35361:39;;:31;35418:40;;;35278:188;;:::o;12598:573::-;-1:-1:-1;;;;;12738:20:0;;12730:70;;;;-1:-1:-1;;;12730:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12819:23:0;;12811:71;;;;-1:-1:-1;;;12811:71:0;;;;;;;:::i;:::-;12975;12997:6;12975:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12975:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;12955:17:0;;;:9;:17;;;;;;;;;;;:91;;;;13080:20;;;;;;;:32;;13105:6;13080:24;:32::i;:::-;-1:-1:-1;;;;;13057:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;13128:35;413:25:1;;;13057:20:0;;13128:35;;;;;;386:18:1;13128:35:0;267:177:1;40273:466:0;40356:4;40312:23;8928:18;;;;;;;;;;;;;40406:34;;40432:7;;40273:466::o;40406:34::-;40473:18;;:23;;40494:2;40473:23;:::i;:::-;40455:15;:41;40452:111;;;40528:18;;:23;;40549:2;40528:23;:::i;:::-;40510:41;;40452:111;40575:33;40592:15;40575:16;:33::i;:::-;40645:1;40630:12;:16;;;40680:11;;40672:59;;-1:-1:-1;;;;;40680:11:0;;;;40705:21;;40672:59;;40645:1;40672:59;40705:21;40680:11;40672:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40273:466:0:o;17757:471::-;17815:7;18060:6;18056:47;;-1:-1:-1;18090:1:0;18083:8;;18056:47;18115:9;18127:5;18131:1;18127;:5;:::i;:::-;18115:17;-1:-1:-1;18160:1:0;18151:5;18155:1;18115:17;18151:5;:::i;:::-;:10;18143:56;;;;-1:-1:-1;;;18143:56:0;;11540:2:1;18143:56:0;;;11522:21:1;11579:2;11559:18;;;11552:30;11618:34;11598:18;;;11591:62;-1:-1:-1;;;11669:18:1;;;11662:31;11710:19;;18143:56:0;11338:397:1;18704:132:0;18762:7;18789:39;18793:1;18796;18789:39;;;;;;;;;;;;;;;;;:3;:39::i;14169:418::-;-1:-1:-1;;;;;14253:21:0;;14245:67;;;;-1:-1:-1;;;14245:67:0;;11942:2:1;14245:67:0;;;11924:21:1;11981:2;11961:18;;;11954:30;12020:34;12000:18;;;11993:62;-1:-1:-1;;;12071:18:1;;;12064:31;12112:19;;14245:67:0;11740:397:1;14245:67:0;14408:68;14431:6;14408:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14408:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;14387:18:0;;:9;:18;;;;;;;;;;:89;14502:12;;:24;;14519:6;14502:16;:24::i;:::-;14487:12;:39;14542:37;;413:25:1;;;14568:1:0;;-1:-1:-1;;;;;14542:37:0;;;;;401:2:1;386:18;14542:37:0;;;;;;;14169:418;;:::o;39660:601::-;39812:16;;;39826:1;39812:16;;;;;;;;39788:21;;39812:16;;;;;;;;;;-1:-1:-1;39812:16:0;39788:40;;39857:4;39839;39844:1;39839:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;39839:23:0;;;-1:-1:-1;;;;;39839:23:0;;;;;39883:15;-1:-1:-1;;;;;39883:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39873:4;39878:1;39873:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;39873:32:0;;;-1:-1:-1;;;;;39873:32:0;;;;;39918:62;39935:4;39950:15;39968:11;39918:8;:62::i;:::-;40019:224;;-1:-1:-1;;;40019:224:0;;-1:-1:-1;;;;;40019:15:0;:66;;;;:224;;40100:11;;40126:1;;40170:4;;40197;;40217:15;;40019:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39715:546;39660:601;:::o;19332:278::-;19418:7;19453:12;19446:5;19438:28;;;;-1:-1:-1;;;19438:28:0;;;;;;;;:::i;:::-;-1:-1:-1;19477:9:0;19489:5;19493:1;19489;:5;:::i;16867:136::-;16925:7;16952:43;16956:1;16959;16952:43;;;;;;;;;;;;;;;;;:3;:43::i;14:248:1:-;82:6;90;143:2;131:9;122:7;118:23;114:32;111:52;;;159:1;156;149:12;111:52;-1:-1:-1;;182:23:1;;;252:2;237:18;;;224:32;;-1:-1:-1;14:248:1:o;449:597::-;561:4;590:2;619;608:9;601:21;651:6;645:13;694:6;689:2;678:9;674:18;667:34;719:1;729:140;743:6;740:1;737:13;729:140;;;838:14;;;834:23;;828:30;804:17;;;823:2;800:26;793:66;758:10;;729:140;;;887:6;884:1;881:13;878:91;;;957:1;952:2;943:6;932:9;928:22;924:31;917:42;878:91;-1:-1:-1;1030:2:1;1009:15;-1:-1:-1;;1005:29:1;990:45;;;;1037:2;986:54;;449:597;-1:-1:-1;;;449:597:1:o;1051:131::-;-1:-1:-1;;;;;1126:31:1;;1116:42;;1106:70;;1172:1;1169;1162:12;1187:315;1255:6;1263;1316:2;1304:9;1295:7;1291:23;1287:32;1284:52;;;1332:1;1329;1322:12;1284:52;1371:9;1358:23;1390:31;1415:5;1390:31;:::i;:::-;1440:5;1492:2;1477:18;;;;1464:32;;-1:-1:-1;;;1187:315:1:o;1699:247::-;1758:6;1811:2;1799:9;1790:7;1786:23;1782:32;1779:52;;;1827:1;1824;1817:12;1779:52;1866:9;1853:23;1885:31;1910:5;1885:31;:::i;1951:180::-;2010:6;2063:2;2051:9;2042:7;2038:23;2034:32;2031:52;;;2079:1;2076;2069:12;2031:52;-1:-1:-1;2102:23:1;;1951:180;-1:-1:-1;1951:180:1:o;2371:456::-;2448:6;2456;2464;2517:2;2505:9;2496:7;2492:23;2488:32;2485:52;;;2533:1;2530;2523:12;2485:52;2572:9;2559:23;2591:31;2616:5;2591:31;:::i;:::-;2641:5;-1:-1:-1;2698:2:1;2683:18;;2670:32;2711:33;2670:32;2711:33;:::i;:::-;2371:456;;2763:7;;-1:-1:-1;;;2817:2:1;2802:18;;;;2789:32;;2371:456::o;3229:416::-;3294:6;3302;3355:2;3343:9;3334:7;3330:23;3326:32;3323:52;;;3371:1;3368;3361:12;3323:52;3410:9;3397:23;3429:31;3454:5;3429:31;:::i;:::-;3479:5;-1:-1:-1;3536:2:1;3521:18;;3508:32;3578:15;;3571:23;3559:36;;3549:64;;3609:1;3606;3599:12;3549:64;3632:7;3622:17;;;3229:416;;;;;:::o;3650:388::-;3718:6;3726;3779:2;3767:9;3758:7;3754:23;3750:32;3747:52;;;3795:1;3792;3785:12;3747:52;3834:9;3821:23;3853:31;3878:5;3853:31;:::i;:::-;3903:5;-1:-1:-1;3960:2:1;3945:18;;3932:32;3973:33;3932:32;3973:33;:::i;4043:356::-;4245:2;4227:21;;;4264:18;;;4257:30;4323:34;4318:2;4303:18;;4296:62;4390:2;4375:18;;4043:356::o;4404:127::-;4465:10;4460:3;4456:20;4453:1;4446:31;4496:4;4493:1;4486:15;4520:4;4517:1;4510:15;4536:128;4576:3;4607:1;4603:6;4600:1;4597:13;4594:39;;;4613:18;;:::i;:::-;-1:-1:-1;4649:9:1;;4536:128::o;5027:380::-;5106:1;5102:12;;;;5149;;;5170:61;;5224:4;5216:6;5212:17;5202:27;;5170:61;5277:2;5269:6;5266:14;5246:18;5243:38;5240:161;;;5323:10;5318:3;5314:20;5311:1;5304:31;5358:4;5355:1;5348:15;5386:4;5383:1;5376:15;5240:161;;5027:380;;;:::o;7767:168::-;7807:7;7873:1;7869;7865:6;7861:14;7858:1;7855:21;7850:1;7843:9;7836:17;7832:45;7829:71;;;7880:18;;:::i;:::-;-1:-1:-1;7920:9:1;;7767:168::o;7940:217::-;7980:1;8006;7996:132;;8050:10;8045:3;8041:20;8038:1;8031:31;8085:4;8082:1;8075:15;8113:4;8110:1;8103:15;7996:132;-1:-1:-1;8142:9:1;;7940:217::o;8162:401::-;8364:2;8346:21;;;8403:2;8383:18;;;8376:30;8442:34;8437:2;8422:18;;8415:62;-1:-1:-1;;;8508:2:1;8493:18;;8486:35;8553:3;8538:19;;8162:401::o;8568:399::-;8770:2;8752:21;;;8809:2;8789:18;;;8782:30;8848:34;8843:2;8828:18;;8821:62;-1:-1:-1;;;8914:2:1;8899:18;;8892:33;8957:3;8942:19;;8568:399::o;10998:125::-;11038:4;11066:1;11063;11060:8;11057:34;;;11071:18;;:::i;:::-;-1:-1:-1;11108:9:1;;10998:125::o;12274:127::-;12335:10;12330:3;12326:20;12323:1;12316:31;12366:4;12363:1;12356:15;12390:4;12387:1;12380:15;12406:251;12476:6;12529:2;12517:9;12508:7;12504:23;12500:32;12497:52;;;12545:1;12542;12535:12;12497:52;12577:9;12571:16;12596:31;12621:5;12596:31;:::i;12662:980::-;12924:4;12972:3;12961:9;12957:19;13003:6;12992:9;12985:25;13029:2;13067:6;13062:2;13051:9;13047:18;13040:34;13110:3;13105:2;13094:9;13090:18;13083:31;13134:6;13169;13163:13;13200:6;13192;13185:22;13238:3;13227:9;13223:19;13216:26;;13277:2;13269:6;13265:15;13251:29;;13298:1;13308:195;13322:6;13319:1;13316:13;13308:195;;;13387:13;;-1:-1:-1;;;;;13383:39:1;13371:52;;13478:15;;;;13443:12;;;;13419:1;13337:9;13308:195;;;-1:-1:-1;;;;;;;13559:32:1;;;;13554:2;13539:18;;13532:60;-1:-1:-1;;;13623:3:1;13608:19;13601:35;13520:3;12662:980;-1:-1:-1;;;12662:980:1:o
Swarm Source
ipfs://4f56a24443b1a49288ca8781bc02ccf6fd01d1706d3e4fd05e322062e33febe3
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.