Latest 25 from a total of 312,272 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 103312902 | 1 hr ago | IN | 0 FTM | 0.0001195 | ||||
Approve | 103309747 | 2 hrs ago | IN | 0 FTM | 0.000118 | ||||
Approve | 103287792 | 10 hrs ago | IN | 0 FTM | 0.0001667 | ||||
Approve | 103281451 | 13 hrs ago | IN | 0 FTM | 0.00014649 | ||||
Approve | 103273706 | 16 hrs ago | IN | 0 FTM | 0.0002851 | ||||
Approve | 103267523 | 18 hrs ago | IN | 0 FTM | 0.00011653 | ||||
Approve | 103260744 | 20 hrs ago | IN | 0 FTM | 0.00013096 | ||||
Transfer | 103259497 | 21 hrs ago | IN | 0 FTM | 0.00006248 | ||||
Approve | 103257195 | 21 hrs ago | IN | 0 FTM | 0.00007701 | ||||
Approve | 103257170 | 21 hrs ago | IN | 0 FTM | 0.00007701 | ||||
Approve | 103257163 | 21 hrs ago | IN | 0 FTM | 0.00007701 | ||||
Approve | 103253524 | 23 hrs ago | IN | 0 FTM | 0.00007701 | ||||
Approve | 103253522 | 23 hrs ago | IN | 0 FTM | 0.00007701 | ||||
Approve | 103253517 | 23 hrs ago | IN | 0 FTM | 0.00007701 | ||||
Approve | 103253510 | 23 hrs ago | IN | 0 FTM | 0.00007701 | ||||
Approve | 103248385 | 24 hrs ago | IN | 0 FTM | 0.00012098 | ||||
Approve | 103248299 | 24 hrs ago | IN | 0 FTM | 0.00012092 | ||||
Approve | 103244821 | 26 hrs ago | IN | 0 FTM | 0.00011822 | ||||
Approve | 103242674 | 26 hrs ago | IN | 0 FTM | 0.00012189 | ||||
Approve | 103241493 | 27 hrs ago | IN | 0 FTM | 0.00011655 | ||||
Approve | 103237455 | 28 hrs ago | IN | 0 FTM | 0.00011626 | ||||
Approve | 103235085 | 29 hrs ago | IN | 0 FTM | 0.00014649 | ||||
Approve | 103228294 | 31 hrs ago | IN | 0 FTM | 0.0001228 | ||||
Approve | 103226573 | 32 hrs ago | IN | 0 FTM | 0.00012175 | ||||
Approve | 103226338 | 32 hrs ago | IN | 0 FTM | 0.00012103 |
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
8306180 | 1333 days ago | Contract Creation | 0 FTM |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
Tomb
Compiler Version
v0.6.12+commit.27d51765
Optimization Enabled:
Yes with 999999 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; import "@openzeppelin/contracts/token/ERC20/ERC20Burnable.sol"; import "@openzeppelin/contracts/math/Math.sol"; import "./lib/SafeMath8.sol"; import "./owner/Operator.sol"; import "./interfaces/IOracle.sol"; /* ______ __ _______ /_ __/___ ____ ___ / /_ / ____(_)___ ____ _____ ________ / / / __ \/ __ `__ \/ __ \ / /_ / / __ \/ __ `/ __ \/ ___/ _ \ / / / /_/ / / / / / / /_/ / / __/ / / / / / /_/ / / / / /__/ __/ /_/ \____/_/ /_/ /_/_.___/ /_/ /_/_/ /_/\__,_/_/ /_/\___/\___/ http://tomb.finance */ contract Tomb is ERC20Burnable, Operator { using SafeMath8 for uint8; using SafeMath for uint256; // Initial distribution for the first 24h genesis pools uint256 public constant INITIAL_GENESIS_POOL_DISTRIBUTION = 11000 ether; // Initial distribution for the day 2-5 TOMB-WFTM LP -> TOMB pool uint256 public constant INITIAL_TOMB_POOL_DISTRIBUTION = 140000 ether; // Distribution for airdrops wallet uint256 public constant INITIAL_AIRDROP_WALLET_DISTRIBUTION = 9000 ether; // Have the rewards been distributed to the pools bool public rewardPoolDistributed = false; /* ================= Taxation =============== */ // Address of the Oracle address public tombOracle; // Address of the Tax Office address public taxOffice; // Current tax rate uint256 public taxRate; // Price threshold below which taxes will get burned uint256 public burnThreshold = 1.10e18; // Address of the tax collector wallet address public taxCollectorAddress; // Should the taxes be calculated using the tax tiers bool public autoCalculateTax; // Tax Tiers uint256[] public taxTiersTwaps = [0, 5e17, 6e17, 7e17, 8e17, 9e17, 9.5e17, 1e18, 1.05e18, 1.10e18, 1.20e18, 1.30e18, 1.40e18, 1.50e18]; uint256[] public taxTiersRates = [2000, 1900, 1800, 1700, 1600, 1500, 1500, 1500, 1500, 1400, 900, 400, 200, 100]; // Sender addresses excluded from Tax mapping(address => bool) public excludedAddresses; event TaxOfficeTransferred(address oldAddress, address newAddress); modifier onlyTaxOffice() { require(taxOffice == msg.sender, "Caller is not the tax office"); _; } modifier onlyOperatorOrTaxOffice() { require(isOperator() || taxOffice == msg.sender, "Caller is not the operator or the tax office"); _; } /** * @notice Constructs the TOMB ERC-20 contract. */ constructor(uint256 _taxRate, address _taxCollectorAddress) public ERC20("TOMB", "TOMB") { // Mints 1 TOMB to contract creator for initial pool setup require(_taxRate < 10000, "tax equal or bigger to 100%"); require(_taxCollectorAddress != address(0), "tax collector address must be non-zero address"); excludeAddress(address(this)); _mint(msg.sender, 1 ether); taxRate = _taxRate; taxCollectorAddress = _taxCollectorAddress; } /* ============= Taxation ============= */ function getTaxTiersTwapsCount() public view returns (uint256 count) { return taxTiersTwaps.length; } function getTaxTiersRatesCount() public view returns (uint256 count) { return taxTiersRates.length; } function isAddressExcluded(address _address) public view returns (bool) { return excludedAddresses[_address]; } function setTaxTiersTwap(uint8 _index, uint256 _value) public onlyTaxOffice returns (bool) { require(_index >= 0, "Index has to be higher than 0"); require(_index < getTaxTiersTwapsCount(), "Index has to lower than count of tax tiers"); if (_index > 0) { require(_value > taxTiersTwaps[_index - 1]); } if (_index < getTaxTiersTwapsCount().sub(1)) { require(_value < taxTiersTwaps[_index + 1]); } taxTiersTwaps[_index] = _value; return true; } function setTaxTiersRate(uint8 _index, uint256 _value) public onlyTaxOffice returns (bool) { require(_index >= 0, "Index has to be higher than 0"); require(_index < getTaxTiersRatesCount(), "Index has to lower than count of tax tiers"); taxTiersRates[_index] = _value; return true; } function setBurnThreshold(uint256 _burnThreshold) public onlyTaxOffice returns (bool) { burnThreshold = _burnThreshold; } function _getTombPrice() internal view returns (uint256 _tombPrice) { try IOracle(tombOracle).consult(address(this), 1e18) returns (uint144 _price) { return uint256(_price); } catch { revert("Tomb: failed to fetch TOMB price from Oracle"); } } function _updateTaxRate(uint256 _tombPrice) internal returns (uint256){ if (autoCalculateTax) { for (uint8 tierId = uint8(getTaxTiersTwapsCount()).sub(1); tierId >= 0; --tierId) { if (_tombPrice >= taxTiersTwaps[tierId]) { require(taxTiersRates[tierId] < 10000, "tax equal or bigger to 100%"); taxRate = taxTiersRates[tierId]; return taxTiersRates[tierId]; } } } } function enableAutoCalculateTax() public onlyTaxOffice { autoCalculateTax = true; } function disableAutoCalculateTax() public onlyTaxOffice { autoCalculateTax = false; } function setTombOracle(address _tombOracle) public onlyOperatorOrTaxOffice { require(_tombOracle != address(0), "oracle address cannot be 0 address"); tombOracle = _tombOracle; } function setTaxOffice(address _taxOffice) public onlyOperatorOrTaxOffice { require(_taxOffice != address(0), "tax office address cannot be 0 address"); emit TaxOfficeTransferred(taxOffice, _taxOffice); taxOffice = _taxOffice; } function setTaxCollectorAddress(address _taxCollectorAddress) public onlyTaxOffice { require(_taxCollectorAddress != address(0), "tax collector address must be non-zero address"); taxCollectorAddress = _taxCollectorAddress; } function setTaxRate(uint256 _taxRate) public onlyTaxOffice { require(!autoCalculateTax, "auto calculate tax cannot be enabled"); require(_taxRate < 10000, "tax equal or bigger to 100%"); taxRate = _taxRate; } function excludeAddress(address _address) public onlyOperatorOrTaxOffice returns (bool) { require(!excludedAddresses[_address], "address can't be excluded"); excludedAddresses[_address] = true; return true; } function includeAddress(address _address) public onlyOperatorOrTaxOffice returns (bool) { require(excludedAddresses[_address], "address can't be included"); excludedAddresses[_address] = false; return true; } /** * @notice Operator mints TOMB to a recipient * @param recipient_ The address of recipient * @param amount_ The amount of TOMB to mint to * @return whether the process has been done */ function mint(address recipient_, uint256 amount_) public onlyOperator returns (bool) { uint256 balanceBefore = balanceOf(recipient_); _mint(recipient_, amount_); uint256 balanceAfter = balanceOf(recipient_); return balanceAfter > balanceBefore; } function burn(uint256 amount) public override { super.burn(amount); } function burnFrom(address account, uint256 amount) public override onlyOperator { super.burnFrom(account, amount); } function transferFrom( address sender, address recipient, uint256 amount ) public override returns (bool) { uint256 currentTaxRate = 0; bool burnTax = false; if (autoCalculateTax) { uint256 currentTombPrice = _getTombPrice(); currentTaxRate = _updateTaxRate(currentTombPrice); if (currentTombPrice < burnThreshold) { burnTax = true; } } if (currentTaxRate == 0 || excludedAddresses[sender]) { _transfer(sender, recipient, amount); } else { _transferWithTax(sender, recipient, amount, burnTax); } _approve(sender, _msgSender(), allowance(sender, _msgSender()).sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function _transferWithTax( address sender, address recipient, uint256 amount, bool burnTax ) internal returns (bool) { uint256 taxAmount = amount.mul(taxRate).div(10000); uint256 amountAfterTax = amount.sub(taxAmount); if(burnTax) { // Burn tax super.burnFrom(sender, taxAmount); } else { // Transfer tax to tax collector _transfer(sender, taxCollectorAddress, taxAmount); } // Transfer amount after tax to recipient _transfer(sender, recipient, amountAfterTax); return true; } /** * @notice distribute to reward pool (only once) */ function distributeReward( address _genesisPool, address _tombPool, address _airdropWallet ) external onlyOperator { require(!rewardPoolDistributed, "only can distribute once"); require(_genesisPool != address(0), "!_genesisPool"); require(_tombPool != address(0), "!_tombPool"); require(_airdropWallet != address(0), "!_airdropWallet"); rewardPoolDistributed = true; _mint(_genesisPool, INITIAL_GENESIS_POOL_DISTRIBUTION); _mint(_tombPool, INITIAL_TOMB_POOL_DISTRIBUTION); _mint(_airdropWallet, INITIAL_AIRDROP_WALLET_DISTRIBUTION); } function governanceRecoverUnsupported( IERC20 _token, uint256 _amount, address _to ) external onlyOperator { _token.transfer(_to, _amount); } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; interface IOracle { function update() external; function consult(address _token, uint256 _amountIn) external view returns (uint144 amountOut); function twap(address _token, uint256 _amountIn) external view returns (uint144 _amountOut); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath8 { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint8 a, uint8 b) internal pure returns (uint8) { uint8 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(uint8 a, uint8 b) internal pure returns (uint8) { 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(uint8 a, uint8 b, string memory errorMessage) internal pure returns (uint8) { require(b <= a, errorMessage); uint8 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(uint8 a, uint8 b) internal pure returns (uint8) { // 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; } uint8 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(uint8 a, uint8 b) internal pure returns (uint8) { 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(uint8 a, uint8 b, string memory errorMessage) internal pure returns (uint8) { require(b > 0, errorMessage); uint8 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(uint8 a, uint8 b) internal pure returns (uint8) { 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(uint8 a, uint8 b, string memory errorMessage) internal pure returns (uint8) { require(b != 0, errorMessage); return a % b; } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; import "@openzeppelin/contracts/GSN/Context.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract Operator is Context, Ownable { address private _operator; event OperatorTransferred(address indexed previousOperator, address indexed newOperator); constructor() internal { _operator = _msgSender(); emit OperatorTransferred(address(0), _operator); } function operator() public view returns (address) { return _operator; } modifier onlyOperator() { require(_operator == msg.sender, "operator: caller is not the operator"); _; } function isOperator() public view returns (bool) { return _msgSender() == _operator; } function transferOperator(address newOperator_) public onlyOwner { _transferOperator(newOperator_); } function _transferOperator(address newOperator_) internal { require(newOperator_ != address(0), "operator: zero address given for new operator"); emit OperatorTransferred(address(0), newOperator_); _operator = newOperator_; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "../utils/Context.sol";
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow, so we distribute return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "../../utils/Context.sol"; import "./IERC20.sol"; import "../../math/SafeMath.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) public { _name = name_; _symbol = symbol_; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * 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 returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _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 tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(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` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(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 tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal virtual { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "../../utils/Context.sol"; import "./ERC20.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { using SafeMath for uint256; /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), decreasedAllowance); _burn(account, amount); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
{ "remappings": [], "optimizer": { "enabled": true, "runs": 999999 }, "evmVersion": "istanbul", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_taxRate","type":"uint256"},{"internalType":"address","name":"_taxCollectorAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOperator","type":"address"},{"indexed":true,"internalType":"address","name":"newOperator","type":"address"}],"name":"OperatorTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldAddress","type":"address"},{"indexed":false,"internalType":"address","name":"newAddress","type":"address"}],"name":"TaxOfficeTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"INITIAL_AIRDROP_WALLET_DISTRIBUTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INITIAL_GENESIS_POOL_DISTRIBUTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INITIAL_TOMB_POOL_DISTRIBUTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"autoCalculateTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableAutoCalculateTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_genesisPool","type":"address"},{"internalType":"address","name":"_tombPool","type":"address"},{"internalType":"address","name":"_airdropWallet","type":"address"}],"name":"distributeReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableAutoCalculateTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"excludeAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTaxTiersRatesCount","outputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTaxTiersTwapsCount","outputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"governanceRecoverUnsupported","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"includeAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_address","type":"address"}],"name":"isAddressExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPoolDistributed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnThreshold","type":"uint256"}],"name":"setBurnThreshold","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_taxCollectorAddress","type":"address"}],"name":"setTaxCollectorAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_taxOffice","type":"address"}],"name":"setTaxOffice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxRate","type":"uint256"}],"name":"setTaxRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_index","type":"uint8"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setTaxTiersRate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_index","type":"uint8"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setTaxTiersTwap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tombOracle","type":"address"}],"name":"setTombOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxCollectorAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxOffice","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"taxTiersRates","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"taxTiersTwaps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tombOracle","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOperator_","type":"address"}],"name":"transferOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6006805460ff60a01b19169055670f43fc2c04ee0000600a819055610240604052600060809081526706f05b59d3b2000060a052670853a0d2313c000060c0526709b6e64a8ec6000060e052670b1a2bc2ec50000061010052670c7d713b49da000061012052670d2f13f7789f000061014052670de0b6b3a764000061016052670e92596fd6290000610180526101a0919091526710a741a4627800006101c05267120a871cc00200006101e05267136dcc951d8c0000610200526714d1120d7b16000061022052620000d790600c90600e62000645565b50604080516101c0810182526107d0815261076c6020820152610708918101919091526106a4606082015261064060808201526105dc60a0820181905260c0820181905260e0820181905261010082015261057861012082015261038461014082015261019061016082015260c861018082015260646101a08201526200016390600d90600e620006a0565b503480156200017157600080fd5b5060405162003d1638038062003d16833981810160405260408110156200019757600080fd5b5080516020918201516040805180820182526004808252632a27a6a160e11b8287018181528451808601909552918452958301959095528051939492939092620001e59160039190620006e4565b508051620001fb906004906020840190620006e4565b50506005805460ff1916601217905550600062000217620003ac565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000277620003ac565b600680546001600160a01b0319166001600160a01b0392831617908190556040519116906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a361271082106200031a576040805162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f20313030250000000000604482015290519081900360640190fd5b6001600160a01b038116620003615760405162461bcd60e51b815260040180806020018281038252602e81526020018062003cbc602e913960400191505060405180910390fd5b6200036c30620003b0565b506200038133670de0b6b3a7640000620004a7565b600991909155600b80546001600160a01b0319166001600160a01b039092169190911790556200076e565b3390565b6000620003bc620005b6565b80620003d257506008546001600160a01b031633145b6200040f5760405162461bcd60e51b815260040180806020018281038252602c81526020018062003cea602c913960400191505060405180910390fd5b6001600160a01b0382166000908152600e602052604090205460ff16156200047e576040805162461bcd60e51b815260206004820152601960248201527f616464726573732063616e2774206265206578636c7564656400000000000000604482015290519081900360640190fd5b506001600160a01b03166000908152600e60205260409020805460ff1916600190811790915590565b6001600160a01b03821662000503576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200051160008383620005de565b6200052d81600254620005e360201b620024c91790919060201c565b6002556001600160a01b0382166000908152602081815260409091205462000560918390620024c9620005e3821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6006546000906001600160a01b0316620005cf620003ac565b6001600160a01b031614905090565b505050565b6000828201838110156200063e576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b8280548282559060005260206000209081019282156200068e579160200282015b828111156200068e57825182906001600160401b031690559160200191906001019062000666565b506200069c92915062000757565b5090565b8280548282559060005260206000209081019282156200068e579160200282015b828111156200068e578251829061ffff16905591602001919060010190620006c1565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200072757805160ff19168380011785556200068e565b828001600101855582156200068e579182015b828111156200068e5782518255916020019190600101906200073a565b5b808211156200069c576000815560010162000758565b61353e806200077e6000396000f3fe608060405234801561001057600080fd5b506004361061032b5760003560e01c806370a08231116101b2578063a6431bba116100f9578063dd62ed3e116100a2578063f2fde38b1161007c578063f2fde38b146109a8578063f7741103146109db578063ff87fc7c146109e3578063ffa8226e146109eb5761032b565b8063dd62ed3e14610932578063ebca1bd91461096d578063ee2a9535146109a05761032b565b8063c3bdf613116100d3578063c3bdf613146108da578063c6d69a30146108e2578063cf011b26146108ff5761032b565b8063a6431bba14610873578063a9059cbb1461087b578063b87c5a4a146108b45761032b565b80638da5cb5b1161015b5780639662676c116101355780639662676c146108155780639d6b5f211461081d578063a457c2d71461083a5761032b565b80638da5cb5b146107d257806393995d4b146107da57806395d89b411461080d5761032b565b8063771a3a1d1161018c578063771a3a1d1461078957806379cc6790146107915780638d3cc818146107ca5761032b565b806370a082311461071b578063715018a61461074e57806375be5ae1146107565761032b565b806342966c681161027657806354575af41161021f57806365bbacd9116101f957806365bbacd9146106ba57806366206ce9146106c257806369356d47146106e85761032b565b806354575af414610652578063570ca735146106955780635c29908d1461069d5761032b565b80634e20a02c116102505780634e20a02c146105fd5780634f6d38d014610605578063521181d51461060d5761032b565b806342966c68146105bb57806342c6b4f1146105d85780634456eda2146105f55761032b565b8063313ce567116102d85780633e5f13d4116102b25780633e5f13d41461051e5780633f07d76a1461054f57806340c10f19146105825761032b565b8063313ce567146104945780633758e6ce146104b257806339509351146104e55761032b565b806318160ddd1161030957806318160ddd1461041457806323b872dd1461041c57806329605e771461045f5761032b565b806306fdde0314610330578063095ea7b3146103ad5780631017bc36146103fa575b600080fd5b6103386109f3565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561037257818101518382015260200161035a565b50505050905090810190601f16801561039f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103e6600480360360408110156103c357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610aa8565b604080519115158252519081900360200190f35b610402610ac6565b60408051918252519081900360200190f35b610402610ad4565b6103e66004803603606081101561043257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135610ada565b6104926004803603602081101561047557600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610bd3565b005b61049c610c87565b6040805160ff9092168252519081900360200190f35b6103e6600480360360208110156104c857600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610c90565b6103e6600480360360408110156104fb57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610dfe565b610526610e59565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6104926004803603602081101561056557600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610e75565b6103e66004803603604081101561059857600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610ffc565b610492600480360360208110156105d157600080fd5b503561109d565b610402600480360360208110156105ee57600080fd5b50356110a6565b6103e66110c4565b610402611104565b610402611112565b6104926004803603606081101561062357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602081013582169160409091013516611118565b6104926004803603606081101561066857600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359160409091013516611418565b61052661152a565b610402600480360360208110156106b357600080fd5b5035611546565b610492611553565b6103e6600480360360408110156106d857600080fd5b5060ff8135169060200135611603565b610492600480360360208110156106fe57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661178c565b6104026004803603602081101561073157600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166118c5565b6104926118ed565b6104926004803603602081101561076c57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611a09565b610402611b3b565b610492600480360360408110156107a757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611b41565b6103e6611bbf565b610526611be0565b6103e6600480360360208110156107f057600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611c01565b610338611d66565b6103e6611de5565b6103e66004803603602081101561083357600080fd5b5035611e06565b6103e66004803603604081101561085057600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611e98565b610402611f0d565b6103e66004803603604081101561089157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611f13565b6103e6600480360360408110156108ca57600080fd5b5060ff8135169060200135611f27565b610526612023565b610492600480360360208110156108f857600080fd5b503561203f565b6103e66004803603602081101561091557600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166121ae565b6104026004803603604081101561094857600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160200135166121c3565b6103e66004803603602081101561098357600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166121fb565b610402612226565b610492600480360360208110156109be57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661222c565b6105266123d8565b6104926123f4565b6104026124bb565b60038054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a9d5780601f10610a7257610100808354040283529160200191610a9d565b820191906000526020600020905b815481529060010190602001808311610a8057829003601f168201915b505050505090505b90565b6000610abc610ab5612544565b8484612548565b5060015b92915050565b691da56a4b0835bf80000081565b60025490565b600b546000908190819074010000000000000000000000000000000000000000900460ff1615610b2c576000610b0e61268f565b9050610b19816127a3565b9250600a54811015610b2a57600191505b505b811580610b5e575073ffffffffffffffffffffffffffffffffffffffff86166000908152600e602052604090205460ff165b15610b7357610b6e8686866128fa565b610b81565b610b7f86868684612aca565b505b610bc786610b8d612544565b610bc28760405180606001604052806028815260200161331460289139610bbb8c610bb6612544565b6121c3565b9190612b50565b612548565b50600195945050505050565b610bdb612544565b73ffffffffffffffffffffffffffffffffffffffff16610bf9611be0565b73ffffffffffffffffffffffffffffffffffffffff1614610c7b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610c8481612c01565b50565b60055460ff1690565b6000610c9a6110c4565b80610cbc575060085473ffffffffffffffffffffffffffffffffffffffff1633145b610d11576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180613468602c913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82166000908152600e602052604090205460ff1615610da657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f616464726573732063616e2774206265206578636c7564656400000000000000604482015290519081900360640190fd5b5073ffffffffffffffffffffffffffffffffffffffff81166000908152600e6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091555b919050565b6000610abc610e0b612544565b84610bc28560016000610e1c612544565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918c1681529252902054906124c9565b60085473ffffffffffffffffffffffffffffffffffffffff1681565b610e7d6110c4565b80610e9f575060085473ffffffffffffffffffffffffffffffffffffffff1633145b610ef4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180613468602c913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8116610f60576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806132a06026913960400191505060405180910390fd5b6008546040805173ffffffffffffffffffffffffffffffffffffffff9283168152918316602083015280517f75237613d1cfb394eb7979839ecbeacaca4592ef0cf96791979625803948a6019281900390910190a1600880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60065460009073ffffffffffffffffffffffffffffffffffffffff16331461106f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061338e6024913960400191505060405180910390fd5b600061107a846118c5565b90506110868484612cf7565b6000611091856118c5565b91909111949350505050565b610c8481612e28565b600c81815481106110b357fe5b600091825260209091200154905081565b60065460009073ffffffffffffffffffffffffffffffffffffffff166110e8612544565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b6902544faa778090e0000081565b600a5481565b60065473ffffffffffffffffffffffffffffffffffffffff163314611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061338e6024913960400191505060405180910390fd5b60065474010000000000000000000000000000000000000000900460ff161561121257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f6f6e6c792063616e2064697374726962757465206f6e63650000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff831661129457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f215f67656e65736973506f6f6c00000000000000000000000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff821661131657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f215f746f6d62506f6f6c00000000000000000000000000000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff811661139857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f215f61697264726f7057616c6c65740000000000000000000000000000000000604482015290519081900360640190fd5b600680547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790556113eb836902544faa778090e00000612cf7565b6113ff82691da56a4b0835bf800000612cf7565b611413816901e7e4171bf4d3a00000612cf7565b505050565b60065473ffffffffffffffffffffffffffffffffffffffff163314611488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061338e6024913960400191505060405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb82846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156114f957600080fd5b505af115801561150d573d6000803e3d6000fd5b505050506040513d602081101561152357600080fd5b5050505050565b60065473ffffffffffffffffffffffffffffffffffffffff1690565b600d81815481106110b357fe5b60085473ffffffffffffffffffffffffffffffffffffffff1633146115d957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520746178206f666669636500000000604482015290519081900360640190fd5b600b80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff169055565b60085460009073ffffffffffffffffffffffffffffffffffffffff16331461168c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520746178206f666669636500000000604482015290519081900360640190fd5b611694611f0d565b8360ff16106116ee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806133b2602a913960400191505060405180910390fd5b60ff83161561172057600c6001840360ff168154811061170a57fe5b9060005260206000200154821161172057600080fd5b611733600161172d611f0d565b90612e39565b8360ff16101561176657600c8360010160ff168154811061175057fe5b9060005260206000200154821061176657600080fd5b81600c8460ff168154811061177757fe5b60009182526020909120015550600192915050565b60085473ffffffffffffffffffffffffffffffffffffffff16331461181257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520746178206f666669636500000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff811661187e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e81526020018061333c602e913960400191505060405180910390fd5b600b80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6118f5612544565b73ffffffffffffffffffffffffffffffffffffffff16611913611be0565b73ffffffffffffffffffffffffffffffffffffffff161461199557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600554604051600091610100900473ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580547fffffffffffffffffffffff0000000000000000000000000000000000000000ff169055565b611a116110c4565b80611a33575060085473ffffffffffffffffffffffffffffffffffffffff1633145b611a88576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180613468602c913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8116611af4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806133fd6022913960400191505060405180910390fd5b600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60095481565b60065473ffffffffffffffffffffffffffffffffffffffff163314611bb1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061338e6024913960400191505060405180910390fd5b611bbb8282612eb0565b5050565b600b5474010000000000000000000000000000000000000000900460ff1681565b600554610100900473ffffffffffffffffffffffffffffffffffffffff1690565b6000611c0b6110c4565b80611c2d575060085473ffffffffffffffffffffffffffffffffffffffff1633145b611c82576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180613468602c913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82166000908152600e602052604090205460ff16611d1657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f616464726573732063616e277420626520696e636c7564656400000000000000604482015290519081900360640190fd5b5073ffffffffffffffffffffffffffffffffffffffff166000908152600e6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b60048054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a9d5780601f10610a7257610100808354040283529160200191610a9d565b60065474010000000000000000000000000000000000000000900460ff1681565b60085460009073ffffffffffffffffffffffffffffffffffffffff163314611e8f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520746178206f666669636500000000604482015290519081900360640190fd5b600a9190915590565b6000610abc611ea5612544565b84610bc2856040518060600160405280602581526020016134e46025913960016000611ecf612544565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918d16815292529020549190612b50565b600c5490565b6000610abc611f20612544565b84846128fa565b60085460009073ffffffffffffffffffffffffffffffffffffffff163314611fb057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520746178206f666669636500000000604482015290519081900360640190fd5b611fb8612226565b8360ff1610612012576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806133b2602a913960400191505060405180910390fd5b81600d8460ff168154811061177757fe5b600b5473ffffffffffffffffffffffffffffffffffffffff1681565b60085473ffffffffffffffffffffffffffffffffffffffff1633146120c557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520746178206f666669636500000000604482015290519081900360640190fd5b600b5474010000000000000000000000000000000000000000900460ff1615612139576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061341f6024913960400191505060405180910390fd5b61271081106121a957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f20313030250000000000604482015290519081900360640190fd5b600955565b600e6020526000908152604090205460ff1681565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b73ffffffffffffffffffffffffffffffffffffffff166000908152600e602052604090205460ff1690565b600d5490565b612234612544565b73ffffffffffffffffffffffffffffffffffffffff16612252611be0565b73ffffffffffffffffffffffffffffffffffffffff16146122d457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff8116612340576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806132326026913960400191505060405180910390fd5b60055460405173ffffffffffffffffffffffffffffffffffffffff80841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36005805473ffffffffffffffffffffffffffffffffffffffff909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b60075473ffffffffffffffffffffffffffffffffffffffff1681565b60085473ffffffffffffffffffffffffffffffffffffffff16331461247a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520746178206f666669636500000000604482015290519081900360640190fd5b600b80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055565b6901e7e4171bf4d3a0000081565b60008282018381101561253d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b73ffffffffffffffffffffffffffffffffffffffff83166125b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806134946024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216612620576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806132586022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600754604080517f3ddac953000000000000000000000000000000000000000000000000000000008152306004820152670de0b6b3a76400006024820152905160009273ffffffffffffffffffffffffffffffffffffffff1691633ddac953916044808301926020929190829003018186803b15801561270e57600080fd5b505afa92505050801561273357506040513d602081101561272e57600080fd5b505160015b612788576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806134b8602c913960400191505060405180910390fd5b71ffffffffffffffffffffffffffffffffffff169050610aa5565b600b5460009074010000000000000000000000000000000000000000900460ff1615610df95760006127e160016127d8611f0d565b60ff1690612ef9565b90505b600c8160ff16815481106127f457fe5b906000526020600020015483106128d357612710600d8260ff168154811061281857fe5b90600052602060002001541061288f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f20313030250000000000604482015290519081900360640190fd5b600d8160ff168154811061289f57fe5b9060005260206000200154600981905550600d8160ff16815481106128c057fe5b9060005260206000200154915050610df9565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016127e4565b73ffffffffffffffffffffffffffffffffffffffff8316612966576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806134436025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82166129d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806131ed6023913960400191505060405180910390fd5b6129dd838383611413565b612a278160405180606001604052806026815260200161327a6026913973ffffffffffffffffffffffffffffffffffffffff86166000908152602081905260409020549190612b50565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082209390935590841681522054612a6390826124c9565b73ffffffffffffffffffffffffffffffffffffffff8084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600080612aee612710612ae860095487612f3b90919063ffffffff16565b90612fae565b90506000612afc8583612e39565b90508315612b1357612b0e8783612eb0565b612b38565b600b54612b3890889073ffffffffffffffffffffffffffffffffffffffff16846128fa565b612b438787836128fa565b5060019695505050505050565b60008184841115612bf9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612bbe578181015183820152602001612ba6565b50505050905090810190601f168015612beb5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b73ffffffffffffffffffffffffffffffffffffffff8116612c6d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d8152602001806132c6602d913960400191505060405180910390fd5b60405173ffffffffffffffffffffffffffffffffffffffff8216906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff8216612d7957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b612d8560008383611413565b600254612d9290826124c9565b60025573ffffffffffffffffffffffffffffffffffffffff8216600090815260208190526040902054612dc590826124c9565b73ffffffffffffffffffffffffffffffffffffffff83166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b610c84612e33612544565b8261302f565b600082821115612eaa57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000612edb8260405180606001604052806024815260200161336a60249139610bbb86610bb6612544565b9050612eef83612ee9612544565b83612548565b611413838361302f565b600061253d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613179565b600082612f4a57506000610ac0565b82820282848281612f5757fe5b041461253d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806132f36021913960400191505060405180910390fd5b600080821161301e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161302757fe5b049392505050565b73ffffffffffffffffffffffffffffffffffffffff821661309b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806133dc6021913960400191505060405180910390fd5b6130a782600083611413565b6130f1816040518060600160405280602281526020016132106022913973ffffffffffffffffffffffffffffffffffffffff85166000908152602081905260409020549190612b50565b73ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260409020556002546131249082612e39565b60025560408051828152905160009173ffffffffffffffffffffffffffffffffffffffff8516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60008360ff168360ff1611158290612bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201818152835160248401528351909283926044909101919085019080838360008315612bbe578181015183820152602001612ba656fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365746178206f666669636520616464726573732063616e6e6f74206265203020616464726573736f70657261746f723a207a65726f206164647265737320676976656e20666f72206e6577206f70657261746f72536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636574617820636f6c6c6563746f722061646472657373206d757374206265206e6f6e2d7a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e63656f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657261746f72496e6465782068617320746f206c6f776572207468616e20636f756e74206f662074617820746965727345524332303a206275726e2066726f6d20746865207a65726f20616464726573736f7261636c6520616464726573732063616e6e6f74206265203020616464726573736175746f2063616c63756c617465207461782063616e6e6f7420626520656e61626c656445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737343616c6c6572206973206e6f7420746865206f70657261746f72206f722074686520746178206f666669636545524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373546f6d623a206661696c656420746f20666574636820544f4d422070726963652066726f6d204f7261636c6545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220cf72be2436f9210ffc3b2d41226c307c4cb9f05fd4cfac4437726a9dfcd8c6da64736f6c634300060c003374617820636f6c6c6563746f722061646472657373206d757374206265206e6f6e2d7a65726f206164647265737343616c6c6572206973206e6f7420746865206f70657261746f72206f722074686520746178206f666669636500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fa5a3b6f8e26a7c2c67bd205ffcfa9f89b0e8d1
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061032b5760003560e01c806370a08231116101b2578063a6431bba116100f9578063dd62ed3e116100a2578063f2fde38b1161007c578063f2fde38b146109a8578063f7741103146109db578063ff87fc7c146109e3578063ffa8226e146109eb5761032b565b8063dd62ed3e14610932578063ebca1bd91461096d578063ee2a9535146109a05761032b565b8063c3bdf613116100d3578063c3bdf613146108da578063c6d69a30146108e2578063cf011b26146108ff5761032b565b8063a6431bba14610873578063a9059cbb1461087b578063b87c5a4a146108b45761032b565b80638da5cb5b1161015b5780639662676c116101355780639662676c146108155780639d6b5f211461081d578063a457c2d71461083a5761032b565b80638da5cb5b146107d257806393995d4b146107da57806395d89b411461080d5761032b565b8063771a3a1d1161018c578063771a3a1d1461078957806379cc6790146107915780638d3cc818146107ca5761032b565b806370a082311461071b578063715018a61461074e57806375be5ae1146107565761032b565b806342966c681161027657806354575af41161021f57806365bbacd9116101f957806365bbacd9146106ba57806366206ce9146106c257806369356d47146106e85761032b565b806354575af414610652578063570ca735146106955780635c29908d1461069d5761032b565b80634e20a02c116102505780634e20a02c146105fd5780634f6d38d014610605578063521181d51461060d5761032b565b806342966c68146105bb57806342c6b4f1146105d85780634456eda2146105f55761032b565b8063313ce567116102d85780633e5f13d4116102b25780633e5f13d41461051e5780633f07d76a1461054f57806340c10f19146105825761032b565b8063313ce567146104945780633758e6ce146104b257806339509351146104e55761032b565b806318160ddd1161030957806318160ddd1461041457806323b872dd1461041c57806329605e771461045f5761032b565b806306fdde0314610330578063095ea7b3146103ad5780631017bc36146103fa575b600080fd5b6103386109f3565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561037257818101518382015260200161035a565b50505050905090810190601f16801561039f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103e6600480360360408110156103c357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610aa8565b604080519115158252519081900360200190f35b610402610ac6565b60408051918252519081900360200190f35b610402610ad4565b6103e66004803603606081101561043257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135610ada565b6104926004803603602081101561047557600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610bd3565b005b61049c610c87565b6040805160ff9092168252519081900360200190f35b6103e6600480360360208110156104c857600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610c90565b6103e6600480360360408110156104fb57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610dfe565b610526610e59565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6104926004803603602081101561056557600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610e75565b6103e66004803603604081101561059857600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610ffc565b610492600480360360208110156105d157600080fd5b503561109d565b610402600480360360208110156105ee57600080fd5b50356110a6565b6103e66110c4565b610402611104565b610402611112565b6104926004803603606081101561062357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602081013582169160409091013516611118565b6104926004803603606081101561066857600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359160409091013516611418565b61052661152a565b610402600480360360208110156106b357600080fd5b5035611546565b610492611553565b6103e6600480360360408110156106d857600080fd5b5060ff8135169060200135611603565b610492600480360360208110156106fe57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661178c565b6104026004803603602081101561073157600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166118c5565b6104926118ed565b6104926004803603602081101561076c57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611a09565b610402611b3b565b610492600480360360408110156107a757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611b41565b6103e6611bbf565b610526611be0565b6103e6600480360360208110156107f057600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611c01565b610338611d66565b6103e6611de5565b6103e66004803603602081101561083357600080fd5b5035611e06565b6103e66004803603604081101561085057600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611e98565b610402611f0d565b6103e66004803603604081101561089157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611f13565b6103e6600480360360408110156108ca57600080fd5b5060ff8135169060200135611f27565b610526612023565b610492600480360360208110156108f857600080fd5b503561203f565b6103e66004803603602081101561091557600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166121ae565b6104026004803603604081101561094857600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160200135166121c3565b6103e66004803603602081101561098357600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166121fb565b610402612226565b610492600480360360208110156109be57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661222c565b6105266123d8565b6104926123f4565b6104026124bb565b60038054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a9d5780601f10610a7257610100808354040283529160200191610a9d565b820191906000526020600020905b815481529060010190602001808311610a8057829003601f168201915b505050505090505b90565b6000610abc610ab5612544565b8484612548565b5060015b92915050565b691da56a4b0835bf80000081565b60025490565b600b546000908190819074010000000000000000000000000000000000000000900460ff1615610b2c576000610b0e61268f565b9050610b19816127a3565b9250600a54811015610b2a57600191505b505b811580610b5e575073ffffffffffffffffffffffffffffffffffffffff86166000908152600e602052604090205460ff165b15610b7357610b6e8686866128fa565b610b81565b610b7f86868684612aca565b505b610bc786610b8d612544565b610bc28760405180606001604052806028815260200161331460289139610bbb8c610bb6612544565b6121c3565b9190612b50565b612548565b50600195945050505050565b610bdb612544565b73ffffffffffffffffffffffffffffffffffffffff16610bf9611be0565b73ffffffffffffffffffffffffffffffffffffffff1614610c7b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610c8481612c01565b50565b60055460ff1690565b6000610c9a6110c4565b80610cbc575060085473ffffffffffffffffffffffffffffffffffffffff1633145b610d11576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180613468602c913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82166000908152600e602052604090205460ff1615610da657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f616464726573732063616e2774206265206578636c7564656400000000000000604482015290519081900360640190fd5b5073ffffffffffffffffffffffffffffffffffffffff81166000908152600e6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091555b919050565b6000610abc610e0b612544565b84610bc28560016000610e1c612544565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918c1681529252902054906124c9565b60085473ffffffffffffffffffffffffffffffffffffffff1681565b610e7d6110c4565b80610e9f575060085473ffffffffffffffffffffffffffffffffffffffff1633145b610ef4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180613468602c913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8116610f60576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806132a06026913960400191505060405180910390fd5b6008546040805173ffffffffffffffffffffffffffffffffffffffff9283168152918316602083015280517f75237613d1cfb394eb7979839ecbeacaca4592ef0cf96791979625803948a6019281900390910190a1600880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60065460009073ffffffffffffffffffffffffffffffffffffffff16331461106f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061338e6024913960400191505060405180910390fd5b600061107a846118c5565b90506110868484612cf7565b6000611091856118c5565b91909111949350505050565b610c8481612e28565b600c81815481106110b357fe5b600091825260209091200154905081565b60065460009073ffffffffffffffffffffffffffffffffffffffff166110e8612544565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b6902544faa778090e0000081565b600a5481565b60065473ffffffffffffffffffffffffffffffffffffffff163314611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061338e6024913960400191505060405180910390fd5b60065474010000000000000000000000000000000000000000900460ff161561121257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f6f6e6c792063616e2064697374726962757465206f6e63650000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff831661129457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f215f67656e65736973506f6f6c00000000000000000000000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff821661131657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f215f746f6d62506f6f6c00000000000000000000000000000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff811661139857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f215f61697264726f7057616c6c65740000000000000000000000000000000000604482015290519081900360640190fd5b600680547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790556113eb836902544faa778090e00000612cf7565b6113ff82691da56a4b0835bf800000612cf7565b611413816901e7e4171bf4d3a00000612cf7565b505050565b60065473ffffffffffffffffffffffffffffffffffffffff163314611488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061338e6024913960400191505060405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb82846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156114f957600080fd5b505af115801561150d573d6000803e3d6000fd5b505050506040513d602081101561152357600080fd5b5050505050565b60065473ffffffffffffffffffffffffffffffffffffffff1690565b600d81815481106110b357fe5b60085473ffffffffffffffffffffffffffffffffffffffff1633146115d957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520746178206f666669636500000000604482015290519081900360640190fd5b600b80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff169055565b60085460009073ffffffffffffffffffffffffffffffffffffffff16331461168c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520746178206f666669636500000000604482015290519081900360640190fd5b611694611f0d565b8360ff16106116ee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806133b2602a913960400191505060405180910390fd5b60ff83161561172057600c6001840360ff168154811061170a57fe5b9060005260206000200154821161172057600080fd5b611733600161172d611f0d565b90612e39565b8360ff16101561176657600c8360010160ff168154811061175057fe5b9060005260206000200154821061176657600080fd5b81600c8460ff168154811061177757fe5b60009182526020909120015550600192915050565b60085473ffffffffffffffffffffffffffffffffffffffff16331461181257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520746178206f666669636500000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff811661187e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e81526020018061333c602e913960400191505060405180910390fd5b600b80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6118f5612544565b73ffffffffffffffffffffffffffffffffffffffff16611913611be0565b73ffffffffffffffffffffffffffffffffffffffff161461199557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600554604051600091610100900473ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580547fffffffffffffffffffffff0000000000000000000000000000000000000000ff169055565b611a116110c4565b80611a33575060085473ffffffffffffffffffffffffffffffffffffffff1633145b611a88576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180613468602c913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8116611af4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806133fd6022913960400191505060405180910390fd5b600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60095481565b60065473ffffffffffffffffffffffffffffffffffffffff163314611bb1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061338e6024913960400191505060405180910390fd5b611bbb8282612eb0565b5050565b600b5474010000000000000000000000000000000000000000900460ff1681565b600554610100900473ffffffffffffffffffffffffffffffffffffffff1690565b6000611c0b6110c4565b80611c2d575060085473ffffffffffffffffffffffffffffffffffffffff1633145b611c82576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180613468602c913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82166000908152600e602052604090205460ff16611d1657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f616464726573732063616e277420626520696e636c7564656400000000000000604482015290519081900360640190fd5b5073ffffffffffffffffffffffffffffffffffffffff166000908152600e6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b60048054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a9d5780601f10610a7257610100808354040283529160200191610a9d565b60065474010000000000000000000000000000000000000000900460ff1681565b60085460009073ffffffffffffffffffffffffffffffffffffffff163314611e8f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520746178206f666669636500000000604482015290519081900360640190fd5b600a9190915590565b6000610abc611ea5612544565b84610bc2856040518060600160405280602581526020016134e46025913960016000611ecf612544565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918d16815292529020549190612b50565b600c5490565b6000610abc611f20612544565b84846128fa565b60085460009073ffffffffffffffffffffffffffffffffffffffff163314611fb057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520746178206f666669636500000000604482015290519081900360640190fd5b611fb8612226565b8360ff1610612012576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806133b2602a913960400191505060405180910390fd5b81600d8460ff168154811061177757fe5b600b5473ffffffffffffffffffffffffffffffffffffffff1681565b60085473ffffffffffffffffffffffffffffffffffffffff1633146120c557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520746178206f666669636500000000604482015290519081900360640190fd5b600b5474010000000000000000000000000000000000000000900460ff1615612139576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061341f6024913960400191505060405180910390fd5b61271081106121a957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f20313030250000000000604482015290519081900360640190fd5b600955565b600e6020526000908152604090205460ff1681565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b73ffffffffffffffffffffffffffffffffffffffff166000908152600e602052604090205460ff1690565b600d5490565b612234612544565b73ffffffffffffffffffffffffffffffffffffffff16612252611be0565b73ffffffffffffffffffffffffffffffffffffffff16146122d457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff8116612340576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806132326026913960400191505060405180910390fd5b60055460405173ffffffffffffffffffffffffffffffffffffffff80841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36005805473ffffffffffffffffffffffffffffffffffffffff909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b60075473ffffffffffffffffffffffffffffffffffffffff1681565b60085473ffffffffffffffffffffffffffffffffffffffff16331461247a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520746178206f666669636500000000604482015290519081900360640190fd5b600b80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055565b6901e7e4171bf4d3a0000081565b60008282018381101561253d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b73ffffffffffffffffffffffffffffffffffffffff83166125b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806134946024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216612620576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806132586022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600754604080517f3ddac953000000000000000000000000000000000000000000000000000000008152306004820152670de0b6b3a76400006024820152905160009273ffffffffffffffffffffffffffffffffffffffff1691633ddac953916044808301926020929190829003018186803b15801561270e57600080fd5b505afa92505050801561273357506040513d602081101561272e57600080fd5b505160015b612788576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806134b8602c913960400191505060405180910390fd5b71ffffffffffffffffffffffffffffffffffff169050610aa5565b600b5460009074010000000000000000000000000000000000000000900460ff1615610df95760006127e160016127d8611f0d565b60ff1690612ef9565b90505b600c8160ff16815481106127f457fe5b906000526020600020015483106128d357612710600d8260ff168154811061281857fe5b90600052602060002001541061288f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f20313030250000000000604482015290519081900360640190fd5b600d8160ff168154811061289f57fe5b9060005260206000200154600981905550600d8160ff16815481106128c057fe5b9060005260206000200154915050610df9565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016127e4565b73ffffffffffffffffffffffffffffffffffffffff8316612966576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806134436025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82166129d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806131ed6023913960400191505060405180910390fd5b6129dd838383611413565b612a278160405180606001604052806026815260200161327a6026913973ffffffffffffffffffffffffffffffffffffffff86166000908152602081905260409020549190612b50565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082209390935590841681522054612a6390826124c9565b73ffffffffffffffffffffffffffffffffffffffff8084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600080612aee612710612ae860095487612f3b90919063ffffffff16565b90612fae565b90506000612afc8583612e39565b90508315612b1357612b0e8783612eb0565b612b38565b600b54612b3890889073ffffffffffffffffffffffffffffffffffffffff16846128fa565b612b438787836128fa565b5060019695505050505050565b60008184841115612bf9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612bbe578181015183820152602001612ba6565b50505050905090810190601f168015612beb5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b73ffffffffffffffffffffffffffffffffffffffff8116612c6d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d8152602001806132c6602d913960400191505060405180910390fd5b60405173ffffffffffffffffffffffffffffffffffffffff8216906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff8216612d7957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b612d8560008383611413565b600254612d9290826124c9565b60025573ffffffffffffffffffffffffffffffffffffffff8216600090815260208190526040902054612dc590826124c9565b73ffffffffffffffffffffffffffffffffffffffff83166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b610c84612e33612544565b8261302f565b600082821115612eaa57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000612edb8260405180606001604052806024815260200161336a60249139610bbb86610bb6612544565b9050612eef83612ee9612544565b83612548565b611413838361302f565b600061253d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613179565b600082612f4a57506000610ac0565b82820282848281612f5757fe5b041461253d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806132f36021913960400191505060405180910390fd5b600080821161301e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161302757fe5b049392505050565b73ffffffffffffffffffffffffffffffffffffffff821661309b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806133dc6021913960400191505060405180910390fd5b6130a782600083611413565b6130f1816040518060600160405280602281526020016132106022913973ffffffffffffffffffffffffffffffffffffffff85166000908152602081905260409020549190612b50565b73ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260409020556002546131249082612e39565b60025560408051828152905160009173ffffffffffffffffffffffffffffffffffffffff8516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60008360ff168360ff1611158290612bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201818152835160248401528351909283926044909101919085019080838360008315612bbe578181015183820152602001612ba656fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365746178206f666669636520616464726573732063616e6e6f74206265203020616464726573736f70657261746f723a207a65726f206164647265737320676976656e20666f72206e6577206f70657261746f72536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636574617820636f6c6c6563746f722061646472657373206d757374206265206e6f6e2d7a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e63656f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657261746f72496e6465782068617320746f206c6f776572207468616e20636f756e74206f662074617820746965727345524332303a206275726e2066726f6d20746865207a65726f20616464726573736f7261636c6520616464726573732063616e6e6f74206265203020616464726573736175746f2063616c63756c617465207461782063616e6e6f7420626520656e61626c656445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737343616c6c6572206973206e6f7420746865206f70657261746f72206f722074686520746178206f666669636545524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373546f6d623a206661696c656420746f20666574636820544f4d422070726963652066726f6d204f7261636c6545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220cf72be2436f9210ffc3b2d41226c307c4cb9f05fd4cfac4437726a9dfcd8c6da64736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fa5a3b6f8e26a7c2c67bd205ffcfa9f89b0e8d1
-----Decoded View---------------
Arg [0] : _taxRate (uint256): 0
Arg [1] : _taxCollectorAddress (address): 0x0fA5a3B6f8e26a7C2C67bd205fFcfA9f89B0e8d1
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [1] : 0000000000000000000000000fa5a3b6f8e26a7c2c67bd205ffcfa9f89b0e8d1
Loading...
Loading
Loading...
Loading
OVERVIEW
An algorithmic stablecoin on Fantom Opera, pegged to the price of 1 FTM via seigniorage.Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.